diff --git a/CHANGELOG.md b/CHANGELOG.md index dd060c2e..6532e228 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.1.0] - 2023-12-17 + +### Added + +- introduced new states -- `created` and `imported` ([#295]) + +### Fixed + +- removed default values in `nitro_resource_map.py` ([#313], [#314], [#311]) +- default monitor can now be unbound from service ([#312]) +- `ip` is now not mandatory for server based resources ([#297]) + ## [2.0.3] - 2023-11-14 > No module specific changes in this release @@ -14,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - updated documentation - updated supported_modules_matrix.md - added GitHub workflows -- updated GitHub issue and feature template +- updated GitHub issue and feature template ## [2.0.2] - 2023-11-08 @@ -35,11 +47,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial Release -[unreleased]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.0.3...HEAD +[unreleased]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.1.0...HEAD +[2.1.0]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.0.3...2.1.0 [2.0.3]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.0.2...2.0.3 [2.0.2]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.0.1...2.0.2 [2.0.1]: https://github.com/netscaler/ansible-collection-netscaleradc/compare/2.0.0...2.0.1 [2.0.0]: https://github.com/netscaler/ansible-collection-netscaleradc/releases/tag/2.0.0 - [#288]: https://github.com/netscaler/ansible-collection-netscaleradc/issues/288 [#286]: https://github.com/netscaler/ansible-collection-netscaleradc/issues/286 +[#295]: https://github.com/netscaler/ansible-collection-netscaleradc/issues/295 +[#297]: https://github.com/netscaler/ansible-collection-netscaleradc/issues/297 +[#311]: https://github.com/netscaler/ansible-collection-netscaleradc/issues/311 +[#312]: https://github.com/netscaler/ansible-collection-netscaleradc/issues/312 +[#313]: https://github.com/netscaler/ansible-collection-netscaleradc/issues/313 +[#314]: https://github.com/netscaler/ansible-collection-netscaleradc/issues/314 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 32e3a6bf..64ee468c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,5 +8,6 @@ Not every contribution comes in the form of code. Submitting, confirming, and tr We ask you not to submit security concerns via GitHub. For details on submitting potential security issues please see -## Code Contributions +## Code Contributions + At this point we are not accepting code contributions from outside NetScaler. Please raise an issue if you wish to see a feature. diff --git a/Makefile b/Makefile index 987fe0bd..1fc18a11 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,8 @@ lint: install # pip3 install -r requirements.txt # ./build.sh # cd .. -# rsync -cprv _built_docs/build/html/ docs/ # Do not use --delete-after as this will delete .nojekyll file +# rsync -cprv _built_docs/build/html/ docs/ --delete-after # Do not use --delete-after as this will delete .nojekyll file +# git restore docs/.nojekyll # Run examples/*.yaml playbooks individually @@ -52,7 +53,7 @@ lint: install # skip the playbook which contains "password" in the file name run_examples: @for playbook in examples/*.yaml; do \ - if [[ $$playbook == *"password"* ]]; then \ + if [[ $$playbook == *"password"* || $$playbook == *"login"* || $$playbook == *"logout"* || $$playbook == *"route"* || $$playbook == locationfile.yaml || $$playbook == nsip6.yaml ]]; then \ continue; \ fi; \ echo "Running $$playbook"; \ diff --git a/README.md b/README.md index 4312e348..1b253f1e 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # NetScaler Ansible Collection `version2` - netscaler.adc - > ⚠️ Note: > The earlier `citrix.adc` ansible collection is replaced with the new `netscaler.adc` ansible collection. + > The `citrix.adc` ansible collection is backed up by a seperate branch [citrix.adc](https://github.com/netscaler/ansible-collection-netscaleradc/tree/citrix.adc) @@ -10,7 +10,7 @@ The vision of the `netscaler.adc` collection is to provide a complete declarative interface to configure and manage NetScaler ADC. -If you need any feature or flexibility that is not available in the collection, please raise issues/enhancement-requests/recommendations at +If you need any feature or flexibility that is not available in the collection at the moment, please raise issues/enhancement-requests/recommendations at > :envelope: For any immediate issues or help , reach out to us at ! @@ -20,9 +20,9 @@ We refer the earlier `citrix.adc` ansible collection as `version1` and the new ` This is the `version2` of the NetScaler Ansible Collection. It is a complete rewrite of the collection. The collection is not backward compatible with the `version1` of the collection. -`citrix.adc` collection will be deprecated soon and will not be maintained further. Please migrate to `netscaler.adc` of the collection. +`citrix.adc` collection will be deprecated soon and will not be maintained further. It is recommended to migrate to the `netscaler.adc` collection. -## About the collection (version2) +## About the `netscaler.adc` collection (version2) The collection provides Ansible modules to configure and manage NetScaler ADC appliances. The modules are written using the NITRO API. The modules are idempotent and can be used to configure the NetScaler ADC appliances in declarative manner. @@ -38,9 +38,10 @@ ansible-galaxy collection install netscaler.adc ```bash -git clone --single-branch https://github.com/netscaler/ansible-collection-netscaleradc.git /tmp/ansible-collection-netscaleradc && ansible-galaxy collection install /tmp/ansible-collection-netscaleradc --force +ansible-galaxy collection install "git+https://github.com/citrix/citrix-adc-ansible-modules.git" [--force] ``` +> `--force` option is required if you have already installed the collection via ansible-galaxy. This will overwrite the existing collection with the latest collection from github. ### Verify the installation @@ -132,12 +133,10 @@ Refer to the [supported_modules_matrix.md](supported_modules_matrix.md) file for - [ ] Add more examples - [ ] Write a python script which converts examples/playbook.yaml to module's EXAMPLE documentation - [ ] SSH Connection module -- [ ] Run `ansible-test` on the collection. -- [ ] Run `ansible-lint` on the collection for Python 2.7, 3.6, 3.7, 3.8 and 3.9. - [ ] Test modules against all NetScaler ADC versions. -- [ ] Test modules againsts ansible versions 2.9+ -- [ ] Configure GitHub Actions to automate the collection build and release process. +- [x] Test modules againsts ansible versions 2.9+ +- [x] Configure GitHub Actions to automate the collection build and release process. - [ ] Configure GitHub Actions to automate the collection documentation build and release process. - [ ] Configure GitHub Actions to automate the collection testing process. -- [ ] Configure GitHub Actions to automate the collection linting process. +- [x] Configure GitHub Actions to automate the collection linting process. - [x] Collect NetScaler info (version, etc) and store it in the `facts` dictionary diff --git a/docs/collections/netscaler/adc/aaacertparams_module.html b/docs/collections/netscaler/adc/aaacertparams_module.html index b0916839..f69ae4c5 100644 --- a/docs/collections/netscaler/adc/aaacertparams_module.html +++ b/docs/collections/netscaler/adc/aaacertparams_module.html @@ -131,7 +131,7 @@

netscaler.adc.aaacertparams module – Configuration for certificate parameter resource.

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

@@ -246,9 +246,11 @@

Parameters

The state of the resource being configured by the module on the NetScaler ADC node.

When present the resource will be created if needed and configured according to the module’s parameters.

+

When absent the resource will be deleted from the NetScaler ADC node.

Choices:

  • "present" ← (default)

  • +
  • "absent"

diff --git a/docs/collections/netscaler/adc/aaaglobal_aaapreauthenticationpolicy_binding_module.html b/docs/collections/netscaler/adc/aaaglobal_aaapreauthenticationpolicy_binding_module.html index 3a7b6990..c8816c53 100644 --- a/docs/collections/netscaler/adc/aaaglobal_aaapreauthenticationpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/aaaglobal_aaapreauthenticationpolicy_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.aaaglobal_aaapreauthenticationpolicy_binding module – Binding Resource definition for describing association between aaaglobal and aaapreauthenticationpolicy resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/aaaglobal_authenticationnegotiateaction_binding_module.html b/docs/collections/netscaler/adc/aaaglobal_authenticationnegotiateaction_binding_module.html index faa51c97..19bb29b1 100644 --- a/docs/collections/netscaler/adc/aaaglobal_authenticationnegotiateaction_binding_module.html +++ b/docs/collections/netscaler/adc/aaaglobal_authenticationnegotiateaction_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.aaaglobal_authenticationnegotiateaction_binding module – Binding Resource definition for describing association between aaaglobal and authenticationnegotiateaction resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/aaagroup_aaauser_binding_module.html b/docs/collections/netscaler/adc/aaagroup_aaauser_binding_module.html index b3dd8944..7e5d6861 100644 --- a/docs/collections/netscaler/adc/aaagroup_aaauser_binding_module.html +++ b/docs/collections/netscaler/adc/aaagroup_aaauser_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.aaagroup_aaauser_binding module – Binding Resource definition for describing association between aaagroup and aaauser resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/aaagroup_auditnslogpolicy_binding_module.html b/docs/collections/netscaler/adc/aaagroup_auditnslogpolicy_binding_module.html index bf0dc26d..85578563 100644 --- a/docs/collections/netscaler/adc/aaagroup_auditnslogpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/aaagroup_auditnslogpolicy_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.aaagroup_auditnslogpolicy_binding module – Binding Resource definition for describing association between aaagroup and auditnslogpolicy resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

@@ -287,7 +287,7 @@

Parameters

Bindpoint to which the policy is bound.

Choices:

@@ -266,7 +265,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -285,7 +284,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -297,7 +296,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -306,7 +305,6 @@

Parameters

float

Interval, in seconds, at which to send flow records to the configured collectors.

-

Default: 60.0

@@ -329,7 +327,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -341,7 +339,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -353,7 +351,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -365,7 +363,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -377,7 +375,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -389,7 +387,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -401,7 +399,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -413,7 +411,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -425,7 +423,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -437,7 +435,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -449,7 +447,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -461,7 +459,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -473,7 +471,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -485,7 +483,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -497,7 +495,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -509,7 +507,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -521,7 +519,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -533,7 +531,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -545,7 +543,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -557,7 +555,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -642,7 +640,6 @@

Parameters

float

Interval, in seconds, at which to send security insight flow records to the configured collectors.

-

Default: 600.0

@@ -665,7 +662,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -675,9 +672,11 @@

Parameters

The state of the resource being configured by the module on the NetScaler ADC node.

When present the resource will be created if needed and configured according to the module’s parameters.

+

When absent the resource will be deleted from the NetScaler ADC node.

Choices:

  • "present" ← (default)

  • +
  • "absent"

@@ -689,7 +688,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -701,7 +700,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -712,7 +711,7 @@

Parameters

Algorithm(MD5 or SHA256) to be used for obfuscating MSISDN

Choices:

    -
  • "MD5" ← (default)

  • +
  • "MD5"

  • "SHA256"

@@ -729,7 +728,6 @@

Parameters

float

Refresh interval, in seconds, at which to export the template data. Because data transmission is in UDP, the templates must be resent at regular intervals.

-

Default: 600.0

@@ -749,7 +747,6 @@

Parameters

float

MTU, in bytes, for IPFIX UDP packets.

-

Default: 1472.0

@@ -791,7 +788,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -803,7 +800,7 @@

ParametersChoices:

  • "ENABLED"

  • -
  • "DISABLED" ← (default)

  • +
  • "DISABLED"

@@ -821,7 +818,15 @@

Notes

Examples

-

+
- name: Sample Playbook
+  hosts: localhost
+  gather_facts: false
+  tasks:
+    - name: Sample Task | appflowparam
+      delegate_to: localhost
+      netscaler.adc.appflowparam:
+        state: present
+        observationpointid: '2370493962'
 
diff --git a/docs/collections/netscaler/adc/appflowpolicy_module.html b/docs/collections/netscaler/adc/appflowpolicy_module.html index 34cc814e..baae8b09 100644 --- a/docs/collections/netscaler/adc/appflowpolicy_module.html +++ b/docs/collections/netscaler/adc/appflowpolicy_module.html @@ -131,7 +131,7 @@

netscaler.adc.appflowpolicy module – Configuration for AppFlow policy resource.

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appflowpolicylabel_appflowpolicy_binding_module.html b/docs/collections/netscaler/adc/appflowpolicylabel_appflowpolicy_binding_module.html index 93db837f..34ea9127 100644 --- a/docs/collections/netscaler/adc/appflowpolicylabel_appflowpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/appflowpolicylabel_appflowpolicy_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appflowpolicylabel_appflowpolicy_binding module – Binding Resource definition for describing association between appflowpolicylabel and appflowpolicy resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appflowpolicylabel_module.html b/docs/collections/netscaler/adc/appflowpolicylabel_module.html index d3311ae9..f65e3c53 100644 --- a/docs/collections/netscaler/adc/appflowpolicylabel_module.html +++ b/docs/collections/netscaler/adc/appflowpolicylabel_module.html @@ -131,7 +131,7 @@

netscaler.adc.appflowpolicylabel module – Configuration for AppFlow policy label resource.

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

@@ -272,7 +272,7 @@

Parameters

Type of traffic evaluated by the policies bound to the policy label.

Choices:

    -
  • "HTTP" ← (default)

  • +
  • "HTTP"

  • "OTHERTCP"

  • "HTTP_QUIC"

diff --git a/docs/collections/netscaler/adc/appfwarchive_module.html b/docs/collections/netscaler/adc/appfwarchive_module.html index 790bfcce..39dc8993 100644 --- a/docs/collections/netscaler/adc/appfwarchive_module.html +++ b/docs/collections/netscaler/adc/appfwarchive_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwarchive module – Configuration for archive resource.

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

@@ -267,6 +267,7 @@

ParametersChoices:

  • "absent"

  • +
  • "imported"

Default: "present"

diff --git a/docs/collections/netscaler/adc/appfwconfidfield_module.html b/docs/collections/netscaler/adc/appfwconfidfield_module.html index 284e0813..f1b89697 100644 --- a/docs/collections/netscaler/adc/appfwconfidfield_module.html +++ b/docs/collections/netscaler/adc/appfwconfidfield_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwconfidfield module – Configuration for configured confidential form fields resource.

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

@@ -195,7 +195,7 @@

ParametersChoices:

  • "REGEX"

  • -
  • "NOTREGEX" ← (default)

  • +
  • "NOTREGEX"

diff --git a/docs/collections/netscaler/adc/appfwcustomsettings_module.html b/docs/collections/netscaler/adc/appfwcustomsettings_module.html index ec719645..acf46fb5 100644 --- a/docs/collections/netscaler/adc/appfwcustomsettings_module.html +++ b/docs/collections/netscaler/adc/appfwcustomsettings_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwcustomsettings module – Configuration for application firewall custom settings XML configuration resource.

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appfwfieldtype_module.html b/docs/collections/netscaler/adc/appfwfieldtype_module.html index c794c6a8..8a9ca1d7 100644 --- a/docs/collections/netscaler/adc/appfwfieldtype_module.html +++ b/docs/collections/netscaler/adc/appfwfieldtype_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwfieldtype module – Configuration for application firewall form field type resource.

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appfwglobal_appfwpolicy_binding_module.html b/docs/collections/netscaler/adc/appfwglobal_appfwpolicy_binding_module.html index 8d75d20e..7b697140 100644 --- a/docs/collections/netscaler/adc/appfwglobal_appfwpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/appfwglobal_appfwpolicy_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwglobal_appfwpolicy_binding module – Binding Resource definition for describing association between appfwglobal and appfwpolicy resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

@@ -178,7 +178,7 @@

Parameters

0

Choices:

-

Default: ["REDIRECT"]

@@ -213,7 +212,7 @@

Parameters

Deny List value type

Choices:

    -
  • "literal" ← (default)

  • +
  • "literal"

  • "PCRE"

  • "Expression"

diff --git a/docs/collections/netscaler/adc/appfwprofile_denyurl_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_denyurl_binding_module.html index 40919936..68b748f4 100644 --- a/docs/collections/netscaler/adc/appfwprofile_denyurl_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_denyurl_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile_denyurl_binding module – Binding Resource definition for describing association between appfwprofile and denyurl resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appfwprofile_excluderescontenttype_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_excluderescontenttype_binding_module.html index 9be3c543..f22e61b6 100644 --- a/docs/collections/netscaler/adc/appfwprofile_excluderescontenttype_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_excluderescontenttype_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile_excluderescontenttype_binding module – Binding Resource definition for describing association between appfwprofile and excluderescontenttype resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appfwprofile_fakeaccount_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_fakeaccount_binding_module.html index b006c44b..dc184754 100644 --- a/docs/collections/netscaler/adc/appfwprofile_fakeaccount_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_fakeaccount_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile_fakeaccount_binding module – Binding Resource definition for describing association between appfwprofile and fakeaccount resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appfwprofile_fieldconsistency_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_fieldconsistency_binding_module.html index 6c1f632f..3c81f24f 100644 --- a/docs/collections/netscaler/adc/appfwprofile_fieldconsistency_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_fieldconsistency_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile_fieldconsistency_binding module – Binding Resource definition for describing association between appfwprofile and fieldconsistency resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appfwprofile_fieldformat_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_fieldformat_binding_module.html index a5aa4844..6a217cd1 100644 --- a/docs/collections/netscaler/adc/appfwprofile_fieldformat_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_fieldformat_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile_fieldformat_binding module – Binding Resource definition for describing association between appfwprofile and fieldformat resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appfwprofile_fileuploadtype_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_fileuploadtype_binding_module.html index 0c7baa39..3918ad03 100644 --- a/docs/collections/netscaler/adc/appfwprofile_fileuploadtype_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_fileuploadtype_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile_fileuploadtype_binding module – Binding Resource definition for describing association between appfwprofile and fileuploadtype resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

@@ -239,7 +239,7 @@

ParametersChoices:

  • "REGEX"

  • -
  • "NOTREGEX" ← (default)

  • +
  • "NOTREGEX"

diff --git a/docs/collections/netscaler/adc/appfwprofile_jsonblockkeyword_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_jsonblockkeyword_binding_module.html index 17bcb6a8..a4e9729e 100644 --- a/docs/collections/netscaler/adc/appfwprofile_jsonblockkeyword_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_jsonblockkeyword_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile_jsonblockkeyword_binding module – Binding Resource definition for describing association between appfwprofile and jsonblockkeyword resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

@@ -210,7 +210,7 @@

ParametersChoices:

  • "REGEX"

  • -
  • "NOTREGEX" ← (default)

  • +
  • "NOTREGEX"

diff --git a/docs/collections/netscaler/adc/appfwprofile_jsoncmdurl_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_jsoncmdurl_binding_module.html index aa82f5b1..aff390c8 100644 --- a/docs/collections/netscaler/adc/appfwprofile_jsoncmdurl_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_jsoncmdurl_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile_jsoncmdurl_binding module – Binding Resource definition for describing association between appfwprofile and jsoncmdurl resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appfwprofile_jsondosurl_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_jsondosurl_binding_module.html index 18774c79..05d6a3d8 100644 --- a/docs/collections/netscaler/adc/appfwprofile_jsondosurl_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_jsondosurl_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile_jsondosurl_binding module – Binding Resource definition for describing association between appfwprofile and jsondosurl resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

@@ -230,7 +230,6 @@

Parameters

float

Maximum array length in the any of JSON object. This check protects against arrays having large lengths.

-

Default: 10000.0

@@ -250,7 +249,6 @@

Parameters

float

Maximum allowed nesting depth of JSON document. JSON allows one to nest the containers (object and array) in any order to any depth. This check protects against documents that have excessive depth of hierarchy.

-

Default: 5.0

@@ -270,7 +268,6 @@

Parameters

float

Maximum document length of JSON document, in bytes.

-

Default: 20000000.0

@@ -290,7 +287,6 @@

Parameters

float

Maximum key count in the any of JSON object. This check protects against objects that have large number of keys.

-

Default: 10000.0

@@ -310,7 +306,6 @@

Parameters

float

Maximum key length in the any of JSON object. This check protects against objects that have large keys.

-

Default: 128.0

@@ -330,7 +325,6 @@

Parameters

float

Maximum string length in the JSON. This check protects against strings that have large length.

-

Default: 1000000.0

diff --git a/docs/collections/netscaler/adc/appfwprofile_jsonsqlurl_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_jsonsqlurl_binding_module.html index e28afed5..e6ad51bd 100644 --- a/docs/collections/netscaler/adc/appfwprofile_jsonsqlurl_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_jsonsqlurl_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile_jsonsqlurl_binding module – Binding Resource definition for describing association between appfwprofile and jsonsqlurl resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appfwprofile_jsonxssurl_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_jsonxssurl_binding_module.html index 3711128a..b04f9f4f 100644 --- a/docs/collections/netscaler/adc/appfwprofile_jsonxssurl_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_jsonxssurl_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile_jsonxssurl_binding module – Binding Resource definition for describing association between appfwprofile and jsonxssurl resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appfwprofile_logexpression_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_logexpression_binding_module.html index df9e4609..6ce47878 100644 --- a/docs/collections/netscaler/adc/appfwprofile_logexpression_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_logexpression_binding_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile_logexpression_binding module – Binding Resource definition for describing association between appfwprofile and logexpression resources

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

diff --git a/docs/collections/netscaler/adc/appfwprofile_module.html b/docs/collections/netscaler/adc/appfwprofile_module.html index 609aebd1..5fe3223c 100644 --- a/docs/collections/netscaler/adc/appfwprofile_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_module.html @@ -131,7 +131,7 @@

netscaler.adc.appfwprofile module – Configuration for application firewall profile resource.

Note

-

This module is part of the netscaler.adc collection (version 2.0.2).

+

This module is part of the netscaler.adc collection (version 2.1.0).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install netscaler.adc.

@@ -173,7 +173,7 @@

Parameters* All - Add both HTTPOnly and Secure flags to cookies.

Choices:

@@ -1215,7 +1215,7 @@

ParametersChoices:

  • "ON"

  • -
  • "OFF" ← (default)

  • +
  • "OFF"

@@ -1243,12 +1243,11 @@

ParametersCLI users: To enable one or more actions, type “set appfw profile -blockKeywordAction” followed by the actions to be enabled. To turn off all actions, type “set appfw profile -blockKeywordAction none“.

Choices:

    -
  • "none" ← (default)

  • +
  • "none"

  • "block"

  • "log"

  • "stats"

-

Default: ["none"]

Maximum length, in characters, for cookies sent to your protected web sites. Requests with longer cookies are blocked.

-

Default: 4096.0

@@ -1283,7 +1281,6 @@

Parameters

float

Maximum length, in characters, for HTTP headers in requests sent to your protected web sites. Requests with longer headers are blocked.

-

Default: 4096.0

@@ -1291,7 +1288,6 @@

Parameters

float

Maximum length, in bytes, for query string sent to your protected web sites. Requests with longer query strings are blocked.

-

Default: 65535.0

@@ -1299,7 +1295,6 @@

Parameters

float

Maximum length, in bytes, for the total HTTP header length in requests sent to your protected web sites. The minimum value of this and maxHeaderLen in httpProfile will be used. Requests with longer length are blocked.

-

Default: 65535.0

@@ -1307,7 +1302,6 @@

Parameters

float

Maximum length, in characters, for URLs on your protected web sites. Requests with longer URLs are blocked.

-

Default: 1024.0

@@ -1365,12 +1359,11 @@

ParametersCLI users: To enable one or more actions, type “set appfw profile -cmdInjectionAction” followed by the actions to be enabled. To turn off all actions, type “set appfw profile -cmdInjectionAction none“.

Choices:

    -
  • "none" ← (default)

  • +
  • "none"

  • "block"

  • "log"

  • "stats"

-

Default: ["none"]

@@ -1400,7 +1393,7 @@

Parameters

"CMDSplChar"

  • "CMDKeyword"

  • "CMDSplCharORKeyword"

  • -
  • "CMDSplCharANDKeyword" ← (default)

  • +
  • "CMDSplCharANDKeyword"

  • "None"

  • @@ -1446,13 +1439,12 @@

    ParametersCLI users: To enable one or more actions, type “set appfw profile -cookieConsistencyAction” followed by the actions to be enabled. To turn off all actions, type “set appfw profile -cookieConsistencyAction none“.

    Choices:

      -
    • "none" ← (default)

    • +
    • "none"

    • "block"

    • "learn"

    • "log"

    • "stats"

    -

    Default: ["none"]

    @@ -1516,7 +1507,7 @@

    ParametersChoices:

    • "None"

    • -
    • "LAX" ← (default)

    • +
    • "LAX"

    • "STRICT"

    @@ -1534,7 +1525,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -1545,7 +1536,7 @@

    Parameters @@ -1625,7 +1614,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -1638,7 +1627,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -1655,13 +1644,12 @@

    ParametersCLI users: To enable one or more actions, type “set appfw profile -CSRFTagAction” followed by the actions to be enabled. To turn off all actions, type “set appfw profile -CSRFTagAction none“.

    Choices:

      -
    • "none" ← (default)

    • +
    • "none"

    • "block"

    • "learn"

    • "log"

    • "stats"

    -

    Default: ["none"]

    Maximum length, in characters, for data entered into a field that is assigned the default field type.

    -

    Default: 65535.0

    @@ -1819,7 +1806,7 @@

    Parameters

    Exempt URLs that pass the Start URL closure check from SQL injection, cross-site script, field format and field consistency security checks at locations other than headers.

    Choices:

      -
    • "ON" ← (default)

    • +
    • "ON"

    • "OFF"

    @@ -1832,7 +1819,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -1849,13 +1836,12 @@

    ParametersCLI users: To enable one or more actions, type “set appfw profile -fieldConsistencyaction” followed by the actions to be enabled. To turn off all actions, type “set appfw profile -fieldConsistencyAction none“.

    Choices:

      -
    • "none" ← (default)

    • +
    • "none"

    • "block"

    • "learn"

    • "log"

    • "stats"

    -

    Default: ["none"]

    Maximum allowed number of file uploads per form-submission request. The maximum setting (65535) allows an unlimited number of uploads.

    -

    Default: 65535.0

    @@ -1947,7 +1932,6 @@

    Parameters

    float

    Response status code associated with HTML error page. Non-empty HTML error object must be imported to the application firewall profile for the status code.

    -

    Default: 200.0

    @@ -2040,7 +2024,7 @@

    ParametersChoices:

    • "asp_mode"

    • -
    • "secure_mode" ← (default)

    • +
    • "secure_mode"

    @@ -2056,12 +2040,11 @@

    ParametersCLI users: To enable one or more actions, type “set appfw profile -JSONBlockKeywordAction” followed by the actions to be enabled. To turn off all actions, type “set appfw profile -JSONBlockKeywordAction none“.

    Choices:

      -
    • "none" ← (default)

    • +
    • "none"

    • "block"

    • "log"

    • "stats"

    -

    Default: ["none"]

    @@ -2110,7 +2093,7 @@

    Parameters

    "CMDSplChar"

  • "CMDKeyword"

  • "CMDSplCharORKeyword"

  • -
  • "CMDSplCharANDKeyword" ← (default)

  • +
  • "CMDSplCharANDKeyword"

  • "None"

  • @@ -2148,7 +2131,6 @@

    Parameters

    float

    Response status code associated with JSON error page. Non-empty JSON error object must be imported to the application firewall profile for the status code.

    -

    Default: 200.0

    @@ -2204,7 +2186,7 @@

    Parameters

    "SQLSplChar"

  • "SQLKeyword"

  • "SQLSplCharORKeyword"

  • -
  • "SQLSplCharANDKeyword" ← (default)

  • +
  • "SQLSplCharANDKeyword"

  • "None"

  • @@ -2236,7 +2218,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -2334,7 +2316,7 @@

    Parameters* OFF - Partial requests by the client are changed to full requests to the backend server

    Choices:

      -
    • "ON" ← (default)

    • +
    • "ON"

    • "OFF"

    @@ -2358,7 +2340,7 @@

    Parameters

    Configure whether the application firewall should use percentage recursive decoding

    Choices:

      -
    • "ON" ← (default)

    • +
    • "ON"

    • "OFF"

    @@ -2368,7 +2350,6 @@

    Parameters

    float

    Maximum allowed HTTP post body size, in bytes. Maximum supported value is 10GB. Citrix recommends enabling streaming option for large values of post body limit (>20MB).

    -

    Default: 20000000.0

    @@ -2393,7 +2374,6 @@

    Parameters

    float

    Maximum allowed HTTP post body size for signature inspection for location HTTP_POST_BODY in the signatures, in bytes. Note that the changes in value could impact CPU and latency profile.

    -

    Default: 2048.0

    @@ -2517,7 +2497,7 @@

    Parameters @@ -2573,7 +2553,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -2585,7 +2565,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -2597,7 +2577,7 @@

    ParametersMost SQL servers require a special string to activate an SQL request, so SQL code without a special string is harmless to most SQL servers.

    Choices:

      -
    • "ON" ← (default)

    • +
    • "ON"

    • "OFF"

    @@ -2627,7 +2607,7 @@

    Parameters

    Specifies SQL Injection rule type: ALLOW/DENY. If ALLOW rule type is configured then allow list rules are used, if DENY rule type is configured then deny rules are used.

    Choices:

      -
    • "ALLOW" ← (default)

    • +
    • "ALLOW"

    • "DENY"

    @@ -2641,7 +2621,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -2660,7 +2640,7 @@

    Parameters

    "SQLSplChar"

  • "SQLKeyword"

  • "SQLSplCharORKeyword"

  • -
  • "SQLSplCharANDKeyword" ← (default)

  • +
  • "SQLSplCharANDKeyword"

  • "None"

  • @@ -2694,7 +2674,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -2720,7 +2700,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -2733,7 +2713,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -2744,7 +2724,7 @@

    Parameters @@ -2788,11 +2768,10 @@

    Parameters* HTML XML JSON - Sites that contain HTML, XML and JSON content.

    Choices:

      -
    • "HTML" ← (default)

    • +
    • "HTML"

    • "XML"

    • "JSON"

    -

    Default: ["HTML"]

    @@ -2815,7 +2794,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -2838,7 +2817,7 @@

    Parameters

    Response status code associated with XML error page. Non-empty XML error object must be imported to the application firewall profile for the status code.

    -

    Default: 200.0

    @@ -2989,7 +2967,7 @@

    Parameters

    Check only form fields that contain SQL special characters, which most SQL servers require before accepting an SQL command, for injected SQL.

    Choices:

      -
    • "ON" ← (default)

    • +
    • "ON"

    • "OFF"

    @@ -3005,7 +2983,7 @@

    Parameters* ANSI Nested - Exempt content that is part of any type of comment.

    Choices:

    diff --git a/docs/collections/netscaler/adc/appfwprofile_safeobject_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_safeobject_binding_module.html index b4126ab0..52c4c398 100644 --- a/docs/collections/netscaler/adc/appfwprofile_safeobject_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_safeobject_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwprofile_safeobject_binding module – Binding Resource definition for describing association between appfwprofile and safeobject resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/appfwprofile_sqlinjection_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_sqlinjection_binding_module.html index 5928ab64..59c6e405 100644 --- a/docs/collections/netscaler/adc/appfwprofile_sqlinjection_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_sqlinjection_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwprofile_sqlinjection_binding module – Binding Resource definition for describing association between appfwprofile and sqlinjection resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/appfwprofile_starturl_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_starturl_binding_module.html index a491ea45..fa28e70e 100644 --- a/docs/collections/netscaler/adc/appfwprofile_starturl_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_starturl_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwprofile_starturl_binding module – Binding Resource definition for describing association between appfwprofile and starturl resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/appfwprofile_trustedlearningclients_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_trustedlearningclients_binding_module.html index f6534068..3c9586d5 100644 --- a/docs/collections/netscaler/adc/appfwprofile_trustedlearningclients_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_trustedlearningclients_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwprofile_trustedlearningclients_binding module – Binding Resource definition for describing association between appfwprofile and trustedlearningclients resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/appfwprofile_xmlattachmenturl_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_xmlattachmenturl_binding_module.html index 9e14018e..b2814dd3 100644 --- a/docs/collections/netscaler/adc/appfwprofile_xmlattachmenturl_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_xmlattachmenturl_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwprofile_xmlattachmenturl_binding module – Binding Resource definition for describing association between appfwprofile and xmlattachmenturl resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/appfwprofile_xmldosurl_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_xmldosurl_binding_module.html index 36d4e7c3..fc3355d1 100644 --- a/docs/collections/netscaler/adc/appfwprofile_xmldosurl_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_xmldosurl_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwprofile_xmldosurl_binding module – Binding Resource definition for describing association between appfwprofile and xmldosurl resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/appfwprofile_xmlsqlinjection_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_xmlsqlinjection_binding_module.html index dcbaa797..c67e54bb 100644 --- a/docs/collections/netscaler/adc/appfwprofile_xmlsqlinjection_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_xmlsqlinjection_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwprofile_xmlsqlinjection_binding module – Binding Resource definition for describing association between appfwprofile and xmlsqlinjection resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/appfwprofile_xmlvalidationurl_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_xmlvalidationurl_binding_module.html index 21168b07..41d66612 100644 --- a/docs/collections/netscaler/adc/appfwprofile_xmlvalidationurl_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_xmlvalidationurl_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwprofile_xmlvalidationurl_binding module – Binding Resource definition for describing association between appfwprofile and xmlvalidationurl resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/appfwprofile_xmlwsiurl_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_xmlwsiurl_binding_module.html index 6a0cef7f..e204acaf 100644 --- a/docs/collections/netscaler/adc/appfwprofile_xmlwsiurl_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_xmlwsiurl_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwprofile_xmlwsiurl_binding module – Binding Resource definition for describing association between appfwprofile and xmlwsiurl resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/appfwprofile_xmlxss_binding_module.html b/docs/collections/netscaler/adc/appfwprofile_xmlxss_binding_module.html index 8589e9c4..7b444e96 100644 --- a/docs/collections/netscaler/adc/appfwprofile_xmlxss_binding_module.html +++ b/docs/collections/netscaler/adc/appfwprofile_xmlxss_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwprofile_xmlxss_binding module – Binding Resource definition for describing association between appfwprofile and xmlxss resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/appfwprotofile_module.html b/docs/collections/netscaler/adc/appfwprotofile_module.html index 172e3059..9c696cab 100644 --- a/docs/collections/netscaler/adc/appfwprotofile_module.html +++ b/docs/collections/netscaler/adc/appfwprotofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwprotofile module – Configuration for gRPC protofile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -268,6 +268,7 @@

    ParametersChoices:

    • "absent"

    • +
    • "imported"

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/appfwsettings_module.html b/docs/collections/netscaler/adc/appfwsettings_module.html index d01e877b..c72f8ead 100644 --- a/docs/collections/netscaler/adc/appfwsettings_module.html +++ b/docs/collections/netscaler/adc/appfwsettings_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwsettings module – Configuration for AS settings resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -191,7 +191,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -214,7 +214,6 @@

    Parameters

    string

    Profile to use when a connection does not match any policy. Default setting is APPFW_BYPASS, which sends unmatched connections back to the Citrix ADC without attempting to filter them further.

    -

    Default: "APPFW_BYPASS"

    @@ -237,7 +236,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -246,7 +245,6 @@

    Parameters

    float

    Cumulative total maximum number of bytes in web forms imported to a protected web site. If a user attempts to upload files with a total byte count higher than the specified limit, the application firewall blocks the request.

    -

    Default: 134217728.0

    @@ -254,7 +252,6 @@

    Parameters

    float

    Maximum number of connections per second that the application firewall learning engine examines to generate new relaxations for learning-enabled security checks. The application firewall drops any connections above this limit from the list of connections used by the learning engine.

    -

    Default: 400.0

    Proxy Server Port to get updated signatures from AWS.

    -

    Default: 8080

    @@ -389,7 +385,6 @@

    Parameters

    float

    Maximum number of sessions that the application firewall allows to be active, regardless of user activity. After the max_limit reaches, No more user session will be created .

    -

    Default: 100000.0

    @@ -397,7 +392,6 @@

    Parameters

    float

    Timeout, in seconds, after which a user session is terminated. Before continuing to use the protected web site, the user must establish a new session by opening a designated start URL.

    -

    Default: 900.0

    @@ -417,7 +411,6 @@

    Parameters

    string

    URL to download the mapping file from server

    -

    Default: "https://s3.amazonaws.com/NSAppFwSignatures/SignaturesMapping.xml"

    @@ -426,9 +419,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -438,7 +433,6 @@

    Parameters

    Profile to use when an application firewall policy evaluates to undefined (UNDEF).

    An UNDEF event indicates an internal error condition. The APPFW_BLOCK built-in profile is the default setting. You can specify a different built-in or user-created profile as the UNDEF profile.

    -

    Default: "APPFW_BLOCK"

    diff --git a/docs/collections/netscaler/adc/appfwsignatures_module.html b/docs/collections/netscaler/adc/appfwsignatures_module.html index cbcddedf..8b7056a2 100644 --- a/docs/collections/netscaler/adc/appfwsignatures_module.html +++ b/docs/collections/netscaler/adc/appfwsignatures_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwsignatures module – Configuration for application firewall signatures XML configuration resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -193,7 +193,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -218,7 +218,7 @@

    Parameters

    Flag used to enable/disable enable signature rule IDs/Signature Category

    Choices:

      -
    • "ON" ← (default)

    • +
    • "ON"

    • "OFF"

    @@ -364,6 +364,7 @@

    ParametersChoices:

    • "absent"

    • +
    • "imported"

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/appfwurlencodedformcontenttype_module.html b/docs/collections/netscaler/adc/appfwurlencodedformcontenttype_module.html index 0f6ff7be..67bbc62e 100644 --- a/docs/collections/netscaler/adc/appfwurlencodedformcontenttype_module.html +++ b/docs/collections/netscaler/adc/appfwurlencodedformcontenttype_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwurlencodedformcontenttype module – Configuration for Urlencoded form content type resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "REGEX"

    • -
    • "NOTREGEX" ← (default)

    • +
    • "NOTREGEX"

    @@ -285,7 +285,21 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | appfwurlEncodedFormContentType
    +      delegate_to: localhost
    +      netscaler.adc.appfwurlencodedformcontenttype:
    +        state: present
    +        urlencodedformcontenttypevalue: application/x-www-form-urlencoded
    +    - name: Sample Task | appfwurlEncodedFormContentType | 2
    +      delegate_to: localhost
    +      netscaler.adc.appfwurlencodedformcontenttype:
    +        state: present
    +        urlencodedformcontenttypevalue: application/x-www-form-urlencoded.*
    +        isregex: REGEX
     
    diff --git a/docs/collections/netscaler/adc/appfwwsdl_module.html b/docs/collections/netscaler/adc/appfwwsdl_module.html index d3674d17..50a4d6a5 100644 --- a/docs/collections/netscaler/adc/appfwwsdl_module.html +++ b/docs/collections/netscaler/adc/appfwwsdl_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwwsdl module – Configuration for WSDL file resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -269,6 +269,7 @@

    ParametersChoices:

    • "absent"

    • +
    • "imported"

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/appfwxmlcontenttype_module.html b/docs/collections/netscaler/adc/appfwxmlcontenttype_module.html index ea9662af..2ac47803 100644 --- a/docs/collections/netscaler/adc/appfwxmlcontenttype_module.html +++ b/docs/collections/netscaler/adc/appfwxmlcontenttype_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwxmlcontenttype module – Configuration for XML Content type resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "REGEX"

    • -
    • "NOTREGEX" ← (default)

    • +
    • "NOTREGEX"

    @@ -285,7 +285,16 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | appfwXMLContentType
    +      delegate_to: localhost
    +      netscaler.adc.appfwxmlcontenttype:
    +        state: present
    +        xmlcontenttypevalue: .*/xml
    +        isregex: REGEX
     
    diff --git a/docs/collections/netscaler/adc/appfwxmlerrorpage_module.html b/docs/collections/netscaler/adc/appfwxmlerrorpage_module.html index 07e35f19..89644df9 100644 --- a/docs/collections/netscaler/adc/appfwxmlerrorpage_module.html +++ b/docs/collections/netscaler/adc/appfwxmlerrorpage_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwxmlerrorpage module – Configuration for xml error page resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -269,6 +269,7 @@

    ParametersChoices:

    • "absent"

    • +
    • "imported"

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/appfwxmlschema_module.html b/docs/collections/netscaler/adc/appfwxmlschema_module.html index 65779fe4..30366f09 100644 --- a/docs/collections/netscaler/adc/appfwxmlschema_module.html +++ b/docs/collections/netscaler/adc/appfwxmlschema_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appfwxmlschema module – Configuration for XML schema resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -269,6 +269,7 @@

    ParametersChoices:

    • "absent"

    • +
    • "imported"

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/application_module.html b/docs/collections/netscaler/adc/application_module.html index 6d5f48a6..65495b04 100644 --- a/docs/collections/netscaler/adc/application_module.html +++ b/docs/collections/netscaler/adc/application_module.html @@ -131,7 +131,7 @@

    netscaler.adc.application module – Configuration for application resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -256,6 +256,7 @@

    ParametersChoices:

    • "absent"

    • +
    • "imported"

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/appqoeaction_module.html b/docs/collections/netscaler/adc/appqoeaction_module.html index 33cfef76..2ff8c3ed 100644 --- a/docs/collections/netscaler/adc/appqoeaction_module.html +++ b/docs/collections/netscaler/adc/appqoeaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appqoeaction module – Configuration for AppQoS action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -279,7 +279,6 @@

    Parameters

    float

    Retry count

    -

    Default: 3.0

    diff --git a/docs/collections/netscaler/adc/appqoecustomresp_module.html b/docs/collections/netscaler/adc/appqoecustomresp_module.html index 42d1b491..0bb5ef22 100644 --- a/docs/collections/netscaler/adc/appqoecustomresp_module.html +++ b/docs/collections/netscaler/adc/appqoecustomresp_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appqoecustomresp module – Configuration for AppQoE custom response page resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -249,6 +249,7 @@

    ParametersChoices:

    • "absent"

    • +
    • "imported"

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/appqoeparameter_module.html b/docs/collections/netscaler/adc/appqoeparameter_module.html index 1d8388bf..9199a5a9 100644 --- a/docs/collections/netscaler/adc/appqoeparameter_module.html +++ b/docs/collections/netscaler/adc/appqoeparameter_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appqoeparameter module – Configuration for QOS parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -176,7 +176,6 @@

    Parameters

    float

    average number of client connections, that can sit in service waiting queue

    -

    Default: 1000000.0

    @@ -184,7 +183,6 @@

    Parameters

    float

    average number of client connection that can queue up on vserver level without triggering DoS mitigation module

    -

    Default: 2000.0

    @@ -192,7 +190,6 @@

    Parameters

    float

    maximum bandwidth which will determine whether to send alternate content response

    -

    Default: 100.0

    @@ -255,7 +252,6 @@

    Parameters

    float

    Time, in seconds, between the first time and the next time the AppQoE alternative content window is displayed. The alternative content window is displayed only once during a session for the same browser accessing a configured URL, so this parameter determines the length of a session.

    -

    Default: 300.0

    @@ -264,9 +260,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/appqoepolicy_module.html b/docs/collections/netscaler/adc/appqoepolicy_module.html index 1f1c969a..a9d1944e 100644 --- a/docs/collections/netscaler/adc/appqoepolicy_module.html +++ b/docs/collections/netscaler/adc/appqoepolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.appqoepolicy module – Configuration for AppQoS policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/arp_module.html b/docs/collections/netscaler/adc/arp_module.html index 882112c3..9f172d55 100644 --- a/docs/collections/netscaler/adc/arp_module.html +++ b/docs/collections/netscaler/adc/arp_module.html @@ -131,7 +131,7 @@

    netscaler.adc.arp module – Configuration for arp resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/arpparam_module.html b/docs/collections/netscaler/adc/arpparam_module.html index b286e3f1..8bf2a0f7 100644 --- a/docs/collections/netscaler/adc/arpparam_module.html +++ b/docs/collections/netscaler/adc/arpparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.arpparam module – Configuration for Global arp parameters resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -234,7 +234,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -244,9 +244,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -255,7 +257,6 @@

    Parameters

    float

    Time-out value (aging time) for the dynamically learned ARP entries, in seconds. The new value applies only to ARP entries that are dynamically learned after the new value is set. Previously existing ARP entries expire after the previously configured aging time.

    -

    Default: 1200.0

    diff --git a/docs/collections/netscaler/adc/auditmessageaction_module.html b/docs/collections/netscaler/adc/auditmessageaction_module.html index c425e306..8b211629 100644 --- a/docs/collections/netscaler/adc/auditmessageaction_module.html +++ b/docs/collections/netscaler/adc/auditmessageaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.auditmessageaction module – Configuration for message action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    diff --git a/docs/collections/netscaler/adc/auditnslogaction_module.html b/docs/collections/netscaler/adc/auditnslogaction_module.html index 2bc93ded..cd3e215b 100644 --- a/docs/collections/netscaler/adc/auditnslogaction_module.html +++ b/docs/collections/netscaler/adc/auditnslogaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.auditnslogaction module – Configuration for ns log action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -254,7 +254,6 @@

    Parameters

    integer

    Time, in seconds, for which the Citrix ADC waits before sending another DNS query to resolve the host name of the audit server if the last query failed.

    -

    Default: 5

    diff --git a/docs/collections/netscaler/adc/auditnslogglobal_auditnslogpolicy_binding_module.html b/docs/collections/netscaler/adc/auditnslogglobal_auditnslogpolicy_binding_module.html index 3c374709..0c8c8c52 100644 --- a/docs/collections/netscaler/adc/auditnslogglobal_auditnslogpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/auditnslogglobal_auditnslogpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.auditnslogglobal_auditnslogpolicy_binding module – Binding Resource definition for describing association between auditnslogglobal and auditnslogpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -192,7 +192,7 @@

    Parameters

    0

    Choices:

    @@ -887,7 +886,7 @@

    Parameters

    Option to Reject unsigned SAML Requests. ON option denies any authentication requests that arrive without signature.

    Choices:

      -
    • "ON" ← (default)

    • +
    • "ON"

    • "OFF"

    @@ -900,7 +899,7 @@

    ParametersChoices:

    • "REDIRECT"

    • -
    • "POST" ← (default)

    • +
    • "POST"

    • "ARTIFACT"

    @@ -961,7 +960,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -980,7 +979,7 @@

    ParametersChoices:

    • "NONE"

    • -
    • "ASSERTION" ← (default)

    • +
    • "ASSERTION"

    • "RESPONSE"

    • "BOTH"

    @@ -994,7 +993,7 @@

    ParametersChoices:

    • "RSA-SHA1"

    • -
    • "RSA-SHA256" ← (default)

    • +
    • "RSA-SHA256"

    @@ -1010,7 +1009,6 @@

    Parameters

    float

    This option specifies the number of minutes on either side of current time that the assertion would be valid. For example, if skewTime is 10, then assertion would be valid from (current time - 10) min to (current time + 10) min, ie 20min in all.

    -

    Default: 5.0

    diff --git a/docs/collections/netscaler/adc/authenticationsamlpolicy_module.html b/docs/collections/netscaler/adc/authenticationsamlpolicy_module.html index 38744e4f..4cf26e75 100644 --- a/docs/collections/netscaler/adc/authenticationsamlpolicy_module.html +++ b/docs/collections/netscaler/adc/authenticationsamlpolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationsamlpolicy module – Configuration for AAA Saml policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationsmartaccesspolicy_module.html b/docs/collections/netscaler/adc/authenticationsmartaccesspolicy_module.html index ba58772b..e62e4905 100644 --- a/docs/collections/netscaler/adc/authenticationsmartaccesspolicy_module.html +++ b/docs/collections/netscaler/adc/authenticationsmartaccesspolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationsmartaccesspolicy module – Configuration for SmartAccess policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationsmartaccessprofile_module.html b/docs/collections/netscaler/adc/authenticationsmartaccessprofile_module.html index da866aeb..87f06099 100644 --- a/docs/collections/netscaler/adc/authenticationsmartaccessprofile_module.html +++ b/docs/collections/netscaler/adc/authenticationsmartaccessprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationsmartaccessprofile module – Configuration for SmartAccess profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationstorefrontauthaction_module.html b/docs/collections/netscaler/adc/authenticationstorefrontauthaction_module.html index dc4fc6f2..76cef846 100644 --- a/docs/collections/netscaler/adc/authenticationstorefrontauthaction_module.html +++ b/docs/collections/netscaler/adc/authenticationstorefrontauthaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationstorefrontauthaction module – Configuration for Storefront authentication action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationtacacsaction_module.html b/docs/collections/netscaler/adc/authenticationtacacsaction_module.html index e2d61dfc..ea990ab4 100644 --- a/docs/collections/netscaler/adc/authenticationtacacsaction_module.html +++ b/docs/collections/netscaler/adc/authenticationtacacsaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationtacacsaction module – Configuration for TACACS action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -334,7 +334,6 @@

    Parameters

    float

    Number of seconds the Citrix ADC waits for a response from the TACACS+ server.

    -

    Default: 3.0

    @@ -429,7 +428,6 @@

    Parameters

    integer

    Port number on which the TACACS+ server listens for connections.

    -

    Default: 49

    diff --git a/docs/collections/netscaler/adc/authenticationtacacspolicy_module.html b/docs/collections/netscaler/adc/authenticationtacacspolicy_module.html index 726f8fad..bddbd2a0 100644 --- a/docs/collections/netscaler/adc/authenticationtacacspolicy_module.html +++ b/docs/collections/netscaler/adc/authenticationtacacspolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationtacacspolicy module – Configuration for TACACS policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_auditnslogpolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_auditnslogpolicy_binding_module.html index 37797c20..08b7fc01 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_auditnslogpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_auditnslogpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_auditnslogpolicy_binding module – Binding Resource definition for describing association between authenticationvserver and auditnslogpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_auditsyslogpolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_auditsyslogpolicy_binding_module.html index 9c7689b1..6d708b5c 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_auditsyslogpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_auditsyslogpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_auditsyslogpolicy_binding module – Binding Resource definition for describing association between authenticationvserver and auditsyslogpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationcertpolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationcertpolicy_binding_module.html index 3e85a9c9..83805441 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationcertpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationcertpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationcertpolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationcertpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationldappolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationldappolicy_binding_module.html index 2b920162..bd095dff 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationldappolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationldappolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationldappolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationldappolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationlocalpolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationlocalpolicy_binding_module.html index 1b9c687c..a60c96a2 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationlocalpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationlocalpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationlocalpolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationlocalpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationloginschemapolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationloginschemapolicy_binding_module.html index e1291322..d1780e69 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationloginschemapolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationloginschemapolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationloginschemapolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationloginschemapolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationnegotiatepolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationnegotiatepolicy_binding_module.html index 26d6ede6..c6e96905 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationnegotiatepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationnegotiatepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationnegotiatepolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationnegotiatepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationoauthidppolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationoauthidppolicy_binding_module.html index 412b1510..f394ca57 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationoauthidppolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationoauthidppolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationoauthidppolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationoauthidppolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationpolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationpolicy_binding_module.html index 6ea2db96..a911284e 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationpolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationradiuspolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationradiuspolicy_binding_module.html index 64ecc326..93652d0d 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationradiuspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationradiuspolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationradiuspolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationradiuspolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationsamlidppolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationsamlidppolicy_binding_module.html index 1f58750d..0f35db76 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationsamlidppolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationsamlidppolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationsamlidppolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationsamlidppolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationsamlpolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationsamlpolicy_binding_module.html index cd017e42..53ccdbb9 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationsamlpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationsamlpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationsamlpolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationsamlpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationsmartaccesspolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationsmartaccesspolicy_binding_module.html index c8b5f600..d819e441 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationsmartaccesspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationsmartaccesspolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationsmartaccesspolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationsmartaccesspolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationtacacspolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationtacacspolicy_binding_module.html index 2dc50929..41d0389b 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationtacacspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationtacacspolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationtacacspolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationtacacspolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_authenticationwebauthpolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_authenticationwebauthpolicy_binding_module.html index 1b5d773b..50e89d4e 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_authenticationwebauthpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_authenticationwebauthpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_authenticationwebauthpolicy_binding module – Binding Resource definition for describing association between authenticationvserver and authenticationwebauthpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_cachepolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_cachepolicy_binding_module.html index def0af8f..f2247033 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_cachepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_cachepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_cachepolicy_binding module – Binding Resource definition for describing association between authenticationvserver and cachepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_cspolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_cspolicy_binding_module.html index 2d1c5419..181b23c9 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_cspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_cspolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_cspolicy_binding module – Binding Resource definition for describing association between authenticationvserver and cspolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_module.html b/docs/collections/netscaler/adc/authenticationvserver_module.html index 98fae2b4..2eddf89a 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver module – Configuration for authentication virtual server resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    Log AppFlow flow information.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -190,7 +190,7 @@

    Parameters

    Require users to be authenticated before sending traffic through this virtual server.

    Choices:

      -
    • "ON" ← (default)

    • +
    • "ON"

    • "OFF"

    @@ -963,7 +963,6 @@

    Parameters

    If you are creating a series of virtual servers with a range of IP addresses assigned to them, the length of the range.

    The new range of authentication virtual servers will have IP addresses consecutively numbered, starting with the primary address specified with the IP Address parameter.

    -

    Default: 1.0

    @@ -999,7 +998,7 @@

    Parameters

    Protocol type of the authentication virtual server. Always SSL.

    Choices:

      -
    • "SSL" ← (default)

    • +
    • "SSL"

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_responderpolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_responderpolicy_binding_module.html index 9b39e65d..be71ad8f 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_responderpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_responderpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_responderpolicy_binding module – Binding Resource definition for describing association between authenticationvserver and responderpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_rewritepolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_rewritepolicy_binding_module.html index 25f3bff3..8df4e3fe 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_rewritepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_rewritepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_rewritepolicy_binding module – Binding Resource definition for describing association between authenticationvserver and rewritepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_tmsessionpolicy_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_tmsessionpolicy_binding_module.html index 0ade3920..6166094e 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_tmsessionpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_tmsessionpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_tmsessionpolicy_binding module – Binding Resource definition for describing association between authenticationvserver and tmsessionpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationvserver_vpnportaltheme_binding_module.html b/docs/collections/netscaler/adc/authenticationvserver_vpnportaltheme_binding_module.html index f8beb49e..d5df2645 100644 --- a/docs/collections/netscaler/adc/authenticationvserver_vpnportaltheme_binding_module.html +++ b/docs/collections/netscaler/adc/authenticationvserver_vpnportaltheme_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationvserver_vpnportaltheme_binding module – Binding Resource definition for describing association between authenticationvserver and vpnportaltheme resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationwebauthaction_module.html b/docs/collections/netscaler/adc/authenticationwebauthaction_module.html index 27d39e0c..ca91041c 100644 --- a/docs/collections/netscaler/adc/authenticationwebauthaction_module.html +++ b/docs/collections/netscaler/adc/authenticationwebauthaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationwebauthaction module – Configuration for Web authentication action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authenticationwebauthpolicy_module.html b/docs/collections/netscaler/adc/authenticationwebauthpolicy_module.html index c7a4f8e3..93242a82 100644 --- a/docs/collections/netscaler/adc/authenticationwebauthpolicy_module.html +++ b/docs/collections/netscaler/adc/authenticationwebauthpolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authenticationwebauthpolicy module – Configuration for Web authentication policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authorizationpolicy_module.html b/docs/collections/netscaler/adc/authorizationpolicy_module.html index eab3f2ee..c3e6fec9 100644 --- a/docs/collections/netscaler/adc/authorizationpolicy_module.html +++ b/docs/collections/netscaler/adc/authorizationpolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authorizationpolicy module – Configuration for authorization policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authorizationpolicylabel_authorizationpolicy_binding_module.html b/docs/collections/netscaler/adc/authorizationpolicylabel_authorizationpolicy_binding_module.html index a4b03741..ac57b0d4 100644 --- a/docs/collections/netscaler/adc/authorizationpolicylabel_authorizationpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/authorizationpolicylabel_authorizationpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authorizationpolicylabel_authorizationpolicy_binding module – Binding Resource definition for describing association between authorizationpolicylabel and authorizationpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/authorizationpolicylabel_module.html b/docs/collections/netscaler/adc/authorizationpolicylabel_module.html index f553193b..70cc6774 100644 --- a/docs/collections/netscaler/adc/authorizationpolicylabel_module.html +++ b/docs/collections/netscaler/adc/authorizationpolicylabel_module.html @@ -131,7 +131,7 @@

    netscaler.adc.authorizationpolicylabel module – Configuration for authorization policy label resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/autoscaleaction_module.html b/docs/collections/netscaler/adc/autoscaleaction_module.html index 75f4295a..3209c580 100644 --- a/docs/collections/netscaler/adc/autoscaleaction_module.html +++ b/docs/collections/netscaler/adc/autoscaleaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.autoscaleaction module – Configuration for autoscale action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -239,7 +239,6 @@

    Parameters

    float

    Time in seconds no other policy is evaluated or action is taken

    -

    Default: 300.0

    @@ -298,7 +297,6 @@

    Parameters

    float

    Time in minutes a VM is kept in inactive state before destroying

    -

    Default: 10.0

    diff --git a/docs/collections/netscaler/adc/autoscalepolicy_module.html b/docs/collections/netscaler/adc/autoscalepolicy_module.html index 08809d17..91b03ec2 100644 --- a/docs/collections/netscaler/adc/autoscalepolicy_module.html +++ b/docs/collections/netscaler/adc/autoscalepolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.autoscalepolicy module – Configuration for Autoscale policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/autoscaleprofile_module.html b/docs/collections/netscaler/adc/autoscaleprofile_module.html index e9c75c96..511cca23 100644 --- a/docs/collections/netscaler/adc/autoscaleprofile_module.html +++ b/docs/collections/netscaler/adc/autoscaleprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.autoscaleprofile module – Configuration for autoscale profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/azureapplication_module.html b/docs/collections/netscaler/adc/azureapplication_module.html index d0a440c6..196e7c97 100644 --- a/docs/collections/netscaler/adc/azureapplication_module.html +++ b/docs/collections/netscaler/adc/azureapplication_module.html @@ -131,7 +131,7 @@

    netscaler.adc.azureapplication module – Configuration for Azure Application resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/azurekeyvault_module.html b/docs/collections/netscaler/adc/azurekeyvault_module.html index 9e32d15e..d6a2bfcf 100644 --- a/docs/collections/netscaler/adc/azurekeyvault_module.html +++ b/docs/collections/netscaler/adc/azurekeyvault_module.html @@ -131,7 +131,7 @@

    netscaler.adc.azurekeyvault module – Configuration for Azure Key Vault entity resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/botglobal_botpolicy_binding_module.html b/docs/collections/netscaler/adc/botglobal_botpolicy_binding_module.html index e83ce904..ec18e150 100644 --- a/docs/collections/netscaler/adc/botglobal_botpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/botglobal_botpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.botglobal_botpolicy_binding module – Binding Resource definition for describing association between botglobal and botpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    0

    Choices:

    -

    Default: ["DROP"]

    @@ -791,13 +786,12 @@

    Parameters

    Action to be taken for bot trap based bot detection.

    Choices:

      -
    • "NONE" ← (default)

    • +
    • "NONE"

    • "LOG"

    • "DROP"

    • "REDIRECT"

    • "RESET"

    -

    Default: ["NONE"]

    @@ -826,7 +820,7 @@

    Parameters

    Bot verbose Logging. Based on the log level, ADC will log additional information whenever client is detected as a bot.

    Choices:

      -
    • "NONE" ← (default)

    • +
    • "NONE"

    • "HTTP_FULL_HEADER"

    diff --git a/docs/collections/netscaler/adc/botprofile_ratelimit_binding_module.html b/docs/collections/netscaler/adc/botprofile_ratelimit_binding_module.html index 36c35044..5dd28f72 100644 --- a/docs/collections/netscaler/adc/botprofile_ratelimit_binding_module.html +++ b/docs/collections/netscaler/adc/botprofile_ratelimit_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.botprofile_ratelimit_binding module – Binding Resource definition for describing association between botprofile and ratelimit resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -185,13 +185,12 @@

    Parameters

    One or more actions to be taken when the current rate becomes more than the configured rate. Only LOG action can be combined with DROP, REDIRECT or RESET action.

    Choices:

      -
    • "NONE" ← (default)

    • +
    • "NONE"

    • "LOG"

    • "DROP"

    • "REDIRECT"

    • "RESET"

    -

    Default: ["NONE"]

    @@ -573,7 +572,6 @@

    Parameters

    float

    Maximum number of requests that are allowed in this session in the given period time.

    -

    Default: 1.0

    @@ -608,7 +606,6 @@

    Parameters

    float

    Time interval during which requests are tracked to check if they cross the given rate.

    -

    Default: 1000.0

    diff --git a/docs/collections/netscaler/adc/botprofile_tps_binding_module.html b/docs/collections/netscaler/adc/botprofile_tps_binding_module.html index cdd98022..a6b4afb4 100644 --- a/docs/collections/netscaler/adc/botprofile_tps_binding_module.html +++ b/docs/collections/netscaler/adc/botprofile_tps_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.botprofile_tps_binding module – Binding Resource definition for describing association between botprofile and tps resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -197,14 +197,13 @@

    Parameters

    One to more actions to be taken if bot is detected based on this TPS binding. Only LOG action can be combined with DROP, RESET, REDIRECT, or MITIGIATION action.

    Choices:

      -
    • "NONE" ← (default)

    • +
    • "NONE"

    • "LOG"

    • "DROP"

    • "REDIRECT"

    • "RESET"

    • "MITIGATION"

    -

    Default: ["NONE"]

    @@ -214,7 +213,7 @@

    Parameters

    Enabled or disabled TPS binding.

    Choices:

      -
    • "ON" ← (default)

    • +
    • "ON"

    • "OFF"

    diff --git a/docs/collections/netscaler/adc/botprofile_trapinsertionurl_binding_module.html b/docs/collections/netscaler/adc/botprofile_trapinsertionurl_binding_module.html index 812bdcb7..13c485a6 100644 --- a/docs/collections/netscaler/adc/botprofile_trapinsertionurl_binding_module.html +++ b/docs/collections/netscaler/adc/botprofile_trapinsertionurl_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.botprofile_trapinsertionurl_binding module – Binding Resource definition for describing association between botprofile and trapinsertionurl resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -193,7 +193,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    diff --git a/docs/collections/netscaler/adc/botprofile_whitelist_binding_module.html b/docs/collections/netscaler/adc/botprofile_whitelist_binding_module.html index d7a22414..c3f4045d 100644 --- a/docs/collections/netscaler/adc/botprofile_whitelist_binding_module.html +++ b/docs/collections/netscaler/adc/botprofile_whitelist_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.botprofile_whitelist_binding module – Binding Resource definition for describing association between botprofile and whitelist resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -198,7 +198,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -232,7 +232,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    diff --git a/docs/collections/netscaler/adc/botsettings_module.html b/docs/collections/netscaler/adc/botsettings_module.html index f5eca2c4..c91c5ef2 100644 --- a/docs/collections/netscaler/adc/botsettings_module.html +++ b/docs/collections/netscaler/adc/botsettings_module.html @@ -131,7 +131,7 @@

    netscaler.adc.botsettings module – Configuration for Bot engine settings resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "BOT_BYPASS"

    • -
    • "BOT_STATS" ← (default)

    • +
    • "BOT_STATS"

    • "BOT_LOG"

    @@ -262,7 +262,6 @@

    Parameters

    integer

    Proxy Server Port to get updated signatures from AWS.

    -

    Default: 8080

    @@ -326,7 +325,6 @@

    Parameters

    string

    URL to download the bot signature mapping file from server

    -

    Default: "https://nsbotsignatures.s3.amazonaws.com/BotSignatureMapping.json"

    @@ -358,7 +358,6 @@

    Parameters

    float

    Time in seconds after which trap URL is updated.

    -

    Default: 3600.0

    @@ -366,7 +365,6 @@

    Parameters

    float

    Length of the auto-generated trap URL.

    -

    Default: 32.0

    diff --git a/docs/collections/netscaler/adc/botsignature_module.html b/docs/collections/netscaler/adc/botsignature_module.html index 7088601b..409e55b8 100644 --- a/docs/collections/netscaler/adc/botsignature_module.html +++ b/docs/collections/netscaler/adc/botsignature_module.html @@ -131,7 +131,7 @@

    netscaler.adc.botsignature module – Configuration for bot signatures resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -269,6 +269,7 @@

    ParametersChoices:

    • "absent"

    • +
    • "imported"

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/bridgegroup_module.html b/docs/collections/netscaler/adc/bridgegroup_module.html index c81fd135..796b973b 100644 --- a/docs/collections/netscaler/adc/bridgegroup_module.html +++ b/docs/collections/netscaler/adc/bridgegroup_module.html @@ -131,7 +131,7 @@

    netscaler.adc.bridgegroup module – Configuration for bridge group resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -272,7 +272,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -291,7 +291,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/bridgegroup_nsip6_binding_module.html b/docs/collections/netscaler/adc/bridgegroup_nsip6_binding_module.html index 9c61670c..4c7c0f35 100644 --- a/docs/collections/netscaler/adc/bridgegroup_nsip6_binding_module.html +++ b/docs/collections/netscaler/adc/bridgegroup_nsip6_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.bridgegroup_nsip6_binding module – Binding Resource definition for describing association between bridgegroup and nsip6 resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -239,7 +239,6 @@

    Parameters

    string

    The owner node group in a Cluster for this vlan.

    -

    Default: "DEFAULT_NG"

    diff --git a/docs/collections/netscaler/adc/bridgegroup_nsip_binding_module.html b/docs/collections/netscaler/adc/bridgegroup_nsip_binding_module.html index b6ac756c..8ca33356 100644 --- a/docs/collections/netscaler/adc/bridgegroup_nsip_binding_module.html +++ b/docs/collections/netscaler/adc/bridgegroup_nsip_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.bridgegroup_nsip_binding module – Binding Resource definition for describing association between bridgegroup and nsip resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -239,7 +239,6 @@

    Parameters

    string

    The owner node group in a Cluster for this vlan.

    -

    Default: "DEFAULT_NG"

    diff --git a/docs/collections/netscaler/adc/bridgegroup_vlan_binding_module.html b/docs/collections/netscaler/adc/bridgegroup_vlan_binding_module.html index daa5b0d4..377b8f8d 100644 --- a/docs/collections/netscaler/adc/bridgegroup_vlan_binding_module.html +++ b/docs/collections/netscaler/adc/bridgegroup_vlan_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.bridgegroup_vlan_binding module – Binding Resource definition for describing association between bridgegroup and vlan resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/bridgetable_module.html b/docs/collections/netscaler/adc/bridgetable_module.html index 53adde07..1471c6ed 100644 --- a/docs/collections/netscaler/adc/bridgetable_module.html +++ b/docs/collections/netscaler/adc/bridgetable_module.html @@ -131,7 +131,7 @@

    netscaler.adc.bridgetable module – Configuration for bridge table entry resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -176,7 +176,6 @@

    Parameters

    float

    Time-out value for the bridge table entries, in seconds. The new value applies only to the entries that are dynamically learned after the new value is set. Previously existing bridge table entries expire after the previously configured time-out value.

    -

    Default: 300.0

    diff --git a/docs/collections/netscaler/adc/cachecontentgroup_module.html b/docs/collections/netscaler/adc/cachecontentgroup_module.html index 5ba88818..3c91d586 100644 --- a/docs/collections/netscaler/adc/cachecontentgroup_module.html +++ b/docs/collections/netscaler/adc/cachecontentgroup_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cachecontentgroup module – Configuration for Integrated Cache content group resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -187,7 +187,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -215,7 +215,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -227,7 +227,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -279,7 +279,7 @@

    ParametersTo guard against Denial of Service attacks, set this parameter to YES. For RFC-compliant behavior, set it to NO.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -291,7 +291,7 @@

    Parameters

    Ignore Cache-Control and Pragma headers in the incoming request.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -303,7 +303,7 @@

    Parameters

    Insert an Age header into the response. An Age header contains information about the age of the object, in seconds, as calculated by the integrated cache.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -315,7 +315,7 @@

    Parameters

    Insert an ETag header in the response. With ETag header insertion, the integrated cache does not serve full responses on repeat requests.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -327,7 +327,7 @@

    Parameters

    Insert a Via header into the response.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -365,7 +365,7 @@

    Parameters

    Perform DNS resolution for responses only if the destination IP address in the request does not match the destination IP address of the cached response.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -387,7 +387,6 @@

    Parameters

    float

    Maximum size of a response that can be cached in this content group.

    -

    Default: 80.0

    @@ -395,7 +394,6 @@

    Parameters

    float

    Maximum amount of memory that the cache can use. The effective limit is based on the available memory of the Citrix ADC.

    -

    Default: 65536.0

    @@ -484,7 +482,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -496,7 +494,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -507,7 +505,7 @@

    Parameters

    Attempt to refresh objects that are about to go stale.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -545,7 +543,6 @@

    Parameters

    float

    If the size of an object that is being downloaded is less than or equal to the quick abort value, and a client aborts during the download, the cache stops downloading the response. If the object is larger than the quick abort size, the cache continues to download the response.

    -

    Default: 4194303.0

    @@ -627,7 +624,7 @@

    Parameters

    The type of the content group.

    Choices:

      -
    • "HTTP" ← (default)

    • +
    • "HTTP"

    • "MYSQL"

    • "MSSQL"

    @@ -673,7 +670,41 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | cachecontentgroup
    +      delegate_to: localhost
    +      netscaler.adc.cachecontentgroup:
    +        state: present
    +        name: DEFAULT
    +    - name: Sample Task | cachecontentgroup | 2
    +      delegate_to: localhost
    +      netscaler.adc.cachecontentgroup:
    +        state: present
    +        name: BASEFILE
    +        relexpiry: 86000
    +        weaknegrelexpiry: 600
    +        maxressize: 256
    +        memlimit: 2
    +    - name: Sample Task | cachecontentgroup | 3
    +      delegate_to: localhost
    +      netscaler.adc.cachecontentgroup:
    +        state: present
    +        name: DELTAJS
    +        relexpiry: 86000
    +        weaknegrelexpiry: 600
    +        insertage: 'NO'
    +        maxressize: 256
    +        memlimit: 1
    +        pinned: 'YES'
    +    - name: Sample Task | cachecontentgroup | 4
    +      delegate_to: localhost
    +      netscaler.adc.cachecontentgroup:
    +        state: present
    +        name: NSFEO
    +        maxressize: 1994752
     
    diff --git a/docs/collections/netscaler/adc/cacheforwardproxy_module.html b/docs/collections/netscaler/adc/cacheforwardproxy_module.html index 9e496653..ee7a5894 100644 --- a/docs/collections/netscaler/adc/cacheforwardproxy_module.html +++ b/docs/collections/netscaler/adc/cacheforwardproxy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cacheforwardproxy module – Configuration for forward proxy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/cacheglobal_cachepolicy_binding_module.html b/docs/collections/netscaler/adc/cacheglobal_cachepolicy_binding_module.html index cc305de3..e52e1e41 100644 --- a/docs/collections/netscaler/adc/cacheglobal_cachepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/cacheglobal_cachepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cacheglobal_cachepolicy_binding module – Binding Resource definition for describing association between cacheglobal and cachepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters diff --git a/docs/collections/netscaler/adc/cacheobject_module.html b/docs/collections/netscaler/adc/cacheobject_module.html index c1a2fa1b..e8653dc1 100644 --- a/docs/collections/netscaler/adc/cacheobject_module.html +++ b/docs/collections/netscaler/adc/cacheobject_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cacheobject module – Configuration for cache object resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -199,7 +199,7 @@

    Parameters

    HTTP request method that caused the object to be stored.

    Choices:

      -
    • "GET" ← (default)

    • +
    • "GET"

    • "POST"

    @@ -296,7 +296,6 @@

    Parameters

    integer

    Host port of the object. You must also set the Host parameter.

    -

    Default: 80

    diff --git a/docs/collections/netscaler/adc/cacheparameter_module.html b/docs/collections/netscaler/adc/cacheparameter_module.html index 673a207c..7c443d21 100644 --- a/docs/collections/netscaler/adc/cacheparameter_module.html +++ b/docs/collections/netscaler/adc/cacheparameter_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cacheparameter module – Configuration for cache parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -193,7 +193,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -202,7 +202,6 @@

    Parameters

    float

    Maximum number of POST body bytes to consider when evaluating parameters for a content group for which you have configured hit parameters and invalidation parameters.

    -

    Default: 4096.0

    @@ -280,9 +279,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -348,7 +349,15 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | cacheparameter
    +      delegate_to: localhost
    +      netscaler.adc.cacheparameter:
    +        state: present
    +        via: 'NS-CACHE-10.0: 141'
     
    diff --git a/docs/collections/netscaler/adc/cachepolicy_module.html b/docs/collections/netscaler/adc/cachepolicy_module.html index 38631b55..38251eeb 100644 --- a/docs/collections/netscaler/adc/cachepolicy_module.html +++ b/docs/collections/netscaler/adc/cachepolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cachepolicy module – Configuration for Integrated Cache policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -373,7 +373,27 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | cachepolicy
    +      delegate_to: localhost
    +      netscaler.adc.cachepolicy:
    +        state: present
    +        policyname: _nonGetReq
    +        rule: '!HTTP.REQ.METHOD.eq(GET)'
    +        action: NOCACHE
    +    - name: Sample Task | cachepolicy | 2
    +      delegate_to: localhost
    +      netscaler.adc.cachepolicy:
    +        state: present
    +        policyname: _cacheableCacheControlRes
    +        rule: ((HTTP.RES.CACHE_CONTROL.IS_PUBLIC) || (HTTP.RES.CACHE_CONTROL.IS_MAX_AGE)
    +          || (HTTP.RES.CACHE_CONTROL.IS_MUST_REVALIDATE) || (HTTP.RES.CACHE_CONTROL.IS_PROXY_REVALIDATE)
    +          || (HTTP.RES.CACHE_CONTROL.IS_S_MAXAGE))
    +        action: CACHE
    +        storeingroup: DEFAULT
     
    diff --git a/docs/collections/netscaler/adc/cachepolicylabel_cachepolicy_binding_module.html b/docs/collections/netscaler/adc/cachepolicylabel_cachepolicy_binding_module.html index c34e7f6c..342a19be 100644 --- a/docs/collections/netscaler/adc/cachepolicylabel_cachepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/cachepolicylabel_cachepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cachepolicylabel_cachepolicy_binding module – Binding Resource definition for describing association between cachepolicylabel and cachepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/cachepolicylabel_module.html b/docs/collections/netscaler/adc/cachepolicylabel_module.html index 656f4232..7c8b0142 100644 --- a/docs/collections/netscaler/adc/cachepolicylabel_module.html +++ b/docs/collections/netscaler/adc/cachepolicylabel_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cachepolicylabel module – Configuration for cache policy label resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -329,7 +329,16 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | cachepolicylabel
    +      delegate_to: localhost
    +      netscaler.adc.cachepolicylabel:
    +        state: present
    +        labelname: _reqBuiltinDefaults
    +        evaluates: REQ
     
    diff --git a/docs/collections/netscaler/adc/cacheselector_module.html b/docs/collections/netscaler/adc/cacheselector_module.html index 3898b021..d896eb45 100644 --- a/docs/collections/netscaler/adc/cacheselector_module.html +++ b/docs/collections/netscaler/adc/cacheselector_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cacheselector module – Configuration for cache selector resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/callhome_module.html b/docs/collections/netscaler/adc/callhome_module.html index af48d735..ad45ceb5 100644 --- a/docs/collections/netscaler/adc/callhome_module.html +++ b/docs/collections/netscaler/adc/callhome_module.html @@ -131,7 +131,7 @@

    netscaler.adc.callhome module – Configuration for callhome resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -183,7 +183,6 @@

    Parameters

    float

    Interval (in days) between CallHome heartbeats

    -

    Default: 7.0

    @@ -299,9 +298,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -331,7 +332,15 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | callhome
    +      delegate_to: localhost
    +      netscaler.adc.callhome:
    +        state: present
    +        hbcustominterval: '30'
     
    diff --git a/docs/collections/netscaler/adc/change_password_module.html b/docs/collections/netscaler/adc/change_password_module.html index e28d85a4..d4df85cc 100644 --- a/docs/collections/netscaler/adc/change_password_module.html +++ b/docs/collections/netscaler/adc/change_password_module.html @@ -131,7 +131,7 @@

    netscaler.adc.change_password module – Change password of a user on a NetScaler ADC node.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/channel_interface_binding_module.html b/docs/collections/netscaler/adc/channel_interface_binding_module.html index 674163c0..506636ba 100644 --- a/docs/collections/netscaler/adc/channel_interface_binding_module.html +++ b/docs/collections/netscaler/adc/channel_interface_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.channel_interface_binding module – Binding Resource definition for describing association between channel and interface resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/channel_module.html b/docs/collections/netscaler/adc/channel_module.html index 992d2119..7f79fff2 100644 --- a/docs/collections/netscaler/adc/channel_module.html +++ b/docs/collections/netscaler/adc/channel_module.html @@ -131,7 +131,7 @@

    netscaler.adc.channel module – Configuration for channel resource.

    Alias name for the LA channel. Used only to enhance readability. To perform any operations, you have to specify the LA channel ID.

    -

    Default: "\" \""

    @@ -355,7 +354,6 @@

    Parameters

    float

    The Maximum Transmission Unit (MTU) is the largest packet size, measured in bytes excluding 14 bytes ethernet header and 4 bytes CRC, that can be transmitted and received by an interface. The default value of MTU is 1500 on all the interface of Citrix ADC, some Cloud Platforms will restrict Citrix ADC to use the lesser default value. Any MTU value more than 1500 is called Jumbo MTU and will make the interface as jumbo enabled. The Maximum Jumbo MTU in Citrix ADC is 9216, however, some Virtualized / Cloud Platforms will have lesser Maximum Jumbo MTU Value (9000). In the case of Cluster, the Backplane interface requires an MTU value of 78 bytes more than the Max MTU configured on any other Data-Plane Interface. When the Data plane interfaces are all at default 1500 MTU, Cluster Back Plane will be automatically set to 1578 (1500 + 78) MTU. If a Backplane interface is reset to Data Plane Interface, then the 1578 MTU will be automatically reset to the default MTU of 1500(or whatever lesser default value). If any data plane interface of a Cluster is configured with a Jumbo MTU ( > 1500), then all backplane interfaces require to be configured with a minimum MTU of ‘Highest Data Plane MTU in the Cluster + 78’. That makes the maximum Jumbo MTU for any Data-Plane Interface in a Cluster System to be ‘9138 (9216 - 78)., where 9216 is the maximum Jumbo MTU. On certain Virtualized / Cloud Platforms, the maximum possible MTU is restricted to a lesser value, Similar calculation can be applied, Maximum Data Plane MTU in Cluster = (Maximum possible MTU - 78).

    -

    Default: 1500.0

    @@ -503,7 +501,19 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | channel
    +      delegate_to: localhost
    +      netscaler.adc.channel:
    +        state: present
    +        id: LA/1
    +        throughput: '0'
    +        lrminthroughput: '0'
    +        bandwidthhigh: '0'
    +        bandwidthnormal: '0'
     
    diff --git a/docs/collections/netscaler/adc/cloudallowedngsticketprofile_module.html b/docs/collections/netscaler/adc/cloudallowedngsticketprofile_module.html index 8f033539..62ec541c 100644 --- a/docs/collections/netscaler/adc/cloudallowedngsticketprofile_module.html +++ b/docs/collections/netscaler/adc/cloudallowedngsticketprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cloudallowedngsticketprofile module – Configuration for Allowed ticket profile for NGS resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/cloudawsparam_module.html b/docs/collections/netscaler/adc/cloudawsparam_module.html index b7d6ce76..cffee413 100644 --- a/docs/collections/netscaler/adc/cloudawsparam_module.html +++ b/docs/collections/netscaler/adc/cloudawsparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cloudawsparam module – Configuration for cloud awsParam resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -239,9 +239,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/cloudcredential_module.html b/docs/collections/netscaler/adc/cloudcredential_module.html index 778bd002..9b185415 100644 --- a/docs/collections/netscaler/adc/cloudcredential_module.html +++ b/docs/collections/netscaler/adc/cloudcredential_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cloudcredential module – Configuration for cloud credentials resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/cloudngsparameter_module.html b/docs/collections/netscaler/adc/cloudngsparameter_module.html index bc8e5c33..ffcd49a7 100644 --- a/docs/collections/netscaler/adc/cloudngsparameter_module.html +++ b/docs/collections/netscaler/adc/cloudngsparameter_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cloudngsparameter module – Configuration for cloud ngsparameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -170,7 +170,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -181,7 +181,7 @@

    Parameters @@ -217,7 +217,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -282,9 +282,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/cloudparameter_module.html b/docs/collections/netscaler/adc/cloudparameter_module.html index 4d6ef6ca..33cb3397 100644 --- a/docs/collections/netscaler/adc/cloudparameter_module.html +++ b/docs/collections/netscaler/adc/cloudparameter_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cloudparameter module – Configuration for cloud parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -302,9 +302,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/cloudparaminternal_module.html b/docs/collections/netscaler/adc/cloudparaminternal_module.html index 3cbbae20..ea98d740 100644 --- a/docs/collections/netscaler/adc/cloudparaminternal_module.html +++ b/docs/collections/netscaler/adc/cloudparaminternal_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cloudparaminternal module – Configuration for cloud paramInternal resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/cloudprofile_module.html b/docs/collections/netscaler/adc/cloudprofile_module.html index 25915f9f..c9ff80c4 100644 --- a/docs/collections/netscaler/adc/cloudprofile_module.html +++ b/docs/collections/netscaler/adc/cloudprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cloudprofile module – Configuration for cloud profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -176,7 +176,6 @@

    Parameters

    float

    Azure polling period (in seconds)

    -

    Default: 60.0

    diff --git a/docs/collections/netscaler/adc/cloudtunnelparameter_module.html b/docs/collections/netscaler/adc/cloudtunnelparameter_module.html index e16dce67..27ae495d 100644 --- a/docs/collections/netscaler/adc/cloudtunnelparameter_module.html +++ b/docs/collections/netscaler/adc/cloudtunnelparameter_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cloudtunnelparameter module – Configuration for Cloudtunnel parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -253,9 +253,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/cloudtunnelvserver_module.html b/docs/collections/netscaler/adc/cloudtunnelvserver_module.html index bb1c0fc5..65f4fbb6 100644 --- a/docs/collections/netscaler/adc/cloudtunnelvserver_module.html +++ b/docs/collections/netscaler/adc/cloudtunnelvserver_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cloudtunnelvserver module – Configuration for Cloud Tunnel virtual server resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -176,7 +176,6 @@

    Parameters

    string

    String specifying the listen policy for the Cloud Tunnel virtual server. Can be either a named expression or an expression. The Cloud Tunnel virtual server processes only the traffic for which the expression evaluates to true.

    -

    Default: "\"none\""

    @@ -184,7 +183,6 @@

    Parameters

    float

    Integer specifying the priority of the listen policy. A higher number specifies a lower priority. If a request matches the listen policies of more than one virtual server, the virtual server whose listen policy has the highest priority (the lowest priority number) accepts the request.

    -

    Default: 101.0

    diff --git a/docs/collections/netscaler/adc/cluster_module.html b/docs/collections/netscaler/adc/cluster_module.html index 1eafba91..3a57ce70 100644 --- a/docs/collections/netscaler/adc/cluster_module.html +++ b/docs/collections/netscaler/adc/cluster_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cluster module – Configuration for 0 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusterfiles_module.html b/docs/collections/netscaler/adc/clusterfiles_module.html index 4d2535a6..19e229a6 100644 --- a/docs/collections/netscaler/adc/clusterfiles_module.html +++ b/docs/collections/netscaler/adc/clusterfiles_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusterfiles module – Configuration for files resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusterinstance_module.html b/docs/collections/netscaler/adc/clusterinstance_module.html index e3e21f34..1da59dc3 100644 --- a/docs/collections/netscaler/adc/clusterinstance_module.html +++ b/docs/collections/netscaler/adc/clusterinstance_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusterinstance module – Configuration for cluster instance resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -197,7 +197,7 @@

    Parameters

    This field controls the proxy arp feature in cluster. By default the flag is enabled.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -207,7 +207,6 @@

    Parameters

    float

    Amount of time, in seconds, after which nodes that do not respond to the heartbeats are assumed to be down.If the value is less than 3 sec, set the helloInterval parameter to 200 msec

    -

    Default: 3.0

    @@ -227,7 +226,6 @@

    Parameters

    float

    Interval, in milliseconds, at which heartbeats are sent to each cluster node to check the health status.Set the value to 200 msec, if the deadInterval parameter is less than 3 sec

    -

    Default: 200.0

    @@ -299,7 +297,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -311,7 +309,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -322,7 +320,7 @@

    Parameters

    Quorum Configuration Choices - “Majority” (recommended) requires majority of nodes to be online for the cluster to be UP. “None” relaxes this requirement.

    Choices:

      -
    • "MAJORITY" ← (default)

    • +
    • "MAJORITY"

    • "NONE"

    @@ -335,7 +333,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -378,7 +376,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/clusternode_module.html b/docs/collections/netscaler/adc/clusternode_module.html index 93624403..bd9f0c9f 100644 --- a/docs/collections/netscaler/adc/clusternode_module.html +++ b/docs/collections/netscaler/adc/clusternode_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternode module – Configuration for cluster node resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -185,7 +185,7 @@

    Parameters

    Option to remove nodegroup config

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -615,7 +615,6 @@

    Parameters

    string

    The default node group in a Cluster system.

    -

    Default: "DEFAULT_NG"

    @@ -640,7 +639,6 @@

    Parameters

    Preference for selecting a node as the configuration coordinator. The node with the lowest priority value is selected as the configuration coordinator.

    When the current configuration coordinator goes down, the node with the next lowest priority is made the new configuration coordinator. When the original node comes back up, it will preempt the new configuration coordinator and take over as the configuration coordinator.

    Note: When priority is not configured for any of the nodes or if multiple nodes have the same priority, the cluster elects one of the nodes as the configuration coordinator.

    -

    Default: 31.0

    @@ -677,7 +675,7 @@

    Parameters

    To set the tunnel mode

    Choices:

      -
    • "NONE" ← (default)

    • +
    • "NONE"

    • "GRE"

    • "UDP"

    diff --git a/docs/collections/netscaler/adc/clusternode_routemonitor_binding_module.html b/docs/collections/netscaler/adc/clusternode_routemonitor_binding_module.html index 8a3b0276..c9db9039 100644 --- a/docs/collections/netscaler/adc/clusternode_routemonitor_binding_module.html +++ b/docs/collections/netscaler/adc/clusternode_routemonitor_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternode_routemonitor_binding module – Binding Resource definition for describing association between clusternode and routemonitor resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusternodegroup_authenticationvserver_binding_module.html b/docs/collections/netscaler/adc/clusternodegroup_authenticationvserver_binding_module.html index 5610aace..43149fda 100644 --- a/docs/collections/netscaler/adc/clusternodegroup_authenticationvserver_binding_module.html +++ b/docs/collections/netscaler/adc/clusternodegroup_authenticationvserver_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternodegroup_authenticationvserver_binding module – Binding Resource definition for describing association between clusternodegroup and authenticationvserver resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusternodegroup_clusternode_binding_module.html b/docs/collections/netscaler/adc/clusternodegroup_clusternode_binding_module.html index 6cf361c8..d9a62f07 100644 --- a/docs/collections/netscaler/adc/clusternodegroup_clusternode_binding_module.html +++ b/docs/collections/netscaler/adc/clusternodegroup_clusternode_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternodegroup_clusternode_binding module – Binding Resource definition for describing association between clusternodegroup and clusternode resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusternodegroup_crvserver_binding_module.html b/docs/collections/netscaler/adc/clusternodegroup_crvserver_binding_module.html index d209f8f4..9f656079 100644 --- a/docs/collections/netscaler/adc/clusternodegroup_crvserver_binding_module.html +++ b/docs/collections/netscaler/adc/clusternodegroup_crvserver_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternodegroup_crvserver_binding module – Binding Resource definition for describing association between clusternodegroup and crvserver resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusternodegroup_csvserver_binding_module.html b/docs/collections/netscaler/adc/clusternodegroup_csvserver_binding_module.html index 63b3efef..bbc11888 100644 --- a/docs/collections/netscaler/adc/clusternodegroup_csvserver_binding_module.html +++ b/docs/collections/netscaler/adc/clusternodegroup_csvserver_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternodegroup_csvserver_binding module – Binding Resource definition for describing association between clusternodegroup and csvserver resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusternodegroup_gslbsite_binding_module.html b/docs/collections/netscaler/adc/clusternodegroup_gslbsite_binding_module.html index 3b40c96b..b9fbc334 100644 --- a/docs/collections/netscaler/adc/clusternodegroup_gslbsite_binding_module.html +++ b/docs/collections/netscaler/adc/clusternodegroup_gslbsite_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternodegroup_gslbsite_binding module – Binding Resource definition for describing association between clusternodegroup and gslbsite resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusternodegroup_gslbvserver_binding_module.html b/docs/collections/netscaler/adc/clusternodegroup_gslbvserver_binding_module.html index 741d368a..0ceb6ba9 100644 --- a/docs/collections/netscaler/adc/clusternodegroup_gslbvserver_binding_module.html +++ b/docs/collections/netscaler/adc/clusternodegroup_gslbvserver_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternodegroup_gslbvserver_binding module – Binding Resource definition for describing association between clusternodegroup and gslbvserver resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusternodegroup_lbvserver_binding_module.html b/docs/collections/netscaler/adc/clusternodegroup_lbvserver_binding_module.html index b453d8f4..ac7fb7d2 100644 --- a/docs/collections/netscaler/adc/clusternodegroup_lbvserver_binding_module.html +++ b/docs/collections/netscaler/adc/clusternodegroup_lbvserver_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternodegroup_lbvserver_binding module – Binding Resource definition for describing association between clusternodegroup and lbvserver resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusternodegroup_module.html b/docs/collections/netscaler/adc/clusternodegroup_module.html index 0901c497..18a401c1 100644 --- a/docs/collections/netscaler/adc/clusternodegroup_module.html +++ b/docs/collections/netscaler/adc/clusternodegroup_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternodegroup module – Configuration for Node group object type resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -607,7 +607,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -623,7 +623,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    diff --git a/docs/collections/netscaler/adc/clusternodegroup_nslimitidentifier_binding_module.html b/docs/collections/netscaler/adc/clusternodegroup_nslimitidentifier_binding_module.html index 219d7ab5..ff43e776 100644 --- a/docs/collections/netscaler/adc/clusternodegroup_nslimitidentifier_binding_module.html +++ b/docs/collections/netscaler/adc/clusternodegroup_nslimitidentifier_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternodegroup_nslimitidentifier_binding module – Binding Resource definition for describing association between clusternodegroup and nslimitidentifier resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusternodegroup_service_binding_module.html b/docs/collections/netscaler/adc/clusternodegroup_service_binding_module.html index 27f624b5..4e22e269 100644 --- a/docs/collections/netscaler/adc/clusternodegroup_service_binding_module.html +++ b/docs/collections/netscaler/adc/clusternodegroup_service_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternodegroup_service_binding module – Binding Resource definition for describing association between clusternodegroup and service resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusternodegroup_streamidentifier_binding_module.html b/docs/collections/netscaler/adc/clusternodegroup_streamidentifier_binding_module.html index 10c29b5c..7ef19352 100644 --- a/docs/collections/netscaler/adc/clusternodegroup_streamidentifier_binding_module.html +++ b/docs/collections/netscaler/adc/clusternodegroup_streamidentifier_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternodegroup_streamidentifier_binding module – Binding Resource definition for describing association between clusternodegroup and streamidentifier resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusternodegroup_vpnvserver_binding_module.html b/docs/collections/netscaler/adc/clusternodegroup_vpnvserver_binding_module.html index c5781461..8ff78e3c 100644 --- a/docs/collections/netscaler/adc/clusternodegroup_vpnvserver_binding_module.html +++ b/docs/collections/netscaler/adc/clusternodegroup_vpnvserver_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusternodegroup_vpnvserver_binding module – Binding Resource definition for describing association between clusternodegroup and vpnvserver resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/clusterpropstatus_module.html b/docs/collections/netscaler/adc/clusterpropstatus_module.html index 71816c53..85b88bb5 100644 --- a/docs/collections/netscaler/adc/clusterpropstatus_module.html +++ b/docs/collections/netscaler/adc/clusterpropstatus_module.html @@ -131,7 +131,7 @@

    netscaler.adc.clusterpropstatus module – Configuration for 0 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/cmpaction_module.html b/docs/collections/netscaler/adc/cmpaction_module.html index 8e81698f..5082c9bb 100644 --- a/docs/collections/netscaler/adc/cmpaction_module.html +++ b/docs/collections/netscaler/adc/cmpaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cmpaction module – Configuration for compression action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -169,7 +169,7 @@

    Parameters

    Control insertion of the Vary header in HTTP responses compressed by Citrix ADC. Intermediate caches store different versions of the response for different values of the headers present in the Vary response header.

    Choices:

      -
    • "GLOBAL" ← (default)

    • +
    • "GLOBAL"

    • "DISABLED"

    • "ENABLED"

    @@ -210,7 +210,7 @@

    Parameters

    The type of delta action (if delta type compression action is defined).

    Choices:

      -
    • "PERURL" ← (default)

    • +
    • "PERURL"

    • "PERPOLICY"

    diff --git a/docs/collections/netscaler/adc/cmpglobal_cmppolicy_binding_module.html b/docs/collections/netscaler/adc/cmpglobal_cmppolicy_binding_module.html index c1ca3a3b..c5b12652 100644 --- a/docs/collections/netscaler/adc/cmpglobal_cmppolicy_binding_module.html +++ b/docs/collections/netscaler/adc/cmpglobal_cmppolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cmpglobal_cmppolicy_binding module – Binding Resource definition for describing association between cmpglobal and cmppolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    Citrix ADC CPU threshold after which compression is not performed. Range: 0 - 100

    -

    Default: 100.0

    @@ -229,7 +228,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -241,7 +240,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -250,7 +249,6 @@

    Parameters

    float

    For heuristic basefile expiry, weightage to be given to historical delta compression ratio, specified as percentage. For example, to give 25% weightage to historical ratio (and therefore 75% weightage to the ratio for current delta compression transaction), specify 25.

    -

    Default: 50.0

    @@ -258,7 +256,6 @@

    Parameters

    float

    Threshold compression ratio for heuristic basefile expiry, multiplied by 100. For example, to set the threshold ratio to 1.25, specify 125.

    -

    Default: 100.0

    Minimum quantum of data to be filled before compression begins.

    -

    Default: 57344.0

    @@ -349,7 +345,7 @@

    Parameters

    Allow the server to send compressed data to the Citrix ADC. With the default setting, the Citrix ADC appliance handles all compression.

    Choices:

      -
    • "ON" ← (default)

    • +
    • "ON"

    • "OFF"

    @@ -360,9 +356,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/cmppolicy_module.html b/docs/collections/netscaler/adc/cmppolicy_module.html index 07407d9a..6ff91664 100644 --- a/docs/collections/netscaler/adc/cmppolicy_module.html +++ b/docs/collections/netscaler/adc/cmppolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cmppolicy module – Configuration for compression policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/cmppolicylabel_cmppolicy_binding_module.html b/docs/collections/netscaler/adc/cmppolicylabel_cmppolicy_binding_module.html index 2359fe94..40aa6308 100644 --- a/docs/collections/netscaler/adc/cmppolicylabel_cmppolicy_binding_module.html +++ b/docs/collections/netscaler/adc/cmppolicylabel_cmppolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cmppolicylabel_cmppolicy_binding module – Binding Resource definition for describing association between cmppolicylabel and cmppolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/cmppolicylabel_module.html b/docs/collections/netscaler/adc/cmppolicylabel_module.html index 46908b32..1b8d5b85 100644 --- a/docs/collections/netscaler/adc/cmppolicylabel_module.html +++ b/docs/collections/netscaler/adc/cmppolicylabel_module.html @@ -131,7 +131,7 @@

    netscaler.adc.cmppolicylabel module – Configuration for compression policy label resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/contentinspectionaction_module.html b/docs/collections/netscaler/adc/contentinspectionaction_module.html index d77ca8dd..2c2de902 100644 --- a/docs/collections/netscaler/adc/contentinspectionaction_module.html +++ b/docs/collections/netscaler/adc/contentinspectionaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.contentinspectionaction module – Configuration for Content Inspection action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -190,7 +190,7 @@

    Parameters
  • "CONTINUE"

  • "DROP"

  • -
  • "RESET" ← (default)

  • +
  • "RESET"

  • @@ -275,7 +275,6 @@

    Parameters

    float

    Port of remoteService

    -

    Default: 1344.0

    diff --git a/docs/collections/netscaler/adc/contentinspectioncallout_module.html b/docs/collections/netscaler/adc/contentinspectioncallout_module.html index 018f048d..b7802823 100644 --- a/docs/collections/netscaler/adc/contentinspectioncallout_module.html +++ b/docs/collections/netscaler/adc/contentinspectioncallout_module.html @@ -131,7 +131,7 @@

    netscaler.adc.contentinspectioncallout module – Configuration for Content Inspection callout resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -291,7 +291,6 @@

    Parameters

    float

    Port of the Content Inspection server.

    -

    Default: 1344.0

    diff --git a/docs/collections/netscaler/adc/contentinspectionglobal_contentinspectionpolicy_binding_module.html b/docs/collections/netscaler/adc/contentinspectionglobal_contentinspectionpolicy_binding_module.html index a8a625e5..85b48cf1 100644 --- a/docs/collections/netscaler/adc/contentinspectionglobal_contentinspectionpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/contentinspectionglobal_contentinspectionpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.contentinspectionglobal_contentinspectionpolicy_binding module – Binding Resource definition for describing association between contentinspectionglobal and contentinspectionpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    0

    Choices:

      -
    • "SYSTEM_GLOBAL" ← (default)

    • +
    • "SYSTEM_GLOBAL"

    • "VPN_GLOBAL"

    • "RNAT_GLOBAL"

    • "APPFW_GLOBAL"

    • diff --git a/docs/collections/netscaler/adc/contentinspectionparameter_module.html b/docs/collections/netscaler/adc/contentinspectionparameter_module.html index 742ca4e4..a1623624 100644 --- a/docs/collections/netscaler/adc/contentinspectionparameter_module.html +++ b/docs/collections/netscaler/adc/contentinspectionparameter_module.html @@ -131,7 +131,7 @@

      netscaler.adc.contentinspectionparameter module – Configuration for Contentinspection parameter resource.

      diff --git a/docs/collections/netscaler/adc/contentinspectionpolicy_module.html b/docs/collections/netscaler/adc/contentinspectionpolicy_module.html index fa1c169d..79465c72 100644 --- a/docs/collections/netscaler/adc/contentinspectionpolicy_module.html +++ b/docs/collections/netscaler/adc/contentinspectionpolicy_module.html @@ -131,7 +131,7 @@

      netscaler.adc.contentinspectionpolicy module – Configuration for ContentInspection policy resource.

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/contentinspectionpolicylabel_contentinspectionpolicy_binding_module.html b/docs/collections/netscaler/adc/contentinspectionpolicylabel_contentinspectionpolicy_binding_module.html index 06a14ad6..095ba078 100644 --- a/docs/collections/netscaler/adc/contentinspectionpolicylabel_contentinspectionpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/contentinspectionpolicylabel_contentinspectionpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.contentinspectionpolicylabel_contentinspectionpolicy_binding module – Binding Resource definition for describing association between contentinspectionpolicylabel and contentinspectionpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/contentinspectionpolicylabel_module.html b/docs/collections/netscaler/adc/contentinspectionpolicylabel_module.html index 9fdc251c..bbc43d9b 100644 --- a/docs/collections/netscaler/adc/contentinspectionpolicylabel_module.html +++ b/docs/collections/netscaler/adc/contentinspectionpolicylabel_module.html @@ -131,7 +131,7 @@

      netscaler.adc.contentinspectionpolicylabel module – Configuration for ContentInspection policy label resource.

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/contentinspectionprofile_module.html b/docs/collections/netscaler/adc/contentinspectionprofile_module.html index c6ef26ee..90453bf1 100644 --- a/docs/collections/netscaler/adc/contentinspectionprofile_module.html +++ b/docs/collections/netscaler/adc/contentinspectionprofile_module.html @@ -131,7 +131,7 @@

      netscaler.adc.contentinspectionprofile module – Configuration for ContentInspection profile resource.

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crpolicy_module.html b/docs/collections/netscaler/adc/crpolicy_module.html index 61b2a2f7..0894a176 100644 --- a/docs/collections/netscaler/adc/crpolicy_module.html +++ b/docs/collections/netscaler/adc/crpolicy_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crpolicy module – Configuration for cache redirection policy resource.

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_analyticsprofile_binding_module.html b/docs/collections/netscaler/adc/crvserver_analyticsprofile_binding_module.html index 3957ad28..5584aae5 100644 --- a/docs/collections/netscaler/adc/crvserver_analyticsprofile_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_analyticsprofile_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_analyticsprofile_binding module – Binding Resource definition for describing association between crvserver and analyticsprofile resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_appflowpolicy_binding_module.html b/docs/collections/netscaler/adc/crvserver_appflowpolicy_binding_module.html index bfe8e371..2224479d 100644 --- a/docs/collections/netscaler/adc/crvserver_appflowpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_appflowpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_appflowpolicy_binding module – Binding Resource definition for describing association between crvserver and appflowpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_appfwpolicy_binding_module.html b/docs/collections/netscaler/adc/crvserver_appfwpolicy_binding_module.html index 449ddadf..1acfe657 100644 --- a/docs/collections/netscaler/adc/crvserver_appfwpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_appfwpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_appfwpolicy_binding module – Binding Resource definition for describing association between crvserver and appfwpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_appqoepolicy_binding_module.html b/docs/collections/netscaler/adc/crvserver_appqoepolicy_binding_module.html index 12505970..6e25a2b8 100644 --- a/docs/collections/netscaler/adc/crvserver_appqoepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_appqoepolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_appqoepolicy_binding module – Binding Resource definition for describing association between crvserver and appqoepolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_cachepolicy_binding_module.html b/docs/collections/netscaler/adc/crvserver_cachepolicy_binding_module.html index ccd59b0e..8c73e89b 100644 --- a/docs/collections/netscaler/adc/crvserver_cachepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_cachepolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_cachepolicy_binding module – Binding Resource definition for describing association between crvserver and cachepolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_cmppolicy_binding_module.html b/docs/collections/netscaler/adc/crvserver_cmppolicy_binding_module.html index ca6e651b..c905cceb 100644 --- a/docs/collections/netscaler/adc/crvserver_cmppolicy_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_cmppolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_cmppolicy_binding module – Binding Resource definition for describing association between crvserver and cmppolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_crpolicy_binding_module.html b/docs/collections/netscaler/adc/crvserver_crpolicy_binding_module.html index d8e19a7c..3cc1f59b 100644 --- a/docs/collections/netscaler/adc/crvserver_crpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_crpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_crpolicy_binding module – Binding Resource definition for describing association between crvserver and crpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_cspolicy_binding_module.html b/docs/collections/netscaler/adc/crvserver_cspolicy_binding_module.html index e9434ae5..cc4bed28 100644 --- a/docs/collections/netscaler/adc/crvserver_cspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_cspolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_cspolicy_binding module – Binding Resource definition for describing association between crvserver and cspolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_feopolicy_binding_module.html b/docs/collections/netscaler/adc/crvserver_feopolicy_binding_module.html index 68b7d1d0..f83db610 100644 --- a/docs/collections/netscaler/adc/crvserver_feopolicy_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_feopolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_feopolicy_binding module – Binding Resource definition for describing association between crvserver and feopolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_icapolicy_binding_module.html b/docs/collections/netscaler/adc/crvserver_icapolicy_binding_module.html index 3475febe..193f652c 100644 --- a/docs/collections/netscaler/adc/crvserver_icapolicy_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_icapolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_icapolicy_binding module – Binding Resource definition for describing association between crvserver and icapolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_lbvserver_binding_module.html b/docs/collections/netscaler/adc/crvserver_lbvserver_binding_module.html index d5f723a6..8eefe8fa 100644 --- a/docs/collections/netscaler/adc/crvserver_lbvserver_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_lbvserver_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_lbvserver_binding module – Binding Resource definition for describing association between crvserver and lbvserver resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_module.html b/docs/collections/netscaler/adc/crvserver_module.html index 44165b3b..4c1f0b0f 100644 --- a/docs/collections/netscaler/adc/crvserver_module.html +++ b/docs/collections/netscaler/adc/crvserver_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver module – Configuration for CR virtual server resource.

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      @@ -178,7 +178,7 @@

      Parameters

      Enable logging of AppFlow information.

      Choices:

        -
      • "ENABLED" ← (default)

      • +
      • "ENABLED"

      • "DISABLED"

      @@ -203,7 +203,7 @@

      ParametersChoices:

      • "ENABLED"

      • -
      • "DISABLED" ← (default)

      • +
      • "DISABLED"

      @@ -732,7 +732,7 @@

      ParametersChoices:

      • "ENABLED"

      • -
      • "DISABLED" ← (default)

      • +
      • "DISABLED"

      @@ -744,7 +744,7 @@

      ParametersChoices:

      • "ENABLED"

      • -
      • "DISABLED" ← (default)

      • +
      • "DISABLED"

      @@ -770,7 +770,7 @@

      Parameters

      Perform delayed cleanup of connections to this virtual server.

      Choices:

        -
      • "ENABLED" ← (default)

      • +
      • "ENABLED"

      • "DISABLED"

      @@ -813,7 +813,7 @@

      Parameters

      Criterion for responding to PING requests sent to this virtual server. If ACTIVE, respond only if the virtual server is available. If PASSIVE, respond even if the virtual server is not available.

      Choices:

        -
      • "PASSIVE" ← (default)

      • +
      • "PASSIVE"

      • "ACTIVE"

      @@ -850,7 +850,6 @@

      Parameters

      string

      String specifying the listen policy for the cache redirection virtual server. Can be either an in-line expression or the name of a named expression.

      -

      Default: "\"NONE\""

      @@ -858,7 +857,6 @@

      Parameters

      float

      Priority of the listen policy specified by the Listen Policy parameter. The lower the number, higher the priority.

      -

      Default: 101.0

      @@ -969,7 +967,6 @@

      Parameters

      integer

      Port number of the virtual server.

      -

      Default: 80

      @@ -1021,7 +1018,6 @@

      Parameters

      string

      HTTP code to return in SUCCESS case.

      -

      Default: "\"200 OK\""

      @@ -1029,7 +1025,6 @@

      Parameters

      float

      Number of consecutive IP addresses, starting with the address specified by the IPAddress parameter, to include in a range of addresses assigned to this virtual server.

      -

      Default: 1.0

      @@ -1066,7 +1061,7 @@

      ParametersIf you set the Reuse parameter to ON, connections to origin servers and connections to cache servers are reused.

      Choices:

        -
      • "ON" ← (default)

      • +
      • "ON"

      • "OFF"

      @@ -1083,7 +1078,7 @@

      Parameters

      Choices:

        -
      • "PASSIVE" ← (default)

      • +
      • "PASSIVE"

      • "ACTIVE"

      @@ -1183,7 +1178,7 @@

      ParametersChoices:

      • "YES"

      • -
      • "NO" ← (default)

      • +
      • "NO"

      @@ -1195,7 +1190,7 @@

      ParametersChoices:

      • "ON"

      • -
      • "OFF" ← (default)

      • +
      • "OFF"

      @@ -1218,7 +1213,7 @@

      Parameters

      Insert a via header in each HTTP request. In the case of a cache miss, the request is redirected from the cache server to the origin server. This header indicates whether the request is being sent from a cache server.

      Choices:

        -
      • "ON" ← (default)

      • +
      • "ON"

      • "OFF"

      diff --git a/docs/collections/netscaler/adc/crvserver_policymap_binding_module.html b/docs/collections/netscaler/adc/crvserver_policymap_binding_module.html index cea96351..1ecfb345 100644 --- a/docs/collections/netscaler/adc/crvserver_policymap_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_policymap_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_policymap_binding module – Binding Resource definition for describing association between crvserver and policymap resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_responderpolicy_binding_module.html b/docs/collections/netscaler/adc/crvserver_responderpolicy_binding_module.html index d6ccd145..c24c0fd4 100644 --- a/docs/collections/netscaler/adc/crvserver_responderpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_responderpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_responderpolicy_binding module – Binding Resource definition for describing association between crvserver and responderpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_rewritepolicy_binding_module.html b/docs/collections/netscaler/adc/crvserver_rewritepolicy_binding_module.html index 9e4c330a..be99ebde 100644 --- a/docs/collections/netscaler/adc/crvserver_rewritepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_rewritepolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_rewritepolicy_binding module – Binding Resource definition for describing association between crvserver and rewritepolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/crvserver_spilloverpolicy_binding_module.html b/docs/collections/netscaler/adc/crvserver_spilloverpolicy_binding_module.html index baec0f8e..566d094e 100644 --- a/docs/collections/netscaler/adc/crvserver_spilloverpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/crvserver_spilloverpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.crvserver_spilloverpolicy_binding module – Binding Resource definition for describing association between crvserver and spilloverpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csaction_module.html b/docs/collections/netscaler/adc/csaction_module.html index a33ebc50..da9a59bb 100644 --- a/docs/collections/netscaler/adc/csaction_module.html +++ b/docs/collections/netscaler/adc/csaction_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csaction module – Configuration for Content Switching action resource.

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      @@ -312,7 +312,45 @@

      Notes

      Examples

      -
      
      +
      ---
      +
      +- name: Sample Playbook
      +  hosts: localhost
      +
      +  gather_facts: false
      +
      +  tasks:
      +    - name: Sample Task | lbvserver
      +      delegate_to: localhost
      +      netscaler.adc.lbvserver:
      +        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
      +        # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable
      +        # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable
      +        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
      +        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
      +        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
      +
      +        state: present
      +
      +        name: lb-vserver-1
      +        servicetype: HTTP
      +        ipv46: 6.92.2.2
      +        port: 80
      +
      +    - name: Sample Task | csaction
      +      delegate_to: localhost
      +      netscaler.adc.csaction:
      +        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
      +        # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable
      +        # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable
      +        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
      +        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
      +        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
      +
      +        state: present
      +
      +        name: action1
      +        targetlbvserver: lb-vserver-1
       
      diff --git a/docs/collections/netscaler/adc/csparameter_module.html b/docs/collections/netscaler/adc/csparameter_module.html index 9c953585..56fcfd59 100644 --- a/docs/collections/netscaler/adc/csparameter_module.html +++ b/docs/collections/netscaler/adc/csparameter_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csparameter module – Configuration for CS parameter resource.

      diff --git a/docs/collections/netscaler/adc/cspolicy_module.html b/docs/collections/netscaler/adc/cspolicy_module.html index 6851d603..e7985fea 100644 --- a/docs/collections/netscaler/adc/cspolicy_module.html +++ b/docs/collections/netscaler/adc/cspolicy_module.html @@ -131,7 +131,7 @@

      netscaler.adc.cspolicy module – Configuration for content-switching policy resource.

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/cspolicylabel_cspolicy_binding_module.html b/docs/collections/netscaler/adc/cspolicylabel_cspolicy_binding_module.html index 0d844415..bb595207 100644 --- a/docs/collections/netscaler/adc/cspolicylabel_cspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/cspolicylabel_cspolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.cspolicylabel_cspolicy_binding module – Binding Resource definition for describing association between cspolicylabel and cspolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/cspolicylabel_module.html b/docs/collections/netscaler/adc/cspolicylabel_module.html index 4db50849..2726e1ca 100644 --- a/docs/collections/netscaler/adc/cspolicylabel_module.html +++ b/docs/collections/netscaler/adc/cspolicylabel_module.html @@ -131,7 +131,7 @@

      netscaler.adc.cspolicylabel module – Configuration for CS policy label resource.

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_analyticsprofile_binding_module.html b/docs/collections/netscaler/adc/csvserver_analyticsprofile_binding_module.html index d84eaccf..80ad76d2 100644 --- a/docs/collections/netscaler/adc/csvserver_analyticsprofile_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_analyticsprofile_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_analyticsprofile_binding module – Binding Resource definition for describing association between csvserver and analyticsprofile resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_appflowpolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_appflowpolicy_binding_module.html index fed4c7a5..67cc50dd 100644 --- a/docs/collections/netscaler/adc/csvserver_appflowpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_appflowpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_appflowpolicy_binding module – Binding Resource definition for describing association between csvserver and appflowpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_appfwpolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_appfwpolicy_binding_module.html index ae239a72..b5f206f3 100644 --- a/docs/collections/netscaler/adc/csvserver_appfwpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_appfwpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_appfwpolicy_binding module – Binding Resource definition for describing association between csvserver and appfwpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_appqoepolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_appqoepolicy_binding_module.html index 9fca655e..05db87ee 100644 --- a/docs/collections/netscaler/adc/csvserver_appqoepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_appqoepolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_appqoepolicy_binding module – Binding Resource definition for describing association between csvserver and appqoepolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_auditnslogpolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_auditnslogpolicy_binding_module.html index bae3b100..78619e2c 100644 --- a/docs/collections/netscaler/adc/csvserver_auditnslogpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_auditnslogpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_auditnslogpolicy_binding module – Binding Resource definition for describing association between csvserver and auditnslogpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_auditsyslogpolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_auditsyslogpolicy_binding_module.html index e262187d..785b455d 100644 --- a/docs/collections/netscaler/adc/csvserver_auditsyslogpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_auditsyslogpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_auditsyslogpolicy_binding module – Binding Resource definition for describing association between csvserver and auditsyslogpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_authorizationpolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_authorizationpolicy_binding_module.html index cd771de8..b9383841 100644 --- a/docs/collections/netscaler/adc/csvserver_authorizationpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_authorizationpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_authorizationpolicy_binding module – Binding Resource definition for describing association between csvserver and authorizationpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_botpolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_botpolicy_binding_module.html index e612a2d1..e81db31c 100644 --- a/docs/collections/netscaler/adc/csvserver_botpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_botpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_botpolicy_binding module – Binding Resource definition for describing association between csvserver and botpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_cachepolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_cachepolicy_binding_module.html index cb65fcf0..30de55ed 100644 --- a/docs/collections/netscaler/adc/csvserver_cachepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_cachepolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_cachepolicy_binding module – Binding Resource definition for describing association between csvserver and cachepolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_cmppolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_cmppolicy_binding_module.html index 735b59d9..292e1149 100644 --- a/docs/collections/netscaler/adc/csvserver_cmppolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_cmppolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_cmppolicy_binding module – Binding Resource definition for describing association between csvserver and cmppolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_contentinspectionpolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_contentinspectionpolicy_binding_module.html index 48cb604d..bb9fe2fd 100644 --- a/docs/collections/netscaler/adc/csvserver_contentinspectionpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_contentinspectionpolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_contentinspectionpolicy_binding module – Binding Resource definition for describing association between csvserver and contentinspectionpolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_cspolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_cspolicy_binding_module.html index c3b1d5f7..b1d3eb73 100644 --- a/docs/collections/netscaler/adc/csvserver_cspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_cspolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_cspolicy_binding module – Binding Resource definition for describing association between csvserver and cspolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_domain_binding_module.html b/docs/collections/netscaler/adc/csvserver_domain_binding_module.html index 4d1b8b79..b9c749b7 100644 --- a/docs/collections/netscaler/adc/csvserver_domain_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_domain_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_domain_binding module – Binding Resource definition for describing association between csvserver and domain resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_feopolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_feopolicy_binding_module.html index 5f3caa79..6b966fad 100644 --- a/docs/collections/netscaler/adc/csvserver_feopolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_feopolicy_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_feopolicy_binding module – Binding Resource definition for describing association between csvserver and feopolicy resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_gslbvserver_binding_module.html b/docs/collections/netscaler/adc/csvserver_gslbvserver_binding_module.html index d9f103ed..5c1b849d 100644 --- a/docs/collections/netscaler/adc/csvserver_gslbvserver_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_gslbvserver_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_gslbvserver_binding module – Binding Resource definition for describing association between csvserver and gslbvserver resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_lbvserver_binding_module.html b/docs/collections/netscaler/adc/csvserver_lbvserver_binding_module.html index 833b851b..fc28116b 100644 --- a/docs/collections/netscaler/adc/csvserver_lbvserver_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_lbvserver_binding_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver_lbvserver_binding module – Binding Resource definition for describing association between csvserver and lbvserver resources

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      diff --git a/docs/collections/netscaler/adc/csvserver_module.html b/docs/collections/netscaler/adc/csvserver_module.html index c4a9dc82..624987b1 100644 --- a/docs/collections/netscaler/adc/csvserver_module.html +++ b/docs/collections/netscaler/adc/csvserver_module.html @@ -131,7 +131,7 @@

      netscaler.adc.csvserver module – Configuration for CS virtual server resource.

      Note

      -

      This module is part of the netscaler.adc collection (version 2.0.2).

      +

      This module is part of the netscaler.adc collection (version 2.1.0).

      It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

      To install it, use: ansible-galaxy collection install netscaler.adc.

      @@ -178,7 +178,7 @@

      Parameters

      Enable logging appflow flow information

      Choices:

        -
      • "ENABLED" ← (default)

      • +
      • "ENABLED"

      • "DISABLED"

      @@ -191,7 +191,7 @@

      ParametersChoices:

      • "ON"

      • -
      • "OFF" ← (default)

      • +
      • "OFF"

      @@ -210,7 +210,7 @@

      ParametersChoices:

      • "ON"

      • -
      • "OFF" ← (default)

      • +
      • "OFF"

      @@ -240,7 +240,6 @@

      Parameters

      float

      Time period for which backup persistence is in effect.

      -

      Default: 2.0

      @@ -271,7 +270,7 @@

      Parameters

      Consider case in URLs (for policies that use URLs instead of RULES). For example, with the ON setting, the URLs /a/1.html and /A/1.HTML are treated differently and can have different targets (set by content switching policies). With the OFF setting, /a/1.html and /A/1.HTML are switched to the same target.

      Choices:

        -
      • "ON" ← (default)

      • +
      • "ON"

      • "OFF"

      @@ -1012,7 +1011,7 @@

      ParametersChoices:

      • "ENABLED"

      • -
      • "DISABLED" ← (default)

      • +
      • "DISABLED"

      @@ -1051,7 +1050,7 @@

      Parameters

      Flush all active transactions associated with a virtual server whose state transitions from UP to DOWN. Do not enable this option for applications that must complete their transactions.

      Choices:

        -
      • "ENABLED" ← (default)

      • +
      • "ENABLED"

      • "DISABLED"

      @@ -1064,7 +1063,7 @@

      ParametersChoices:

      • "ON"

      • -
      • "OFF" ← (default)

      • +
      • "OFF"

      @@ -1089,7 +1088,7 @@

      Parameters

      Can be active or passive

      Choices:

        -
      • "PASSIVE" ← (default)

      • +
      • "PASSIVE"

      • "ACTIVE"

      @@ -1159,7 +1158,6 @@

      Parameters

      string

      String specifying the listen policy for the content switching virtual server. Can be either the name of an existing expression or an in-line expression.

      -

      Default: "\"NONE\""

      @@ -1167,7 +1165,6 @@

      Parameters

      float

      Integer specifying the priority of the listen policy. A higher number specifies a lower priority. If a request matches the listen policies of more than one virtual server the virtual server whose listen policy has the highest priority (the lowest priority number) accepts the request.

      -

      Default: 101.0

    @@ -1193,7 +1190,6 @@

    Parameters

    float

    The character set returned by the mysql vserver.

    -

    Default: 8.0

    @@ -1201,7 +1197,6 @@

    Parameters

    float

    The protocol version returned by the mysql vserver.

    -

    Default: 10.0

    @@ -1209,7 +1204,6 @@

    Parameters

    float

    The server capabilities returned by the mysql vserver.

    -

    Default: 41613.0

    HTTP code to return in SUCCESS case.

    -

    Default: "\"200 OK\""

    @@ -1405,7 +1398,6 @@

    Parameters

    string

    Expression for extracting the label from the response received from server. This string can be either an existing rule name or an inline expression. The service type of the virtual server should be either HTTP or SSL.

    -

    Default: "\"none\""

    @@ -1439,7 +1431,6 @@

    Parameters

    float

    Number of consecutive IP addresses, starting with the address specified by the IP Address parameter, to include in a range of addresses assigned to this virtual server.

    -

    Default: 1.0

    @@ -1481,7 +1472,7 @@

    Parameters

    Choices:

      -
    • "PASSIVE" ← (default)

    • +
    • "PASSIVE"

    • "ACTIVE"

    @@ -1494,7 +1485,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -1591,7 +1582,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -1600,7 +1591,6 @@

    Parameters

    float

    Time-out value, in minutes, for spillover persistence.

    -

    Default: 2.0

    @@ -1684,7 +1674,6 @@

    Parameters

    float

    Time period for which a persistence session is in effect.

    -

    Default: 2.0

    @@ -1699,7 +1688,6 @@

    Parameters

    float

    Persistence mask for IP based persistence types, for IPv6 virtual servers.

    -

    Default: 128.0

    @@ -1735,7 +1723,72 @@

    Notes

    Examples

    -
    
    +
    ---
    +
    +- name: Sample Playbook
    +  hosts: localhost
    +
    +  gather_facts: false
    +
    +  tasks:
    +    - name: Set lb vserver 1
    +      delegate_to: localhost
    +      netscaler.adc.lbvserver:
    +        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
    +        # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable
    +        # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable
    +        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
    +        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
    +        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
    +
    +        state: present
    +
    +        name: lbvserver_1
    +        servicetype: HTTP
    +        ipv46: 10.78.1.1
    +        port: 80
    +
    +
    +    - name: Set cs policy
    +      delegate_to: localhost
    +      netscaler.adc.cspolicy:
    +        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
    +        # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable
    +        # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable
    +        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
    +        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
    +        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
    +
    +        state: present
    +
    +        policyname: policy_1
    +        rule: "HTTP.REQ.URL.CONTAINS(\"/test\")"
    +
    +
    +    - name: Set cs vserver
    +      delegate_to: localhost
    +      netscaler.adc.csvserver:
    +        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
    +        # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable
    +        # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable
    +        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
    +        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
    +        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
    +
    +        state: present
    +
    +        name: cs-vserver-1
    +        ipv46: 192.168.1.1
    +        port: 90
    +        servicetype: HTTP
    +
    +        csvserver_cspolicy_binding:
    +          mode: desired
    +          binding_members:
    +            - name: cs-vserver-1
    +              policyname: policy_1
    +              targetlbvserver: lbvserver_1
    +              priority: 1
     
    diff --git a/docs/collections/netscaler/adc/csvserver_responderpolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_responderpolicy_binding_module.html index d0e2735f..0cad3c39 100644 --- a/docs/collections/netscaler/adc/csvserver_responderpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_responderpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.csvserver_responderpolicy_binding module – Binding Resource definition for describing association between csvserver and responderpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/csvserver_rewritepolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_rewritepolicy_binding_module.html index b9cd8b13..a5acfaed 100644 --- a/docs/collections/netscaler/adc/csvserver_rewritepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_rewritepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.csvserver_rewritepolicy_binding module – Binding Resource definition for describing association between csvserver and rewritepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/csvserver_spilloverpolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_spilloverpolicy_binding_module.html index a1d188af..bf99d6df 100644 --- a/docs/collections/netscaler/adc/csvserver_spilloverpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_spilloverpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.csvserver_spilloverpolicy_binding module – Binding Resource definition for describing association between csvserver and spilloverpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/csvserver_tmtrafficpolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_tmtrafficpolicy_binding_module.html index f8e74d9c..ba6e5063 100644 --- a/docs/collections/netscaler/adc/csvserver_tmtrafficpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_tmtrafficpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.csvserver_tmtrafficpolicy_binding module – Binding Resource definition for describing association between csvserver and tmtrafficpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/csvserver_transformpolicy_binding_module.html b/docs/collections/netscaler/adc/csvserver_transformpolicy_binding_module.html index 557de678..3e5230c1 100644 --- a/docs/collections/netscaler/adc/csvserver_transformpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_transformpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.csvserver_transformpolicy_binding module – Binding Resource definition for describing association between csvserver and transformpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/csvserver_vpnvserver_binding_module.html b/docs/collections/netscaler/adc/csvserver_vpnvserver_binding_module.html index 337b5e5c..10de5a5b 100644 --- a/docs/collections/netscaler/adc/csvserver_vpnvserver_binding_module.html +++ b/docs/collections/netscaler/adc/csvserver_vpnvserver_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.csvserver_vpnvserver_binding module – Binding Resource definition for describing association between csvserver and vpnvserver resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/dbdbprofile_module.html b/docs/collections/netscaler/adc/dbdbprofile_module.html index 6391a645..b88d9691 100644 --- a/docs/collections/netscaler/adc/dbdbprofile_module.html +++ b/docs/collections/netscaler/adc/dbdbprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dbdbprofile module – Configuration for DB profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    Use the same server-side connection for multiple client-side requests. Default is enabled.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -191,7 +191,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -202,7 +202,7 @@

    Parameters

    If ENABLED, inspect the query and update the connection information, if required. If DISABLED, forward the query to the server.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -301,7 +301,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    diff --git a/docs/collections/netscaler/adc/dbuser_module.html b/docs/collections/netscaler/adc/dbuser_module.html index 21b2381b..b36860f8 100644 --- a/docs/collections/netscaler/adc/dbuser_module.html +++ b/docs/collections/netscaler/adc/dbuser_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dbuser module – Configuration for DB user resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/dnsaaaarec_module.html b/docs/collections/netscaler/adc/dnsaaaarec_module.html index f1ae4a13..c082a51d 100644 --- a/docs/collections/netscaler/adc/dnsaaaarec_module.html +++ b/docs/collections/netscaler/adc/dnsaaaarec_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsaaaarec module – Configuration for IPv6 address type record resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -273,7 +273,6 @@

    Parameters

    float

    Time to Live (TTL), in seconds, for the record. TTL is the time for which the record must be cached by DNS proxies. The specified TTL is applied to all the resource records that are of the same record type and belong to the specified domain name. For example, if you add an address record, with a TTL of 36000, to the domain name example.com, the TTLs of all the address records of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone’s minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600.

    -

    Default: 3600.0

    diff --git a/docs/collections/netscaler/adc/dnsaction64_module.html b/docs/collections/netscaler/adc/dnsaction64_module.html index 3071fc6e..e155e8e4 100644 --- a/docs/collections/netscaler/adc/dnsaction64_module.html +++ b/docs/collections/netscaler/adc/dnsaction64_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsaction64 module – Configuration for dns64 action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/dnsaction_module.html b/docs/collections/netscaler/adc/dnsaction_module.html index 2f65dc36..abd222a2 100644 --- a/docs/collections/netscaler/adc/dnsaction_module.html +++ b/docs/collections/netscaler/adc/dnsaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsaction module – Configuration for DNS action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -292,7 +292,6 @@

    Parameters

    float

    Time to live, in seconds.

    -

    Default: 3600.0

    diff --git a/docs/collections/netscaler/adc/dnsaddrec_module.html b/docs/collections/netscaler/adc/dnsaddrec_module.html index bbb95c37..8ed8060b 100644 --- a/docs/collections/netscaler/adc/dnsaddrec_module.html +++ b/docs/collections/netscaler/adc/dnsaddrec_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsaddrec module – Configuration for address type record resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -273,7 +273,6 @@

    Parameters

    float

    Time to Live (TTL), in seconds, for the record. TTL is the time for which the record must be cached by DNS proxies. The specified TTL is applied to all the resource records that are of the same record type and belong to the specified domain name. For example, if you add an address record, with a TTL of 36000, to the domain name example.com, the TTLs of all the address records of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone’s minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600.

    -

    Default: 3600.0

    @@ -318,7 +317,17 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | dnsaddRec
    +      delegate_to: localhost
    +      netscaler.adc.dnsaddrec:
    +        state: present
    +        hostname: k.root-servers.net
    +        ipaddress: 193.0.14.129
    +        ttl: 3600000
     
    diff --git a/docs/collections/netscaler/adc/dnscaarec_module.html b/docs/collections/netscaler/adc/dnscaarec_module.html index b36d17a6..00ec4648 100644 --- a/docs/collections/netscaler/adc/dnscaarec_module.html +++ b/docs/collections/netscaler/adc/dnscaarec_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnscaarec module – Configuration for CAA record resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -285,7 +285,6 @@

    Parameters

    string

    String that represents the identifier of the property represented by the CAA record. The RFC currently defines three available tags - issue, issuwild and iodef.

    -

    Default: "\"issue\""

    @@ -293,7 +292,6 @@

    Parameters

    float

    Time to Live (TTL), in seconds, for the record. TTL is the time for which the record must be cached by DNS proxies. The specified TTL is applied to all the resource records that are of the same record type and belong to the specified domain name. For example, if you add an address record, with a TTL of 36000, to the domain name example.com, the TTLs of all the address records of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone’s minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600.

    -

    Default: 3600.0

    diff --git a/docs/collections/netscaler/adc/dnscnamerec_module.html b/docs/collections/netscaler/adc/dnscnamerec_module.html index d78d1a21..0e0e96ed 100644 --- a/docs/collections/netscaler/adc/dnscnamerec_module.html +++ b/docs/collections/netscaler/adc/dnscnamerec_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnscnamerec module – Configuration for CNAME record resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -273,7 +273,6 @@

    Parameters

    float

    Time to Live (TTL), in seconds, for the record. TTL is the time for which the record must be cached by DNS proxies. The specified TTL is applied to all the resource records that are of the same record type and belong to the specified domain name. For example, if you add an address record, with a TTL of 36000, to the domain name example.com, the TTLs of all the address records of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone’s minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600.

    -

    Default: 3600.0

    diff --git a/docs/collections/netscaler/adc/dnsglobal_dnspolicy_binding_module.html b/docs/collections/netscaler/adc/dnsglobal_dnspolicy_binding_module.html index 9d4d42f7..541baec6 100644 --- a/docs/collections/netscaler/adc/dnsglobal_dnspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/dnsglobal_dnspolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsglobal_dnspolicy_binding module – Binding Resource definition for describing association between dnsglobal and dnspolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters @@ -267,7 +265,6 @@

    Parameters

    float

    Time at which to generate notification of key expiration, specified as number of days, hours, or minutes before expiry. Must be less than the expiry period. The notification is an SNMP trap sent to an SNMP manager. To enable the appliance to send the trap, enable the DNSKEY-EXPIRY SNMP alarm.

    -

    Default: 7.0

    @@ -338,7 +337,6 @@

    Parameters

    float

    Time to Live (TTL), in seconds, for the DNSKEY resource record created in the zone. TTL is the time for which the record must be cached by the DNS proxies. If the TTL is not specified, either the DNS zone’s minimum TTL or the default value of 3600 is used.

    -

    Default: 3600.0

    @@ -363,7 +361,7 @@

    Parameters
  • "MINUTES"

  • "HOURS"

  • -
  • "DAYS" ← (default)

  • +
  • "DAYS"

  • diff --git a/docs/collections/netscaler/adc/dnsmxrec_module.html b/docs/collections/netscaler/adc/dnsmxrec_module.html index 481e722d..0e3563c5 100644 --- a/docs/collections/netscaler/adc/dnsmxrec_module.html +++ b/docs/collections/netscaler/adc/dnsmxrec_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsmxrec module – Configuration for MX record resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -280,7 +280,6 @@

    Parameters

    float

    Time to Live (TTL), in seconds, for the record. TTL is the time for which the record must be cached by DNS proxies. The specified TTL is applied to all the resource records that are of the same record type and belong to the specified domain name. For example, if you add an address record, with a TTL of 36000, to the domain name example.com, the TTLs of all the address records of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone’s minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600.

    -

    Default: 3600.0

    diff --git a/docs/collections/netscaler/adc/dnsnameserver_module.html b/docs/collections/netscaler/adc/dnsnameserver_module.html index 899a0ad2..4f5dcd45 100644 --- a/docs/collections/netscaler/adc/dnsnameserver_module.html +++ b/docs/collections/netscaler/adc/dnsnameserver_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsnameserver module – Configuration for name server resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -285,7 +285,7 @@

    Parameters

    Protocol used by the name server. UDP_TCP is not valid if the name server is a DNS virtual server configured on the appliance.

    Choices:

      -
    • "UDP" ← (default)

    • +
    • "UDP"

    • "TCP"

    • "UDP_TCP"

    diff --git a/docs/collections/netscaler/adc/dnsnaptrrec_module.html b/docs/collections/netscaler/adc/dnsnaptrrec_module.html index 03dda468..868645cd 100644 --- a/docs/collections/netscaler/adc/dnsnaptrrec_module.html +++ b/docs/collections/netscaler/adc/dnsnaptrrec_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsnaptrrec module – Configuration for NAPTR record resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -316,7 +316,6 @@

    Parameters

    float

    Time to Live (TTL), in seconds, for the record. TTL is the time for which the record must be cached by DNS proxies. The specified TTL is applied to all the resource records that are of the same record type and belong to the specified domain name. For example, if you add an address record, with a TTL of 36000, to the domain name example.com, the TTLs of all the address records of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone’s minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600.

    -

    Default: 3600.0

    diff --git a/docs/collections/netscaler/adc/dnsnsrec_module.html b/docs/collections/netscaler/adc/dnsnsrec_module.html index b5d1d2b6..f7c28edf 100644 --- a/docs/collections/netscaler/adc/dnsnsrec_module.html +++ b/docs/collections/netscaler/adc/dnsnsrec_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsnsrec module – Configuration for name server record resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -273,7 +273,6 @@

    Parameters

    float

    Time to Live (TTL), in seconds, for the record. TTL is the time for which the record must be cached by DNS proxies. The specified TTL is applied to all the resource records that are of the same record type and belong to the specified domain name. For example, if you add an address record, with a TTL of 36000, to the domain name example.com, the TTLs of all the address records of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone’s minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600.

    -

    Default: 3600.0

    @@ -318,7 +317,17 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | dnsnsRec
    +      delegate_to: localhost
    +      netscaler.adc.dnsnsrec:
    +        state: present
    +        domain: .
    +        nameserver: a.root-servers.net
    +        ttl: 3600000
     
    diff --git a/docs/collections/netscaler/adc/dnsparameter_module.html b/docs/collections/netscaler/adc/dnsparameter_module.html index 17fb15fd..ec6218f9 100644 --- a/docs/collections/netscaler/adc/dnsparameter_module.html +++ b/docs/collections/netscaler/adc/dnsparameter_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsparameter module – Configuration for DNS parameter resource.

    @@ -203,7 +203,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -214,7 +214,7 @@

    Parameters

    Cache resource records in the DNS cache. Applies to resource records obtained through proxy configurations only. End resolver and forwarder configurations always cache records in the DNS cache, and you cannot disable this behavior. When you disable record caching, the appliance stops caching server responses. However, cached records are not flushed. The appliance does not serve requests from the cache until record caching is enabled again.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -234,7 +234,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -245,7 +245,7 @@

    Parameters

    Enable or disable the Domain Name System Security Extensions (DNSSEC) feature on the appliance. Note: Even when the DNSSEC feature is enabled, forwarder configurations (used by internal Citrix ADC features such as SSL VPN and Cache Redirection for name resolution) do not support the DNSSEC OK (DO) bit in the EDNS0 OPT header.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -276,7 +276,6 @@

    Parameters

    float

    Maximum time to live (TTL) for all negative records ( NXDONAIN and NODATA ) cached in the DNS cache by DNS proxy, end resolver, and forwarder configurations. If the TTL of a record that is to be cached is higher than the value configured for maxnegcacheTTL, the TTL of the record is set to the value of maxnegcacheTTL before caching. When you modify this setting, the new value is applied only to those records that are cached after the modification. The TTL values of existing records are not changed.

    -

    Default: 604800.0

    @@ -291,7 +290,6 @@

    Parameters

    float

    Maximum time to live (TTL) for all records cached in the DNS cache by DNS proxy, end resolver, and forwarder configurations. If the TTL of a record that is to be cached is higher than the value configured for maxTTL, the TTL of the record is set to the value of maxTTL before caching. When you modify this setting, the new value is applied only to those records that are cached after the modification. The TTL values of existing records are not changed.

    -

    Default: 604800.0

    @@ -299,7 +297,6 @@

    Parameters

    float

    Maximum UDP packet size that can be handled by Citrix ADC. This is the value advertised by Citrix ADC when responding as an authoritative server and it is also used when Citrix ADC queries other name servers as a forwarder. When acting as a proxy, requests from clients are limited by this parameter - if a request contains a size greater than this value in the OPT record, it will be replaced.

    -

    Default: 1280.0

    @@ -393,7 +390,7 @@

    Parameters* AAAAThenAQuery. Send a query for an AAAA record, and then send a query for an A record if the query for the AAAA record results in a NODATA response from the name server.

    Choices:

    Maximum number of retry attempts when no response is received for a query sent to a name server. Applies to end resolver and forwarder configurations.

    -

    Default: 5.0

    @@ -428,7 +424,7 @@

    Parameters

    Processing requests split across multiple packets

    Choices:

      -
    • "ALLOW" ← (default)

    • +
    • "ALLOW"

    • "DROP"

    @@ -439,9 +435,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/dnspolicy64_module.html b/docs/collections/netscaler/adc/dnspolicy64_module.html index 201beeaa..a810444f 100644 --- a/docs/collections/netscaler/adc/dnspolicy64_module.html +++ b/docs/collections/netscaler/adc/dnspolicy64_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnspolicy64 module – Configuration for dns64 policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/dnspolicy_module.html b/docs/collections/netscaler/adc/dnspolicy_module.html index d9165b10..66ea0f99 100644 --- a/docs/collections/netscaler/adc/dnspolicy_module.html +++ b/docs/collections/netscaler/adc/dnspolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnspolicy module – Configuration for DNS policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/dnspolicylabel_dnspolicy_binding_module.html b/docs/collections/netscaler/adc/dnspolicylabel_dnspolicy_binding_module.html index fe1a8f9d..1021fd93 100644 --- a/docs/collections/netscaler/adc/dnspolicylabel_dnspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/dnspolicylabel_dnspolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnspolicylabel_dnspolicy_binding module – Binding Resource definition for describing association between dnspolicylabel and dnspolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/dnspolicylabel_module.html b/docs/collections/netscaler/adc/dnspolicylabel_module.html index 1f70a4ed..90f36d7d 100644 --- a/docs/collections/netscaler/adc/dnspolicylabel_module.html +++ b/docs/collections/netscaler/adc/dnspolicylabel_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnspolicylabel module – Configuration for dns policy label resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/dnsprofile_module.html b/docs/collections/netscaler/adc/dnsprofile_module.html index f62510b1..1e034a79 100644 --- a/docs/collections/netscaler/adc/dnsprofile_module.html +++ b/docs/collections/netscaler/adc/dnsprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsprofile module – Configuration for DNS profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -190,7 +190,7 @@

    Parameters

    Cache negative responses in the DNS cache. When disabled, the appliance stops caching negative responses except referral records. This applies to all configurations - proxy, end resolver, and forwarder. However, cached responses are not flushed. The appliance does not serve negative responses from the cache until this parameter is enabled again.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -202,7 +202,7 @@

    Parameters

    Cache resource records in the DNS cache. Applies to resource records obtained through proxy configurations only. End resolver and forwarder configurations always cache records in the DNS cache, and you cannot disable this behavior. When you disable record caching, the appliance stops caching server responses. However, cached records are not flushed. The appliance does not serve requests from the cache until record caching is enabled again.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -215,7 +215,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -227,7 +227,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -239,7 +239,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -258,7 +258,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -270,7 +270,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/dnsproxyrecords_module.html b/docs/collections/netscaler/adc/dnsproxyrecords_module.html index ce85ced8..92f16e85 100644 --- a/docs/collections/netscaler/adc/dnsproxyrecords_module.html +++ b/docs/collections/netscaler/adc/dnsproxyrecords_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsproxyrecords module – Configuration for proxy record resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/dnsptrrec_module.html b/docs/collections/netscaler/adc/dnsptrrec_module.html index c44a8156..966a56ca 100644 --- a/docs/collections/netscaler/adc/dnsptrrec_module.html +++ b/docs/collections/netscaler/adc/dnsptrrec_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsptrrec module – Configuration for PTR record resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -273,7 +273,6 @@

    Parameters

    float

    Time to Live (TTL), in seconds, for the record. TTL is the time for which the record must be cached by DNS proxies. The specified TTL is applied to all the resource records that are of the same record type and belong to the specified domain name. For example, if you add an address record, with a TTL of 36000, to the domain name example.com, the TTLs of all the address records of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone’s minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600.

    -

    Default: 3600.0

    diff --git a/docs/collections/netscaler/adc/dnssoarec_module.html b/docs/collections/netscaler/adc/dnssoarec_module.html index 3d1292a9..2a9b3d68 100644 --- a/docs/collections/netscaler/adc/dnssoarec_module.html +++ b/docs/collections/netscaler/adc/dnssoarec_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnssoarec module – Configuration for SOA record resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -197,7 +197,6 @@

    Parameters

    float

    Time, in seconds, after which the zone data on a secondary name server can no longer be considered authoritative because all refresh and retry attempts made during the period have failed. After the expiry period, the secondary server stops serving the zone. Typically one week. Not used by the primary server.

    -

    Default: 3600.0

    @@ -205,7 +204,6 @@

    Parameters

    float

    Default time to live (TTL) for all records in the zone. Can be overridden for individual records.

    -

    Default: 5.0

    @@ -269,7 +267,6 @@

    Parameters

    float

    Time, in seconds, for which a secondary server must wait between successive checks on the value of the serial number.

    -

    Default: 3600.0

    @@ -277,7 +274,6 @@

    Parameters

    float

    Time, in seconds, between retries if a secondary server’s attempt to contact the primary server for a zone refresh fails.

    -

    Default: 3.0

    @@ -298,7 +294,6 @@

    Parameters

    float

    The secondary server uses this parameter to determine whether it requires a zone transfer from the primary server.

    -

    Default: 100.0

    @@ -320,7 +315,6 @@

    Parameters

    float

    Time to Live (TTL), in seconds, for the record. TTL is the time for which the record must be cached by DNS proxies. The specified TTL is applied to all the resource records that are of the same record type and belong to the specified domain name. For example, if you add an address record, with a TTL of 36000, to the domain name example.com, the TTLs of all the address records of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone’s minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600.

    -

    Default: 3600.0

    diff --git a/docs/collections/netscaler/adc/dnssrvrec_module.html b/docs/collections/netscaler/adc/dnssrvrec_module.html index d10cfd7d..6fec07c5 100644 --- a/docs/collections/netscaler/adc/dnssrvrec_module.html +++ b/docs/collections/netscaler/adc/dnssrvrec_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnssrvrec module – Configuration for server record resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -287,7 +287,6 @@

    Parameters

    float

    Time to Live (TTL), in seconds, for the record. TTL is the time for which the record must be cached by DNS proxies. The specified TTL is applied to all the resource records that are of the same record type and belong to the specified domain name. For example, if you add an address record, with a TTL of 36000, to the domain name example.com, the TTLs of all the address records of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone’s minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600.

    -

    Default: 3600.0

    diff --git a/docs/collections/netscaler/adc/dnssubnetcache_module.html b/docs/collections/netscaler/adc/dnssubnetcache_module.html index 6244ad14..0b7fe43c 100644 --- a/docs/collections/netscaler/adc/dnssubnetcache_module.html +++ b/docs/collections/netscaler/adc/dnssubnetcache_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnssubnetcache module – Configuration for subnet cache resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/dnssuffix_module.html b/docs/collections/netscaler/adc/dnssuffix_module.html index af038ee6..8ccfffed 100644 --- a/docs/collections/netscaler/adc/dnssuffix_module.html +++ b/docs/collections/netscaler/adc/dnssuffix_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnssuffix module – Configuration for DNS suffix resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -172,8 +172,8 @@

    Parameters
    -

    Dnssuffix

    -

    string

    +

    dnssuffix

    +

    string

    Suffix to be appended when resolving domain names that are not fully qualified.

    diff --git a/docs/collections/netscaler/adc/dnstxtrec_module.html b/docs/collections/netscaler/adc/dnstxtrec_module.html index e01a3e1d..16282814 100644 --- a/docs/collections/netscaler/adc/dnstxtrec_module.html +++ b/docs/collections/netscaler/adc/dnstxtrec_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnstxtrec module – Configuration for TXT record resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -269,8 +269,8 @@

    Parameters
    -

    String

    -

    list / elements=string

    +

    string

    +

    list / elements=string

    Information to store in the TXT resource record. Enclose the string in single or double quotation marks. A TXT resource record can contain up to six strings, each of which can contain up to 255 characters. If you want to add a string of more than 255 characters, evaluate whether splitting it into two or more smaller strings, subject to the six-string limit, works for you.

    @@ -280,7 +280,6 @@

    Parameters

    float

    Time to Live (TTL), in seconds, for the record. TTL is the time for which the record must be cached by DNS proxies. The specified TTL is applied to all the resource records that are of the same record type and belong to the specified domain name. For example, if you add an address record, with a TTL of 36000, to the domain name example.com, the TTLs of all the address records of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone’s minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600.

    -

    Default: 3600.0

    diff --git a/docs/collections/netscaler/adc/dnsview_module.html b/docs/collections/netscaler/adc/dnsview_module.html index 800e07c0..109a2175 100644 --- a/docs/collections/netscaler/adc/dnsview_module.html +++ b/docs/collections/netscaler/adc/dnsview_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnsview module – Configuration for DNS view resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/dnszone_module.html b/docs/collections/netscaler/adc/dnszone_module.html index c6485c79..7c2a0456 100644 --- a/docs/collections/netscaler/adc/dnszone_module.html +++ b/docs/collections/netscaler/adc/dnszone_module.html @@ -131,7 +131,7 @@

    netscaler.adc.dnszone module – Configuration for DNS zone resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -232,7 +232,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/endpointinfo_module.html b/docs/collections/netscaler/adc/endpointinfo_module.html index 54209bfa..eac12d3a 100644 --- a/docs/collections/netscaler/adc/endpointinfo_module.html +++ b/docs/collections/netscaler/adc/endpointinfo_module.html @@ -131,7 +131,7 @@

    netscaler.adc.endpointinfo module – Configuration for Information resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    Endpoint kind. Currently, IP endpoints are supported

    Choices:

      -
    • "IP" ← (default)

    • +
    • "IP"

    diff --git a/docs/collections/netscaler/adc/extendedmemoryparam_module.html b/docs/collections/netscaler/adc/extendedmemoryparam_module.html index 101b7926..0df5fd61 100644 --- a/docs/collections/netscaler/adc/extendedmemoryparam_module.html +++ b/docs/collections/netscaler/adc/extendedmemoryparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.extendedmemoryparam module – Configuration for Parameter for extended memory used by LSN and Subscriber Store resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -240,9 +240,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/feoaction_module.html b/docs/collections/netscaler/adc/feoaction_module.html index 1704029e..31ba16e4 100644 --- a/docs/collections/netscaler/adc/feoaction_module.html +++ b/docs/collections/netscaler/adc/feoaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.feoaction module – Configuration for Front end optimization action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -176,7 +176,6 @@

    Parameters

    float

    Maxage for cache extension.

    -

    Default: 30.0

    diff --git a/docs/collections/netscaler/adc/feoglobal_feopolicy_binding_module.html b/docs/collections/netscaler/adc/feoglobal_feopolicy_binding_module.html index 73eb8e17..60232450 100644 --- a/docs/collections/netscaler/adc/feoglobal_feopolicy_binding_module.html +++ b/docs/collections/netscaler/adc/feoglobal_feopolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.feoglobal_feopolicy_binding module – Binding Resource definition for describing association between feoglobal and feopolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    0

    Choices:

    @@ -376,9 +373,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -390,7 +389,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -402,7 +401,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -414,7 +413,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/l3param_module.html b/docs/collections/netscaler/adc/l3param_module.html index 047a3794..a14e30d0 100644 --- a/docs/collections/netscaler/adc/l3param_module.html +++ b/docs/collections/netscaler/adc/l3param_module.html @@ -131,7 +131,7 @@

    netscaler.adc.l3param module – Configuration for Layer 3 related parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -167,11 +167,6 @@

    Parameters

    string

    Parameter to tune acl logging time

    -

    Choices:

    -
      -
    • "ENABLED"

    • -
    • "DISABLED"

    • -
    @@ -203,7 +198,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -215,7 +210,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -227,7 +222,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -239,7 +234,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -251,7 +246,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -260,7 +255,6 @@

    Parameters

    float

    NS generated ICMP pkts per 10ms rate threshold

    -

    Default: 100.0

    @@ -294,7 +288,7 @@

    Parameters

    Enable round robin usage of mapped IPs.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -352,7 +346,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -376,7 +370,7 @@

    Parameters

    Perform NAT if only the source is in the private network

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -387,9 +381,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -400,7 +396,7 @@

    Parameters

    Enable/Disable learning PMTU of IP tunnel when ICMP error does not contain connection information.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -413,7 +409,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -443,7 +439,23 @@

    Notes

    Examples

    -
    
    +
    ---
    +- name: Sample Task
    +  hosts: localhost
    +
    +  gather_facts: false
    +
    +  tasks:
    +    - name: Sample task | set l3param
    +      delegate_to: localhost
    +      netscaler.adc.l3param:
    +        state: present
    +        acllogtime: 3000
    +    - name: Sample task | unset l3param
    +      delegate_to: localhost
    +      netscaler.adc.l3param:
    +        state: absent # absent for l3param calls unset action
    +        acllogtime: "true"
     
    diff --git a/docs/collections/netscaler/adc/l4param_module.html b/docs/collections/netscaler/adc/l4param_module.html index 0670be7f..c7f13044 100644 --- a/docs/collections/netscaler/adc/l4param_module.html +++ b/docs/collections/netscaler/adc/l4param_module.html @@ -131,7 +131,7 @@

    netscaler.adc.l4param module – Configuration for Layer 4 related parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -184,7 +184,7 @@

    Parameters

    "Mac"

  • "MacChannel"

  • "MacVlan"

  • -
  • "MacVlanChannel" ← (default)

  • +
  • "MacVlanChannel"

  • @@ -196,7 +196,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -261,9 +261,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/lacp_module.html b/docs/collections/netscaler/adc/lacp_module.html index 214d8ae3..3d0cc8d4 100644 --- a/docs/collections/netscaler/adc/lacp_module.html +++ b/docs/collections/netscaler/adc/lacp_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lacp module – Configuration for Link aggregation control protocol resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -218,7 +218,6 @@

    Parameters

    float

    The owner node in a cluster for which we want to set the lacp priority. Owner node can vary from 0 to 31. Ownernode value of 254 is used for Cluster.

    -

    Default: 255.0

    @@ -251,7 +250,6 @@

    Parameters

    float

    Priority number that determines which peer device of an LACP LA channel can have control over the LA channel. This parameter is globally applied to all LACP channels on the Citrix ADC. The lower the number, the higher the priority.

    -

    Default: 32768.0

    @@ -280,7 +278,15 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | lacp
    +      delegate_to: localhost
    +      netscaler.adc.lacp:
    +        state: present
    +        syspriority: '32768'
     
    diff --git a/docs/collections/netscaler/adc/lbaction_module.html b/docs/collections/netscaler/adc/lbaction_module.html index 1f946214..6b1929ff 100644 --- a/docs/collections/netscaler/adc/lbaction_module.html +++ b/docs/collections/netscaler/adc/lbaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbaction module – Configuration for lb action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbglobal_lbpolicy_binding_module.html b/docs/collections/netscaler/adc/lbglobal_lbpolicy_binding_module.html index 501cbe2d..291eedb3 100644 --- a/docs/collections/netscaler/adc/lbglobal_lbpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbglobal_lbpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbglobal_lbpolicy_binding module – Binding Resource definition for describing association between lbglobal and lbpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    0

    Choices:

    @@ -298,7 +298,6 @@

    Parameters

    integer

    Time duration for which to wait before probing a service that has been marked as DOWN. Expressed in milliseconds, seconds, or minutes.

    -

    Default: 30

    @@ -408,7 +407,6 @@

    Parameters

    integer

    Time interval between two successive probes. Must be greater than the value of Response Time-out.

    -

    Default: 5

    @@ -530,7 +528,6 @@

    Parameters

    float

    Maximum number of hops that the SIP request used for monitoring can traverse to reach the server. Applicable only to monitors of type SIP-UDP.

    -

    Default: 1.0

    @@ -581,7 +578,6 @@

    Parameters

    float

    Version of MQTT protocol used in connect message, default is version 3.1.1 [4]

    -

    Default: 4.0

    @@ -718,7 +714,6 @@

    Parameters

    float

    Account Type to be used in Account Request Packet. Applicable to monitors of type RADIUS_ACCOUNTING.

    -

    Default: 1.0

    @@ -936,8 +929,8 @@

    Parameters
    -

    Snmpoid

    -

    string

    +

    snmpoid

    +

    string

    SNMP OID for SNMP monitors.

    @@ -1001,7 +994,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -1012,7 +1005,7 @@

    Parameters

    Enable/Disable probing for Account Service. Applicable only to Store Front monitors. For multi-tenancy configuration users my skip account service

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -1025,7 +1018,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -1041,7 +1034,6 @@

    Parameters

    integer

    Number of consecutive successful probes required to transition a service’s state from DOWN to UP.

    -

    Default: 1

    @@ -1162,7 +1154,7 @@

    Parameters

    Unit of measurement for the Deviation parameter. Cannot be changed after the monitor is created.

    Choices:

      -
    • "SEC" ← (default)

    • +
    • "SEC"

    • "MSEC"

    • "MIN"

    @@ -1175,7 +1167,7 @@

    Parameters

    Unit of measurement for the Down Time parameter. Cannot be changed after the monitor is created.

    Choices:

      -
    • "SEC" ← (default)

    • +
    • "SEC"

    • "MSEC"

    • "MIN"

    @@ -1188,7 +1180,7 @@

    Parameters

    monitor interval units

    Choices:

      -
    • "SEC" ← (default)

    • +
    • "SEC"

    • "MSEC"

    • "MIN"

    @@ -1201,7 +1193,7 @@

    Parameters @@ -1280,7 +1272,42 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | lbmonitor
    +      delegate_to: localhost
    +      netscaler.adc.lbmonitor:
    +        state: present
    +        monitorname: ldns-dns
    +        type: LDNS-DNS
    +        query: .
    +        querytype: Address
    +        deviation: '0'
    +        interval: 6
    +        resptimeout: 3
    +        downtime: 20
    +    - name: Sample Task | lbmonitor | 2
    +      delegate_to: localhost
    +      netscaler.adc.lbmonitor:
    +        state: present
    +        monitorname: stasecure
    +        type: CITRIX-STA-SERVICE
    +        deviation: '0'
    +        interval: 2
    +        units3: MIN
    +        resptimeout: 4
    +        downtime: 5
    +    - name: Sample Task | lbmonitor | 3
    +      delegate_to: localhost
    +      tags: test
    +      netscaler.adc.lbmonitor:
    +        state: present
    +        monitorname: test-monitor1
    +        type: TCP
    +        interval: 15
    +        retries: 20
     
    diff --git a/docs/collections/netscaler/adc/lbmonitor_sslcertkey_binding_module.html b/docs/collections/netscaler/adc/lbmonitor_sslcertkey_binding_module.html index 45bc1e17..60801044 100644 --- a/docs/collections/netscaler/adc/lbmonitor_sslcertkey_binding_module.html +++ b/docs/collections/netscaler/adc/lbmonitor_sslcertkey_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbmonitor_sslcertkey_binding module – Binding Resource definition for describing association between lbmonitor and sslcertkey resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbparameter_module.html b/docs/collections/netscaler/adc/lbparameter_module.html index 0db6bd69..98ec714b 100644 --- a/docs/collections/netscaler/adc/lbparameter_module.html +++ b/docs/collections/netscaler/adc/lbparameter_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbparameter module – Configuration for LB parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -169,7 +169,7 @@

    Parameters

    This is used, to enable/disable the option of svc/svcgroup removal, if it is bound to one or more vserver. If it is enabled, the svc/svcgroup can be removed, even if it bound to vservers. If disabled, an error will be thrown, when the user tries to remove a svc/svcgroup without unbinding from its vservers.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -206,7 +206,7 @@

    Parameters

    To find the service with the fewest connections, the virtual server uses the consolidated connection statistics from all the packet engines. The NO setting allows consideration of only the number of connections on the packet engine that received the new connection.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -232,7 +232,7 @@

    Parameters

    When this option is enabled, MQTT messages of length greater than 64k will be dropped and the client/server connections will be reset.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -244,7 +244,7 @@

    Parameters

    Include the HttpOnly attribute in persistence cookies. The HttpOnly attribute limits the scope of a cookie to HTTP requests and helps mitigate the risk of cross-site scripting attacks.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -256,7 +256,7 @@

    Parameters

    This option is used to specify the number of fingers to be used in PRAC and JARH algorithms for hash based LB methods. Increasing the number of fingers might give better distribution of traffic at the expense of additional memory

    -

    Default: 256.0

    @@ -308,7 +307,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -361,7 +360,7 @@

    Parameters

    Perform route lookup for traffic received by the Citrix ADC, and forward the traffic according to configured routes. Do not set this parameter if you want a wildcard virtual server to direct packets received by the appliance to an intermediary device, such as a firewall, even if their destination is directly connected to the appliance. Route lookup is performed after the packets have been processed and returned by the intermediary device.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -374,7 +373,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -412,9 +411,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -426,7 +427,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -438,7 +439,6 @@

    Parameters* NOLBACTION - Does not consider LB action in making LB decision.

    * RESET - Reset the request and notify the user, so that the user can resend the request.

    * DROP - Drop the request without sending a response to the user.

    -

    Default: "\"NOLBACTION\""

    @@ -460,7 +460,7 @@

    Parameters

    Include the port number of the service when creating a hash for hash based load balancing methods. With the NO setting, only the IP address of the service is considered when creating a hash.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -473,7 +473,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -498,7 +498,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -516,7 +516,28 @@

    Notes

    Examples

    -
    
    +
    ---
    +
    +- name: Sample Task
    +  hosts: localhost
    +
    +  gather_facts: false
    +
    +  tasks:
    +
    +    - name: Sample playbook
    +      delegate_to: localhost
    +      netscaler.adc.lbparameter:
    +        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
    +        # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable
    +        # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable
    +        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
    +        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
    +        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
    +
    +        state: present
    +
    +        allowboundsvcremoval: DISABLED
     
    diff --git a/docs/collections/netscaler/adc/lbpersistentsessions_module.html b/docs/collections/netscaler/adc/lbpersistentsessions_module.html index 7e165f5e..d7900a75 100644 --- a/docs/collections/netscaler/adc/lbpersistentsessions_module.html +++ b/docs/collections/netscaler/adc/lbpersistentsessions_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbpersistentsessions module – Configuration for persistence session resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbpolicy_module.html b/docs/collections/netscaler/adc/lbpolicy_module.html index 7a98eea9..54829b73 100644 --- a/docs/collections/netscaler/adc/lbpolicy_module.html +++ b/docs/collections/netscaler/adc/lbpolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbpolicy module – Configuration for lb policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbpolicylabel_lbpolicy_binding_module.html b/docs/collections/netscaler/adc/lbpolicylabel_lbpolicy_binding_module.html index 01a1711f..b440b56f 100644 --- a/docs/collections/netscaler/adc/lbpolicylabel_lbpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbpolicylabel_lbpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbpolicylabel_lbpolicy_binding module – Binding Resource definition for describing association between lbpolicylabel and lbpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbpolicylabel_module.html b/docs/collections/netscaler/adc/lbpolicylabel_module.html index 4962ef69..d4b5e555 100644 --- a/docs/collections/netscaler/adc/lbpolicylabel_module.html +++ b/docs/collections/netscaler/adc/lbpolicylabel_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbpolicylabel module – Configuration for lb policy label resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -288,7 +288,7 @@

    Parameters* HTTP_QUIC - HTTP_QUIC request.

    Choices:

    @@ -359,7 +358,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -371,7 +370,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/lbroute6_module.html b/docs/collections/netscaler/adc/lbroute6_module.html index 66c2eded..bf36f145 100644 --- a/docs/collections/netscaler/adc/lbroute6_module.html +++ b/docs/collections/netscaler/adc/lbroute6_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbroute6 module – Configuration for LB route6 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbroute_module.html b/docs/collections/netscaler/adc/lbroute_module.html index d6dbafec..49c3de2f 100644 --- a/docs/collections/netscaler/adc/lbroute_module.html +++ b/docs/collections/netscaler/adc/lbroute_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbroute module – Configuration for LB route resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbsipparameters_module.html b/docs/collections/netscaler/adc/lbsipparameters_module.html index 5b1e305d..b9d37abb 100644 --- a/docs/collections/netscaler/adc/lbsipparameters_module.html +++ b/docs/collections/netscaler/adc/lbsipparameters_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbsipparameters module – Configuration for SIP parameters resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -169,7 +169,7 @@

    Parameters

    Add the rport parameter to the VIA headers of SIP requests that virtual servers receive from clients or servers.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -230,7 +230,6 @@

    Parameters

    integer

    Time, in seconds, for which a client must wait before initiating a connection after receiving a 503 Service Unavailable response from the SIP server. The time value is sent in the “Retry-After” header in the 503 response.

    -

    Default: 120

    @@ -279,7 +278,6 @@

    Parameters

    float

    Maximum number of 503 Service Unavailable responses to generate, once every 10 milliseconds, when a SIP virtual server becomes unavailable.

    -

    Default: 100.0

    @@ -288,9 +286,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/lbvserver_analyticsprofile_binding_module.html b/docs/collections/netscaler/adc/lbvserver_analyticsprofile_binding_module.html index 1814c754..e5da2d63 100644 --- a/docs/collections/netscaler/adc/lbvserver_analyticsprofile_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_analyticsprofile_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_analyticsprofile_binding module – Binding Resource definition for describing association between lbvserver and analyticsprofile resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_appflowpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_appflowpolicy_binding_module.html index 8e42dd28..638264c3 100644 --- a/docs/collections/netscaler/adc/lbvserver_appflowpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_appflowpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_appflowpolicy_binding module – Binding Resource definition for describing association between lbvserver and appflowpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_appfwpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_appfwpolicy_binding_module.html index 4ac6ce16..c058db94 100644 --- a/docs/collections/netscaler/adc/lbvserver_appfwpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_appfwpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_appfwpolicy_binding module – Binding Resource definition for describing association between lbvserver and appfwpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_appqoepolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_appqoepolicy_binding_module.html index 9f88e95d..e73aa634 100644 --- a/docs/collections/netscaler/adc/lbvserver_appqoepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_appqoepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_appqoepolicy_binding module – Binding Resource definition for describing association between lbvserver and appqoepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_auditnslogpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_auditnslogpolicy_binding_module.html index ac290d58..fd4549d3 100644 --- a/docs/collections/netscaler/adc/lbvserver_auditnslogpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_auditnslogpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_auditnslogpolicy_binding module – Binding Resource definition for describing association between lbvserver and auditnslogpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_auditsyslogpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_auditsyslogpolicy_binding_module.html index fc0a3c5d..11691eb9 100644 --- a/docs/collections/netscaler/adc/lbvserver_auditsyslogpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_auditsyslogpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_auditsyslogpolicy_binding module – Binding Resource definition for describing association between lbvserver and auditsyslogpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_authorizationpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_authorizationpolicy_binding_module.html index f6c9e46f..4ae5c0a4 100644 --- a/docs/collections/netscaler/adc/lbvserver_authorizationpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_authorizationpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_authorizationpolicy_binding module – Binding Resource definition for describing association between lbvserver and authorizationpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_botpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_botpolicy_binding_module.html index 8a660552..ad7f124e 100644 --- a/docs/collections/netscaler/adc/lbvserver_botpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_botpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_botpolicy_binding module – Binding Resource definition for describing association between lbvserver and botpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_cachepolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_cachepolicy_binding_module.html index 1ddc7734..fb4a7c98 100644 --- a/docs/collections/netscaler/adc/lbvserver_cachepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_cachepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_cachepolicy_binding module – Binding Resource definition for describing association between lbvserver and cachepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_cmppolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_cmppolicy_binding_module.html index 1bce3631..ffd36e3e 100644 --- a/docs/collections/netscaler/adc/lbvserver_cmppolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_cmppolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_cmppolicy_binding module – Binding Resource definition for describing association between lbvserver and cmppolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_contentinspectionpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_contentinspectionpolicy_binding_module.html index c37a7b27..c6c91c58 100644 --- a/docs/collections/netscaler/adc/lbvserver_contentinspectionpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_contentinspectionpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_contentinspectionpolicy_binding module – Binding Resource definition for describing association between lbvserver and contentinspectionpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_dnspolicy64_binding_module.html b/docs/collections/netscaler/adc/lbvserver_dnspolicy64_binding_module.html index 086454c6..4a01efe2 100644 --- a/docs/collections/netscaler/adc/lbvserver_dnspolicy64_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_dnspolicy64_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_dnspolicy64_binding module – Binding Resource definition for describing association between lbvserver and dnspolicy64 resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_feopolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_feopolicy_binding_module.html index 60a7830a..b465b72b 100644 --- a/docs/collections/netscaler/adc/lbvserver_feopolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_feopolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_feopolicy_binding module – Binding Resource definition for describing association between lbvserver and feopolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_lbpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_lbpolicy_binding_module.html index ce65d1ad..ae90f695 100644 --- a/docs/collections/netscaler/adc/lbvserver_lbpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_lbpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_lbpolicy_binding module – Binding Resource definition for describing association between lbvserver and lbpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_module.html b/docs/collections/netscaler/adc/lbvserver_module.html index 746ec21a..bda2b08c 100644 --- a/docs/collections/netscaler/adc/lbvserver_module.html +++ b/docs/collections/netscaler/adc/lbvserver_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver module – Configuration for Load Balancing Virtual Server resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -185,7 +185,7 @@

    Parameters

    Apply AppFlow logging to the virtual server.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -198,7 +198,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -217,7 +217,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -246,7 +246,7 @@

    Parameters

    Choices:

    Time period for which backup persistence is in effect.

    -

    Default: 2.0

    @@ -291,7 +290,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -319,7 +318,7 @@

    Parameters* DISABLED - Connection failover does not occur.

    Choices:

      -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    • "STATEFUL"

    • "STATELESS"

    @@ -361,7 +360,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -373,7 +372,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -403,7 +402,7 @@

    Parameters

    Flush all active transactions associated with a virtual server whose state transitions from UP to DOWN. Do not enable this option for applications that must complete their transactions.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -413,7 +412,6 @@

    Parameters

    float

    Number of bytes to consider for the hash value used in the URLHASH and DOMAINHASH load balancing methods.

    -

    Default: 80.0

    @@ -536,7 +534,7 @@

    ParametersChoices:

    Expression identifying traffic accepted by the virtual server. Can be either an expression (for example, CLIENT.IP.DST.IN_SUBNET(192.0.2.0/24) or the name of a named expression. In the above example, the virtual server accepts all requests whose destination IP address is in the 192.0.2.0/24 subnet.

    -

    Default: "\"NONE\""

    @@ -1290,7 +1287,6 @@

    Parameters

    float

    Integer specifying the priority of the listen policy. A higher number specifies a lower priority. If a request matches the listen policies of more than one virtual server the virtual server whose listen policy has the highest priority (the lowest priority number) accepts the request.

    -

    Default: 101.0

    @@ -1350,7 +1346,7 @@

    Parameters

    "2000SP1"

  • "2005"

  • "2008"

  • -
  • "2008R2" ← (default)

  • +
  • "2008R2"

  • "2012"

  • "2014"

  • @@ -1434,7 +1430,7 @@

    Parameters

    Units in which to increment load at each interval in slow-start mode.

    Choices:

      -
    • "PER_SECOND" ← (default)

    • +
    • "PER_SECOND"

    • "PERCENT"

    @@ -1488,7 +1484,7 @@

    Parameters

    Oracle server version

    Choices:

      -
    • "10G" ← (default)

    • +
    • "10G"

    • "11G"

    @@ -1605,7 +1601,6 @@

    Parameters

    string

    HTTP code to return in SUCCESS case.

    -

    Default: "\"200 OK\""

    @@ -1628,7 +1623,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -1637,7 +1632,6 @@

    Parameters

    string

    Expression for extracting a label from the server’s response. Can be either an expression or the name of a named expression.

    -

    Default: "\"none\""

    @@ -1682,7 +1676,6 @@

    Parameters* If the last octet exceeds 255, it rolls over to 0 and the third octet increments by 1.

    Note: The Range parameter assigns multiple IP addresses to one virtual server. To generate an array of virtual servers, each of which owns only one IP address, use brackets in the IP Address and Name parameters to specify the range. For example:

    add lb vserver my_vserver[1-3] HTTP 192.0.2.[1-3] 80

    -

    Default: 1.0

    @@ -1712,7 +1705,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -1743,7 +1736,6 @@

    Parameters

    Expression specifying which part of a server’s response to use for creating rule based persistence sessions (persistence type RULE). Can be either an expression or the name of a named expression.

    Example:

    HTTP.RES.HEADER(“setcookie”).VALUE(0).TYPECAST_NVLIST_T(‘=’,’;’).VALUE(“server1”).

    -

    Default: "\"none\""

    @@ -1768,7 +1760,7 @@

    Parameters* If you set RHI STATE to ACTIVE on some and PASSIVE on others, the Citrix ADC advertises the route for the VIP address if at least one of the associated virtual servers, whose RHI STATE set to ACTIVE, is in UP state.

    Choices:

      -
    • "PASSIVE" ← (default)

    • +
    • "PASSIVE"

    • "ACTIVE"

    @@ -1781,7 +1773,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -1794,7 +1786,6 @@

    Parameters* If the expression includes one or more spaces, enclose the entire expression in double quotation marks.

    * If the expression itself includes double quotation marks, escape the quotations by using the \ character.

    * Alternatively, you can use single quotation marks to enclose the rule, in which case you do not have to escape the double quotation marks.

    -

    Default: "\"none\""

    @@ -1892,7 +1883,7 @@

    Parameters
  • "Bypass"

  • "ReLb"

  • -
  • "None" ← (default)

  • +
  • "None"

  • @@ -1937,7 +1928,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -1946,7 +1937,6 @@

    Parameters

    float

    Timeout for spillover persistence, in minutes.

    -

    Default: 2.0

    @@ -2000,7 +1990,6 @@

    Parameters

    float

    Time period for which a persistence session is in effect.

    -

    Default: 2.0

    Number of bits to consider in an IPv6 destination or source IP address, for creating the hash that is required by the DESTINATIONIPHASH and SOURCEIPHASH load balancing methods.

    -

    Default: 128.0

    @@ -2047,7 +2035,6 @@

    Parameters

    float

    Persistence mask for IP based persistence types, for IPv6 virtual servers.

    -

    Default: 128.0

    @@ -2090,7 +2077,95 @@

    Notes

    Examples

    -
    
    +
    ---
    +
    +- name: Simple LBVserver playbook
    +  hosts: localhost
    +
    +  gather_facts: false
    +
    +  tasks:
    +    - name: Sample Task | service
    +      delegate_to: localhost
    +      netscaler.adc.service:
    +        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
    +        # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable
    +        # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable
    +        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
    +        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
    +        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
    +
    +        state: present
    +
    +        name: s1
    +        ipaddress: 10.222.74.181
    +        servicetype: HTTP
    +        port: 80
    +
    +    - name: Sample Task | service
    +      delegate_to: localhost
    +      netscaler.adc.service:
    +        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
    +        # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable
    +        # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable
    +        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
    +        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
    +        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
    +
    +        state: present
    +
    +        name: s2
    +        ipaddress: 10.10.10.10
    +        servicetype: HTTP
    +        port: 80
    +
    +    - name: Sample Task | servicegroup
    +      delegate_to: localhost
    +      netscaler.adc.servicegroup:
    +        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
    +        # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable
    +        # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable
    +        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
    +        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
    +        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
    +
    +        state: present
    +
    +        servicegroupname: sg1
    +        servicetype: HTTP
    +
    +    - name: Sample Task | lbvserver with bindings
    +      delegate_to: localhost
    +      netscaler.adc.lbvserver:
    +        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
    +        # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable
    +        # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable
    +        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
    +        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
    +        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
    +
    +        state: present
    +
    +        name: test_lbvser
    +        servicetype: HTTP
    +        ipv46: 10.10.10.11
    +        port: 80
    +        lbmethod: LEASTCONNECTION
    +
    +        lbvserver_servicegroup_binding:
    +          # mode: desired # bind | unbind | desired
    +          binding_members:
    +            - name: test_lbvser
    +              servicename: sg1
    +        lbvserver_service_binding:
    +          # mode: desired # bind | unbind | desired
    +          binding_members:
    +            - name: test_lbvser
    +              servicename: s1
    +              weight: 16
    +            - name: test_lbvser
    +              servicename: s2
    +              weight: 20
     
    diff --git a/docs/collections/netscaler/adc/lbvserver_responderpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_responderpolicy_binding_module.html index 6af27dee..a021d37e 100644 --- a/docs/collections/netscaler/adc/lbvserver_responderpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_responderpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_responderpolicy_binding module – Binding Resource definition for describing association between lbvserver and responderpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_rewritepolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_rewritepolicy_binding_module.html index 2c585717..58aa07e7 100644 --- a/docs/collections/netscaler/adc/lbvserver_rewritepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_rewritepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_rewritepolicy_binding module – Binding Resource definition for describing association between lbvserver and rewritepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_service_binding_module.html b/docs/collections/netscaler/adc/lbvserver_service_binding_module.html index 3152e3df..c9a0374b 100644 --- a/docs/collections/netscaler/adc/lbvserver_service_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_service_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_service_binding module – Binding Resource definition for describing association between lbvserver and service resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -302,7 +302,29 @@

    Notes

    Examples

    -
    
    +
    ---
    +
    +- name: Simple lbvserver_service_binding playbook
    +  hosts: localhost
    +
    +  gather_facts: false
    +
    +  tasks:
    +    - name: Sample Task | lbvserver_service_binding
    +      delegate_to: localhost
    +      netscaler.adc.lbvserver_service_binding:
    +        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
    +        # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable
    +        # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable
    +        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
    +        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
    +        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
    +
    +        state: absent
    +
    +        name: test_lbvser
    +        servicename: s1
    +        weight: 16
     
    diff --git a/docs/collections/netscaler/adc/lbvserver_servicegroup_binding_module.html b/docs/collections/netscaler/adc/lbvserver_servicegroup_binding_module.html index 3c2192f6..b78e431a 100644 --- a/docs/collections/netscaler/adc/lbvserver_servicegroup_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_servicegroup_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_servicegroup_binding module – Binding Resource definition for describing association between lbvserver and servicegroup resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -286,7 +286,6 @@

    Parameters

    float

    Integer specifying the weight of the service. A larger number specifies a greater weight. Defines the capacity of the service relative to the other services in the load balancing configuration. Determines the priority given to the service in load balancing decisions.

    -

    Default: 1.0

    diff --git a/docs/collections/netscaler/adc/lbvserver_spilloverpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_spilloverpolicy_binding_module.html index f2baf58d..a154e5aa 100644 --- a/docs/collections/netscaler/adc/lbvserver_spilloverpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_spilloverpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_spilloverpolicy_binding module – Binding Resource definition for describing association between lbvserver and spilloverpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_tmtrafficpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_tmtrafficpolicy_binding_module.html index 5423f579..f8bd3bf5 100644 --- a/docs/collections/netscaler/adc/lbvserver_tmtrafficpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_tmtrafficpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_tmtrafficpolicy_binding module – Binding Resource definition for describing association between lbvserver and tmtrafficpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_transformpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_transformpolicy_binding_module.html index f60103f2..38130530 100644 --- a/docs/collections/netscaler/adc/lbvserver_transformpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_transformpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_transformpolicy_binding module – Binding Resource definition for describing association between lbvserver and transformpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_videooptimizationdetectionpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_videooptimizationdetectionpolicy_binding_module.html index fb1f9da2..59f3facb 100644 --- a/docs/collections/netscaler/adc/lbvserver_videooptimizationdetectionpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_videooptimizationdetectionpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_videooptimizationdetectionpolicy_binding module – Binding Resource definition for describing association between lbvserver and videooptimizationdetectionpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbvserver_videooptimizationpacingpolicy_binding_module.html b/docs/collections/netscaler/adc/lbvserver_videooptimizationpacingpolicy_binding_module.html index 47efe590..fbdf5c34 100644 --- a/docs/collections/netscaler/adc/lbvserver_videooptimizationpacingpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/lbvserver_videooptimizationpacingpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbvserver_videooptimizationpacingpolicy_binding module – Binding Resource definition for describing association between lbvserver and videooptimizationpacingpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbwlm_lbvserver_binding_module.html b/docs/collections/netscaler/adc/lbwlm_lbvserver_binding_module.html index fcf6c3cd..21b69437 100644 --- a/docs/collections/netscaler/adc/lbwlm_lbvserver_binding_module.html +++ b/docs/collections/netscaler/adc/lbwlm_lbvserver_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbwlm_lbvserver_binding module – Binding Resource definition for describing association between lbwlm and lbvserver resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lbwlm_module.html b/docs/collections/netscaler/adc/lbwlm_module.html index d593b3c0..cc9c0a6a 100644 --- a/docs/collections/netscaler/adc/lbwlm_module.html +++ b/docs/collections/netscaler/adc/lbwlm_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lbwlm module – Configuration for web log manager resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -183,7 +183,6 @@

    Parameters

    float

    The idle time period after which Citrix ADC would probe the WLM. The value ranges from 1 to 1440 minutes.

    -

    Default: 2.0

    diff --git a/docs/collections/netscaler/adc/linkset_channel_binding_module.html b/docs/collections/netscaler/adc/linkset_channel_binding_module.html index a40df0eb..64690a2e 100644 --- a/docs/collections/netscaler/adc/linkset_channel_binding_module.html +++ b/docs/collections/netscaler/adc/linkset_channel_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.linkset_channel_binding module – Binding Resource definition for describing association between linkset and channel resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/linkset_interface_binding_module.html b/docs/collections/netscaler/adc/linkset_interface_binding_module.html index 329a6dcd..3e8e2357 100644 --- a/docs/collections/netscaler/adc/linkset_interface_binding_module.html +++ b/docs/collections/netscaler/adc/linkset_interface_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.linkset_interface_binding module – Binding Resource definition for describing association between linkset and interface resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/linkset_module.html b/docs/collections/netscaler/adc/linkset_module.html index c7241484..63d20be5 100644 --- a/docs/collections/netscaler/adc/linkset_module.html +++ b/docs/collections/netscaler/adc/linkset_module.html @@ -131,7 +131,7 @@

    netscaler.adc.linkset module – Configuration for link set resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lldpneighbors_module.html b/docs/collections/netscaler/adc/lldpneighbors_module.html index 78ad012f..dc724b52 100644 --- a/docs/collections/netscaler/adc/lldpneighbors_module.html +++ b/docs/collections/netscaler/adc/lldpneighbors_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lldpneighbors module – Configuration for lldp neighbors resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lldpparam_module.html b/docs/collections/netscaler/adc/lldpparam_module.html index 5dee2c39..16950f35 100644 --- a/docs/collections/netscaler/adc/lldpparam_module.html +++ b/docs/collections/netscaler/adc/lldpparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lldpparam module – Configuration for lldp params resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -176,7 +176,6 @@

    Parameters

    float

    A multiplier for calculating the duration for which the receiving device stores the LLDP information in its database before discarding or removing it. The duration is calculated as the holdtimeTxMult (Holdtime Multiplier) parameter value multiplied by the timer (Timer) parameter value.

    -

    Default: 4.0

    Interval, in seconds, between LLDP packet data units (LLDPDUs). that the Citrix ADC sends to a directly connected device.

    -

    Default: 30.0

    diff --git a/docs/collections/netscaler/adc/location_module.html b/docs/collections/netscaler/adc/location_module.html index b70e727d..47eb82de 100644 --- a/docs/collections/netscaler/adc/location_module.html +++ b/docs/collections/netscaler/adc/location_module.html @@ -131,7 +131,7 @@

    netscaler.adc.location module – Configuration for location resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/locationfile6_module.html b/docs/collections/netscaler/adc/locationfile6_module.html index 876ac484..4eed6a09 100644 --- a/docs/collections/netscaler/adc/locationfile6_module.html +++ b/docs/collections/netscaler/adc/locationfile6_module.html @@ -131,7 +131,7 @@

    netscaler.adc.locationfile6 module – Configuration for location file6 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,14 +178,14 @@

    Parameters

    Format of the IPv6 location file. Required for the Citrix ADC to identify how to read the location file.

    Choices:

      -
    • "netscaler6" ← (default)

    • +
    • "netscaler6"

    • "geoip-country6"

    -

    Locationfile

    -

    string

    +

    locationfile

    +

    string

    Name of the IPv6 location file, with or without absolute path. If the path is not included, the default path (/var/netscaler/locdb) is assumed. In a high availability setup, the static database must be stored in the same location on both Citrix ADCs.

    @@ -266,6 +266,7 @@

    Parameters
  • "present" ← (default)

  • "absent"

  • +
  • "imported"

  • diff --git a/docs/collections/netscaler/adc/locationfile_module.html b/docs/collections/netscaler/adc/locationfile_module.html index 98cea1cf..0f4063f9 100644 --- a/docs/collections/netscaler/adc/locationfile_module.html +++ b/docs/collections/netscaler/adc/locationfile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.locationfile module – Configuration for location file resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    Format of the location file. Required for the Citrix ADC to identify how to read the location file.

    Choices:

    @@ -304,7 +305,17 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | sslcert
    +      delegate_to: localhost
    +      netscaler.adc.locationfile:
    +        state: imported
    +
    +        locationfile: my_file
    +        src: local:my_location_file
     
    diff --git a/docs/collections/netscaler/adc/locationparameter_module.html b/docs/collections/netscaler/adc/locationparameter_module.html index d555c471..a11f6896 100644 --- a/docs/collections/netscaler/adc/locationparameter_module.html +++ b/docs/collections/netscaler/adc/locationparameter_module.html @@ -131,7 +131,7 @@

    netscaler.adc.locationparameter module – Configuration for location parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -207,7 +207,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    • "Expression"

    @@ -315,9 +315,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/login_module.html b/docs/collections/netscaler/adc/login_module.html index 20d78e2a..bbc46cbd 100644 --- a/docs/collections/netscaler/adc/login_module.html +++ b/docs/collections/netscaler/adc/login_module.html @@ -131,7 +131,7 @@

    netscaler.adc.login module – Login to a NetScaler ADC node.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/logout_module.html b/docs/collections/netscaler/adc/logout_module.html index ce39d285..7971a29c 100644 --- a/docs/collections/netscaler/adc/logout_module.html +++ b/docs/collections/netscaler/adc/logout_module.html @@ -131,7 +131,7 @@

    netscaler.adc.logout module – Logout from a NetScaler ADC node.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsnappsattributes_module.html b/docs/collections/netscaler/adc/lsnappsattributes_module.html index c80ee71e..cb9e02aa 100644 --- a/docs/collections/netscaler/adc/lsnappsattributes_module.html +++ b/docs/collections/netscaler/adc/lsnappsattributes_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnappsattributes module – Configuration for LSN Application Attributes resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -245,7 +245,6 @@

    Parameters

    float

    Timeout, in seconds, for an idle LSN session. If an LSN session is idle for a time that exceeds this value, the Citrix ADC removes the session.This timeout does not apply for a TCP LSN session when a FIN or RST message is received from either of the endpoints.

    -

    Default: 30.0

    diff --git a/docs/collections/netscaler/adc/lsnappsprofile_lsnappsattributes_binding_module.html b/docs/collections/netscaler/adc/lsnappsprofile_lsnappsattributes_binding_module.html index c004ba27..1328bdb7 100644 --- a/docs/collections/netscaler/adc/lsnappsprofile_lsnappsattributes_binding_module.html +++ b/docs/collections/netscaler/adc/lsnappsprofile_lsnappsattributes_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnappsprofile_lsnappsattributes_binding module – Binding Resource definition for describing association between lsnappsprofile and lsnappsattributes resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsnappsprofile_module.html b/docs/collections/netscaler/adc/lsnappsprofile_module.html index 20bf07ea..c8cfb705 100644 --- a/docs/collections/netscaler/adc/lsnappsprofile_module.html +++ b/docs/collections/netscaler/adc/lsnappsprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnappsprofile module – Configuration for LSN Application Profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -192,7 +192,7 @@

    Parameters
  • "ENDPOINT-INDEPENDENT"

  • "ADDRESS-DEPENDENT"

  • -
  • "ADDRESS-PORT-DEPENDENT" ← (default)

  • +
  • "ADDRESS-PORT-DEPENDENT"

  • @@ -208,7 +208,7 @@

    ParametersChoices:

    • "PAIRED"

    • -
    • "RANDOM" ← (default)

    • +
    • "RANDOM"

    @@ -220,7 +220,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -300,7 +300,7 @@

    Parameters
  • "ENDPOINT-INDEPENDENT"

  • "ADDRESS-DEPENDENT"

  • -
  • "ADDRESS-PORT-DEPENDENT" ← (default)

  • +
  • "ADDRESS-PORT-DEPENDENT"

  • @@ -381,7 +381,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -391,7 +391,6 @@

    Parameters

    ID of the traffic domain through which the Citrix ADC sends the outbound traffic after performing LSN.

    If you do not specify an ID, the ADC sends the outbound traffic through the default traffic domain, which has an ID of 0.

    -

    Default: 4095.0

    diff --git a/docs/collections/netscaler/adc/lsnappsprofile_port_binding_module.html b/docs/collections/netscaler/adc/lsnappsprofile_port_binding_module.html index 94547c31..391dc352 100644 --- a/docs/collections/netscaler/adc/lsnappsprofile_port_binding_module.html +++ b/docs/collections/netscaler/adc/lsnappsprofile_port_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnappsprofile_port_binding module – Binding Resource definition for describing association between lsnappsprofile and port resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsnclient_module.html b/docs/collections/netscaler/adc/lsnclient_module.html index 8259cbc4..d2f9482c 100644 --- a/docs/collections/netscaler/adc/lsnclient_module.html +++ b/docs/collections/netscaler/adc/lsnclient_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnclient module – Configuration for lsn client resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsnclient_network6_binding_module.html b/docs/collections/netscaler/adc/lsnclient_network6_binding_module.html index e041a39b..d6d94e3b 100644 --- a/docs/collections/netscaler/adc/lsnclient_network6_binding_module.html +++ b/docs/collections/netscaler/adc/lsnclient_network6_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnclient_network6_binding module – Binding Resource definition for describing association between lsnclient and network6 resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsnclient_network_binding_module.html b/docs/collections/netscaler/adc/lsnclient_network_binding_module.html index 8ac36433..3129aa4d 100644 --- a/docs/collections/netscaler/adc/lsnclient_network_binding_module.html +++ b/docs/collections/netscaler/adc/lsnclient_network_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnclient_network_binding module – Binding Resource definition for describing association between lsnclient and network resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsnclient_nsacl6_binding_module.html b/docs/collections/netscaler/adc/lsnclient_nsacl6_binding_module.html index 44ca067a..dc9a8566 100644 --- a/docs/collections/netscaler/adc/lsnclient_nsacl6_binding_module.html +++ b/docs/collections/netscaler/adc/lsnclient_nsacl6_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnclient_nsacl6_binding module – Binding Resource definition for describing association between lsnclient and nsacl6 resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsnclient_nsacl_binding_module.html b/docs/collections/netscaler/adc/lsnclient_nsacl_binding_module.html index eaf61032..f7e02ef4 100644 --- a/docs/collections/netscaler/adc/lsnclient_nsacl_binding_module.html +++ b/docs/collections/netscaler/adc/lsnclient_nsacl_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnclient_nsacl_binding module – Binding Resource definition for describing association between lsnclient and nsacl resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsngroup_ipsecalgprofile_binding_module.html b/docs/collections/netscaler/adc/lsngroup_ipsecalgprofile_binding_module.html index c87cc2f5..8ebd6780 100644 --- a/docs/collections/netscaler/adc/lsngroup_ipsecalgprofile_binding_module.html +++ b/docs/collections/netscaler/adc/lsngroup_ipsecalgprofile_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsngroup_ipsecalgprofile_binding module – Binding Resource definition for describing association between lsngroup and ipsecalgprofile resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsngroup_lsnappsprofile_binding_module.html b/docs/collections/netscaler/adc/lsngroup_lsnappsprofile_binding_module.html index 72d1cc83..9406f430 100644 --- a/docs/collections/netscaler/adc/lsngroup_lsnappsprofile_binding_module.html +++ b/docs/collections/netscaler/adc/lsngroup_lsnappsprofile_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsngroup_lsnappsprofile_binding module – Binding Resource definition for describing association between lsngroup and lsnappsprofile resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsngroup_lsnhttphdrlogprofile_binding_module.html b/docs/collections/netscaler/adc/lsngroup_lsnhttphdrlogprofile_binding_module.html index 9093a188..bcca0f3a 100644 --- a/docs/collections/netscaler/adc/lsngroup_lsnhttphdrlogprofile_binding_module.html +++ b/docs/collections/netscaler/adc/lsngroup_lsnhttphdrlogprofile_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsngroup_lsnhttphdrlogprofile_binding module – Binding Resource definition for describing association between lsngroup and lsnhttphdrlogprofile resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsngroup_lsnlogprofile_binding_module.html b/docs/collections/netscaler/adc/lsngroup_lsnlogprofile_binding_module.html index 2ebde716..be2bdfc4 100644 --- a/docs/collections/netscaler/adc/lsngroup_lsnlogprofile_binding_module.html +++ b/docs/collections/netscaler/adc/lsngroup_lsnlogprofile_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsngroup_lsnlogprofile_binding module – Binding Resource definition for describing association between lsngroup and lsnlogprofile resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsngroup_lsnpool_binding_module.html b/docs/collections/netscaler/adc/lsngroup_lsnpool_binding_module.html index 774f018f..45793afe 100644 --- a/docs/collections/netscaler/adc/lsngroup_lsnpool_binding_module.html +++ b/docs/collections/netscaler/adc/lsngroup_lsnpool_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsngroup_lsnpool_binding module – Binding Resource definition for describing association between lsngroup and lsnpool resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsngroup_lsnrtspalgprofile_binding_module.html b/docs/collections/netscaler/adc/lsngroup_lsnrtspalgprofile_binding_module.html index bfb3da85..c4099562 100644 --- a/docs/collections/netscaler/adc/lsngroup_lsnrtspalgprofile_binding_module.html +++ b/docs/collections/netscaler/adc/lsngroup_lsnrtspalgprofile_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsngroup_lsnrtspalgprofile_binding module – Binding Resource definition for describing association between lsngroup and lsnrtspalgprofile resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsngroup_lsnsipalgprofile_binding_module.html b/docs/collections/netscaler/adc/lsngroup_lsnsipalgprofile_binding_module.html index 4ec790a2..7ba64744 100644 --- a/docs/collections/netscaler/adc/lsngroup_lsnsipalgprofile_binding_module.html +++ b/docs/collections/netscaler/adc/lsngroup_lsnsipalgprofile_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsngroup_lsnsipalgprofile_binding module – Binding Resource definition for describing association between lsngroup and lsnsipalgprofile resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsngroup_lsntransportprofile_binding_module.html b/docs/collections/netscaler/adc/lsngroup_lsntransportprofile_binding_module.html index e5dbd9f6..0a22f23b 100644 --- a/docs/collections/netscaler/adc/lsngroup_lsntransportprofile_binding_module.html +++ b/docs/collections/netscaler/adc/lsngroup_lsntransportprofile_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsngroup_lsntransportprofile_binding module – Binding Resource definition for describing association between lsngroup and lsntransportprofile resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsngroup_module.html b/docs/collections/netscaler/adc/lsngroup_module.html index ee46c9e1..c301c5b7 100644 --- a/docs/collections/netscaler/adc/lsngroup_module.html +++ b/docs/collections/netscaler/adc/lsngroup_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsngroup module – Configuration for LSN group resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -185,7 +185,7 @@

    Parameters2.2.2.3 => 4.4.4.1:PB2

    Choices:

      -
    • "PORTS" ← (default)

    • +
    • "PORTS"

    • "IPADDRS"

    @@ -214,7 +214,7 @@

    ParametersNote: The Citrix ADC also includes ALG for ICMP and TFTP protocols. ALG for the ICMP protocol is enabled by default, and there is no provision to disable it. ALG for the TFTP protocol is disabled by default. ALG is enabled automatically for an LSN group when you bind a UDP LSN application profile, with endpoint-independent-mapping, endpoint-independent filtering, and destination port as 69 (well-known port for TFTP), to the LSN group.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -227,7 +227,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -267,7 +267,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -560,7 +560,7 @@

    Parameters* Dynamic - Allocate a random NAT IP address and a port from the LSN NAT pool for a subscriber’s connection. If port block allocation is enabled (in LSN pool) and a port block size is specified (in the LSN group), the Citrix ADC allocates a random NAT IP address and a block of ports for a subscriber when it initiates a connection for the first time. The ADC allocates this NAT IP address and a port (from the allocated block of ports) for different connections from this subscriber. If all the ports are allocated (for different subscriber’s connections) from the subscriber’s allocated port block, the ADC allocates a new random port block for the subscriber.

    Choices:

      -
    • "DYNAMIC" ← (default)

    • +
    • "DYNAMIC"

    • "DETERMINISTIC"

    @@ -625,7 +625,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -637,7 +637,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -671,7 +671,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -683,7 +683,7 @@

    ParametersFor this setting to work, you must enable the global session synchronization parameter.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -696,7 +696,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -705,7 +705,6 @@

    Parameters

    float

    Maximum number of SNMP Trap messages that can be generated for the LSN group in one minute.

    -

    Default: 100.0

    diff --git a/docs/collections/netscaler/adc/lsngroup_pcpserver_binding_module.html b/docs/collections/netscaler/adc/lsngroup_pcpserver_binding_module.html index 05290270..d7bd56d1 100644 --- a/docs/collections/netscaler/adc/lsngroup_pcpserver_binding_module.html +++ b/docs/collections/netscaler/adc/lsngroup_pcpserver_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsngroup_pcpserver_binding module – Binding Resource definition for describing association between lsngroup and pcpserver resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsnhttphdrlogprofile_module.html b/docs/collections/netscaler/adc/lsnhttphdrlogprofile_module.html index 3dcc4d64..29f1f176 100644 --- a/docs/collections/netscaler/adc/lsnhttphdrlogprofile_module.html +++ b/docs/collections/netscaler/adc/lsnhttphdrlogprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnhttphdrlogprofile module – Configuration for LSN HTTP header logging Profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -185,7 +185,7 @@

    Parameters

    Host information is logged if option is enabled.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -197,7 +197,7 @@

    Parameters

    HTTP method information is logged if option is enabled.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -209,7 +209,7 @@

    Parameters

    URL information is logged if option is enabled.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -221,7 +221,7 @@

    Parameters

    Version information is logged if option is enabled.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/lsnip6profile_module.html b/docs/collections/netscaler/adc/lsnip6profile_module.html index 080a8647..0805e30b 100644 --- a/docs/collections/netscaler/adc/lsnip6profile_module.html +++ b/docs/collections/netscaler/adc/lsnip6profile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnip6profile module – Configuration for LSN ip6 Profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsnlogprofile_module.html b/docs/collections/netscaler/adc/lsnlogprofile_module.html index 63ca36f4..1d7cab27 100644 --- a/docs/collections/netscaler/adc/lsnlogprofile_module.html +++ b/docs/collections/netscaler/adc/lsnlogprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnlogprofile module – Configuration for LSN logging Profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -185,7 +185,7 @@

    Parameters

    Logs in Compact Logging format if option is enabled.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -198,7 +198,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -216,7 +216,7 @@

    Parameters

    LSN Session deletion will not be logged if disabled.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -229,7 +229,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/lsnparameter_module.html b/docs/collections/netscaler/adc/lsnparameter_module.html index 57f08923..fce36890 100644 --- a/docs/collections/netscaler/adc/lsnparameter_module.html +++ b/docs/collections/netscaler/adc/lsnparameter_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnparameter module – Configuration for LSN parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -244,7 +244,7 @@

    ParametersFor a group, when both the global level and the group level LSN session synchronization parameters are enabled, the primary node synchronizes information of all LSN sessions related to this LSN group with the secondary node.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -255,9 +255,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -269,7 +271,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/lsnpool_lsnip_binding_module.html b/docs/collections/netscaler/adc/lsnpool_lsnip_binding_module.html index 399c4635..ee8fb5ad 100644 --- a/docs/collections/netscaler/adc/lsnpool_lsnip_binding_module.html +++ b/docs/collections/netscaler/adc/lsnpool_lsnip_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnpool_lsnip_binding module – Binding Resource definition for describing association between lsnpool and lsnip resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsnpool_module.html b/docs/collections/netscaler/adc/lsnpool_module.html index db8edc28..dcfc917e 100644 --- a/docs/collections/netscaler/adc/lsnpool_module.html +++ b/docs/collections/netscaler/adc/lsnpool_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnpool module – Configuration for LSN pool resource.

    diff --git a/docs/collections/netscaler/adc/lsnrtspalgprofile_module.html b/docs/collections/netscaler/adc/lsnrtspalgprofile_module.html index 3c402fd5..e9e5e89c 100644 --- a/docs/collections/netscaler/adc/lsnrtspalgprofile_module.html +++ b/docs/collections/netscaler/adc/lsnrtspalgprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnrtspalgprofile module – Configuration for LSN RTSPALG Profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -225,7 +225,6 @@

    Parameters

    float

    Idle timeout for the rtsp sessions in seconds.

    -

    Default: 120.0

    @@ -242,7 +241,7 @@

    Parameters

    RTSP ALG Profile transport protocol type.

    Choices:

      -
    • "TCP" ← (default)

    • +
    • "TCP"

    • "UDP"

    diff --git a/docs/collections/netscaler/adc/lsnrtspalgsession_module.html b/docs/collections/netscaler/adc/lsnrtspalgsession_module.html index 407afd68..1602c15b 100644 --- a/docs/collections/netscaler/adc/lsnrtspalgsession_module.html +++ b/docs/collections/netscaler/adc/lsnrtspalgsession_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnrtspalgsession module – Configuration for LSN RTSPALG session resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsnsession_module.html b/docs/collections/netscaler/adc/lsnsession_module.html index a0ccf256..d2f67f26 100644 --- a/docs/collections/netscaler/adc/lsnsession_module.html +++ b/docs/collections/netscaler/adc/lsnsession_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnsession module – Configuration for lsn session resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -199,7 +199,7 @@

    Parameters

    Type of sessions to be displayed.

    Choices:

      -
    • "NAT44" ← (default)

    • +
    • "NAT44"

    • "DS-Lite"

    • "NAT64"

    diff --git a/docs/collections/netscaler/adc/lsnsipalgcall_module.html b/docs/collections/netscaler/adc/lsnsipalgcall_module.html index 44705d67..0b6e517f 100644 --- a/docs/collections/netscaler/adc/lsnsipalgcall_module.html +++ b/docs/collections/netscaler/adc/lsnsipalgcall_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnsipalgcall module – Configuration for LSN SIPALG call resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsnsipalgprofile_module.html b/docs/collections/netscaler/adc/lsnsipalgprofile_module.html index 5b3a5ac2..5096d8a3 100644 --- a/docs/collections/netscaler/adc/lsnsipalgprofile_module.html +++ b/docs/collections/netscaler/adc/lsnsipalgprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnsipalgprofile module – Configuration for LSN SIPALG Profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -176,7 +176,6 @@

    Parameters

    float

    Idle timeout for the data channel sessions in seconds.

    -

    Default: 120.0

    SIP registration timeout in seconds.

    -

    Default: 60.0

    SIP control channel session timeout in seconds.

    -

    Default: 600.0

    diff --git a/docs/collections/netscaler/adc/lsnstatic_module.html b/docs/collections/netscaler/adc/lsnstatic_module.html index 91627e4d..a42f5269 100644 --- a/docs/collections/netscaler/adc/lsnstatic_module.html +++ b/docs/collections/netscaler/adc/lsnstatic_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsnstatic module – Configuration for static mapping resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/lsntransportprofile_module.html b/docs/collections/netscaler/adc/lsntransportprofile_module.html index 0a6e867d..ba148962 100644 --- a/docs/collections/netscaler/adc/lsntransportprofile_module.html +++ b/docs/collections/netscaler/adc/lsntransportprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.lsntransportprofile module – Configuration for LSN Transport Profile resource.

    @@ -291,7 +290,6 @@

    Parameters

    Timeout, in seconds, for an idle LSN session. If an LSN session is idle for a time that exceeds this value, the Citrix ADC removes the session.

    This timeout does not apply for a TCP LSN session when a FIN or RST message is received from either of the endpoints.

    -

    Default: 120.0

    STUN protocol timeout

    -

    Default: 600.0

    @@ -337,7 +334,6 @@

    Parameters

    float

    SYN Idle timeout

    -

    Default: 60.0

    diff --git a/docs/collections/netscaler/adc/mapbmr_bmrv4network_binding_module.html b/docs/collections/netscaler/adc/mapbmr_bmrv4network_binding_module.html index 6c885398..519e3cfb 100644 --- a/docs/collections/netscaler/adc/mapbmr_bmrv4network_binding_module.html +++ b/docs/collections/netscaler/adc/mapbmr_bmrv4network_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.mapbmr_bmrv4network_binding module – Binding Resource definition for describing association between mapbmr and bmrv4network resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/mapbmr_module.html b/docs/collections/netscaler/adc/mapbmr_module.html index 2870e01e..27ee7196 100644 --- a/docs/collections/netscaler/adc/mapbmr_module.html +++ b/docs/collections/netscaler/adc/mapbmr_module.html @@ -131,7 +131,7 @@

    netscaler.adc.mapbmr module – Configuration for MAP-T Basic Mapping rule resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,6 @@

    Parameters

    given Rule IPv6 prefix.

    -

    Default: 16.0

    Length of Port Set IdentifierPort Set Identifier(PSID) in Embedded Address (EA) bits

    -

    Default: 8.0

    @@ -279,7 +277,6 @@

    Parameters

    float

    Start bit position of Port Set Identifier(PSID) value in Embedded Address (EA) bits.

    -

    Default: 6.0

    diff --git a/docs/collections/netscaler/adc/mapdmr_module.html b/docs/collections/netscaler/adc/mapdmr_module.html index 26ad6998..111b0007 100644 --- a/docs/collections/netscaler/adc/mapdmr_module.html +++ b/docs/collections/netscaler/adc/mapdmr_module.html @@ -131,7 +131,7 @@

    netscaler.adc.mapdmr module – Configuration for MAP-T Default Mapping rule resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/mapdomain_mapbmr_binding_module.html b/docs/collections/netscaler/adc/mapdomain_mapbmr_binding_module.html index 832b735c..fde12789 100644 --- a/docs/collections/netscaler/adc/mapdomain_mapbmr_binding_module.html +++ b/docs/collections/netscaler/adc/mapdomain_mapbmr_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.mapdomain_mapbmr_binding module – Binding Resource definition for describing association between mapdomain and mapbmr resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/mapdomain_module.html b/docs/collections/netscaler/adc/mapdomain_module.html index 7ca3a9a1..3f519133 100644 --- a/docs/collections/netscaler/adc/mapdomain_module.html +++ b/docs/collections/netscaler/adc/mapdomain_module.html @@ -131,7 +131,7 @@

    netscaler.adc.mapdomain module – Configuration for MAP-T Map Domain resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nat64_module.html b/docs/collections/netscaler/adc/nat64_module.html index 9c9d3a84..4a6be3ac 100644 --- a/docs/collections/netscaler/adc/nat64_module.html +++ b/docs/collections/netscaler/adc/nat64_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nat64 module – Configuration for nat64 config resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nat64param_module.html b/docs/collections/netscaler/adc/nat64param_module.html index 38a54b3d..74726e67 100644 --- a/docs/collections/netscaler/adc/nat64param_module.html +++ b/docs/collections/netscaler/adc/nat64param_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nat64param module – Configuration for NAT64 parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    When disabled, translator will not insert IPv6 fragmentation header for non fragmented IPv4 packets

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -191,7 +191,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -200,7 +200,6 @@

    Parameters

    float

    MTU setting for the IPv6 side. If the incoming IPv4 packet greater than this, either fragment or send icmp need fragmentation error.

    -

    Default: 1280.0

    @@ -210,7 +209,7 @@

    Parameters

    Calculate checksum for UDP packets with zero checksum

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -276,9 +275,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/nd6_module.html b/docs/collections/netscaler/adc/nd6_module.html index eb95d542..18b2705f 100644 --- a/docs/collections/netscaler/adc/nd6_module.html +++ b/docs/collections/netscaler/adc/nd6_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nd6 module – Configuration for nd6 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nd6ravariables_module.html b/docs/collections/netscaler/adc/nd6ravariables_module.html index 312593d0..6c9b5533 100644 --- a/docs/collections/netscaler/adc/nd6ravariables_module.html +++ b/docs/collections/netscaler/adc/nd6ravariables_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nd6ravariables module – Configuration for nd6 Router Advertisment configuration variables resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -188,7 +188,6 @@

    Parameters

    float

    Current Hop limit.

    -

    Default: 64.0

    @@ -196,7 +195,6 @@

    Parameters

    integer

    Default life time, in seconds.

    -

    Default: 1800

    @@ -223,7 +221,6 @@

    Parameters

    float

    Maximum time allowed between unsolicited multicast RAs, in seconds.

    -

    Default: 600.0

    @@ -231,7 +228,6 @@

    Parameters

    float

    Minimum time interval between RA messages, in seconds.

    -

    Default: 198.0

    @@ -327,7 +323,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -366,7 +362,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -377,7 +373,7 @@

    Parameters

    Include source link layer address option in RA messages.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -388,9 +384,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -427,7 +425,15 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | nd6RAvariables
    +      delegate_to: localhost
    +      netscaler.adc.nd6ravariables:
    +        state: present
    +        vlan: 1
     
    diff --git a/docs/collections/netscaler/adc/nd6ravariables_onlinkipv6prefix_binding_module.html b/docs/collections/netscaler/adc/nd6ravariables_onlinkipv6prefix_binding_module.html index 1802b5d8..8c83c9cd 100644 --- a/docs/collections/netscaler/adc/nd6ravariables_onlinkipv6prefix_binding_module.html +++ b/docs/collections/netscaler/adc/nd6ravariables_onlinkipv6prefix_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nd6ravariables_onlinkipv6prefix_binding module – Binding Resource definition for describing association between nd6ravariables and onlinkipv6prefix resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/netbridge_iptunnel_binding_module.html b/docs/collections/netscaler/adc/netbridge_iptunnel_binding_module.html index 7fdbaa77..7d77ff8c 100644 --- a/docs/collections/netscaler/adc/netbridge_iptunnel_binding_module.html +++ b/docs/collections/netscaler/adc/netbridge_iptunnel_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.netbridge_iptunnel_binding module – Binding Resource definition for describing association between netbridge and iptunnel resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/netbridge_module.html b/docs/collections/netscaler/adc/netbridge_module.html index 57c25670..b227e301 100644 --- a/docs/collections/netscaler/adc/netbridge_module.html +++ b/docs/collections/netscaler/adc/netbridge_module.html @@ -131,7 +131,7 @@

    netscaler.adc.netbridge module – Configuration for network bridge resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/netbridge_nsip6_binding_module.html b/docs/collections/netscaler/adc/netbridge_nsip6_binding_module.html index 5132a954..8942dc7e 100644 --- a/docs/collections/netscaler/adc/netbridge_nsip6_binding_module.html +++ b/docs/collections/netscaler/adc/netbridge_nsip6_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.netbridge_nsip6_binding module – Binding Resource definition for describing association between netbridge and nsip6 resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/netbridge_nsip_binding_module.html b/docs/collections/netscaler/adc/netbridge_nsip_binding_module.html index dec4ffe4..93d30d1c 100644 --- a/docs/collections/netscaler/adc/netbridge_nsip_binding_module.html +++ b/docs/collections/netscaler/adc/netbridge_nsip_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.netbridge_nsip_binding module – Binding Resource definition for describing association between netbridge and nsip resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/netbridge_vlan_binding_module.html b/docs/collections/netscaler/adc/netbridge_vlan_binding_module.html index a653705a..59ee5829 100644 --- a/docs/collections/netscaler/adc/netbridge_vlan_binding_module.html +++ b/docs/collections/netscaler/adc/netbridge_vlan_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.netbridge_vlan_binding module – Binding Resource definition for describing association between netbridge and vlan resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/netprofile_module.html b/docs/collections/netscaler/adc/netprofile_module.html index 110660f9..023aacef 100644 --- a/docs/collections/netscaler/adc/netprofile_module.html +++ b/docs/collections/netscaler/adc/netprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.netprofile module – Configuration for Network profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -305,7 +305,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -317,7 +317,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -329,7 +329,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -340,7 +340,7 @@

    Parameters

    Proxy Protocol Version (V1/V2)

    Choices:

      -
    • "V1" ← (default)

    • +
    • "V1"

    • "V2"

    @@ -373,7 +373,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -424,7 +424,17 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | netProfile
    +      delegate_to: localhost
    +      netscaler.adc.netprofile:
    +        state: present
    +        name: netprofile-001
    +        srcip: ipset-001
    +        mbf: DISABLED
     
    diff --git a/docs/collections/netscaler/adc/netprofile_natrule_binding_module.html b/docs/collections/netscaler/adc/netprofile_natrule_binding_module.html index 007e303f..ec712f5f 100644 --- a/docs/collections/netscaler/adc/netprofile_natrule_binding_module.html +++ b/docs/collections/netscaler/adc/netprofile_natrule_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.netprofile_natrule_binding module – Binding Resource definition for describing association between netprofile and natrule resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/netprofile_srcportset_binding_module.html b/docs/collections/netscaler/adc/netprofile_srcportset_binding_module.html index 4da9953a..b64b08a4 100644 --- a/docs/collections/netscaler/adc/netprofile_srcportset_binding_module.html +++ b/docs/collections/netscaler/adc/netprofile_srcportset_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.netprofile_srcportset_binding module – Binding Resource definition for describing association between netprofile and srcportset resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nsacls6_module.html b/docs/collections/netscaler/adc/nsacls6_module.html index 7cb9afd2..7ff9d9ef 100644 --- a/docs/collections/netscaler/adc/nsacls6_module.html +++ b/docs/collections/netscaler/adc/nsacls6_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsacls6 module – Configuration for ACL6 entry resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -244,7 +244,7 @@

    Parameters* DFD - cluster specific acls,specifies hashmethod for steering of the packet in cluster .

    Choices:

      -
    • "CLASSIC" ← (default)

    • +
    • "CLASSIC"

    • "DFD"

    diff --git a/docs/collections/netscaler/adc/nsacls_module.html b/docs/collections/netscaler/adc/nsacls_module.html index 17f0b1a3..9dcc7759 100644 --- a/docs/collections/netscaler/adc/nsacls_module.html +++ b/docs/collections/netscaler/adc/nsacls_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsacls module – Configuration for ACL entry resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -244,7 +244,7 @@

    Parameters* DFD - cluster specific acls,specifies hashmethod for steering of the packet in cluster .

    Choices:

      -
    • "CLASSIC" ← (default)

    • +
    • "CLASSIC"

    • "DFD"

    diff --git a/docs/collections/netscaler/adc/nsappflowcollector_module.html b/docs/collections/netscaler/adc/nsappflowcollector_module.html index c47d43e8..9319bf2c 100644 --- a/docs/collections/netscaler/adc/nsappflowcollector_module.html +++ b/docs/collections/netscaler/adc/nsappflowcollector_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsappflowcollector module – Configuration for appflowCollector resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -232,7 +232,6 @@

    Parameters

    integer

    The UDP port on which the AppFlow collector is listening.

    -

    Default: 4739

    diff --git a/docs/collections/netscaler/adc/nsappflowparam_module.html b/docs/collections/netscaler/adc/nsappflowparam_module.html index d62f0376..02e06a19 100644 --- a/docs/collections/netscaler/adc/nsappflowparam_module.html +++ b/docs/collections/netscaler/adc/nsappflowparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsappflowparam module – Configuration for appflowParam resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -191,7 +191,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -203,7 +203,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -215,7 +215,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -227,7 +227,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -239,7 +239,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -251,7 +251,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -316,9 +316,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -327,7 +329,6 @@

    Parameters

    float

    IPFIX template refresh interval (in seconds).

    -

    Default: 600.0

    @@ -335,7 +336,6 @@

    Parameters

    float

    MTU to be used for IPFIX UDP packets.

    -

    Default: 1472.0

    diff --git a/docs/collections/netscaler/adc/nsaptlicense_module.html b/docs/collections/netscaler/adc/nsaptlicense_module.html index 2968c6e7..176b8c36 100644 --- a/docs/collections/netscaler/adc/nsaptlicense_module.html +++ b/docs/collections/netscaler/adc/nsaptlicense_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsaptlicense module – Configuration for aptlicense resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -284,7 +284,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    diff --git a/docs/collections/netscaler/adc/nsassignment_module.html b/docs/collections/netscaler/adc/nsassignment_module.html index 6de0c4a3..81a8bd72 100644 --- a/docs/collections/netscaler/adc/nsassignment_module.html +++ b/docs/collections/netscaler/adc/nsassignment_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsassignment module – Configuration for assignment resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -163,8 +163,8 @@

    Parameters
    -

    Add

    -

    string

    +

    add

    +

    string

    Right hand side of the assignment. The expression is evaluated and added to the left hand variable.

    diff --git a/docs/collections/netscaler/adc/nscapacity_module.html b/docs/collections/netscaler/adc/nscapacity_module.html index 29f1d6e2..2253c553 100644 --- a/docs/collections/netscaler/adc/nscapacity_module.html +++ b/docs/collections/netscaler/adc/nscapacity_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nscapacity module – Configuration for capacity resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -309,9 +309,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/nscentralmanagementserver_module.html b/docs/collections/netscaler/adc/nscentralmanagementserver_module.html index 0d8fd995..44ded42e 100644 --- a/docs/collections/netscaler/adc/nscentralmanagementserver_module.html +++ b/docs/collections/netscaler/adc/nscentralmanagementserver_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nscentralmanagementserver module – Configuration for centralmanagementserver resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -330,7 +330,7 @@

    Parameters

    validate the server certificate for secure SSL connections.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    diff --git a/docs/collections/netscaler/adc/nsconfig_module.html b/docs/collections/netscaler/adc/nsconfig_module.html index 05c065d7..c656532b 100644 --- a/docs/collections/netscaler/adc/nsconfig_module.html +++ b/docs/collections/netscaler/adc/nsconfig_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsconfig module – Configuration for system config resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -262,7 +262,6 @@

    Parameters

    float

    The percentage of maxClient to be given to PEs

    -

    Default: 80.0

    @@ -270,7 +269,6 @@

    Parameters

    float

    The percentage of max limit to be given to PEs

    -

    Default: 80.0

    @@ -297,7 +295,6 @@

    Parameters

    float

    The percentage of shared quota to be granted at a time for maxClient

    -

    Default: 10.0

    @@ -305,7 +302,6 @@

    Parameters

    float

    The percentage of shared quota to be granted at a time for spillover

    -

    Default: 10.0

    @@ -455,7 +451,6 @@

    Parameters

    float

    The minimum Path MTU.

    -

    Default: 576.0

    @@ -463,7 +458,6 @@

    Parameters

    float

    The timeout value in minutes.

    -

    Default: 10.0

    @@ -545,7 +541,6 @@

    Parameters

    string

    Name of the timezone

    -

    Default: "CoordinatedUniversalTime"

    @@ -586,7 +581,16 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | nsconfig
    +      delegate_to: localhost
    +      netscaler.adc.nsconfig:
    +        state: present
    +        ipaddress: 10.10.10.10
    +        netmask: 255.255.255.0
     
    diff --git a/docs/collections/netscaler/adc/nsconsoleloginprompt_module.html b/docs/collections/netscaler/adc/nsconsoleloginprompt_module.html index e03af3cc..77c56961 100644 --- a/docs/collections/netscaler/adc/nsconsoleloginprompt_module.html +++ b/docs/collections/netscaler/adc/nsconsoleloginprompt_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsconsoleloginprompt module – Configuration for console prompt resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -239,9 +239,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/nscqaparam_module.html b/docs/collections/netscaler/adc/nscqaparam_module.html index 15844312..0f929b84 100644 --- a/docs/collections/netscaler/adc/nscqaparam_module.html +++ b/docs/collections/netscaler/adc/nscqaparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nscqaparam module – Configuration for cqaparam resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -372,9 +372,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/nsdhcpparams_module.html b/docs/collections/netscaler/adc/nsdhcpparams_module.html index f0877bda..61bc1508 100644 --- a/docs/collections/netscaler/adc/nsdhcpparams_module.html +++ b/docs/collections/netscaler/adc/nsdhcpparams_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsdhcpparams module – Configuration for DHCP parameters resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -246,7 +246,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -256,9 +256,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/nsdiameter_module.html b/docs/collections/netscaler/adc/nsdiameter_module.html index 3088cf95..02024535 100644 --- a/docs/collections/netscaler/adc/nsdiameter_module.html +++ b/docs/collections/netscaler/adc/nsdiameter_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsdiameter module – Configuration for Diameter Parameters resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -228,7 +228,6 @@

    Parameters

    float

    ID of the cluster node for which the diameter id is set, can be configured only through CLIP

    -

    Default: -1.0

    @@ -272,9 +271,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -304,7 +305,16 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | nsdiameter
    +      delegate_to: localhost
    +      netscaler.adc.nsdiameter:
    +        state: present
    +        identity: netscaler.com
    +        realm: com
     
    diff --git a/docs/collections/netscaler/adc/nsencryptionkey_module.html b/docs/collections/netscaler/adc/nsencryptionkey_module.html index d396cf27..3958408f 100644 --- a/docs/collections/netscaler/adc/nsencryptionkey_module.html +++ b/docs/collections/netscaler/adc/nsencryptionkey_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsencryptionkey module – Configuration for encryption key resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nsencryptionparams_module.html b/docs/collections/netscaler/adc/nsencryptionparams_module.html index 73839c43..a7cd71f7 100644 --- a/docs/collections/netscaler/adc/nsencryptionparams_module.html +++ b/docs/collections/netscaler/adc/nsencryptionparams_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsencryptionparams module – Configuration for default encryption parameters resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nsextension_module.html b/docs/collections/netscaler/adc/nsextension_module.html index 06fb5901..5d875d0b 100644 --- a/docs/collections/netscaler/adc/nsextension_module.html +++ b/docs/collections/netscaler/adc/nsextension_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsextension module – Configuration for Extension resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -283,6 +283,7 @@

    Parameters
  • "present" ← (default)

  • "absent"

  • +
  • "imported"

  • @@ -301,7 +302,7 @@

    ParametersThis can be done by set audit syslogParams -loglevel ALL or -loglevel DEBUG.

    Choices:

    This option sets the satisfactory threshold (T) for client response time in milliseconds to be used for APDEX calculations. This means a transaction responding in less than this threshold is considered satisfactory. Transaction responding between T and 4*T is considered tolerable. Any transaction responding in more than 4*T time is considered frustrating. Citrix ADC maintains stats for such tolerable and frustrating transcations. And client response time related apdex counters are only updated on a vserver which receives clients traffic.

    -

    Default: 500.0

    @@ -248,7 +247,7 @@

    Parameters

    Reuse server connections for requests from more than one client connections.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -260,7 +259,7 @@

    Parameters

    Drop any extra ‘CR’ and ‘LF’ characters present after the header.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -273,7 +272,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -285,7 +284,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -294,7 +293,6 @@

    Parameters

    float

    Maximum size in bytes allowed to buffer gRPC packets till trailer is received

    -

    Default: 131072.0

    @@ -302,7 +300,6 @@

    Parameters

    float

    Maximum time in milliseconds allowed to buffer gRPC packets till trailer is received. The value should be in multiples of 100

    -

    Default: 1000.0

    @@ -337,7 +334,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -349,7 +346,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -358,7 +355,6 @@

    Parameters

    float

    Maximum size of the header compression table used to decode header blocks, in bytes.

    -

    Default: 4096.0

    @@ -366,7 +362,6 @@

    Parameters

    float

    Initial window size for connection level flow control, in bytes.

    -

    Default: 65535.0

    @@ -374,7 +369,6 @@

    Parameters

    float

    Initial window size for stream level flow control, in bytes.

    -

    Default: 65535.0

    @@ -382,7 +376,6 @@

    Parameters

    float

    Maximum number of concurrent streams that is allowed per connection.

    -

    Default: 100.0

    @@ -390,7 +383,6 @@

    Parameters

    float

    Maximum number of empty frames allowed in HTTP2 connection per minute

    -

    Default: 60.0

    @@ -398,7 +390,6 @@

    Parameters

    float

    Maximum size of the frame payload that the Citrix ADC is willing to receive, in bytes.

    -

    Default: 16384.0

    @@ -406,7 +397,6 @@

    Parameters

    float

    Maximum size of header list that the Citrix ADC is prepared to accept, in bytes. NOTE: The actual plain text header size that the Citrix ADC accepts is limited by maxHeaderLen. Please change maxHeaderLen parameter as well when modifying http2MaxHeaderListSize.

    -

    Default: 24576.0

    @@ -414,7 +404,6 @@

    Parameters

    float

    Maximum number of ping frames allowed in HTTP2 connection per minute

    -

    Default: 60.0

    @@ -422,7 +411,6 @@

    Parameters

    float

    Maximum number of reset frames allowed in HTTP/2 connection per minute

    -

    Default: 90.0

    @@ -430,7 +418,6 @@

    Parameters

    float

    Maximum number of settings frames allowed in HTTP2 connection per minute

    -

    Default: 15.0

    @@ -438,7 +425,6 @@

    Parameters

    float

    Minimum number of HTTP2 connections established to backend server, on receiving HTTP requests from client before multiplexing the streams into the available HTTP/2 connections.

    -

    Default: 20.0

    @@ -470,7 +456,6 @@

    Parameters

    float

    Maximum number of HTTP/3 streams that can be blocked while HTTP/3 headers are being decoded.

    -

    Default: 100.0

    @@ -478,7 +463,6 @@

    Parameters

    float

    Maximum size of the HTTP/3 header field section, in bytes.

    -

    Default: 24576.0

    @@ -486,7 +470,6 @@

    Parameters

    float

    Maximum size of the HTTP/3 QPACK dynamic header table, in bytes.

    -

    Default: 4096.0

    @@ -494,7 +477,6 @@

    Parameters

    float

    Application pipeline request buffering size, in bytes.

    -

    Default: 131072.0

    @@ -502,7 +484,6 @@

    Parameters

    float

    Maximum time to wait, in milliseconds, between incomplete header packets. If the header packets take longer to arrive at Citrix ADC, the connection is silently dropped.

    -

    Default: 7000.0

    @@ -525,7 +506,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -537,7 +518,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -549,7 +530,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -561,7 +542,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -570,7 +551,6 @@

    Parameters

    float

    Number of bytes allowed for header field for HTTP header. If number of bytes exceeds beyond configured value, then request will be marked invalid

    -

    Default: 24820.0

    @@ -578,7 +558,6 @@

    Parameters

    float

    Number of bytes to be queued to look for complete header before returning error. If complete header is not obtained after queuing these many bytes, request will be marked as invalid and no L7 processing will be done for that TCP connection.

    -

    Default: 24820.0

    @@ -708,7 +687,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -758,7 +737,7 @@

    Parameters

    Enable or disable web logging.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -771,7 +750,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -789,7 +768,16 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | nshttpProfile
    +      delegate_to: localhost
    +      netscaler.adc.nshttpprofile:
    +        state: present
    +        name: httpprofile-HTTP2-0
    +        http2: ENABLED
     
    diff --git a/docs/collections/netscaler/adc/nsicapprofile_module.html b/docs/collections/netscaler/adc/nsicapprofile_module.html index 299b006c..c45125ba 100644 --- a/docs/collections/netscaler/adc/nsicapprofile_module.html +++ b/docs/collections/netscaler/adc/nsicapprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsicapprofile module – Configuration for ICAP profile resource.

    @@ -304,7 +304,6 @@

    Parameters

    float

    Value of Preview Header field. Citrix ADC uses the minimum of this set value and the preview size received on OPTIONS response.

    -

    Default: 4096.0

    diff --git a/docs/collections/netscaler/adc/nsip6_module.html b/docs/collections/netscaler/adc/nsip6_module.html index 8d027cf5..f6ba8ed7 100644 --- a/docs/collections/netscaler/adc/nsip6_module.html +++ b/docs/collections/netscaler/adc/nsip6_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsip6 module – Configuration for ip6 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -170,7 +170,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -191,7 +191,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -203,7 +203,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -214,7 +214,7 @@

    Parameters

    Allow File Transfer Protocol (FTP) access to this IP address.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -226,7 +226,7 @@

    Parameters @@ -304,7 +304,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -315,7 +315,7 @@

    Parameters

    Respond to Neighbor Discovery (ND) requests for this IP address.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -325,7 +325,6 @@

    Parameters

    float

    NdOwner in Cluster for VIPS and Striped SNIPS

    -

    Default: 255.0

    @@ -399,7 +398,6 @@

    Parameters

    float

    ID of the area in which the Intra-Area-Prefix LSAs are to be advertised for the VIP6 address by the IPv6 OSPF protocol running on the Citrix ADC. When ospfArea is not set, VIP6 is advertised on all areas.

    -

    Default: -1.0

    ID of the cluster node for which you are adding the IP address. Must be used if you want the IP address to be active only on the specific node. Can be configured only through the cluster IP address. Cannot be changed after the IP address is created.

    -

    Default: 255.0

    @@ -454,7 +451,7 @@

    Parameters

    Scope of the IPv6 address to be created. Cannot be changed after the IP address is created.

    Choices:

      -
    • "global" ← (default)

    • +
    • "global"

    • "link-local"

    @@ -466,7 +463,7 @@

    Parameters

    Allow Simple Network Management Protocol (SNMP) access to this IP address.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -478,7 +475,7 @@

    Parameters

    Allow secure Shell (SSH) access to this IP address.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -518,7 +515,7 @@

    Parameters

    Allow Telnet access to this IP address.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -532,7 +529,7 @@

    Parameters
  • "NSIP"

  • "VIP"

  • -
  • "SNIP" ← (default)

  • +
  • "SNIP"

  • "GSLBsiteIP"

  • "ADNSsvcIP"

  • "RADIUSListenersvcIP"

  • @@ -573,7 +570,7 @@

    Parameters

    Enable or disable the state of all the virtual servers associated with this VIP6 address.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -595,7 +592,7 @@

    Parameters

    Choices:

    @@ -262,7 +261,7 @@

    Parameters

    Allow File Transfer Protocol (FTP) access to this IP address.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -274,7 +273,7 @@

    Parameters @@ -367,7 +366,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -440,7 +439,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -449,7 +448,6 @@

    Parameters

    float

    ID of the area in which the type1 link-state advertisements (LSAs) are to be advertised for this virtual IP (VIP) address by the OSPF protocol running on the Citrix ADC. When this parameter is not set, the VIP is advertised on all areas.

    -

    Default: -1.0

    @@ -471,7 +469,7 @@

    Parameters

    in cluster system, if the owner node is down, whether should it respond to icmp/arp

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -481,7 +479,6 @@

    Parameters

    float

    The owner node in a Cluster for this IP address. Owner node can vary from 0 to 31. If ownernode is not specified then the IP is treated as Striped IP.

    -

    Default: 255.0

    @@ -504,7 +501,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -528,7 +525,7 @@

    Parameters

    Allow Simple Network Management Protocol (SNMP) access to this IP address.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -540,7 +537,7 @@

    Parameters

    Allow secure shell (SSH) access to this IP address.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -584,7 +581,7 @@

    Parameters

    Allow Telnet access to this IP address.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -600,7 +597,7 @@

    Parameters* A Cluster IP (CLIP) address is the management address of the cluster. All cluster configurations must be performed by accessing the cluster through this IP address.

    Choices:

    diff --git a/docs/collections/netscaler/adc/nspartition_vlan_binding_module.html b/docs/collections/netscaler/adc/nspartition_vlan_binding_module.html index 92fcec55..6f58addd 100644 --- a/docs/collections/netscaler/adc/nspartition_vlan_binding_module.html +++ b/docs/collections/netscaler/adc/nspartition_vlan_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nspartition_vlan_binding module – Binding Resource definition for describing association between nspartition and vlan resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nspartition_vxlan_binding_module.html b/docs/collections/netscaler/adc/nspartition_vxlan_binding_module.html index 5fc3ecd1..70294d75 100644 --- a/docs/collections/netscaler/adc/nspartition_vxlan_binding_module.html +++ b/docs/collections/netscaler/adc/nspartition_vxlan_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nspartition_vxlan_binding module – Binding Resource definition for describing association between nspartition and vxlan resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nsratecontrol_module.html b/docs/collections/netscaler/adc/nsratecontrol_module.html index bed4f23f..60c1b1d9 100644 --- a/docs/collections/netscaler/adc/nsratecontrol_module.html +++ b/docs/collections/netscaler/adc/nsratecontrol_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsratecontrol module – Configuration for rate control resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -176,7 +176,6 @@

    Parameters

    float

    Number of ICMP packets permitted per 10 milliseconds.

    -

    Default: 100.0

    The number of TCP RST packets permitted per 10 milli second. zero means rate control is disabled and 0xffffffff means every thing is rate controlled

    -

    Default: 100.0

    diff --git a/docs/collections/netscaler/adc/nsrpcnode_module.html b/docs/collections/netscaler/adc/nsrpcnode_module.html index 4873b840..61410157 100644 --- a/docs/collections/netscaler/adc/nsrpcnode_module.html +++ b/docs/collections/netscaler/adc/nsrpcnode_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsrpcnode module – Configuration for rpc node resource.

    diff --git a/docs/collections/netscaler/adc/nsservicefunction_module.html b/docs/collections/netscaler/adc/nsservicefunction_module.html index 18843512..85c42f9f 100644 --- a/docs/collections/netscaler/adc/nsservicefunction_module.html +++ b/docs/collections/netscaler/adc/nsservicefunction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsservicefunction module – Configuration for service Function resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nsservicepath_module.html b/docs/collections/netscaler/adc/nsservicepath_module.html index 2667c0bf..28fba040 100644 --- a/docs/collections/netscaler/adc/nsservicepath_module.html +++ b/docs/collections/netscaler/adc/nsservicepath_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsservicepath module – Configuration for service Chain resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nsservicepath_nsservicefunction_binding_module.html b/docs/collections/netscaler/adc/nsservicepath_nsservicefunction_binding_module.html index 864abc67..00bc04f0 100644 --- a/docs/collections/netscaler/adc/nsservicepath_nsservicefunction_binding_module.html +++ b/docs/collections/netscaler/adc/nsservicepath_nsservicefunction_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsservicepath_nsservicefunction_binding module – Binding Resource definition for describing association between nsservicepath and nsservicefunction resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nssimpleacl6_module.html b/docs/collections/netscaler/adc/nssimpleacl6_module.html index 07ed142f..a6b520bc 100644 --- a/docs/collections/netscaler/adc/nssimpleacl6_module.html +++ b/docs/collections/netscaler/adc/nssimpleacl6_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nssimpleacl6 module – Configuration for simple ACL6 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nssimpleacl_module.html b/docs/collections/netscaler/adc/nssimpleacl_module.html index e6681608..599969a7 100644 --- a/docs/collections/netscaler/adc/nssimpleacl_module.html +++ b/docs/collections/netscaler/adc/nssimpleacl_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nssimpleacl module – Configuration for simple ACL resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nsspparams_module.html b/docs/collections/netscaler/adc/nsspparams_module.html index f15d795e..2769c025 100644 --- a/docs/collections/netscaler/adc/nsspparams_module.html +++ b/docs/collections/netscaler/adc/nsspparams_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsspparams module – Configuration for Surge Protection parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -176,7 +176,6 @@

    Parameters

    integer

    Maximum number of server connections that can be opened before surge protection is activated.

    -

    Default: 200

    @@ -285,7 +286,29 @@

    Notes

    Examples

    -
    
    +
    ---
    +
    +- name: Sample Task
    +  hosts: localhost
    +
    +  gather_facts: false
    +
    +  tasks:
    +
    +    - name: Sample playbook
    +      delegate_to: localhost
    +      netscaler.adc.nsspparams:
    +        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
    +        # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable
    +        # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable
    +        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
    +        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
    +        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
    +
    +        state: present
    +
    +        basethreshold: 200
    +        throttle: Aggressive
     
    diff --git a/docs/collections/netscaler/adc/nsstats_module.html b/docs/collections/netscaler/adc/nsstats_module.html index 23049dff..97f3428d 100644 --- a/docs/collections/netscaler/adc/nsstats_module.html +++ b/docs/collections/netscaler/adc/nsstats_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsstats module – Configuration for stats resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nssurgeq_module.html b/docs/collections/netscaler/adc/nssurgeq_module.html index b966a5f6..5a3f92d1 100644 --- a/docs/collections/netscaler/adc/nssurgeq_module.html +++ b/docs/collections/netscaler/adc/nssurgeq_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nssurgeq module – Configuration for surge queue resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nstcpbufparam_module.html b/docs/collections/netscaler/adc/nstcpbufparam_module.html index 1657c3de..22adba9d 100644 --- a/docs/collections/netscaler/adc/nstcpbufparam_module.html +++ b/docs/collections/netscaler/adc/nstcpbufparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nstcpbufparam module – Configuration for tcp buffer parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -176,7 +176,6 @@

    Parameters

    float

    Maximum memory, in megabytes, that can be used for buffering.

    -

    Default: 64.0

    @@ -239,7 +238,6 @@

    Parameters

    float

    TCP buffering size per connection, in kilobytes.

    -

    Default: 64.0

    @@ -248,9 +246,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/nstcpparam_module.html b/docs/collections/netscaler/adc/nstcpparam_module.html index dc7dc650..0ae19781 100644 --- a/docs/collections/netscaler/adc/nstcpparam_module.html +++ b/docs/collections/netscaler/adc/nstcpparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nstcpparam module – Configuration for tcp parameters resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -169,7 +169,7 @@

    Parameters

    Send immediate positive acknowledgement (ACK) on receipt of TCP packets with PUSH flag.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -188,7 +188,6 @@

    Parameters

    float

    Timeout for the server to function in syncookie mode after the synattack. This is valid if TCP syncookie is disabled on the profile and server acts in non syncookie mode by default.

    -

    Default: 30.0

    @@ -232,7 +231,6 @@

    Parameters

    float

    Timeout for TCP delayed ACK, in milliseconds.

    -

    Default: 100.0

    @@ -255,7 +253,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -264,7 +262,6 @@

    Parameters

    float

    Initial maximum upper limit on the number of TCP packets that can be outstanding on the TCP link to the server.

    -

    Default: 10.0

    @@ -298,7 +295,7 @@

    Parameters

    Limit the number of persist (zero window) probes.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -308,7 +305,6 @@

    Parameters

    float

    Maximum number of TCP segments allowed in a burst.

    -

    Default: 6.0

    @@ -316,7 +312,6 @@

    Parameters

    float

    Maximum number of probes that Citrix ADC can send out in 10 milliseconds, to dynamically learn a service. Citrix ADC probes for the existence of the origin in case of wildcard virtual server or services.

    -

    Default: 7.0

    @@ -331,7 +326,6 @@

    Parameters

    float

    When ‘syncookie’ is disabled in the TCP profile that is bound to the virtual server or service, and the number of TCP SYN+ACK retransmission by Citrix ADC for that virtual server or service crosses this threshold, the Citrix ADC responds by using the TCP SYN-Cookie mechanism.

    -

    Default: 100.0

    @@ -339,7 +333,6 @@

    Parameters

    float

    Limit the number of client connections (SYN) waiting for status of probe system wide. Any new SYN packets will be dropped.

    -

    Default: 16384.0

    @@ -347,7 +340,6 @@

    Parameters

    float

    Limit the number of client connections (SYN) waiting for status of single probe. Any new SYN packets will be dropped.

    -

    Default: 128.0

    @@ -355,7 +347,6 @@

    Parameters

    float

    Maximum number of connections to hold in the TCP TIME_WAIT state on a packet engine. New connections entering TIME_WAIT state are proactively cleaned up.

    -

    Default: 7000.0

    @@ -363,7 +354,6 @@

    Parameters

    integer

    Minimum retransmission timeout, in milliseconds, specified in 10-millisecond increments (value must yield a whole number if divided by 10).

    -

    Default: 1000

    @@ -397,7 +387,7 @@

    Parameters

    Accept DATA_FIN/FAST_CLOSE on passive subflow

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -409,7 +399,7 @@

    Parameters

    Allow to select option ACK or RESET to force the closure of an MPTCP connection abruptly.

    Choices:

      -
    • "ACK" ← (default)

    • +
    • "ACK"

    • "RESET"

    @@ -422,7 +412,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -431,7 +421,6 @@

    Parameters

    float

    Maximum number of subflow connections supported in pending join state per mptcp connection.

    -

    Default: 4.0

    @@ -439,7 +428,6 @@

    Parameters

    float

    Maximum number of subflow connections supported in established state per mptcp connection.

    -

    Default: 4.0

    @@ -466,7 +454,6 @@

    Parameters

    float

    Number of RTO’s at subflow level, after which MPCTP should start using other subflow.

    -

    Default: 2.0

    @@ -486,7 +473,6 @@

    Parameters

    float

    The minimum idle time value in seconds for idle mptcp subflows after which the sublow is replaced by new incoming subflow if maximum subflow limit is reached. The priority for replacement is given to those subflow without any transaction

    -

    Default: 10.0

    Frequency, in seconds, at which the virtual servers learn the Maximum segment size (MSS) from the services. The argument to enable maximum segment size (MSS) for virtual servers must be enabled.

    -

    Default: 3600.0

    @@ -521,7 +506,6 @@

    Parameters

    float

    Duration, in seconds, to sample the Maximum Segment Size (MSS) of the services. The Citrix ADC determines the best MSS to set for the virtual server based on this sampling. The argument to enable maximum segment size (MSS) for virtual servers must be enabled.

    -

    Default: 180.0

    @@ -583,7 +567,6 @@

    Parameters

    float

    Maximum size of out-of-order packets queue. A value of 0 means no limit.

    -

    Default: 300.0

    @@ -591,7 +574,6 @@

    Parameters

    integer

    Maximum limit on the number of packets that should be retransmitted on receiving a partial ACK.

    -

    Default: 1

    @@ -599,7 +581,6 @@

    Parameters

    float

    TCP Receive buffer size

    -

    Default: 8190.0

    Multiplier that determines the rate at which slow start increases the size of the TCP transmission window after each acknowledgement of successful transmission.

    -

    Default: 2

    Maximum threshold. After crossing this threshold number of outstanding probes for origin, the Citrix ADC reduces the number of connection retries for probe connections.

    -

    Default: 1024.0

    @@ -679,7 +660,6 @@

    Parameters

    float

    The amount of time in seconds, after which a TCP connnection in the TCP TIME-WAIT state is flushed.

    -

    Default: 40.0

    @@ -687,7 +667,6 @@

    Parameters

    float

    Number of RTO’s after which a connection should be freed.

    -

    Default: 7.0

    @@ -212,7 +212,6 @@

    Parameters

    float

    TCP buffering size, in bytes.

    -

    Default: 8190.0

    Timeout for TCP delayed ACK, in milliseconds.

    -

    Default: 100.0

    @@ -275,7 +273,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -286,7 +284,7 @@

    Parameters

    Enable or disable DSACK.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -296,7 +294,6 @@

    Parameters

    float

    TCP dupack threshold.

    -

    Default: 3.0

    @@ -320,7 +317,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -331,7 +328,7 @@

    Parameters @@ -356,7 +353,7 @@

    Parameters @@ -384,7 +381,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -393,7 +390,6 @@

    Parameters

    float

    Initial maximum upper limit on the number of TCP packets that can be outstanding on the TCP link to the server.

    -

    Default: 4.0

    @@ -436,7 +432,7 @@

    Parameters

    Update last activity for the connection after receiving keep-alive (KA) probes.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -446,7 +442,6 @@

    Parameters

    float

    Maximum number of TCP segments allowed in a burst.

    -

    Default: 6.0

    @@ -454,7 +449,6 @@

    Parameters

    float

    TCP Maximum Congestion Window.

    -

    Default: 524288.0

    @@ -469,7 +463,6 @@

    Parameters

    float

    Minimum retransmission timeout, in milliseconds, specified in 10-millisecond increments (value must yield a whole number if divided by 10).

    -

    Default: 1000.0

    @@ -492,7 +485,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -504,7 +497,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -516,7 +509,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -542,7 +535,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -601,7 +594,6 @@

    Parameters

    float

    Maximum size of out-of-order packets queue. A value of 0 means no limit.

    -

    Default: 64.0

    @@ -609,7 +601,6 @@

    Parameters

    float

    Maximum limit on the number of packets that should be retransmitted on receiving a partial ACK.

    -

    Default: 1.0

    @@ -639,7 +630,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -651,7 +642,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -673,7 +664,6 @@

    Parameters

    float

    TCP Send Buffer Size

    -

    Default: 8190.0

    @@ -693,7 +683,6 @@

    Parameters

    float

    Multiplier that determines the rate at which slow start increases the size of the TCP transmission window after each acknowledgement of successful transmission.

    -

    Default: 2.0

    @@ -701,7 +690,6 @@

    Parameters

    float

    TCP Slow Start Threhsold Value.

    -

    Default: 524288.0

    @@ -762,7 +750,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -771,7 +759,6 @@

    Parameters

    float

    TCP FastOpen Cookie size. This accepts only even numbers. Odd number is trimmed down to nearest even number.

    -

    Default: 8.0

    @@ -837,7 +824,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -847,7 +834,6 @@

    Parameters

    Factor used to calculate the new window size.

    This argument is needed only when window scaling is enabled.

    -

    Default: 4.0

    @@ -864,7 +850,16 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | nstcpProfile
    +      delegate_to: localhost
    +      netscaler.adc.nstcpprofile:
    +        state: present
    +        name: tcpprofile-mptcp
    +        mptcp: ENABLED
     
    diff --git a/docs/collections/netscaler/adc/nstimeout_module.html b/docs/collections/netscaler/adc/nstimeout_module.html index f6305c87..fd3cdb66 100644 --- a/docs/collections/netscaler/adc/nstimeout_module.html +++ b/docs/collections/netscaler/adc/nstimeout_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nstimeout module – Configuration for timeout resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -211,7 +211,6 @@

    Parameters

    float

    Idle timeout, in seconds, for connections that are in TCP half-closed state.

    -

    Default: 10.0

    @@ -233,7 +232,6 @@

    Parameters

    float

    Timer interval, in seconds, for new TCP NATPCB connections on which no data was received.

    -

    Default: 4.0

    @@ -275,7 +273,6 @@

    Parameters

    float

    Interval at which the zombie clean-up process for non-TCP connections should run. Inactive IP NAT connections will be cleaned up.

    -

    Default: 60.0

    @@ -291,7 +288,6 @@

    Parameters

    float

    Alternative idle timeout, in seconds, for closed TCP NATPCB connections.

    -

    Default: 30.0

    Interval, in seconds, at which the Citrix ADC zombie cleanup process must run. This process cleans up inactive TCP connections.

    -

    Default: 120.0

    diff --git a/docs/collections/netscaler/adc/nstimer_autoscalepolicy_binding_module.html b/docs/collections/netscaler/adc/nstimer_autoscalepolicy_binding_module.html index e6246515..11fbaaa5 100644 --- a/docs/collections/netscaler/adc/nstimer_autoscalepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/nstimer_autoscalepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nstimer_autoscalepolicy_binding module – Binding Resource definition for describing association between nstimer and autoscalepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -246,7 +246,6 @@

    Parameters

    float

    Denotes the sample size. Sample size value of ‘x’ means that previous ‘(x - 1)’ policy’s rule evaluation results and the current evaluation result are present with the binding. For example, sample size of 10 means that there is a state of previous 9 policy evaluation results and also the current policy evaluation result.

    -

    Default: 3.0

    @@ -281,7 +280,6 @@

    Parameters

    float

    Denotes the threshold. If the rule of the policy in the binding relation evaluates ‘threshold size’ number of times in ‘sample size’ to true, then the corresponding action is taken. Its value needs to be less than or equal to the sample size value.

    -

    Default: 3.0

    diff --git a/docs/collections/netscaler/adc/nstimer_module.html b/docs/collections/netscaler/adc/nstimer_module.html index c95f9cf4..f60871cf 100644 --- a/docs/collections/netscaler/adc/nstimer_module.html +++ b/docs/collections/netscaler/adc/nstimer_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nstimer module – Configuration for Timer resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -183,7 +183,6 @@

    Parameters

    integer

    The frequency at which the policies bound to this timer are invoked. The minimum value is 20 msec. The maximum value is 20940 in seconds and 349 in minutes

    -

    Default: 5

    @@ -205,7 +205,7 @@

    Parameters

    Enable or disable runtime temp file cleanup

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -229,7 +229,6 @@

    Parameters

    float

    File size, in MB, treshold for rollover. If free disk space is less than 2GB at the time of rollover, trace will stop

    -

    Default: 1024.0

    @@ -414,7 +413,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -469,7 +468,6 @@

    Parameters

    float

    Number of files to be generated in cycle.

    -

    Default: 24.0

    @@ -558,7 +556,6 @@

    Parameters

    float

    Size of the captured data. Set 0 for full packet trace.

    -

    Default: 164.0

    @@ -581,7 +578,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -598,7 +595,6 @@

    Parameters

    float

    Time per file (sec).

    -

    Default: 3600.0

    @@ -606,7 +602,6 @@

    Parameters

    float

    Number of 16KB trace buffers

    -

    Default: 5000.0

    diff --git a/docs/collections/netscaler/adc/nstrafficdomain_bridgegroup_binding_module.html b/docs/collections/netscaler/adc/nstrafficdomain_bridgegroup_binding_module.html index 6133701a..2f0e97c9 100644 --- a/docs/collections/netscaler/adc/nstrafficdomain_bridgegroup_binding_module.html +++ b/docs/collections/netscaler/adc/nstrafficdomain_bridgegroup_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nstrafficdomain_bridgegroup_binding module – Binding Resource definition for describing association between nstrafficdomain and bridgegroup resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nstrafficdomain_module.html b/docs/collections/netscaler/adc/nstrafficdomain_module.html index 42cfc920..7739b06e 100644 --- a/docs/collections/netscaler/adc/nstrafficdomain_module.html +++ b/docs/collections/netscaler/adc/nstrafficdomain_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nstrafficdomain module – Configuration for Traffic Domain resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -371,7 +371,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/nstrafficdomain_vlan_binding_module.html b/docs/collections/netscaler/adc/nstrafficdomain_vlan_binding_module.html index 4a143d0b..2adee81a 100644 --- a/docs/collections/netscaler/adc/nstrafficdomain_vlan_binding_module.html +++ b/docs/collections/netscaler/adc/nstrafficdomain_vlan_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nstrafficdomain_vlan_binding module – Binding Resource definition for describing association between nstrafficdomain and vlan resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nstrafficdomain_vxlan_binding_module.html b/docs/collections/netscaler/adc/nstrafficdomain_vxlan_binding_module.html index 5ef45188..1901a84a 100644 --- a/docs/collections/netscaler/adc/nstrafficdomain_vxlan_binding_module.html +++ b/docs/collections/netscaler/adc/nstrafficdomain_vxlan_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nstrafficdomain_vxlan_binding module – Binding Resource definition for describing association between nstrafficdomain and vxlan resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/nsvariable_module.html b/docs/collections/netscaler/adc/nsvariable_module.html index 04262328..589d0023 100644 --- a/docs/collections/netscaler/adc/nsvariable_module.html +++ b/docs/collections/netscaler/adc/nsvariable_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsvariable module – Configuration for variable resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -197,7 +197,7 @@

    ParametersChoices:

    • "undef"

    • -
    • "lru" ← (default)

    • +
    • "lru"

    @@ -217,7 +217,7 @@

    ParametersChoices:

    • "undef"

    • -
    • "init" ← (default)

    • +
    • "init"

    @@ -234,7 +234,7 @@

    ParametersChoices:

    • "undef"

    • -
    • "truncate" ← (default)

    • +
    • "truncate"

    @@ -325,7 +325,7 @@

    Parameters

    Choices:

      -
    • "global" ← (default)

    • +
    • "global"

    • "transaction"

    diff --git a/docs/collections/netscaler/adc/nsvpxparam_module.html b/docs/collections/netscaler/adc/nsvpxparam_module.html index 4e333a74..f3717308 100644 --- a/docs/collections/netscaler/adc/nsvpxparam_module.html +++ b/docs/collections/netscaler/adc/nsvpxparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsvpxparam module – Configuration for “VPX” resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -191,7 +191,7 @@

    Parameters

    Choices:

      -
    • "DEFAULT" ← (default)

    • +
    • "DEFAULT"

    • "YES"

    • "NO"

    @@ -256,7 +256,6 @@

    Parameters

    float

    ID of the cluster node for which you are setting the cpuyield. It can be configured only through the cluster IP address.

    -

    Default: 255.0

    @@ -278,9 +277,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -310,7 +311,15 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | nsvpxparam
    +      delegate_to: localhost
    +      netscaler.adc.nsvpxparam:
    +        state: present
    +        cpuyield: 'YES'
     
    diff --git a/docs/collections/netscaler/adc/nsweblogparam_module.html b/docs/collections/netscaler/adc/nsweblogparam_module.html index d13a2cc1..be455ded 100644 --- a/docs/collections/netscaler/adc/nsweblogparam_module.html +++ b/docs/collections/netscaler/adc/nsweblogparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsweblogparam module – Configuration for Web log parameters resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -176,7 +176,6 @@

    Parameters

    float

    Buffer size, in MB, allocated for log transaction data on the system. The maximum value is limited to the memory available on the system.

    -

    Default: 16.0

    @@ -254,9 +253,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -286,7 +287,15 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | nsweblogparam
    +      delegate_to: localhost
    +      netscaler.adc.nsweblogparam:
    +        state: present
    +        buffersizemb: '3'
     
    diff --git a/docs/collections/netscaler/adc/nsxmlnamespace_module.html b/docs/collections/netscaler/adc/nsxmlnamespace_module.html index 5500ab4e..95d1f96e 100644 --- a/docs/collections/netscaler/adc/nsxmlnamespace_module.html +++ b/docs/collections/netscaler/adc/nsxmlnamespace_module.html @@ -131,7 +131,7 @@

    netscaler.adc.nsxmlnamespace module – Configuration for XML namespace resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,8 +179,8 @@

    Parameters
    -

    Namespace

    -

    string

    +

    namespace

    +

    string

    Expanded namespace for which the XML prefix is provided.

    diff --git a/docs/collections/netscaler/adc/ntpparam_module.html b/docs/collections/netscaler/adc/ntpparam_module.html index e55612f6..fbbd2a92 100644 --- a/docs/collections/netscaler/adc/ntpparam_module.html +++ b/docs/collections/netscaler/adc/ntpparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.ntpparam module – Configuration for NTP parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    Apply NTP authentication, which enables the NTP client (Citrix ADC) to verify that the server is in fact known and trusted.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -188,7 +188,6 @@

    Parameters

    float

    Autokey protocol requires the keys to be refreshed periodically. This parameter specifies the interval between regenerations of new session keys. In seconds, expressed as a power of 2.

    -

    Default: 12.0

    @@ -238,7 +237,6 @@

    Parameters

    float

    Interval between re-randomizations of the autokey seeds to prevent brute-force attacks on the autokey algorithms.

    -

    Default: 16.0

    @@ -260,9 +258,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/ntpserver_module.html b/docs/collections/netscaler/adc/ntpserver_module.html index d2c00e81..52989f6b 100644 --- a/docs/collections/netscaler/adc/ntpserver_module.html +++ b/docs/collections/netscaler/adc/ntpserver_module.html @@ -131,7 +131,7 @@

    netscaler.adc.ntpserver module – Configuration for NTP server resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -254,7 +254,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    diff --git a/docs/collections/netscaler/adc/onlinkipv6prefix_module.html b/docs/collections/netscaler/adc/onlinkipv6prefix_module.html index fe6c86c9..643fe87c 100644 --- a/docs/collections/netscaler/adc/onlinkipv6prefix_module.html +++ b/docs/collections/netscaler/adc/onlinkipv6prefix_module.html @@ -131,7 +131,7 @@

    netscaler.adc.onlinkipv6prefix module – Configuration for on-link IPv6 global prefixes for Router Advertisment resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    RA Prefix Autonomus flag.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -191,7 +191,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -203,7 +203,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -263,7 +263,7 @@

    Parameters

    RA Prefix onlink flag.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -273,7 +273,6 @@

    Parameters

    float

    Preferred life time of the prefix, in seconds.

    -

    Default: 604800.0

    @@ -281,7 +280,6 @@

    Parameters

    float

    Valide life time of the prefix, in seconds.

    -

    Default: 2592000.0

    diff --git a/docs/collections/netscaler/adc/pcpprofile_module.html b/docs/collections/netscaler/adc/pcpprofile_module.html index de25b678..94eaaca0 100644 --- a/docs/collections/netscaler/adc/pcpprofile_module.html +++ b/docs/collections/netscaler/adc/pcpprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.pcpprofile module – Configuration for PCP Profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -167,7 +167,6 @@

    Parameters

    float

    Integer value that identify the number announce message to be send.

    -

    Default: 10.0

    diff --git a/docs/collections/netscaler/adc/pcpserver_module.html b/docs/collections/netscaler/adc/pcpserver_module.html index fd85f4fb..874d9b22 100644 --- a/docs/collections/netscaler/adc/pcpserver_module.html +++ b/docs/collections/netscaler/adc/pcpserver_module.html @@ -131,7 +131,7 @@

    netscaler.adc.pcpserver module – Configuration for server resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -239,7 +239,6 @@

    Parameters

    integer

    Port number for the PCP server.

    -

    Default: 5351

    diff --git a/docs/collections/netscaler/adc/ping6_module.html b/docs/collections/netscaler/adc/ping6_module.html index eb0329bf..3e63ddcb 100644 --- a/docs/collections/netscaler/adc/ping6_module.html +++ b/docs/collections/netscaler/adc/ping6_module.html @@ -131,7 +131,7 @@

    netscaler.adc.ping6 module – Configuration for 0 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/ping_module.html b/docs/collections/netscaler/adc/ping_module.html index 232edea6..2fc58d71 100644 --- a/docs/collections/netscaler/adc/ping_module.html +++ b/docs/collections/netscaler/adc/ping_module.html @@ -131,7 +131,7 @@

    netscaler.adc.ping module – Configuration for 0 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/policydataset_module.html b/docs/collections/netscaler/adc/policydataset_module.html index f7e1ffab..916f5006 100644 --- a/docs/collections/netscaler/adc/policydataset_module.html +++ b/docs/collections/netscaler/adc/policydataset_module.html @@ -131,7 +131,7 @@

    netscaler.adc.policydataset module – Configuration for TYPE set resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/policydataset_value_binding_module.html b/docs/collections/netscaler/adc/policydataset_value_binding_module.html index 66b47acc..d12ff0e7 100644 --- a/docs/collections/netscaler/adc/policydataset_value_binding_module.html +++ b/docs/collections/netscaler/adc/policydataset_value_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.policydataset_value_binding module – Binding Resource definition for describing association between policydataset and value resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/policyexpression_module.html b/docs/collections/netscaler/adc/policyexpression_module.html index 2fe04389..3019308e 100644 --- a/docs/collections/netscaler/adc/policyexpression_module.html +++ b/docs/collections/netscaler/adc/policyexpression_module.html @@ -131,7 +131,7 @@

    netscaler.adc.policyexpression module – Configuration for expression resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/policyhttpcallout_module.html b/docs/collections/netscaler/adc/policyhttpcallout_module.html index af4e71c3..7b3a426b 100644 --- a/docs/collections/netscaler/adc/policyhttpcallout_module.html +++ b/docs/collections/netscaler/adc/policyhttpcallout_module.html @@ -131,7 +131,7 @@

    netscaler.adc.policyhttpcallout module – Configuration for HTTP callout resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/policymap_module.html b/docs/collections/netscaler/adc/policymap_module.html index 62289d2a..0afdf022 100644 --- a/docs/collections/netscaler/adc/policymap_module.html +++ b/docs/collections/netscaler/adc/policymap_module.html @@ -131,7 +131,7 @@

    netscaler.adc.policymap module – Configuration for map policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/policyparam_module.html b/docs/collections/netscaler/adc/policyparam_module.html index 800e49cf..0bf7f982 100644 --- a/docs/collections/netscaler/adc/policyparam_module.html +++ b/docs/collections/netscaler/adc/policyparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.policyparam module – Configuration for policy parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -232,9 +232,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -243,7 +245,6 @@

    Parameters

    float

    Maximum time in milliseconds to allow for processing expressions and policies without interruption. If the timeout is reached then the evaluation causes an UNDEF to be raised and no further processing is performed.

    -

    Default: 3900.0

    diff --git a/docs/collections/netscaler/adc/policypatset_module.html b/docs/collections/netscaler/adc/policypatset_module.html index 10ef12f9..8a05790b 100644 --- a/docs/collections/netscaler/adc/policypatset_module.html +++ b/docs/collections/netscaler/adc/policypatset_module.html @@ -131,7 +131,7 @@

    netscaler.adc.policypatset module – Configuration for PAT set resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/policypatset_pattern_binding_module.html b/docs/collections/netscaler/adc/policypatset_pattern_binding_module.html index 5e226929..9388e2b0 100644 --- a/docs/collections/netscaler/adc/policypatset_pattern_binding_module.html +++ b/docs/collections/netscaler/adc/policypatset_pattern_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.policypatset_pattern_binding module – Binding Resource definition for describing association between policypatset and pattern resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -370,8 +370,8 @@

    Parameters
    -

    String

    -

    string

    +

    string

    +

    string

    String of characters that constitutes a pattern. For more information about the characters that can be used, refer to the character set parameter.

    Note: Minimum length for pattern sets used in rewrite actions of type REPLACE_ALL, DELETE_ALL, INSERT_AFTER_ALL, and INSERT_BEFORE_ALL, is three characters.

    diff --git a/docs/collections/netscaler/adc/policypatsetfile_module.html b/docs/collections/netscaler/adc/policypatsetfile_module.html index 183b2726..e210974d 100644 --- a/docs/collections/netscaler/adc/policypatsetfile_module.html +++ b/docs/collections/netscaler/adc/policypatsetfile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.policypatsetfile module – Configuration for patset file resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -304,6 +304,7 @@

    Parameters
  • "present" ← (default)

  • "absent"

  • +
  • "imported"

  • diff --git a/docs/collections/netscaler/adc/policystringmap_module.html b/docs/collections/netscaler/adc/policystringmap_module.html index d225a1fe..02b047e7 100644 --- a/docs/collections/netscaler/adc/policystringmap_module.html +++ b/docs/collections/netscaler/adc/policystringmap_module.html @@ -131,7 +131,7 @@

    netscaler.adc.policystringmap module – Configuration for string map resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/policystringmap_pattern_binding_module.html b/docs/collections/netscaler/adc/policystringmap_pattern_binding_module.html index c6907570..a2c82a5a 100644 --- a/docs/collections/netscaler/adc/policystringmap_pattern_binding_module.html +++ b/docs/collections/netscaler/adc/policystringmap_pattern_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.policystringmap_pattern_binding module – Binding Resource definition for describing association between policystringmap and pattern resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/policyurlset_module.html b/docs/collections/netscaler/adc/policyurlset_module.html index 3aaaf654..4ed9b7e4 100644 --- a/docs/collections/netscaler/adc/policyurlset_module.html +++ b/docs/collections/netscaler/adc/policyurlset_module.html @@ -131,7 +131,7 @@

    netscaler.adc.policyurlset module – Configuration for URL set resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -216,7 +216,6 @@

    Parameters

    float

    An ID that would be sent to AppFlow to indicate which URLSet was the last one that matched the requested URL.

    -

    Default: 1.0

    diff --git a/docs/collections/netscaler/adc/protocolhttpband_module.html b/docs/collections/netscaler/adc/protocolhttpband_module.html index e9c99512..5f9739ee 100644 --- a/docs/collections/netscaler/adc/protocolhttpband_module.html +++ b/docs/collections/netscaler/adc/protocolhttpband_module.html @@ -131,7 +131,7 @@

    netscaler.adc.protocolhttpband module – Configuration for HTTP request/response band resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -228,7 +228,6 @@

    Parameters0 - 99 bytes

    100 - 199 bytes

    200 - 299 bytes and so on.

    -

    Default: 100

    @@ -261,9 +259,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/ptp_module.html b/docs/collections/netscaler/adc/ptp_module.html index d70eddfb..6c296e9e 100644 --- a/docs/collections/netscaler/adc/ptp_module.html +++ b/docs/collections/netscaler/adc/ptp_module.html @@ -131,7 +131,7 @@

    netscaler.adc.ptp module – Configuration for Precision Time Protocol resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/quicbridgeprofile_module.html b/docs/collections/netscaler/adc/quicbridgeprofile_module.html index 92348d7c..30d42e10 100644 --- a/docs/collections/netscaler/adc/quicbridgeprofile_module.html +++ b/docs/collections/netscaler/adc/quicbridgeprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.quicbridgeprofile module – Configuration for QUIC BRIDGE profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -227,7 +227,7 @@

    Parameters

    Routing algorithm to generate routable connection IDs.

    Choices:

      -
    • "PLAINTEXT" ← (default)

    • +
    • "PLAINTEXT"

    @@ -249,7 +249,6 @@

    Parameters

    float

    Length of serverid to encode/decode server information

    -

    Default: 4.0

    diff --git a/docs/collections/netscaler/adc/quicparam_module.html b/docs/collections/netscaler/adc/quicparam_module.html index 22c005a7..8687f41b 100644 --- a/docs/collections/netscaler/adc/quicparam_module.html +++ b/docs/collections/netscaler/adc/quicparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.quicparam module – Configuration for Citrix ADC QUIC parameters resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -218,7 +218,6 @@

    Parameters

    float

    Rotation frequency, in seconds, for the secret used to generate address validation tokens that will be issued in QUIC Retry packets and QUIC NEW_TOKEN frames sent by the Citrix ADC. A value of 0 can be configured if secret rotation is not desired.

    -

    Default: 3600.0

    @@ -240,9 +239,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/quicprofile_module.html b/docs/collections/netscaler/adc/quicprofile_module.html index aa07e3e1..014fdfe4 100644 --- a/docs/collections/netscaler/adc/quicprofile_module.html +++ b/docs/collections/netscaler/adc/quicprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.quicprofile module – Configuration for QUIC profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -167,7 +167,6 @@

    Parameters

    float

    An integer value advertised by the Citrix ADC to the remote QUIC endpoint, indicating an exponent that the remote QUIC endpoint should use, to decode the ACK Delay field in QUIC ACK frames sent by the Citrix ADC.

    -

    Default: 3.0

    @@ -175,7 +174,6 @@

    Parameters

    float

    An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the maximum number of QUIC connection IDs from the remote QUIC endpoint, that the Citrix ADC is willing to store.

    -

    Default: 3.0

    @@ -185,7 +183,7 @@

    Parameters

    Specify whether the Citrix ADC should allow the remote QUIC endpoint to perform active QUIC connection migration.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -206,7 +204,7 @@

    Parameters

    An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the initial value, in bytes, for the maximum amount of data that can be sent on a QUIC connection.

    -

    Default: 1048576.0

    @@ -226,7 +223,6 @@

    Parameters

    float

    An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the initial flow control limit, in bytes, for bidirectional QUIC streams initiated by the Citrix ADC.

    -

    Default: 262144.0

    @@ -234,7 +230,6 @@

    Parameters

    float

    An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the initial flow control limit, in bytes, for bidirectional QUIC streams initiated by the remote QUIC endpoint.

    -

    Default: 262144.0

    @@ -242,7 +237,6 @@

    Parameters

    float

    An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the initial flow control limit, in bytes, for unidirectional streams initiated by the remote QUIC endpoint.

    -

    Default: 262144.0

    @@ -250,7 +244,6 @@

    Parameters

    float

    An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the initial maximum number of bidirectional streams the remote QUIC endpoint may initiate.

    -

    Default: 100.0

    @@ -258,7 +251,6 @@

    Parameters

    float

    An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the initial maximum number of unidirectional streams the remote QUIC endpoint may initiate.

    -

    Default: 10.0

    @@ -266,7 +258,6 @@

    Parameters

    float

    An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the maximum amount of time, in milliseconds, by which the Citrix ADC will delay sending acknowledgments.

    -

    Default: 20.0

    @@ -274,7 +265,6 @@

    Parameters

    float

    An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the maximum idle timeout, in seconds, for a QUIC connection. A QUIC connection will be silently discarded by the Citrix ADC if it remains idle for longer than the minimum of the idle timeout values advertised by the Citrix ADC and the remote QUIC endpoint, and three times the current Probe Timeout (PTO).

    -

    Default: 180.0

    @@ -282,7 +272,6 @@

    Parameters

    float

    An integer value, specifying the maximum number of UDP datagrams that can be transmitted by the Citrix ADC in a single transmission burst on a QUIC connection.

    -

    Default: 8.0

    @@ -290,7 +279,6 @@

    Parameters

    float

    An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the size of the largest UDP datagram payload, in bytes, that the Citrix ADC is willing to receive on a QUIC connection.

    -

    Default: 1472.0

    @@ -305,7 +293,6 @@

    Parameters

    float

    An integer value, specifying the validity period, in seconds, of address validation tokens issued through QUIC NEW_TOKEN frames sent by the Citrix ADC.

    -

    Default: 300.0

    @@ -355,7 +342,6 @@

    Parameters

    float

    An integer value, specifying the validity period, in seconds, of address validation tokens issued through QUIC Retry packets sent by the Citrix ADC.

    -

    Default: 10.0

    @@ -392,7 +378,7 @@

    Parameters

    Specify whether the Citrix ADC should perform stateless address validation for QUIC clients, by sending tokens in QUIC Retry packets during QUIC connection establishment, and by sending tokens in QUIC NEW_TOKEN frames after QUIC connection establishment.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/radiusnode_module.html b/docs/collections/netscaler/adc/radiusnode_module.html index 59470aaa..80b262da 100644 --- a/docs/collections/netscaler/adc/radiusnode_module.html +++ b/docs/collections/netscaler/adc/radiusnode_module.html @@ -131,7 +131,7 @@

    netscaler.adc.radiusnode module – Configuration for RADIUS Node resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/rdpclientprofile_module.html b/docs/collections/netscaler/adc/rdpclientprofile_module.html index 58587405..5bc7b6d2 100644 --- a/docs/collections/netscaler/adc/rdpclientprofile_module.html +++ b/docs/collections/netscaler/adc/rdpclientprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.rdpclientprofile module – Configuration for RDP clientprofile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -170,7 +170,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -191,7 +191,7 @@

    ParametersChoices:

    • "ENABLE"

    • -
    • "DISABLE" ← (default)

    • +
    • "DISABLE"

    @@ -204,7 +204,7 @@

    Parameters
  • "OnLocal"

  • "OnRemote"

  • -
  • "InFullScreenMode" ← (default)

  • +
  • "InFullScreenMode"

  • @@ -215,7 +215,7 @@

    Parameters

    Enable/Disable Multiple Monitor Support for Remote Desktop Connection (RDC).

    Choices:

      -
    • "ENABLE" ← (default)

    • +
    • "ENABLE"

    • "DISABLE"

    @@ -284,7 +284,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -293,7 +293,6 @@

    Parameters

    float

    RDP cookie validity period. RDP cookie validity time is applicable for new connection and also for any re-connection that might happen, mostly due to network disruption or during fail-over.

    -

    Default: 60.0

    @@ -365,7 +364,7 @@

    Parameters

    This setting corresponds to the Clipboard check box on the Local Resources tab under Options in RDC.

    Choices:

      -
    • "ENABLE" ← (default)

    • +
    • "ENABLE"

    • "DISABLE"

    @@ -378,7 +377,7 @@

    ParametersChoices:

    • "ENABLE"

    • -
    • "DISABLE" ← (default)

    • +
    • "DISABLE"

    @@ -390,7 +389,7 @@

    ParametersChoices:

    • "ENABLE"

    • -
    • "DISABLE" ← (default)

    • +
    • "DISABLE"

    @@ -402,7 +401,7 @@

    ParametersChoices:

    • "ENABLE"

    • -
    • "DISABLE" ← (default)

    • +
    • "DISABLE"

    @@ -413,7 +412,7 @@

    Parameters

    This setting corresponds to the selection in the Printers check box on the Local Resources tab under Options in RDC.

    Choices:

      -
    • "ENABLE" ← (default)

    • +
    • "ENABLE"

    • "DISABLE"

    @@ -464,7 +463,7 @@

    Parameters

    This setting determines if Remote Desktop Connection (RDC) will use RDP efficient multimedia streaming for video playback.

    Choices:

      -
    • "ENABLE" ← (default)

    • +
    • "ENABLE"

    • "DISABLE"

    diff --git a/docs/collections/netscaler/adc/rdpconnections_module.html b/docs/collections/netscaler/adc/rdpconnections_module.html index a4f04daf..3140fc2b 100644 --- a/docs/collections/netscaler/adc/rdpconnections_module.html +++ b/docs/collections/netscaler/adc/rdpconnections_module.html @@ -131,7 +131,7 @@

    netscaler.adc.rdpconnections module – Configuration for active rdp connections resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/rdpserverprofile_module.html b/docs/collections/netscaler/adc/rdpserverprofile_module.html index fa1d1eed..d924e8d9 100644 --- a/docs/collections/netscaler/adc/rdpserverprofile_module.html +++ b/docs/collections/netscaler/adc/rdpserverprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.rdpserverprofile module – Configuration for RDP serverprofile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -239,7 +239,6 @@

    Parameters

    float

    TCP port on which the RDP connection is established.

    -

    Default: 3389.0

    diff --git a/docs/collections/netscaler/adc/reboot_module.html b/docs/collections/netscaler/adc/reboot_module.html index fe51c785..b3076903 100644 --- a/docs/collections/netscaler/adc/reboot_module.html +++ b/docs/collections/netscaler/adc/reboot_module.html @@ -131,7 +131,7 @@

    netscaler.adc.reboot module – Configuration for 0 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/reportingconfig_module.html b/docs/collections/netscaler/adc/reportingconfig_module.html index 28406eb9..4102f145 100644 --- a/docs/collections/netscaler/adc/reportingconfig_module.html +++ b/docs/collections/netscaler/adc/reportingconfig_module.html @@ -131,7 +131,7 @@

    netscaler.adc.reportingconfig module – Configuration for reporting config resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/reputationsettings_module.html b/docs/collections/netscaler/adc/reputationsettings_module.html index 5e76f656..383c84e5 100644 --- a/docs/collections/netscaler/adc/reputationsettings_module.html +++ b/docs/collections/netscaler/adc/reputationsettings_module.html @@ -131,7 +131,7 @@

    netscaler.adc.reputationsettings module – Configuration for Reputation service settings resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -260,9 +260,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/responderaction_module.html b/docs/collections/netscaler/adc/responderaction_module.html index a98de0ca..b6504b17 100644 --- a/docs/collections/netscaler/adc/responderaction_module.html +++ b/docs/collections/netscaler/adc/responderaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.responderaction module – Configuration for responder action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    diff --git a/docs/collections/netscaler/adc/responderglobal_responderpolicy_binding_module.html b/docs/collections/netscaler/adc/responderglobal_responderpolicy_binding_module.html index 090af20e..77e6bc3a 100644 --- a/docs/collections/netscaler/adc/responderglobal_responderpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/responderglobal_responderpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.responderglobal_responderpolicy_binding module – Binding Resource definition for describing association between responderglobal and responderpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    0

    Choices:

    diff --git a/docs/collections/netscaler/adc/sslcrlfile_module.html b/docs/collections/netscaler/adc/sslcrlfile_module.html index d2379979..2fbaac05 100644 --- a/docs/collections/netscaler/adc/sslcrlfile_module.html +++ b/docs/collections/netscaler/adc/sslcrlfile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslcrlfile module – Configuration for Imported crl files resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -250,6 +250,7 @@

    ParametersChoices:

    • "absent"

    • +
    • "imported"

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/ssldhfile_module.html b/docs/collections/netscaler/adc/ssldhfile_module.html index c74c76c9..3dd76c81 100644 --- a/docs/collections/netscaler/adc/ssldhfile_module.html +++ b/docs/collections/netscaler/adc/ssldhfile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.ssldhfile module – Configuration for dh imported file resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -250,6 +250,7 @@

    ParametersChoices:

    • "absent"

    • +
    • "imported"

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/ssldhparam_module.html b/docs/collections/netscaler/adc/ssldhparam_module.html index 7ad82469..ddb2759a 100644 --- a/docs/collections/netscaler/adc/ssldhparam_module.html +++ b/docs/collections/netscaler/adc/ssldhparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.ssldhparam module – Configuration for dh Parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -257,6 +257,10 @@

    Parameters

    string

    The state of the resource being configured by the module on the NetScaler ADC node.

    +

    Choices:

    +
      +
    • "created"

    • +

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/ssldtlsprofile_module.html b/docs/collections/netscaler/adc/ssldtlsprofile_module.html index e2a65b09..6626c523 100644 --- a/docs/collections/netscaler/adc/ssldtlsprofile_module.html +++ b/docs/collections/netscaler/adc/ssldtlsprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.ssldtlsprofile module – Configuration for DTLS profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    Send a Hello Verify request to validate the client.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -188,7 +188,6 @@

    Parameters

    float

    Maximum number of bad MAC errors to ignore for a connection prior disconnect. Disabling parameter terminateSession terminates session immediately when bad MAC is detected in the connection.

    -

    Default: 100.0

    @@ -196,7 +195,6 @@

    Parameters

    float

    Maximum number of datagrams that can be queued at DTLS layer for processing

    -

    Default: 32.0

    @@ -204,7 +202,6 @@

    Parameters

    float

    Maximum number of packets to reassemble. This value helps protect against a fragmented packet attack.

    -

    Default: 120.0

    @@ -212,7 +209,6 @@

    Parameters

    float

    Maximum size of records that can be sent if PMTU is disabled.

    -

    Default: 1459.0

    @@ -220,7 +216,6 @@

    Parameters

    float

    Wait for the specified time, in seconds, before resending the request.

    -

    Default: 3.0

    @@ -319,7 +314,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/sslecdsakey_module.html b/docs/collections/netscaler/adc/sslecdsakey_module.html index d9d860fc..e2135adc 100644 --- a/docs/collections/netscaler/adc/sslecdsakey_module.html +++ b/docs/collections/netscaler/adc/sslecdsakey_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslecdsakey module – Configuration for ecdsa key resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -234,7 +234,7 @@

    ParametersChoices:

    • "DER"

    • -
    • "PEM" ← (default)

    • +
    • "PEM"

    @@ -317,6 +317,10 @@

    Parameters

    string

    The state of the resource being configured by the module on the NetScaler ADC node.

    +

    Choices:

    +
      +
    • "created"

    • +

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/sslfips_module.html b/docs/collections/netscaler/adc/sslfips_module.html index 88e49ce5..6b616b76 100644 --- a/docs/collections/netscaler/adc/sslfips_module.html +++ b/docs/collections/netscaler/adc/sslfips_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslfips module – Configuration for fips resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -271,9 +271,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/sslfipskey_module.html b/docs/collections/netscaler/adc/sslfipskey_module.html index 0db0117d..946e90ae 100644 --- a/docs/collections/netscaler/adc/sslfipskey_module.html +++ b/docs/collections/netscaler/adc/sslfipskey_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslfipskey module – Configuration for FIPS key resource.

    diff --git a/docs/collections/netscaler/adc/sslfipssimsource_module.html b/docs/collections/netscaler/adc/sslfipssimsource_module.html index 09781231..c00ff2c6 100644 --- a/docs/collections/netscaler/adc/sslfipssimsource_module.html +++ b/docs/collections/netscaler/adc/sslfipssimsource_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslfipssimsource module – Configuration for FIPsSIM source resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslfipssimtarget_module.html b/docs/collections/netscaler/adc/sslfipssimtarget_module.html index 20fa8b3f..d8a83447 100644 --- a/docs/collections/netscaler/adc/sslfipssimtarget_module.html +++ b/docs/collections/netscaler/adc/sslfipssimtarget_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslfipssimtarget module – Configuration for FIPS SIM Target resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslglobal_sslpolicy_binding_module.html b/docs/collections/netscaler/adc/sslglobal_sslpolicy_binding_module.html index 10549016..1ddd20c1 100644 --- a/docs/collections/netscaler/adc/sslglobal_sslpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/sslglobal_sslpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslglobal_sslpolicy_binding module – Binding Resource definition for describing association between sslglobal and sslpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters
    diff --git a/docs/collections/netscaler/adc/sslhsmkey_module.html b/docs/collections/netscaler/adc/sslhsmkey_module.html index a307d2d5..7cf51009 100644 --- a/docs/collections/netscaler/adc/sslhsmkey_module.html +++ b/docs/collections/netscaler/adc/sslhsmkey_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslhsmkey module – Configuration for HSM key resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -185,7 +185,7 @@

    Parameters

    Type of HSM.

    Choices:

      -
    • "THALES" ← (default)

    • +
    • "THALES"

    • "SAFENET"

    • "KEYVAULT"

    diff --git a/docs/collections/netscaler/adc/sslkeyfile_module.html b/docs/collections/netscaler/adc/sslkeyfile_module.html index 9d6b8679..54434b62 100644 --- a/docs/collections/netscaler/adc/sslkeyfile_module.html +++ b/docs/collections/netscaler/adc/sslkeyfile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslkeyfile module – Configuration for Imported ssl key files resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -257,6 +257,7 @@

    ParametersChoices:

    • "absent"

    • +
    • "imported"

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/ssllogprofile_module.html b/docs/collections/netscaler/adc/ssllogprofile_module.html index 87740847..7b16e904 100644 --- a/docs/collections/netscaler/adc/ssllogprofile_module.html +++ b/docs/collections/netscaler/adc/ssllogprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.ssllogprofile module – Configuration for SSL logging Profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -241,7 +241,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -253,7 +253,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -265,7 +265,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -277,7 +277,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/sslocspresponder_module.html b/docs/collections/netscaler/adc/sslocspresponder_module.html index 3a3b6cd8..d2d928d3 100644 --- a/docs/collections/netscaler/adc/sslocspresponder_module.html +++ b/docs/collections/netscaler/adc/sslocspresponder_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslocspresponder module – Configuration for OCSP responser resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -193,7 +193,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -202,7 +202,6 @@

    Parameters

    float

    Timeout for caching the OCSP response. After the timeout, the Citrix ADC sends a fresh request to the OCSP responder for the certificate status. If a timeout is not specified, the timeout provided in the OCSP response applies.

    -

    Default: 1.0

    @@ -292,7 +291,6 @@

    Parameters

    float

    Time, in seconds, for which the Citrix ADC waits before considering the response as invalid. The response is considered invalid if the Produced At time stamp in the OCSP response exceeds or precedes the current Citrix ADC clock time by the amount of time specified.

    -

    Default: 300.0

    diff --git a/docs/collections/netscaler/adc/sslparameter_module.html b/docs/collections/netscaler/adc/sslparameter_module.html index 524cec94..65151cd5 100644 --- a/docs/collections/netscaler/adc/sslparameter_module.html +++ b/docs/collections/netscaler/adc/sslparameter_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslparameter module – Configuration for SSL parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -176,7 +176,6 @@

    Parameters

    float

    Maximum memory size to use for certificate revocation lists (CRLs). This parameter reserves memory for a CRL but sets a limit to the maximum memory that the CRLs loaded on the appliance can consume.

    -

    Default: 256.0

    @@ -213,7 +212,7 @@

    Parameters

    "NO"

  • "FRONTEND_CLIENT"

  • "FRONTEND_CLIENTSERVER"

  • -
  • "ALL" ← (default)

  • +
  • "ALL"

  • "NONSECURE"

  • @@ -226,7 +225,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -235,7 +234,6 @@

    Parameters

    float

    Maximum number of queued packets after which encryption is triggered. Use this setting for SSL transactions that send small packets from server to Citrix ADC.

    -

    Default: 45.0

    @@ -258,7 +256,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -269,7 +267,7 @@

    Parameters

    To insert space between lines in the certificate header of request

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -281,7 +279,7 @@

    Parameters

    Encoding method used to insert the subject or issuer’s name in HTTP requests to servers.

    Choices:

      -
    • "Unicode" ← (default)

    • +
    • "Unicode"

    • "UTF-8"

    @@ -297,7 +295,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -348,7 +346,6 @@

    Parameters

    float

    Size, per packet engine, in megabytes, of the OCSP cache. A maximum of 10% of the packet engine memory can be assigned. Because the maximum allowed packet engine memory is 4GB, the maximum value that can be assigned to the OCSP cache is approximately 410 MB.

    -

    Default: 10.0

    @@ -356,7 +353,6 @@

    Parameters

    float

    Limit in percentage of capacity of the crypto operations queue beyond which new SSL connections are not accepted until the queue is reduced.

    -

    Default: 150.0

    @@ -364,7 +360,6 @@

    Parameters

    float

    PUSH encryption trigger timeout value. The timeout value is applied only if you set the Push Encryption Trigger parameter to Timer in the SSL virtual server settings.

    -

    Default: 1.0

    @@ -495,7 +489,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -511,7 +505,6 @@

    Parameters

    float

    Time, in milliseconds, after which encryption is triggered for transactions that are not tracked on the Citrix ADC because their length is not known. There can be a delay of up to 10ms from the specified timeout value before the packet is pushed into the queue.

    -

    Default: 100.0

    @@ -543,7 +538,6 @@

    Parameters

    string

    Name of the undefined built-in control action: CLIENTAUTH, NOCLIENTAUTH, NOOP, RESET, or DROP.

    -

    Default: "\"CLIENTAUTH\""

    @@ -551,7 +545,6 @@

    Parameters

    string

    Name of the undefined built-in data action: NOOP, RESET or DROP.

    -

    Default: "\"NOOP\""

    diff --git a/docs/collections/netscaler/adc/sslpkcs12_module.html b/docs/collections/netscaler/adc/sslpkcs12_module.html index e85e9bb7..baa8a5de 100644 --- a/docs/collections/netscaler/adc/sslpkcs12_module.html +++ b/docs/collections/netscaler/adc/sslpkcs12_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslpkcs12 module – Configuration for pkcs12 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -227,8 +227,8 @@

    Parameters
    -

    Import

    -

    boolean

    +

    import

    +

    boolean

    Convert the certificate and private-key from PKCS#12 format to PEM format.

    Choices:

    diff --git a/docs/collections/netscaler/adc/sslpkcs8_module.html b/docs/collections/netscaler/adc/sslpkcs8_module.html index 97e73cd7..43663b43 100644 --- a/docs/collections/netscaler/adc/sslpkcs8_module.html +++ b/docs/collections/netscaler/adc/sslpkcs8_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslpkcs8 module – Configuration for pkcs8 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -186,7 +186,7 @@

    ParametersChoices:

    • "DER"

    • -
    • "PEM" ← (default)

    • +
    • "PEM"

    diff --git a/docs/collections/netscaler/adc/sslpolicy_module.html b/docs/collections/netscaler/adc/sslpolicy_module.html index ea1c8bee..0aa4377f 100644 --- a/docs/collections/netscaler/adc/sslpolicy_module.html +++ b/docs/collections/netscaler/adc/sslpolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslpolicy module – Configuration for SSL policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslpolicylabel_module.html b/docs/collections/netscaler/adc/sslpolicylabel_module.html index 783302ea..3f2a2c08 100644 --- a/docs/collections/netscaler/adc/sslpolicylabel_module.html +++ b/docs/collections/netscaler/adc/sslpolicylabel_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslpolicylabel module – Configuration for SSL policy label resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslpolicylabel_sslpolicy_binding_module.html b/docs/collections/netscaler/adc/sslpolicylabel_sslpolicy_binding_module.html index 0f2134bc..49130741 100644 --- a/docs/collections/netscaler/adc/sslpolicylabel_sslpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/sslpolicylabel_sslpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslpolicylabel_sslpolicy_binding module – Binding Resource definition for describing association between sslpolicylabel and sslpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslprofile_ecccurve_binding_module.html b/docs/collections/netscaler/adc/sslprofile_ecccurve_binding_module.html index 37fc066a..c022ee3c 100644 --- a/docs/collections/netscaler/adc/sslprofile_ecccurve_binding_module.html +++ b/docs/collections/netscaler/adc/sslprofile_ecccurve_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslprofile_ecccurve_binding module – Binding Resource definition for describing association between sslprofile and ecccurve resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslprofile_module.html b/docs/collections/netscaler/adc/sslprofile_module.html index 1dda7e5b..e7b5bb85 100644 --- a/docs/collections/netscaler/adc/sslprofile_module.html +++ b/docs/collections/netscaler/adc/sslprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslprofile module – Configuration for SSL profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -174,7 +174,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -188,7 +188,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -199,7 +199,7 @@

    Parameters @@ -264,7 +264,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -276,7 +276,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -314,7 +314,7 @@

    Parameters

    "NO"

  • "FRONTEND_CLIENT"

  • "FRONTEND_CLIENTSERVER"

  • -
  • "ALL" ← (default)

  • +
  • "ALL"

  • "NONSECURE"

  • @@ -328,7 +328,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -351,7 +351,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -370,7 +370,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -382,7 +382,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -391,7 +391,6 @@

    Parameters

    float

    Maximum number of queued packets after which encryption is triggered. Use this setting for SSL transactions that send small packets from server to Citrix ADC.

    -

    Default: 45.0

    @@ -422,7 +421,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -434,7 +433,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -445,7 +444,7 @@

    Parameters

    Encoding method used to insert the subject or issuer’s name in HTTP requests to servers.

    Choices:

      -
    • "Unicode" ← (default)

    • +
    • "Unicode"

    • "UTF-8"

    @@ -516,7 +515,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -528,7 +527,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -562,7 +561,6 @@

    Parameters

    float

    PUSH encryption trigger timeout value. The timeout value is applied only if you set the Push Encryption Trigger parameter to Timer in the SSL virtual server settings.

    -

    Default: 1.0

    @@ -621,7 +619,7 @@

    Parameters

    Enable sending SSL Close-Notify at the end of a transaction.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -634,7 +632,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -643,7 +641,6 @@

    Parameters

    float

    This option sets the life time of symm key used to generate session tickets issued by NS in secs

    -

    Default: 3000.0

    @@ -672,7 +669,7 @@

    Parameters

    This option enables the use of session tickets, as per the RFC 5077

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -682,7 +679,6 @@

    Parameters

    float

    This option sets the life time of session tickets issued by NS in secs

    -

    Default: 300.0

    @@ -724,7 +720,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -754,7 +750,7 @@

    ParametersChoices:

    • "NO"

    • -
    • "CERT" ← (default)

    • +
    • "CERT"

    • "STRICT"

    @@ -768,7 +764,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -777,7 +773,6 @@

    Parameters

    float

    Maximum ssl session to be cached per dynamic origin server. A unique ssl session is created for each SNI received from the client on ClientHello and the matching session is used for server session reuse.

    -

    Default: 10.0

    @@ -799,7 +794,7 @@

    Parameters

    Enable or disable OCSP check for origin server certificate.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -811,7 +806,7 @@

    Parameters

    Enable or disable triggering the client renegotiation when renegotiation request is received from the origin server.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -955,7 +950,7 @@

    ParametersChoices:

    • "BackEnd"

    • -
    • "FrontEnd" ← (default)

    • +
    • "FrontEnd"

    • "QUIC-FrontEnd"

    @@ -971,7 +966,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -980,7 +975,6 @@

    Parameters

    float

    Time, in milliseconds, after which encryption is triggered for transactions that are not tracked on the Citrix ADC because their length is not known. There can be a delay of up to 10ms from the specified timeout value before the packet is pushed into the queue.

    -

    Default: 100.0

    @@ -1017,7 +1011,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -1028,7 +1022,7 @@

    Parameters

    State of TLSv1.0 protocol support for the SSL profile.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -1040,7 +1034,7 @@

    Parameters

    State of TLSv1.1 protocol support for the SSL profile.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -1052,7 +1046,7 @@

    Parameters

    State of TLSv1.2 protocol support for the SSL profile.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -1065,7 +1059,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -1076,7 +1070,6 @@

    Parameters

    Number of tickets the SSL Virtual Server will issue anytime TLS 1.3 is negotiated, ticket-based resumption is enabled, and either (1) a handshake completes or (2) post-handhsake client auth completes.

    This value can be increased to enable clients to open multiple parallel connections using a fresh ticket for each connection.

    No tickets are sent if resumption is disabled.

    -

    Default: 1.0

    diff --git a/docs/collections/netscaler/adc/sslprofile_sslcertkey_binding_module.html b/docs/collections/netscaler/adc/sslprofile_sslcertkey_binding_module.html index 8904cebe..2781e4e3 100644 --- a/docs/collections/netscaler/adc/sslprofile_sslcertkey_binding_module.html +++ b/docs/collections/netscaler/adc/sslprofile_sslcertkey_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslprofile_sslcertkey_binding module – Binding Resource definition for describing association between sslprofile and sslcertkey resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslprofile_sslcipher_binding_module.html b/docs/collections/netscaler/adc/sslprofile_sslcipher_binding_module.html index 237559ef..422f5849 100644 --- a/docs/collections/netscaler/adc/sslprofile_sslcipher_binding_module.html +++ b/docs/collections/netscaler/adc/sslprofile_sslcipher_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslprofile_sslcipher_binding module – Binding Resource definition for describing association between sslprofile and sslcipher resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslprofile_sslciphersuite_binding_module.html b/docs/collections/netscaler/adc/sslprofile_sslciphersuite_binding_module.html index 85669fee..c694b470 100644 --- a/docs/collections/netscaler/adc/sslprofile_sslciphersuite_binding_module.html +++ b/docs/collections/netscaler/adc/sslprofile_sslciphersuite_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslprofile_sslciphersuite_binding module – Binding Resource definition for describing association between sslprofile and sslciphersuite resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslrsakey_module.html b/docs/collections/netscaler/adc/sslrsakey_module.html index 0fa2f246..81f9aad1 100644 --- a/docs/collections/netscaler/adc/sslrsakey_module.html +++ b/docs/collections/netscaler/adc/sslrsakey_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslrsakey module – Configuration for RSA key resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -222,7 +222,7 @@

    ParametersChoices:

    • "3"

    • -
    • "F4" ← (default)

    • +
    • "F4"

    @@ -241,7 +241,7 @@

    ParametersChoices:

    • "DER"

    • -
    • "PEM" ← (default)

    • +
    • "PEM"

    @@ -324,6 +324,10 @@

    Parameters

    string

    The state of the resource being configured by the module on the NetScaler ADC node.

    +

    Choices:

    +
      +
    • "created"

    • +

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/sslservice_ecccurve_binding_module.html b/docs/collections/netscaler/adc/sslservice_ecccurve_binding_module.html index cc9904cc..bd1515ea 100644 --- a/docs/collections/netscaler/adc/sslservice_ecccurve_binding_module.html +++ b/docs/collections/netscaler/adc/sslservice_ecccurve_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslservice_ecccurve_binding module – Binding Resource definition for describing association between sslservice and ecccurve resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslservice_module.html b/docs/collections/netscaler/adc/sslservice_module.html index d4174d9f..637ef040 100644 --- a/docs/collections/netscaler/adc/sslservice_module.html +++ b/docs/collections/netscaler/adc/sslservice_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslservice module – Configuration for SSL service resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -180,7 +180,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -201,7 +201,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -234,7 +234,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -260,7 +260,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -271,7 +271,7 @@

    Parameters

    State of DTLSv1.0 protocol support for the SSL service.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -284,7 +284,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -304,7 +304,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -368,7 +368,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -398,7 +398,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -422,7 +422,7 @@

    Parameters

    Enable sending SSL Close-Notify at the end of a transaction

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -435,7 +435,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -453,7 +453,7 @@

    Parameters

    State of session reuse. Establishing the initial handshake requires CPU-intensive public key encryption operations. With the ENABLED setting, session key exchange is avoided for session resumption requests received from the client.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -463,7 +463,6 @@

    Parameters

    float

    Time, in seconds, for which to keep the session active. Any session resumption request received after the timeout period will require a fresh SSL handshake and establishment of a new SSL session.

    -

    Default: 300.0

    @@ -487,7 +486,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -499,7 +498,7 @@

    ParametersNote: On platforms with SSL acceleration chips, if the SSL chip does not support SSLv3, this parameter cannot be set to ENABLED.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -522,7 +521,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -814,7 +813,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -832,9 +831,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -846,7 +847,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -857,7 +858,7 @@

    Parameters

    State of TLSv1.0 protocol support for the SSL service.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -869,7 +870,7 @@

    Parameters

    State of TLSv1.1 protocol support for the SSL service.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -881,7 +882,7 @@

    Parameters

    State of TLSv1.2 protocol support for the SSL service.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -894,7 +895,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -924,7 +925,21 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | sslservice
    +      delegate_to: localhost
    +      netscaler.adc.sslservice:
    +        state: present
    +        servicename: nsrnatsip-127.0.0.1-5061
    +        ersa: ENABLED
    +        sessreuse: DISABLED
    +        ssl3: DISABLED
    +        tls1: DISABLED
    +        tls11: DISABLED
    +        dtls1: DISABLED
     
    diff --git a/docs/collections/netscaler/adc/sslservice_sslcertkey_binding_module.html b/docs/collections/netscaler/adc/sslservice_sslcertkey_binding_module.html index 1182ad7e..bfbbfacb 100644 --- a/docs/collections/netscaler/adc/sslservice_sslcertkey_binding_module.html +++ b/docs/collections/netscaler/adc/sslservice_sslcertkey_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslservice_sslcertkey_binding module – Binding Resource definition for describing association between sslservice and sslcertkey resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslservice_sslcipher_binding_module.html b/docs/collections/netscaler/adc/sslservice_sslcipher_binding_module.html index 9b65204b..98497608 100644 --- a/docs/collections/netscaler/adc/sslservice_sslcipher_binding_module.html +++ b/docs/collections/netscaler/adc/sslservice_sslcipher_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslservice_sslcipher_binding module – Binding Resource definition for describing association between sslservice and sslcipher resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslservice_sslciphersuite_binding_module.html b/docs/collections/netscaler/adc/sslservice_sslciphersuite_binding_module.html index 7abe22dc..5e631b37 100644 --- a/docs/collections/netscaler/adc/sslservice_sslciphersuite_binding_module.html +++ b/docs/collections/netscaler/adc/sslservice_sslciphersuite_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslservice_sslciphersuite_binding module – Binding Resource definition for describing association between sslservice and sslciphersuite resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslservice_sslpolicy_binding_module.html b/docs/collections/netscaler/adc/sslservice_sslpolicy_binding_module.html index 3d51ca78..05ff3ab2 100644 --- a/docs/collections/netscaler/adc/sslservice_sslpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/sslservice_sslpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslservice_sslpolicy_binding module – Binding Resource definition for describing association between sslservice and sslpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslservicegroup_ecccurve_binding_module.html b/docs/collections/netscaler/adc/sslservicegroup_ecccurve_binding_module.html index fa28813b..6ef19c01 100644 --- a/docs/collections/netscaler/adc/sslservicegroup_ecccurve_binding_module.html +++ b/docs/collections/netscaler/adc/sslservicegroup_ecccurve_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslservicegroup_ecccurve_binding module – Binding Resource definition for describing association between sslservicegroup and ecccurve resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslservicegroup_module.html b/docs/collections/netscaler/adc/sslservicegroup_module.html index 4a729fcf..50f65277 100644 --- a/docs/collections/netscaler/adc/sslservicegroup_module.html +++ b/docs/collections/netscaler/adc/sslservicegroup_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslservicegroup module – Configuration for SSL service group resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -230,7 +230,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -254,7 +254,7 @@

    Parameters

    Enable sending SSL Close-Notify at the end of a transaction

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -267,7 +267,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -285,7 +285,7 @@

    Parameters

    State of session reuse. Establishing the initial handshake requires CPU-intensive public key encryption operations. With the ENABLED setting, session key exchange is avoided for session resumption requests received from the client.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -295,7 +295,6 @@

    Parameters

    float

    Time, in seconds, for which to keep the session active. Any session resumption request received after the timeout period will require a fresh SSL handshake and establishment of a new SSL session.

    -

    Default: 300.0

    @@ -318,7 +317,7 @@

    ParametersNote: On platforms with SSL acceleration chips, if the SSL chip does not support SSLv3, this parameter cannot be set to ENABLED.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -460,9 +459,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -474,7 +475,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -485,7 +486,7 @@

    Parameters

    State of TLSv1.0 protocol support for the SSL service group.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -497,7 +498,7 @@

    Parameters

    State of TLSv1.1 protocol support for the SSL service group.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -509,7 +510,7 @@

    Parameters

    State of TLSv1.2 protocol support for the SSL service group.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -522,7 +523,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    diff --git a/docs/collections/netscaler/adc/sslservicegroup_sslcertkey_binding_module.html b/docs/collections/netscaler/adc/sslservicegroup_sslcertkey_binding_module.html index f587782b..75cd9879 100644 --- a/docs/collections/netscaler/adc/sslservicegroup_sslcertkey_binding_module.html +++ b/docs/collections/netscaler/adc/sslservicegroup_sslcertkey_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslservicegroup_sslcertkey_binding module – Binding Resource definition for describing association between sslservicegroup and sslcertkey resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslservicegroup_sslcipher_binding_module.html b/docs/collections/netscaler/adc/sslservicegroup_sslcipher_binding_module.html index e4357451..de8a74a5 100644 --- a/docs/collections/netscaler/adc/sslservicegroup_sslcipher_binding_module.html +++ b/docs/collections/netscaler/adc/sslservicegroup_sslcipher_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslservicegroup_sslcipher_binding module – Binding Resource definition for describing association between sslservicegroup and sslcipher resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslservicegroup_sslciphersuite_binding_module.html b/docs/collections/netscaler/adc/sslservicegroup_sslciphersuite_binding_module.html index c4ecb582..030fa7e3 100644 --- a/docs/collections/netscaler/adc/sslservicegroup_sslciphersuite_binding_module.html +++ b/docs/collections/netscaler/adc/sslservicegroup_sslciphersuite_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslservicegroup_sslciphersuite_binding module – Binding Resource definition for describing association between sslservicegroup and sslciphersuite resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslvserver_ecccurve_binding_module.html b/docs/collections/netscaler/adc/sslvserver_ecccurve_binding_module.html index 2bd982ac..8e8dae11 100644 --- a/docs/collections/netscaler/adc/sslvserver_ecccurve_binding_module.html +++ b/docs/collections/netscaler/adc/sslvserver_ecccurve_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslvserver_ecccurve_binding module – Binding Resource definition for describing association between sslvserver and ecccurve resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslvserver_module.html b/docs/collections/netscaler/adc/sslvserver_module.html index 0781d56a..608735c9 100644 --- a/docs/collections/netscaler/adc/sslvserver_module.html +++ b/docs/collections/netscaler/adc/sslvserver_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslvserver module – Configuration for SSL virtual server resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -205,7 +205,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -230,7 +230,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -252,7 +252,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -271,7 +271,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -282,7 +282,7 @@

    Parameters

    State of DTLSv1.0 protocol support for the SSL Virtual Server.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -295,7 +295,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -313,7 +313,7 @@

    Parameters

    State of Ephemeral RSA (eRSA) key exchange. Ephemeral RSA allows clients that support only export ciphers to communicate with the secure server even if the server certificate does not support export clients. The ephemeral RSA key is automatically generated when you bind an export cipher to an SSL or TCP-based SSL virtual server or service. When you remove the export cipher, the eRSA key is not deleted. It is reused at a later date when another export cipher is bound to an SSL or TCP-based SSL virtual server or service. The eRSA key is deleted when the appliance restarts.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -333,7 +333,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -345,7 +345,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -408,7 +408,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -420,7 +420,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -450,7 +450,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -474,7 +474,7 @@

    Parameters

    Enable sending SSL Close-Notify at the end of a transaction

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -486,7 +486,7 @@

    Parameters

    State of session reuse. Establishing the initial handshake requires CPU-intensive public key encryption operations. With the ENABLED setting, session key exchange is avoided for session resumption requests received from the client.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -496,7 +496,6 @@

    Parameters

    float

    Time, in seconds, for which to keep the session active. Any session resumption request received after the timeout period will require a fresh SSL handshake and establishment of a new SSL session.

    -

    Default: 120.0

    @@ -519,7 +518,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -531,7 +530,7 @@

    ParametersNote: On platforms with SSL acceleration chips, if the SSL chip does not support SSLv3, this parameter cannot be set to ENABLED.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -553,7 +552,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -565,7 +564,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -1016,9 +1015,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -1030,7 +1031,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -1041,7 +1042,7 @@

    Parameters

    State of TLSv1.0 protocol support for the SSL Virtual Server.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -1053,7 +1054,7 @@

    Parameters

    State of TLSv1.1 protocol support for the SSL Virtual Server.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -1065,7 +1066,7 @@

    Parameters

    State of TLSv1.2 protocol support for the SSL Virtual Server.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -1078,7 +1079,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -1089,7 +1090,6 @@

    Parameters

    Number of tickets the SSL Virtual Server will issue anytime TLS 1.3 is negotiated, ticket-based resumption is enabled, and either (1) a handshake completes or (2) post-handhsake client auth completes.

    This value can be increased to enable clients to open multiple parallel connections using a fresh ticket for each connection.

    No tickets are sent if resumption is disabled.

    -

    Default: 1.0

    diff --git a/docs/collections/netscaler/adc/sslvserver_sslcertkey_binding_module.html b/docs/collections/netscaler/adc/sslvserver_sslcertkey_binding_module.html index cb82fbbd..bc514a71 100644 --- a/docs/collections/netscaler/adc/sslvserver_sslcertkey_binding_module.html +++ b/docs/collections/netscaler/adc/sslvserver_sslcertkey_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslvserver_sslcertkey_binding module – Binding Resource definition for describing association between sslvserver and sslcertkey resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslvserver_sslcertkeybundle_binding_module.html b/docs/collections/netscaler/adc/sslvserver_sslcertkeybundle_binding_module.html index 61b46f8c..36bc3c50 100644 --- a/docs/collections/netscaler/adc/sslvserver_sslcertkeybundle_binding_module.html +++ b/docs/collections/netscaler/adc/sslvserver_sslcertkeybundle_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslvserver_sslcertkeybundle_binding module – Binding Resource definition for describing association between sslvserver and sslcertkeybundle resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslvserver_sslcipher_binding_module.html b/docs/collections/netscaler/adc/sslvserver_sslcipher_binding_module.html index a57c035d..e9bff3f8 100644 --- a/docs/collections/netscaler/adc/sslvserver_sslcipher_binding_module.html +++ b/docs/collections/netscaler/adc/sslvserver_sslcipher_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslvserver_sslcipher_binding module – Binding Resource definition for describing association between sslvserver and sslcipher resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslvserver_sslciphersuite_binding_module.html b/docs/collections/netscaler/adc/sslvserver_sslciphersuite_binding_module.html index 5f4d0a30..9867b70a 100644 --- a/docs/collections/netscaler/adc/sslvserver_sslciphersuite_binding_module.html +++ b/docs/collections/netscaler/adc/sslvserver_sslciphersuite_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslvserver_sslciphersuite_binding module – Binding Resource definition for describing association between sslvserver and sslciphersuite resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/sslvserver_sslpolicy_binding_module.html b/docs/collections/netscaler/adc/sslvserver_sslpolicy_binding_module.html index cfc0b2b2..f3783c53 100644 --- a/docs/collections/netscaler/adc/sslvserver_sslpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/sslvserver_sslpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslvserver_sslpolicy_binding module – Binding Resource definition for describing association between sslvserver and sslpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -306,7 +306,7 @@

    ParametersChoices:

    • "INTERCEPT_REQ"

    • -
    • "REQUEST" ← (default)

    • +
    • "REQUEST"

    • "CLIENTHELLO_REQ"

    diff --git a/docs/collections/netscaler/adc/sslwrapkey_module.html b/docs/collections/netscaler/adc/sslwrapkey_module.html index bbc6990a..d54b3e57 100644 --- a/docs/collections/netscaler/adc/sslwrapkey_module.html +++ b/docs/collections/netscaler/adc/sslwrapkey_module.html @@ -131,7 +131,7 @@

    netscaler.adc.sslwrapkey module – Configuration for WRAP key resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -249,6 +249,7 @@

    ParametersChoices:

    • "absent"

    • +
    • "created"

    Default: "present"

    diff --git a/docs/collections/netscaler/adc/streamidentifier_module.html b/docs/collections/netscaler/adc/streamidentifier_module.html index a3ee07ce..5bca7d8e 100644 --- a/docs/collections/netscaler/adc/streamidentifier_module.html +++ b/docs/collections/netscaler/adc/streamidentifier_module.html @@ -131,7 +131,7 @@

    netscaler.adc.streamidentifier module – Configuration for identifier resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -187,7 +187,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -203,7 +203,6 @@

    Parameters

    float

    Number of minutes of data to use when calculating session statistics (number of requests, bandwidth, and response times). The interval is a moving window that keeps the most recently collected data. Older data is discarded at regular intervals.

    -

    Default: 1.0

    @@ -274,7 +273,6 @@

    Parameters

    float

    Size of the sample from which to select a request for evaluation. The smaller the sample count, the more accurate is the statistical data. To evaluate all requests, set the sample count to 1. However, such a low setting can result in excessive consumption of memory and processing resources.

    -

    Default: 1.0

    @@ -316,7 +314,7 @@

    Parameters @@ -360,7 +358,7 @@

    ParametersChoices:

    • "RESPTIME"

    • -
    • "NONE" ← (default)

    • +
    • "NONE"

    diff --git a/docs/collections/netscaler/adc/streamselector_module.html b/docs/collections/netscaler/adc/streamselector_module.html index 6f29bf36..41c45972 100644 --- a/docs/collections/netscaler/adc/streamselector_module.html +++ b/docs/collections/netscaler/adc/streamselector_module.html @@ -131,7 +131,7 @@

    netscaler.adc.streamselector module – Configuration for selector resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/streamsession_module.html b/docs/collections/netscaler/adc/streamsession_module.html index 445dbeab..651b2201 100644 --- a/docs/collections/netscaler/adc/streamsession_module.html +++ b/docs/collections/netscaler/adc/streamsession_module.html @@ -131,7 +131,7 @@

    netscaler.adc.streamsession module – Configuration for active connection resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/subscribergxinterface_module.html b/docs/collections/netscaler/adc/subscribergxinterface_module.html index 0f1c16c9..ceec022d 100644 --- a/docs/collections/netscaler/adc/subscribergxinterface_module.html +++ b/docs/collections/netscaler/adc/subscribergxinterface_module.html @@ -131,7 +131,7 @@

    netscaler.adc.subscribergxinterface module – Configuration for Gx interface Parameters resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -186,7 +186,7 @@

    ParametersChoices:

    • "YES"

    • -
    • "NO" ← (default)

    • +
    • "NO"

    @@ -195,7 +195,6 @@

    Parameters

    float

    q!Healthcheck timeout, in seconds, after which the DWR will be sent in order to ensure the state of the PCRF server. Any CCR, CCA, RAR or RRA message resets the timer. !

    -

    Default: 30.0

    @@ -205,7 +204,7 @@

    Parameters

    Set this setting to yes if Citrix ADC needs to Hold pakcets till subscriber session is fetched from PCRF. Else set to NO. By default set to yes. If this setting is set to NO, then till Citrix ADC fetches subscriber from PCRF, default subscriber profile will be applied to this subscriber if configured. If default subscriber profile is also not configured an undef would be raised to expressions which use Subscriber attributes.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -216,7 +215,6 @@

    Parameters

    q!Idle Time, in seconds, after which the Gx CCR-U request will be sent after any PCRF activity on a session. Any RAR or CCA message resets the timer.

    Zero value disables the idle timeout. !

    -

    Default: 900.0

    @@ -314,7 +311,6 @@

    Parameters

    float

    If the request does not complete within requestTimeout time, the request is retransmitted for requestRetryAttempts time.

    -

    Default: 3.0

    @@ -323,7 +319,6 @@

    Parameters

    q!Time, in seconds, within which the Gx CCR request must complete. If the request does not complete within this time, the request is retransmitted for requestRetryAttempts time. If still reuqest is not complete then default subscriber profile will be applied to this subscriber if configured. If default subscriber profile is also not configured an undef would be raised to expressions which use Subscriber attributes.

    Zero disables the timeout. !

    -

    Default: 10.0

    @@ -374,9 +369,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    @@ -413,7 +410,18 @@

    Notes

    Examples

    -
    
    +
    - name: Sample Playbook
    +  hosts: localhost
    +  gather_facts: false
    +  tasks:
    +    - name: Sample Task | subscribergxInterface
    +      delegate_to: localhost
    +      netscaler.adc.subscribergxinterface:
    +        state: present
    +        pcrfrealm: pcrf.com
    +        servicepathavp:
    +          - 262099
    +        servicepathvendorid: 3845
     
    diff --git a/docs/collections/netscaler/adc/subscriberparam_module.html b/docs/collections/netscaler/adc/subscriberparam_module.html index 94484cbc..b6dd2014 100644 --- a/docs/collections/netscaler/adc/subscriberparam_module.html +++ b/docs/collections/netscaler/adc/subscriberparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.subscriberparam module – Configuration for Subscriber Params resource.

    @@ -297,9 +297,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/subscriberprofile_module.html b/docs/collections/netscaler/adc/subscriberprofile_module.html index 6db71bbc..0d73fb77 100644 --- a/docs/collections/netscaler/adc/subscriberprofile_module.html +++ b/docs/collections/netscaler/adc/subscriberprofile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.subscriberprofile module – Configuration for Subscriber Profile resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/subscriberradiusinterface_module.html b/docs/collections/netscaler/adc/subscriberradiusinterface_module.html index e2f55096..ae535e9f 100644 --- a/docs/collections/netscaler/adc/subscriberradiusinterface_module.html +++ b/docs/collections/netscaler/adc/subscriberradiusinterface_module.html @@ -131,7 +131,7 @@

    netscaler.adc.subscriberradiusinterface module – Configuration for RADIUS interface Parameters resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -228,7 +228,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -251,9 +251,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/subscribersessions_module.html b/docs/collections/netscaler/adc/subscribersessions_module.html index de6841ea..ef472f28 100644 --- a/docs/collections/netscaler/adc/subscribersessions_module.html +++ b/docs/collections/netscaler/adc/subscribersessions_module.html @@ -131,7 +131,7 @@

    netscaler.adc.subscribersessions module – Configuration for subscriber sesions resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/systemadmuserinfo_module.html b/docs/collections/netscaler/adc/systemadmuserinfo_module.html index 3268128e..ed76d70e 100644 --- a/docs/collections/netscaler/adc/systemadmuserinfo_module.html +++ b/docs/collections/netscaler/adc/systemadmuserinfo_module.html @@ -131,7 +131,7 @@

    netscaler.adc.systemadmuserinfo module – Configuration for 0 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/systembackup_module.html b/docs/collections/netscaler/adc/systembackup_module.html index c07ea04d..76097144 100644 --- a/docs/collections/netscaler/adc/systembackup_module.html +++ b/docs/collections/netscaler/adc/systembackup_module.html @@ -131,7 +131,7 @@

    netscaler.adc.systembackup module – Configuration for Backup Data for ns backup and restore resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -192,7 +192,7 @@

    Parameters

    Use this option to add kernel in the backup file

    Choices:

      -
    • "NO" ← (default)

    • +
    • "NO"

    • "YES"

    @@ -204,7 +204,7 @@

    Parameters

    Level of data to be backed up.

    Choices:

      -
    • "basic" ← (default)

    • +
    • "basic"

    • "full"

    @@ -287,6 +287,7 @@

    Parameters
  • "present" ← (default)

  • "absent"

  • +
  • "created"

  • diff --git a/docs/collections/netscaler/adc/systemcmdpolicy_module.html b/docs/collections/netscaler/adc/systemcmdpolicy_module.html index e4c87647..d85fc730 100644 --- a/docs/collections/netscaler/adc/systemcmdpolicy_module.html +++ b/docs/collections/netscaler/adc/systemcmdpolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.systemcmdpolicy module – Configuration for command policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/systemcollectionparam_module.html b/docs/collections/netscaler/adc/systemcollectionparam_module.html index 077337bb..4eaf2a27 100644 --- a/docs/collections/netscaler/adc/systemcollectionparam_module.html +++ b/docs/collections/netscaler/adc/systemcollectionparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.systemcollectionparam module – Configuration for collection parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -253,9 +253,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/systemcpuparam_module.html b/docs/collections/netscaler/adc/systemcpuparam_module.html index 2978f7aa..c7f57193 100644 --- a/docs/collections/netscaler/adc/systemcpuparam_module.html +++ b/docs/collections/netscaler/adc/systemcpuparam_module.html @@ -131,7 +131,7 @@

    netscaler.adc.systemcpuparam module – Configuration for 0 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -244,9 +244,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/systementitydata_module.html b/docs/collections/netscaler/adc/systementitydata_module.html index 15625c91..675c3039 100644 --- a/docs/collections/netscaler/adc/systementitydata_module.html +++ b/docs/collections/netscaler/adc/systementitydata_module.html @@ -131,7 +131,7 @@

    netscaler.adc.systementitydata module – Configuration for entity data resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -228,7 +228,6 @@

    Parameters

    integer

    Last is literal way of saying a certain time period from the current moment. Example: -last 1 hour, -last 1 day, et cetera.

    -

    Default: 1

    diff --git a/docs/collections/netscaler/adc/systemextramgmtcpu_module.html b/docs/collections/netscaler/adc/systemextramgmtcpu_module.html index 7f046d5a..41765fd4 100644 --- a/docs/collections/netscaler/adc/systemextramgmtcpu_module.html +++ b/docs/collections/netscaler/adc/systemextramgmtcpu_module.html @@ -131,7 +131,7 @@

    netscaler.adc.systemextramgmtcpu module – Configuration for 0 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/systemfile_module.html b/docs/collections/netscaler/adc/systemfile_module.html index ff736974..d494b48b 100644 --- a/docs/collections/netscaler/adc/systemfile_module.html +++ b/docs/collections/netscaler/adc/systemfile_module.html @@ -131,7 +131,7 @@

    netscaler.adc.systemfile module – Configuration for file resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -183,7 +183,6 @@

    Parameters

    string

    encoding type of the file content.

    -

    Default: "\"BASE64\""

    diff --git a/docs/collections/netscaler/adc/systemglobal_auditnslogpolicy_binding_module.html b/docs/collections/netscaler/adc/systemglobal_auditnslogpolicy_binding_module.html index dc908e90..ccb99ab1 100644 --- a/docs/collections/netscaler/adc/systemglobal_auditnslogpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/systemglobal_auditnslogpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.systemglobal_auditnslogpolicy_binding module – Binding Resource definition for describing association between systemglobal and auditnslogpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -273,7 +273,7 @@

    Parameters

    0

    Choices:

    @@ -877,7 +877,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -889,7 +889,7 @@

    ParametersChoices:

    • "NONE"

    • -
    • "ASSERTION" ← (default)

    • +
    • "ASSERTION"

    • "RESPONSE"

    • "BOTH"

    @@ -903,7 +903,7 @@

    ParametersChoices:

    • "RSA-SHA1"

    • -
    • "RSA-SHA256" ← (default)

    • +
    • "RSA-SHA256"

    @@ -912,7 +912,6 @@

    Parameters

    float

    This option specifies the number of minutes on either side of current time that the assertion would be valid. For example, if skewTime is 10, then assertion would be valid from (current time - 10) min to (current time + 10) min, ie 20min in all.

    -

    Default: 5.0

    diff --git a/docs/collections/netscaler/adc/tmsessionaction_module.html b/docs/collections/netscaler/adc/tmsessionaction_module.html index b5c117e5..847dd420 100644 --- a/docs/collections/netscaler/adc/tmsessionaction_module.html +++ b/docs/collections/netscaler/adc/tmsessionaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.tmsessionaction module – Configuration for TM session action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -197,7 +197,7 @@

    Parameters

    Allow only an HTTP session cookie, in which case the cookie cannot be accessed by scripts.

    Choices:

      -
    • "YES" ← (default)

    • +
    • "YES"

    • "NO"

    @@ -308,7 +308,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    diff --git a/docs/collections/netscaler/adc/tmsessionparameter_module.html b/docs/collections/netscaler/adc/tmsessionparameter_module.html index 5b0b7c4c..6fd2903e 100644 --- a/docs/collections/netscaler/adc/tmsessionparameter_module.html +++ b/docs/collections/netscaler/adc/tmsessionparameter_module.html @@ -131,7 +131,7 @@

    netscaler.adc.tmsessionparameter module – Configuration for session parameter resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -179,7 +179,7 @@

    ParametersChoices:

    • "ALLOW"

    • -
    • "DENY" ← (default)

    • +
    • "DENY"

    @@ -188,7 +188,6 @@

    Parameters

    string

    Web address of the home page that a user is displayed when authentication vserver is bookmarked and used to login.

    -

    Default: "\"None\""

    @@ -289,7 +288,6 @@

    Parameters

    float

    Session timeout, in minutes. If there is no traffic during the timeout period, the user is disconnected and must reauthenticate to access the intranet resources.

    -

    Default: 30.0

    @@ -311,7 +309,7 @@

    Parameters

    Use primary or secondary authentication credentials for single sign-on.

    Choices:

      -
    • "PRIMARY" ← (default)

    • +
    • "PRIMARY"

    • "SECONDARY"

    @@ -329,9 +327,11 @@

    Parameters

    The state of the resource being configured by the module on the NetScaler ADC node.

    When present the resource will be created if needed and configured according to the module’s parameters.

    +

    When absent the resource will be deleted from the NetScaler ADC node.

    Choices:

    • "present" ← (default)

    • +
    • "absent"

    diff --git a/docs/collections/netscaler/adc/tmsessionpolicy_module.html b/docs/collections/netscaler/adc/tmsessionpolicy_module.html index f09749dc..53e5b373 100644 --- a/docs/collections/netscaler/adc/tmsessionpolicy_module.html +++ b/docs/collections/netscaler/adc/tmsessionpolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.tmsessionpolicy module – Configuration for TM session policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/tmtrafficaction_module.html b/docs/collections/netscaler/adc/tmtrafficaction_module.html index dad00000..0daa4735 100644 --- a/docs/collections/netscaler/adc/tmtrafficaction_module.html +++ b/docs/collections/netscaler/adc/tmtrafficaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.tmtrafficaction module – Configuration for TM traffic action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -222,7 +222,6 @@

    Parameters

    string

    Kerberos constrained delegation account name

    -

    Default: "\"None\""

    diff --git a/docs/collections/netscaler/adc/tmtrafficpolicy_module.html b/docs/collections/netscaler/adc/tmtrafficpolicy_module.html index 4408dc73..dc41204c 100644 --- a/docs/collections/netscaler/adc/tmtrafficpolicy_module.html +++ b/docs/collections/netscaler/adc/tmtrafficpolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.tmtrafficpolicy module – Configuration for TM traffic policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/traceroute6_module.html b/docs/collections/netscaler/adc/traceroute6_module.html index 6eb95372..ce9f2706 100644 --- a/docs/collections/netscaler/adc/traceroute6_module.html +++ b/docs/collections/netscaler/adc/traceroute6_module.html @@ -131,7 +131,7 @@

    netscaler.adc.traceroute6 module – Configuration for 0 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -195,7 +195,6 @@

    Parameters

    integer

    Maximum hop value for outgoing probe packets. For Nitro API, default value is taken as 10.

    -

    Default: 64

    @@ -257,7 +256,6 @@

    Parameters

    integer

    Base port number used in probes.

    -

    Default: 33434

    @@ -265,7 +263,6 @@

    Parameters

    integer

    Length (in bytes) of the query packets.

    -

    Default: 44

    @@ -273,7 +270,6 @@

    Parameters

    integer

    Number of probes per hop. For Nitro API, default value is taken as 1.

    -

    Default: 3

    @@ -352,7 +348,6 @@

    Parameters

    integer

    Time (in seconds) to wait for a response to a query. For Nitro API, defalut value is set to 3.

    -

    Default: 5

    diff --git a/docs/collections/netscaler/adc/traceroute_module.html b/docs/collections/netscaler/adc/traceroute_module.html index 55245426..9fb0d872 100644 --- a/docs/collections/netscaler/adc/traceroute_module.html +++ b/docs/collections/netscaler/adc/traceroute_module.html @@ -131,7 +131,7 @@

    netscaler.adc.traceroute module – Configuration for 0 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -183,7 +183,6 @@

    Parameters

    float

    Minimum TTL value used in outgoing probe packets.

    -

    Default: 1.0

    @@ -191,7 +190,6 @@

    Parameters

    integer

    Maximum TTL value used in outgoing probe packets. For Nitro API, default value is taken as 10.

    -

    Default: 64

    @@ -260,7 +258,6 @@

    Parameters

    integer

    Base port number used in probes.

    -

    Default: 33434

    @@ -268,7 +265,6 @@

    Parameters

    integer

    Length (in bytes) of the query packets.

    -

    Default: 44

    @@ -276,7 +272,6 @@

    Parameters

    integer

    Number of queries per hop. For Nitro API, defalut value is taken as 1.

    -

    Default: 3

    @@ -374,7 +369,6 @@

    Parameters

    integer

    Time (in seconds) to wait for a response to a query. For Nitro API, defalut value is set to 3.

    -

    Default: 5

    diff --git a/docs/collections/netscaler/adc/transformaction_module.html b/docs/collections/netscaler/adc/transformaction_module.html index 9d46e279..6e82cb1f 100644 --- a/docs/collections/netscaler/adc/transformaction_module.html +++ b/docs/collections/netscaler/adc/transformaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.transformaction module – Configuration for transform action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/transformglobal_transformpolicy_binding_module.html b/docs/collections/netscaler/adc/transformglobal_transformpolicy_binding_module.html index 5330b67b..f8526e75 100644 --- a/docs/collections/netscaler/adc/transformglobal_transformpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/transformglobal_transformpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.transformglobal_transformpolicy_binding module – Binding Resource definition for describing association between transformglobal and transformpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -178,7 +178,7 @@

    Parameters

    0

    Choices:

    @@ -781,7 +781,7 @@

    Parameters

    "kerberos"

  • "entity"

  • "persistent"

  • -
  • "transient" ← (default)

  • +
  • "transient"

  • @@ -876,7 +876,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -888,7 +888,7 @@

    ParametersChoices:

    • "NONE"

    • -
    • "ASSERTION" ← (default)

    • +
    • "ASSERTION"

    • "RESPONSE"

    • "BOTH"

    @@ -902,7 +902,7 @@

    ParametersChoices:

    • "RSA-SHA1"

    • -
    • "RSA-SHA256" ← (default)

    • +
    • "RSA-SHA256"

    @@ -918,7 +918,6 @@

    Parameters

    float

    This option specifies the number of minutes on either side of current time that the assertion would be valid. For example, if skewTime is 10, then assertion would be valid from (current time - 10) min to (current time + 10) min, ie 20min in all.

    -

    Default: 5.0

    diff --git a/docs/collections/netscaler/adc/vpnsessionaction_module.html b/docs/collections/netscaler/adc/vpnsessionaction_module.html index 75cee5e5..e0f82dcf 100644 --- a/docs/collections/netscaler/adc/vpnsessionaction_module.html +++ b/docs/collections/netscaler/adc/vpnsessionaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnsessionaction module – Configuration for VPN session action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -170,7 +170,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    • "STRICT"

    diff --git a/docs/collections/netscaler/adc/vpnsessionpolicy_module.html b/docs/collections/netscaler/adc/vpnsessionpolicy_module.html index c7cc2428..97dee30d 100644 --- a/docs/collections/netscaler/adc/vpnsessionpolicy_module.html +++ b/docs/collections/netscaler/adc/vpnsessionpolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnsessionpolicy module – Configuration for VPN session policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpntrafficaction_module.html b/docs/collections/netscaler/adc/vpntrafficaction_module.html index 9658d565..fb3c5833 100644 --- a/docs/collections/netscaler/adc/vpntrafficaction_module.html +++ b/docs/collections/netscaler/adc/vpntrafficaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpntrafficaction module – Configuration for VPN traffic action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -214,7 +214,6 @@

    Parameters

    string

    Kerberos constrained delegation account name

    -

    Default: "\"Default\""

    diff --git a/docs/collections/netscaler/adc/vpntrafficpolicy_module.html b/docs/collections/netscaler/adc/vpntrafficpolicy_module.html index 1573a97a..acb79020 100644 --- a/docs/collections/netscaler/adc/vpntrafficpolicy_module.html +++ b/docs/collections/netscaler/adc/vpntrafficpolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpntrafficpolicy module – Configuration for VPN traffic policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnurl_module.html b/docs/collections/netscaler/adc/vpnurl_module.html index c13cc41f..14ca0cb0 100644 --- a/docs/collections/netscaler/adc/vpnurl_module.html +++ b/docs/collections/netscaler/adc/vpnurl_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnurl module – Configuration for VPN URL resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -206,7 +206,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    diff --git a/docs/collections/netscaler/adc/vpnurlaction_module.html b/docs/collections/netscaler/adc/vpnurlaction_module.html index bbb5421a..3b0a32c9 100644 --- a/docs/collections/netscaler/adc/vpnurlaction_module.html +++ b/docs/collections/netscaler/adc/vpnurlaction_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnurlaction module – Configuration for VPN url action resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -199,7 +199,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    diff --git a/docs/collections/netscaler/adc/vpnurlpolicy_module.html b/docs/collections/netscaler/adc/vpnurlpolicy_module.html index 925e9fd7..6c62d7df 100644 --- a/docs/collections/netscaler/adc/vpnurlpolicy_module.html +++ b/docs/collections/netscaler/adc/vpnurlpolicy_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnurlpolicy module – Configuration for VPN url policy resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_aaapreauthenticationpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_aaapreauthenticationpolicy_binding_module.html index 7ada1963..54958dbf 100644 --- a/docs/collections/netscaler/adc/vpnvserver_aaapreauthenticationpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_aaapreauthenticationpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_aaapreauthenticationpolicy_binding module – Binding Resource definition for describing association between vpnvserver and aaapreauthenticationpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_analyticsprofile_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_analyticsprofile_binding_module.html index 08894167..7122d4a9 100644 --- a/docs/collections/netscaler/adc/vpnvserver_analyticsprofile_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_analyticsprofile_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_analyticsprofile_binding module – Binding Resource definition for describing association between vpnvserver and analyticsprofile resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_appcontroller_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_appcontroller_binding_module.html index 2d2285a3..e42967ca 100644 --- a/docs/collections/netscaler/adc/vpnvserver_appcontroller_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_appcontroller_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_appcontroller_binding module – Binding Resource definition for describing association between vpnvserver and appcontroller resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_appflowpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_appflowpolicy_binding_module.html index c9069f0c..88928939 100644 --- a/docs/collections/netscaler/adc/vpnvserver_appflowpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_appflowpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_appflowpolicy_binding module – Binding Resource definition for describing association between vpnvserver and appflowpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_auditnslogpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_auditnslogpolicy_binding_module.html index a31e5f11..04dea92c 100644 --- a/docs/collections/netscaler/adc/vpnvserver_auditnslogpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_auditnslogpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_auditnslogpolicy_binding module – Binding Resource definition for describing association between vpnvserver and auditnslogpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_auditsyslogpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_auditsyslogpolicy_binding_module.html index 1dff9a24..25578a6f 100644 --- a/docs/collections/netscaler/adc/vpnvserver_auditsyslogpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_auditsyslogpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_auditsyslogpolicy_binding module – Binding Resource definition for describing association between vpnvserver and auditsyslogpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationcertpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationcertpolicy_binding_module.html index 67bc0384..85c37977 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationcertpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationcertpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationcertpolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationcertpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationdfapolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationdfapolicy_binding_module.html index 33ae9537..201e2155 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationdfapolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationdfapolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationdfapolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationdfapolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationldappolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationldappolicy_binding_module.html index 85020695..f28b6e64 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationldappolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationldappolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationldappolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationldappolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationlocalpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationlocalpolicy_binding_module.html index b7b21b32..78d12c01 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationlocalpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationlocalpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationlocalpolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationlocalpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationloginschemapolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationloginschemapolicy_binding_module.html index 06a64997..0273e81f 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationloginschemapolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationloginschemapolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationloginschemapolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationloginschemapolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationnegotiatepolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationnegotiatepolicy_binding_module.html index fa88762c..ea9715b2 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationnegotiatepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationnegotiatepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationnegotiatepolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationnegotiatepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationoauthidppolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationoauthidppolicy_binding_module.html index 3a44bd71..015baf7c 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationoauthidppolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationoauthidppolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationoauthidppolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationoauthidppolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationpolicy_binding_module.html index dc87bf28..a6453e64 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationpolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationradiuspolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationradiuspolicy_binding_module.html index 3dac67da..42de3c0a 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationradiuspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationradiuspolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationradiuspolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationradiuspolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationsamlidppolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationsamlidppolicy_binding_module.html index 805a8d16..61454f36 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationsamlidppolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationsamlidppolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationsamlidppolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationsamlidppolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationsamlpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationsamlpolicy_binding_module.html index ef8b6c1f..f275b1bc 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationsamlpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationsamlpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationsamlpolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationsamlpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationtacacspolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationtacacspolicy_binding_module.html index 846ee126..95c79a03 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationtacacspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationtacacspolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationtacacspolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationtacacspolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_authenticationwebauthpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_authenticationwebauthpolicy_binding_module.html index 4d96fe24..2a86fa63 100644 --- a/docs/collections/netscaler/adc/vpnvserver_authenticationwebauthpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_authenticationwebauthpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_authenticationwebauthpolicy_binding module – Binding Resource definition for describing association between vpnvserver and authenticationwebauthpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_cachepolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_cachepolicy_binding_module.html index 73d619c3..f7563912 100644 --- a/docs/collections/netscaler/adc/vpnvserver_cachepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_cachepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_cachepolicy_binding module – Binding Resource definition for describing association between vpnvserver and cachepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_cspolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_cspolicy_binding_module.html index 4e8f8e76..ba606eec 100644 --- a/docs/collections/netscaler/adc/vpnvserver_cspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_cspolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_cspolicy_binding module – Binding Resource definition for describing association between vpnvserver and cspolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_feopolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_feopolicy_binding_module.html index 9549e9d3..94ffbe1e 100644 --- a/docs/collections/netscaler/adc/vpnvserver_feopolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_feopolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_feopolicy_binding module – Binding Resource definition for describing association between vpnvserver and feopolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_icapolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_icapolicy_binding_module.html index 8ebe7754..bf656052 100644 --- a/docs/collections/netscaler/adc/vpnvserver_icapolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_icapolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_icapolicy_binding module – Binding Resource definition for describing association between vpnvserver and icapolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_intranetip6_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_intranetip6_binding_module.html index fe0c0e9b..81139152 100644 --- a/docs/collections/netscaler/adc/vpnvserver_intranetip6_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_intranetip6_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_intranetip6_binding module – Binding Resource definition for describing association between vpnvserver and intranetip6 resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_intranetip_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_intranetip_binding_module.html index d9e02797..aed9a4ba 100644 --- a/docs/collections/netscaler/adc/vpnvserver_intranetip_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_intranetip_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_intranetip_binding module – Binding Resource definition for describing association between vpnvserver and intranetip resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_module.html b/docs/collections/netscaler/adc/vpnvserver_module.html index 147749ea..0f074802 100644 --- a/docs/collections/netscaler/adc/vpnvserver_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver module – Configuration for VPN virtual server resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -170,7 +170,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -190,7 +190,7 @@

    Parameters

    Log AppFlow records that contain standard NetFlow or IPFIX information, such as time stamps for the beginning and end of a flow, packet count, and byte count. Also log records that contain application-level information, such as HTTP web addresses, HTTP request methods and response status codes, server response time, and latency.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -202,7 +202,7 @@

    Parameters

    Require authentication for users connecting to Citrix Gateway.

    Choices:

      -
    • "ON" ← (default)

    • +
    • "ON"

    • "OFF"

    @@ -228,7 +228,7 @@

    Parameters

    When client requests ShareFile resources and Citrix Gateway detects that the user is unauthenticated or the user session has expired, disabling this option takes the user to the originally requested ShareFile resource after authentication (instead of taking the user to the default VPN home page)

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -262,7 +262,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -274,7 +274,7 @@

    ParametersChoices:

    • "ENABLED"

    • -
    • "DISABLED" ← (default)

    • +
    • "DISABLED"

    @@ -285,7 +285,7 @@

    Parameters

    Close existing connections when the virtual server is marked DOWN, which means the server might have timed out. Disconnecting existing connections frees resources and in certain cases speeds recovery of overloaded load balancing setups. Enable this setting on servers in which the connections can safely be closed when they are marked DOWN. Do not enable DOWN state flush on servers that must complete their transactions.

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -297,7 +297,7 @@

    Parameters

    This option starts/stops the turn service on the vserver

    Choices:

      -
    • "ON" ← (default)

    • +
    • "ON"

    • "OFF"

    @@ -314,7 +314,6 @@

    Parameters

    string

    Name of the HTTP profile to assign to this virtual server.

    -

    Default: "\"nshttp_default_strict_validation\""

    @@ -340,7 +339,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -351,7 +350,7 @@

    Parameters

    Criterion for responding to PING requests sent to this virtual server. If this parameter is set to ACTIVE, respond only if the virtual server is available. With the PASSIVE setting, respond even if the virtual server is not available.

    Choices:

      -
    • "PASSIVE" ← (default)

    • +
    • "PASSIVE"

    • "ACTIVE"

    @@ -400,7 +399,6 @@

    Parameters

    string

    String specifying the listen policy for the Citrix Gateway virtual server. Can be either a named expression or an expression. The Citrix Gateway virtual server processes only the traffic for which the expression evaluates to true.

    -

    Default: "\"none\""

    @@ -408,7 +406,6 @@

    Parameters

    float

    Integer specifying the priority of the listen policy. A higher number specifies a lower priority. If a request matches the listen policies of more than one virtual server, the virtual server whose listen policy has the highest priority (the lowest priority number) accepts the request.

    -

    Default: 101.0

    @@ -431,7 +428,7 @@

    ParametersChoices:

    • "ON"

    • -
    • "OFF" ← (default)

    • +
    • "OFF"

    @@ -549,7 +546,6 @@

    Parameters

    Range of Citrix Gateway virtual server IP addresses. The consecutively numbered range of IP addresses begins with the address specified by the IP Address parameter.

    In the configuration utility, select Network VServer to enter a range.

    -

    Default: 1.0

    @@ -609,7 +605,7 @@

    Parameters

    Protocol used by the Citrix Gateway virtual server.

    Choices:

      -
    • "SSL" ← (default)

    • +
    • "SSL"

    • "DTLS"

    diff --git a/docs/collections/netscaler/adc/vpnvserver_responderpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_responderpolicy_binding_module.html index bad1d7ed..cc6d4cf3 100644 --- a/docs/collections/netscaler/adc/vpnvserver_responderpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_responderpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_responderpolicy_binding module – Binding Resource definition for describing association between vpnvserver and responderpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_rewritepolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_rewritepolicy_binding_module.html index 2b2923be..7aee16fd 100644 --- a/docs/collections/netscaler/adc/vpnvserver_rewritepolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_rewritepolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_rewritepolicy_binding module – Binding Resource definition for describing association between vpnvserver and rewritepolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_sharefileserver_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_sharefileserver_binding_module.html index 4b5685fd..e262861c 100644 --- a/docs/collections/netscaler/adc/vpnvserver_sharefileserver_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_sharefileserver_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_sharefileserver_binding module – Binding Resource definition for describing association between vpnvserver and sharefileserver resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_staserver_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_staserver_binding_module.html index 2b24a1cd..62249f78 100644 --- a/docs/collections/netscaler/adc/vpnvserver_staserver_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_staserver_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_staserver_binding module – Binding Resource definition for describing association between vpnvserver and staserver resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_vpnclientlessaccesspolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_vpnclientlessaccesspolicy_binding_module.html index 28e47814..82dd7677 100644 --- a/docs/collections/netscaler/adc/vpnvserver_vpnclientlessaccesspolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_vpnclientlessaccesspolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_vpnclientlessaccesspolicy_binding module – Binding Resource definition for describing association between vpnvserver and vpnclientlessaccesspolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_vpnepaprofile_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_vpnepaprofile_binding_module.html index 366343c0..bf4db1a4 100644 --- a/docs/collections/netscaler/adc/vpnvserver_vpnepaprofile_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_vpnepaprofile_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_vpnepaprofile_binding module – Binding Resource definition for describing association between vpnvserver and vpnepaprofile resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_vpneula_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_vpneula_binding_module.html index fc909c45..82f5e78a 100644 --- a/docs/collections/netscaler/adc/vpnvserver_vpneula_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_vpneula_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_vpneula_binding module – Binding Resource definition for describing association between vpnvserver and vpneula resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_vpnintranetapplication_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_vpnintranetapplication_binding_module.html index a600b9c1..00a3782b 100644 --- a/docs/collections/netscaler/adc/vpnvserver_vpnintranetapplication_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_vpnintranetapplication_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_vpnintranetapplication_binding module – Binding Resource definition for describing association between vpnvserver and vpnintranetapplication resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_vpnnexthopserver_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_vpnnexthopserver_binding_module.html index 00499a63..c18d4117 100644 --- a/docs/collections/netscaler/adc/vpnvserver_vpnnexthopserver_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_vpnnexthopserver_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_vpnnexthopserver_binding module – Binding Resource definition for describing association between vpnvserver and vpnnexthopserver resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_vpnportaltheme_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_vpnportaltheme_binding_module.html index c5dc018c..f89dbf48 100644 --- a/docs/collections/netscaler/adc/vpnvserver_vpnportaltheme_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_vpnportaltheme_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_vpnportaltheme_binding module – Binding Resource definition for describing association between vpnvserver and vpnportaltheme resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_vpnsessionpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_vpnsessionpolicy_binding_module.html index eceb3ba4..43d9147d 100644 --- a/docs/collections/netscaler/adc/vpnvserver_vpnsessionpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_vpnsessionpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_vpnsessionpolicy_binding module – Binding Resource definition for describing association between vpnvserver and vpnsessionpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_vpntrafficpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_vpntrafficpolicy_binding_module.html index c8b2c865..a5395be8 100644 --- a/docs/collections/netscaler/adc/vpnvserver_vpntrafficpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_vpntrafficpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_vpntrafficpolicy_binding module – Binding Resource definition for describing association between vpnvserver and vpntrafficpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_vpnurl_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_vpnurl_binding_module.html index cbe7b358..4b3cd07f 100644 --- a/docs/collections/netscaler/adc/vpnvserver_vpnurl_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_vpnurl_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_vpnurl_binding module – Binding Resource definition for describing association between vpnvserver and vpnurl resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vpnvserver_vpnurlpolicy_binding_module.html b/docs/collections/netscaler/adc/vpnvserver_vpnurlpolicy_binding_module.html index 780a33ef..3544aa48 100644 --- a/docs/collections/netscaler/adc/vpnvserver_vpnurlpolicy_binding_module.html +++ b/docs/collections/netscaler/adc/vpnvserver_vpnurlpolicy_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vpnvserver_vpnurlpolicy_binding module – Binding Resource definition for describing association between vpnvserver and vpnurlpolicy resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vrid6_channel_binding_module.html b/docs/collections/netscaler/adc/vrid6_channel_binding_module.html index 7a8fdc78..240d62c7 100644 --- a/docs/collections/netscaler/adc/vrid6_channel_binding_module.html +++ b/docs/collections/netscaler/adc/vrid6_channel_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vrid6_channel_binding module – Binding Resource definition for describing association between vrid6 and channel resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vrid6_interface_binding_module.html b/docs/collections/netscaler/adc/vrid6_interface_binding_module.html index a1d5c71e..1f202242 100644 --- a/docs/collections/netscaler/adc/vrid6_interface_binding_module.html +++ b/docs/collections/netscaler/adc/vrid6_interface_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vrid6_interface_binding module – Binding Resource definition for describing association between vrid6 and interface resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vrid6_module.html b/docs/collections/netscaler/adc/vrid6_module.html index a2db6300..193c6d0c 100644 --- a/docs/collections/netscaler/adc/vrid6_module.html +++ b/docs/collections/netscaler/adc/vrid6_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vrid6 module – Configuration for Virtual Router ID for IPv6 resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    @@ -249,7 +249,7 @@

    Parameters

    Choices:

      -
    • "ENABLED" ← (default)

    • +
    • "ENABLED"

    • "DISABLED"

    @@ -266,7 +266,6 @@

    Parameters

    float

    Base priority (BP), in an active-active mode configuration, which ordinarily determines the master VIP address.

    -

    Default: 255.0

    @@ -328,7 +327,7 @@

    ParametersDefault: NONE.

    Choices:

    @@ -312,7 +311,7 @@

    Parameters

    VXLAN encapsulation type. VXLAN, VXLANGPE

    Choices:

      -
    • "VXLAN" ← (default)

    • +
    • "VXLAN"

    • "VXLANGPE"

    diff --git a/docs/collections/netscaler/adc/vxlan_nsip6_binding_module.html b/docs/collections/netscaler/adc/vxlan_nsip6_binding_module.html index afbde504..975cfe0f 100644 --- a/docs/collections/netscaler/adc/vxlan_nsip6_binding_module.html +++ b/docs/collections/netscaler/adc/vxlan_nsip6_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vxlan_nsip6_binding module – Binding Resource definition for describing association between vxlan and nsip6 resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vxlan_nsip_binding_module.html b/docs/collections/netscaler/adc/vxlan_nsip_binding_module.html index 7dbc7cf1..7c03ede5 100644 --- a/docs/collections/netscaler/adc/vxlan_nsip_binding_module.html +++ b/docs/collections/netscaler/adc/vxlan_nsip_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vxlan_nsip_binding module – Binding Resource definition for describing association between vxlan and nsip resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vxlan_srcip_binding_module.html b/docs/collections/netscaler/adc/vxlan_srcip_binding_module.html index 88bf1195..9be66a87 100644 --- a/docs/collections/netscaler/adc/vxlan_srcip_binding_module.html +++ b/docs/collections/netscaler/adc/vxlan_srcip_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vxlan_srcip_binding module – Binding Resource definition for describing association between vxlan and srcip resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vxlanvlanmap_module.html b/docs/collections/netscaler/adc/vxlanvlanmap_module.html index 74cac19a..380e6fba 100644 --- a/docs/collections/netscaler/adc/vxlanvlanmap_module.html +++ b/docs/collections/netscaler/adc/vxlanvlanmap_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vxlanvlanmap module – Configuration for vxlan vlan mapping resource.

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/collections/netscaler/adc/vxlanvlanmap_vxlan_binding_module.html b/docs/collections/netscaler/adc/vxlanvlanmap_vxlan_binding_module.html index d1469ed4..df109345 100644 --- a/docs/collections/netscaler/adc/vxlanvlanmap_vxlan_binding_module.html +++ b/docs/collections/netscaler/adc/vxlanvlanmap_vxlan_binding_module.html @@ -131,7 +131,7 @@

    netscaler.adc.vxlanvlanmap_vxlan_binding module – Binding Resource definition for describing association between vxlanvlanmap and vxlan resources

    Note

    -

    This module is part of the netscaler.adc collection (version 2.0.2).

    +

    This module is part of the netscaler.adc collection (version 2.1.0).

    It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

    To install it, use: ansible-galaxy collection install netscaler.adc.

    diff --git a/docs/searchindex.js b/docs/searchindex.js index 35dd73e9..b212b730 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["collections/environment_variables", "collections/index", "collections/index_module", "collections/netscaler/adc/aaacertparams_module", "collections/netscaler/adc/aaaglobal_aaapreauthenticationpolicy_binding_module", "collections/netscaler/adc/aaaglobal_authenticationnegotiateaction_binding_module", "collections/netscaler/adc/aaagroup_aaauser_binding_module", "collections/netscaler/adc/aaagroup_auditnslogpolicy_binding_module", "collections/netscaler/adc/aaagroup_auditsyslogpolicy_binding_module", "collections/netscaler/adc/aaagroup_authorizationpolicy_binding_module", "collections/netscaler/adc/aaagroup_intranetip6_binding_module", "collections/netscaler/adc/aaagroup_intranetip_binding_module", "collections/netscaler/adc/aaagroup_module", "collections/netscaler/adc/aaagroup_tmsessionpolicy_binding_module", "collections/netscaler/adc/aaagroup_vpnintranetapplication_binding_module", "collections/netscaler/adc/aaagroup_vpnsessionpolicy_binding_module", "collections/netscaler/adc/aaagroup_vpntrafficpolicy_binding_module", "collections/netscaler/adc/aaagroup_vpnurl_binding_module", "collections/netscaler/adc/aaagroup_vpnurlpolicy_binding_module", "collections/netscaler/adc/aaakcdaccount_module", "collections/netscaler/adc/aaaldapparams_module", "collections/netscaler/adc/aaaotpparameter_module", "collections/netscaler/adc/aaaparameter_module", "collections/netscaler/adc/aaapreauthenticationaction_module", "collections/netscaler/adc/aaapreauthenticationparameter_module", "collections/netscaler/adc/aaapreauthenticationpolicy_module", "collections/netscaler/adc/aaaradiusparams_module", "collections/netscaler/adc/aaasession_module", "collections/netscaler/adc/aaassoprofile_module", "collections/netscaler/adc/aaatacacsparams_module", "collections/netscaler/adc/aaauser_auditnslogpolicy_binding_module", "collections/netscaler/adc/aaauser_auditsyslogpolicy_binding_module", "collections/netscaler/adc/aaauser_authorizationpolicy_binding_module", "collections/netscaler/adc/aaauser_intranetip6_binding_module", "collections/netscaler/adc/aaauser_intranetip_binding_module", "collections/netscaler/adc/aaauser_module", "collections/netscaler/adc/aaauser_tmsessionpolicy_binding_module", "collections/netscaler/adc/aaauser_vpnintranetapplication_binding_module", "collections/netscaler/adc/aaauser_vpnsessionpolicy_binding_module", "collections/netscaler/adc/aaauser_vpntrafficpolicy_binding_module", "collections/netscaler/adc/aaauser_vpnurl_binding_module", "collections/netscaler/adc/aaauser_vpnurlpolicy_binding_module", "collections/netscaler/adc/admparameter_module", "collections/netscaler/adc/analyticsglobal_analyticsprofile_binding_module", "collections/netscaler/adc/analyticsprofile_module", "collections/netscaler/adc/apispec_module", "collections/netscaler/adc/apispecfile_module", "collections/netscaler/adc/appalgparam_module", "collections/netscaler/adc/appflowaction_analyticsprofile_binding_module", "collections/netscaler/adc/appflowaction_module", "collections/netscaler/adc/appflowcollector_module", "collections/netscaler/adc/appflowglobal_appflowpolicy_binding_module", "collections/netscaler/adc/appflowparam_module", "collections/netscaler/adc/appflowpolicy_module", "collections/netscaler/adc/appflowpolicylabel_appflowpolicy_binding_module", "collections/netscaler/adc/appflowpolicylabel_module", "collections/netscaler/adc/appfwarchive_module", "collections/netscaler/adc/appfwconfidfield_module", "collections/netscaler/adc/appfwcustomsettings_module", "collections/netscaler/adc/appfwfieldtype_module", "collections/netscaler/adc/appfwglobal_appfwpolicy_binding_module", "collections/netscaler/adc/appfwglobal_auditnslogpolicy_binding_module", "collections/netscaler/adc/appfwglobal_auditsyslogpolicy_binding_module", "collections/netscaler/adc/appfwgrpccontenttype_module", "collections/netscaler/adc/appfwgrpcwebjsoncontenttype_module", "collections/netscaler/adc/appfwgrpcwebtextcontenttype_module", "collections/netscaler/adc/appfwhtmlerrorpage_module", "collections/netscaler/adc/appfwjsoncontenttype_module", "collections/netscaler/adc/appfwjsonerrorpage_module", "collections/netscaler/adc/appfwlearningdata_module", "collections/netscaler/adc/appfwlearningsettings_module", "collections/netscaler/adc/appfwmultipartformcontenttype_module", "collections/netscaler/adc/appfwpolicy_module", "collections/netscaler/adc/appfwpolicylabel_appfwpolicy_binding_module", "collections/netscaler/adc/appfwpolicylabel_module", "collections/netscaler/adc/appfwprofile_appfwconfidfield_binding_module", "collections/netscaler/adc/appfwprofile_blockkeyword_binding_module", "collections/netscaler/adc/appfwprofile_bypasslist_binding_module", "collections/netscaler/adc/appfwprofile_cmdinjection_binding_module", "collections/netscaler/adc/appfwprofile_contenttype_binding_module", "collections/netscaler/adc/appfwprofile_cookieconsistency_binding_module", "collections/netscaler/adc/appfwprofile_creditcardnumber_binding_module", "collections/netscaler/adc/appfwprofile_crosssitescripting_binding_module", "collections/netscaler/adc/appfwprofile_csrftag_binding_module", "collections/netscaler/adc/appfwprofile_denylist_binding_module", "collections/netscaler/adc/appfwprofile_denyurl_binding_module", "collections/netscaler/adc/appfwprofile_excluderescontenttype_binding_module", "collections/netscaler/adc/appfwprofile_fakeaccount_binding_module", "collections/netscaler/adc/appfwprofile_fieldconsistency_binding_module", "collections/netscaler/adc/appfwprofile_fieldformat_binding_module", "collections/netscaler/adc/appfwprofile_fileuploadtype_binding_module", "collections/netscaler/adc/appfwprofile_jsonblockkeyword_binding_module", "collections/netscaler/adc/appfwprofile_jsoncmdurl_binding_module", "collections/netscaler/adc/appfwprofile_jsondosurl_binding_module", "collections/netscaler/adc/appfwprofile_jsonsqlurl_binding_module", "collections/netscaler/adc/appfwprofile_jsonxssurl_binding_module", "collections/netscaler/adc/appfwprofile_logexpression_binding_module", "collections/netscaler/adc/appfwprofile_module", "collections/netscaler/adc/appfwprofile_safeobject_binding_module", "collections/netscaler/adc/appfwprofile_sqlinjection_binding_module", "collections/netscaler/adc/appfwprofile_starturl_binding_module", "collections/netscaler/adc/appfwprofile_trustedlearningclients_binding_module", "collections/netscaler/adc/appfwprofile_xmlattachmenturl_binding_module", "collections/netscaler/adc/appfwprofile_xmldosurl_binding_module", "collections/netscaler/adc/appfwprofile_xmlsqlinjection_binding_module", "collections/netscaler/adc/appfwprofile_xmlvalidationurl_binding_module", "collections/netscaler/adc/appfwprofile_xmlwsiurl_binding_module", "collections/netscaler/adc/appfwprofile_xmlxss_binding_module", "collections/netscaler/adc/appfwprotofile_module", "collections/netscaler/adc/appfwsettings_module", "collections/netscaler/adc/appfwsignatures_module", "collections/netscaler/adc/appfwurlencodedformcontenttype_module", "collections/netscaler/adc/appfwwsdl_module", "collections/netscaler/adc/appfwxmlcontenttype_module", "collections/netscaler/adc/appfwxmlerrorpage_module", "collections/netscaler/adc/appfwxmlschema_module", "collections/netscaler/adc/application_module", "collections/netscaler/adc/appqoeaction_module", "collections/netscaler/adc/appqoecustomresp_module", "collections/netscaler/adc/appqoeparameter_module", "collections/netscaler/adc/appqoepolicy_module", "collections/netscaler/adc/arp_module", "collections/netscaler/adc/arpparam_module", "collections/netscaler/adc/auditmessageaction_module", "collections/netscaler/adc/auditnslogaction_module", "collections/netscaler/adc/auditnslogglobal_auditnslogpolicy_binding_module", "collections/netscaler/adc/auditnslogparams_module", "collections/netscaler/adc/auditnslogpolicy_module", "collections/netscaler/adc/auditsyslogaction_module", "collections/netscaler/adc/auditsyslogglobal_auditsyslogpolicy_binding_module", "collections/netscaler/adc/auditsyslogparams_module", "collections/netscaler/adc/auditsyslogpolicy_module", "collections/netscaler/adc/authenticationadfsproxyprofile_module", "collections/netscaler/adc/authenticationauthnprofile_module", "collections/netscaler/adc/authenticationazurekeyvault_module", "collections/netscaler/adc/authenticationcaptchaaction_module", "collections/netscaler/adc/authenticationcertaction_module", "collections/netscaler/adc/authenticationcertpolicy_module", "collections/netscaler/adc/authenticationcitrixauthaction_module", "collections/netscaler/adc/authenticationdfaaction_module", "collections/netscaler/adc/authenticationdfapolicy_module", "collections/netscaler/adc/authenticationemailaction_module", "collections/netscaler/adc/authenticationepaaction_module", "collections/netscaler/adc/authenticationldapaction_module", "collections/netscaler/adc/authenticationldappolicy_module", "collections/netscaler/adc/authenticationlocalpolicy_module", "collections/netscaler/adc/authenticationloginschema_module", "collections/netscaler/adc/authenticationloginschemapolicy_module", "collections/netscaler/adc/authenticationnegotiateaction_module", "collections/netscaler/adc/authenticationnegotiatepolicy_module", "collections/netscaler/adc/authenticationnoauthaction_module", "collections/netscaler/adc/authenticationoauthaction_module", "collections/netscaler/adc/authenticationoauthidppolicy_module", "collections/netscaler/adc/authenticationoauthidpprofile_module", "collections/netscaler/adc/authenticationpolicy_module", "collections/netscaler/adc/authenticationpolicylabel_authenticationpolicy_binding_module", "collections/netscaler/adc/authenticationpolicylabel_module", "collections/netscaler/adc/authenticationpushservice_module", "collections/netscaler/adc/authenticationradiusaction_module", "collections/netscaler/adc/authenticationradiuspolicy_module", "collections/netscaler/adc/authenticationsamlaction_module", "collections/netscaler/adc/authenticationsamlidppolicy_module", "collections/netscaler/adc/authenticationsamlidpprofile_module", "collections/netscaler/adc/authenticationsamlpolicy_module", "collections/netscaler/adc/authenticationsmartaccesspolicy_module", "collections/netscaler/adc/authenticationsmartaccessprofile_module", "collections/netscaler/adc/authenticationstorefrontauthaction_module", "collections/netscaler/adc/authenticationtacacsaction_module", "collections/netscaler/adc/authenticationtacacspolicy_module", "collections/netscaler/adc/authenticationvserver_auditnslogpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_auditsyslogpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationcertpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationldappolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationlocalpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationloginschemapolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationnegotiatepolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationoauthidppolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationradiuspolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationsamlidppolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationsamlpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationsmartaccesspolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationtacacspolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationwebauthpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_cachepolicy_binding_module", "collections/netscaler/adc/authenticationvserver_cspolicy_binding_module", "collections/netscaler/adc/authenticationvserver_module", "collections/netscaler/adc/authenticationvserver_responderpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_rewritepolicy_binding_module", "collections/netscaler/adc/authenticationvserver_tmsessionpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_vpnportaltheme_binding_module", "collections/netscaler/adc/authenticationwebauthaction_module", "collections/netscaler/adc/authenticationwebauthpolicy_module", "collections/netscaler/adc/authorizationpolicy_module", "collections/netscaler/adc/authorizationpolicylabel_authorizationpolicy_binding_module", "collections/netscaler/adc/authorizationpolicylabel_module", "collections/netscaler/adc/autoscaleaction_module", "collections/netscaler/adc/autoscalepolicy_module", "collections/netscaler/adc/autoscaleprofile_module", "collections/netscaler/adc/azureapplication_module", "collections/netscaler/adc/azurekeyvault_module", "collections/netscaler/adc/botglobal_botpolicy_binding_module", "collections/netscaler/adc/botpolicy_module", "collections/netscaler/adc/botpolicylabel_botpolicy_binding_module", "collections/netscaler/adc/botpolicylabel_module", "collections/netscaler/adc/botprofile_blacklist_binding_module", "collections/netscaler/adc/botprofile_captcha_binding_module", "collections/netscaler/adc/botprofile_ipreputation_binding_module", "collections/netscaler/adc/botprofile_kmdetectionexpr_binding_module", "collections/netscaler/adc/botprofile_logexpression_binding_module", "collections/netscaler/adc/botprofile_module", "collections/netscaler/adc/botprofile_ratelimit_binding_module", "collections/netscaler/adc/botprofile_tps_binding_module", "collections/netscaler/adc/botprofile_trapinsertionurl_binding_module", "collections/netscaler/adc/botprofile_whitelist_binding_module", "collections/netscaler/adc/botsettings_module", "collections/netscaler/adc/botsignature_module", "collections/netscaler/adc/bridgegroup_module", "collections/netscaler/adc/bridgegroup_nsip6_binding_module", "collections/netscaler/adc/bridgegroup_nsip_binding_module", "collections/netscaler/adc/bridgegroup_vlan_binding_module", "collections/netscaler/adc/bridgetable_module", "collections/netscaler/adc/cachecontentgroup_module", "collections/netscaler/adc/cacheforwardproxy_module", "collections/netscaler/adc/cacheglobal_cachepolicy_binding_module", "collections/netscaler/adc/cacheobject_module", "collections/netscaler/adc/cacheparameter_module", "collections/netscaler/adc/cachepolicy_module", "collections/netscaler/adc/cachepolicylabel_cachepolicy_binding_module", "collections/netscaler/adc/cachepolicylabel_module", "collections/netscaler/adc/cacheselector_module", "collections/netscaler/adc/callhome_module", "collections/netscaler/adc/change_password_module", "collections/netscaler/adc/channel_interface_binding_module", "collections/netscaler/adc/channel_module", "collections/netscaler/adc/cloudallowedngsticketprofile_module", "collections/netscaler/adc/cloudawsparam_module", "collections/netscaler/adc/cloudcredential_module", "collections/netscaler/adc/cloudngsparameter_module", "collections/netscaler/adc/cloudparameter_module", "collections/netscaler/adc/cloudparaminternal_module", "collections/netscaler/adc/cloudprofile_module", "collections/netscaler/adc/cloudtunnelparameter_module", "collections/netscaler/adc/cloudtunnelvserver_module", "collections/netscaler/adc/cluster_module", "collections/netscaler/adc/clusterfiles_module", "collections/netscaler/adc/clusterinstance_module", "collections/netscaler/adc/clusternode_module", "collections/netscaler/adc/clusternode_routemonitor_binding_module", "collections/netscaler/adc/clusternodegroup_authenticationvserver_binding_module", "collections/netscaler/adc/clusternodegroup_clusternode_binding_module", "collections/netscaler/adc/clusternodegroup_crvserver_binding_module", "collections/netscaler/adc/clusternodegroup_csvserver_binding_module", "collections/netscaler/adc/clusternodegroup_gslbsite_binding_module", "collections/netscaler/adc/clusternodegroup_gslbvserver_binding_module", "collections/netscaler/adc/clusternodegroup_lbvserver_binding_module", "collections/netscaler/adc/clusternodegroup_module", "collections/netscaler/adc/clusternodegroup_nslimitidentifier_binding_module", "collections/netscaler/adc/clusternodegroup_service_binding_module", "collections/netscaler/adc/clusternodegroup_streamidentifier_binding_module", "collections/netscaler/adc/clusternodegroup_vpnvserver_binding_module", "collections/netscaler/adc/clusterpropstatus_module", "collections/netscaler/adc/cmpaction_module", "collections/netscaler/adc/cmpglobal_cmppolicy_binding_module", "collections/netscaler/adc/cmpparameter_module", "collections/netscaler/adc/cmppolicy_module", "collections/netscaler/adc/cmppolicylabel_cmppolicy_binding_module", "collections/netscaler/adc/cmppolicylabel_module", "collections/netscaler/adc/contentinspectionaction_module", "collections/netscaler/adc/contentinspectioncallout_module", "collections/netscaler/adc/contentinspectionglobal_contentinspectionpolicy_binding_module", "collections/netscaler/adc/contentinspectionparameter_module", "collections/netscaler/adc/contentinspectionpolicy_module", "collections/netscaler/adc/contentinspectionpolicylabel_contentinspectionpolicy_binding_module", "collections/netscaler/adc/contentinspectionpolicylabel_module", "collections/netscaler/adc/contentinspectionprofile_module", "collections/netscaler/adc/crpolicy_module", "collections/netscaler/adc/crvserver_analyticsprofile_binding_module", "collections/netscaler/adc/crvserver_appflowpolicy_binding_module", "collections/netscaler/adc/crvserver_appfwpolicy_binding_module", "collections/netscaler/adc/crvserver_appqoepolicy_binding_module", "collections/netscaler/adc/crvserver_cachepolicy_binding_module", "collections/netscaler/adc/crvserver_cmppolicy_binding_module", "collections/netscaler/adc/crvserver_crpolicy_binding_module", "collections/netscaler/adc/crvserver_cspolicy_binding_module", "collections/netscaler/adc/crvserver_feopolicy_binding_module", "collections/netscaler/adc/crvserver_icapolicy_binding_module", "collections/netscaler/adc/crvserver_lbvserver_binding_module", "collections/netscaler/adc/crvserver_module", "collections/netscaler/adc/crvserver_policymap_binding_module", "collections/netscaler/adc/crvserver_responderpolicy_binding_module", "collections/netscaler/adc/crvserver_rewritepolicy_binding_module", "collections/netscaler/adc/crvserver_spilloverpolicy_binding_module", "collections/netscaler/adc/csaction_module", "collections/netscaler/adc/csparameter_module", "collections/netscaler/adc/cspolicy_module", "collections/netscaler/adc/cspolicylabel_cspolicy_binding_module", "collections/netscaler/adc/cspolicylabel_module", "collections/netscaler/adc/csvserver_analyticsprofile_binding_module", "collections/netscaler/adc/csvserver_appflowpolicy_binding_module", "collections/netscaler/adc/csvserver_appfwpolicy_binding_module", "collections/netscaler/adc/csvserver_appqoepolicy_binding_module", "collections/netscaler/adc/csvserver_auditnslogpolicy_binding_module", "collections/netscaler/adc/csvserver_auditsyslogpolicy_binding_module", "collections/netscaler/adc/csvserver_authorizationpolicy_binding_module", "collections/netscaler/adc/csvserver_botpolicy_binding_module", "collections/netscaler/adc/csvserver_cachepolicy_binding_module", "collections/netscaler/adc/csvserver_cmppolicy_binding_module", "collections/netscaler/adc/csvserver_contentinspectionpolicy_binding_module", "collections/netscaler/adc/csvserver_cspolicy_binding_module", "collections/netscaler/adc/csvserver_domain_binding_module", "collections/netscaler/adc/csvserver_feopolicy_binding_module", "collections/netscaler/adc/csvserver_gslbvserver_binding_module", "collections/netscaler/adc/csvserver_lbvserver_binding_module", "collections/netscaler/adc/csvserver_module", "collections/netscaler/adc/csvserver_responderpolicy_binding_module", "collections/netscaler/adc/csvserver_rewritepolicy_binding_module", "collections/netscaler/adc/csvserver_spilloverpolicy_binding_module", "collections/netscaler/adc/csvserver_tmtrafficpolicy_binding_module", "collections/netscaler/adc/csvserver_transformpolicy_binding_module", "collections/netscaler/adc/csvserver_vpnvserver_binding_module", "collections/netscaler/adc/dbdbprofile_module", "collections/netscaler/adc/dbuser_module", "collections/netscaler/adc/dnsaaaarec_module", "collections/netscaler/adc/dnsaction64_module", "collections/netscaler/adc/dnsaction_module", "collections/netscaler/adc/dnsaddrec_module", "collections/netscaler/adc/dnscaarec_module", "collections/netscaler/adc/dnscnamerec_module", "collections/netscaler/adc/dnsglobal_dnspolicy_binding_module", "collections/netscaler/adc/dnskey_module", "collections/netscaler/adc/dnsmxrec_module", "collections/netscaler/adc/dnsnameserver_module", "collections/netscaler/adc/dnsnaptrrec_module", "collections/netscaler/adc/dnsnsrec_module", "collections/netscaler/adc/dnsparameter_module", "collections/netscaler/adc/dnspolicy64_module", "collections/netscaler/adc/dnspolicy_module", "collections/netscaler/adc/dnspolicylabel_dnspolicy_binding_module", "collections/netscaler/adc/dnspolicylabel_module", "collections/netscaler/adc/dnsprofile_module", "collections/netscaler/adc/dnsproxyrecords_module", "collections/netscaler/adc/dnsptrrec_module", "collections/netscaler/adc/dnssoarec_module", "collections/netscaler/adc/dnssrvrec_module", "collections/netscaler/adc/dnssubnetcache_module", "collections/netscaler/adc/dnssuffix_module", "collections/netscaler/adc/dnstxtrec_module", "collections/netscaler/adc/dnsview_module", "collections/netscaler/adc/dnszone_module", "collections/netscaler/adc/endpointinfo_module", "collections/netscaler/adc/extendedmemoryparam_module", "collections/netscaler/adc/feoaction_module", "collections/netscaler/adc/feoglobal_feopolicy_binding_module", "collections/netscaler/adc/feoparameter_module", "collections/netscaler/adc/feopolicy_module", "collections/netscaler/adc/fis_channel_binding_module", "collections/netscaler/adc/fis_interface_binding_module", "collections/netscaler/adc/fis_module", "collections/netscaler/adc/forwardingsession_module", "collections/netscaler/adc/gslbconfig_module", "collections/netscaler/adc/gslbldnsentries_module", "collections/netscaler/adc/gslbldnsentry_module", "collections/netscaler/adc/gslbparameter_module", "collections/netscaler/adc/gslbservice_dnsview_binding_module", "collections/netscaler/adc/gslbservice_lbmonitor_binding_module", "collections/netscaler/adc/gslbservice_module", "collections/netscaler/adc/gslbservicegroup_gslbservicegroupmember_binding_module", "collections/netscaler/adc/gslbservicegroup_lbmonitor_binding_module", "collections/netscaler/adc/gslbservicegroup_module", "collections/netscaler/adc/gslbsite_module", "collections/netscaler/adc/gslbvserver_domain_binding_module", "collections/netscaler/adc/gslbvserver_gslbservice_binding_module", "collections/netscaler/adc/gslbvserver_gslbservicegroup_binding_module", "collections/netscaler/adc/gslbvserver_lbpolicy_binding_module", "collections/netscaler/adc/gslbvserver_module", "collections/netscaler/adc/gslbvserver_spilloverpolicy_binding_module", "collections/netscaler/adc/hafailover_module", "collections/netscaler/adc/hafiles_module", "collections/netscaler/adc/hanode_module", "collections/netscaler/adc/hanode_routemonitor6_binding_module", "collections/netscaler/adc/hanode_routemonitor_binding_module", "collections/netscaler/adc/hasync_module", "collections/netscaler/adc/icaaccessprofile_module", "collections/netscaler/adc/icaaction_module", "collections/netscaler/adc/icaglobal_icapolicy_binding_module", "collections/netscaler/adc/icalatencyprofile_module", "collections/netscaler/adc/icaparameter_module", "collections/netscaler/adc/icapolicy_module", "collections/netscaler/adc/inat_module", "collections/netscaler/adc/inatparam_module", "collections/netscaler/adc/index", "collections/netscaler/adc/install_module", "collections/netscaler/adc/interfacepair_module", "collections/netscaler/adc/ip6tunnel_module", "collections/netscaler/adc/ip6tunnelparam_module", "collections/netscaler/adc/ipsecalgprofile_module", "collections/netscaler/adc/ipsecalgsession_module", "collections/netscaler/adc/ipsecparameter_module", "collections/netscaler/adc/ipsecprofile_module", "collections/netscaler/adc/ipset_module", "collections/netscaler/adc/ipset_nsip6_binding_module", "collections/netscaler/adc/ipset_nsip_binding_module", "collections/netscaler/adc/iptunnel_module", "collections/netscaler/adc/iptunnelparam_module", "collections/netscaler/adc/ipv6_module", "collections/netscaler/adc/l2param_module", "collections/netscaler/adc/l3param_module", "collections/netscaler/adc/l4param_module", "collections/netscaler/adc/lacp_module", "collections/netscaler/adc/lbaction_module", "collections/netscaler/adc/lbglobal_lbpolicy_binding_module", "collections/netscaler/adc/lbgroup_lbvserver_binding_module", "collections/netscaler/adc/lbgroup_module", "collections/netscaler/adc/lbmetrictable_metric_binding_module", "collections/netscaler/adc/lbmetrictable_module", "collections/netscaler/adc/lbmonitor_metric_binding_module", "collections/netscaler/adc/lbmonitor_module", "collections/netscaler/adc/lbmonitor_sslcertkey_binding_module", "collections/netscaler/adc/lbparameter_module", "collections/netscaler/adc/lbpersistentsessions_module", "collections/netscaler/adc/lbpolicy_module", "collections/netscaler/adc/lbpolicylabel_lbpolicy_binding_module", "collections/netscaler/adc/lbpolicylabel_module", "collections/netscaler/adc/lbprofile_module", "collections/netscaler/adc/lbroute6_module", "collections/netscaler/adc/lbroute_module", "collections/netscaler/adc/lbsipparameters_module", "collections/netscaler/adc/lbvserver_analyticsprofile_binding_module", "collections/netscaler/adc/lbvserver_appflowpolicy_binding_module", "collections/netscaler/adc/lbvserver_appfwpolicy_binding_module", "collections/netscaler/adc/lbvserver_appqoepolicy_binding_module", "collections/netscaler/adc/lbvserver_auditnslogpolicy_binding_module", "collections/netscaler/adc/lbvserver_auditsyslogpolicy_binding_module", "collections/netscaler/adc/lbvserver_authorizationpolicy_binding_module", "collections/netscaler/adc/lbvserver_botpolicy_binding_module", "collections/netscaler/adc/lbvserver_cachepolicy_binding_module", "collections/netscaler/adc/lbvserver_cmppolicy_binding_module", "collections/netscaler/adc/lbvserver_contentinspectionpolicy_binding_module", "collections/netscaler/adc/lbvserver_dnspolicy64_binding_module", "collections/netscaler/adc/lbvserver_feopolicy_binding_module", "collections/netscaler/adc/lbvserver_lbpolicy_binding_module", "collections/netscaler/adc/lbvserver_module", "collections/netscaler/adc/lbvserver_responderpolicy_binding_module", "collections/netscaler/adc/lbvserver_rewritepolicy_binding_module", "collections/netscaler/adc/lbvserver_service_binding_module", "collections/netscaler/adc/lbvserver_servicegroup_binding_module", "collections/netscaler/adc/lbvserver_spilloverpolicy_binding_module", "collections/netscaler/adc/lbvserver_tmtrafficpolicy_binding_module", "collections/netscaler/adc/lbvserver_transformpolicy_binding_module", "collections/netscaler/adc/lbvserver_videooptimizationdetectionpolicy_binding_module", "collections/netscaler/adc/lbvserver_videooptimizationpacingpolicy_binding_module", "collections/netscaler/adc/lbwlm_lbvserver_binding_module", "collections/netscaler/adc/lbwlm_module", "collections/netscaler/adc/linkset_channel_binding_module", "collections/netscaler/adc/linkset_interface_binding_module", "collections/netscaler/adc/linkset_module", "collections/netscaler/adc/lldpneighbors_module", "collections/netscaler/adc/lldpparam_module", "collections/netscaler/adc/location_module", "collections/netscaler/adc/locationfile6_module", "collections/netscaler/adc/locationfile_module", "collections/netscaler/adc/locationparameter_module", "collections/netscaler/adc/login_module", "collections/netscaler/adc/logout_module", "collections/netscaler/adc/lsnappsattributes_module", "collections/netscaler/adc/lsnappsprofile_lsnappsattributes_binding_module", "collections/netscaler/adc/lsnappsprofile_module", "collections/netscaler/adc/lsnappsprofile_port_binding_module", "collections/netscaler/adc/lsnclient_module", "collections/netscaler/adc/lsnclient_network6_binding_module", "collections/netscaler/adc/lsnclient_network_binding_module", "collections/netscaler/adc/lsnclient_nsacl6_binding_module", "collections/netscaler/adc/lsnclient_nsacl_binding_module", "collections/netscaler/adc/lsngroup_ipsecalgprofile_binding_module", "collections/netscaler/adc/lsngroup_lsnappsprofile_binding_module", "collections/netscaler/adc/lsngroup_lsnhttphdrlogprofile_binding_module", "collections/netscaler/adc/lsngroup_lsnlogprofile_binding_module", "collections/netscaler/adc/lsngroup_lsnpool_binding_module", "collections/netscaler/adc/lsngroup_lsnrtspalgprofile_binding_module", "collections/netscaler/adc/lsngroup_lsnsipalgprofile_binding_module", "collections/netscaler/adc/lsngroup_lsntransportprofile_binding_module", "collections/netscaler/adc/lsngroup_module", "collections/netscaler/adc/lsngroup_pcpserver_binding_module", "collections/netscaler/adc/lsnhttphdrlogprofile_module", "collections/netscaler/adc/lsnip6profile_module", "collections/netscaler/adc/lsnlogprofile_module", "collections/netscaler/adc/lsnparameter_module", "collections/netscaler/adc/lsnpool_lsnip_binding_module", "collections/netscaler/adc/lsnpool_module", "collections/netscaler/adc/lsnrtspalgprofile_module", "collections/netscaler/adc/lsnrtspalgsession_module", "collections/netscaler/adc/lsnsession_module", "collections/netscaler/adc/lsnsipalgcall_module", "collections/netscaler/adc/lsnsipalgprofile_module", "collections/netscaler/adc/lsnstatic_module", "collections/netscaler/adc/lsntransportprofile_module", "collections/netscaler/adc/mapbmr_bmrv4network_binding_module", "collections/netscaler/adc/mapbmr_module", "collections/netscaler/adc/mapdmr_module", "collections/netscaler/adc/mapdomain_mapbmr_binding_module", "collections/netscaler/adc/mapdomain_module", "collections/netscaler/adc/nat64_module", "collections/netscaler/adc/nat64param_module", "collections/netscaler/adc/nd6_module", "collections/netscaler/adc/nd6ravariables_module", "collections/netscaler/adc/nd6ravariables_onlinkipv6prefix_binding_module", "collections/netscaler/adc/netbridge_iptunnel_binding_module", "collections/netscaler/adc/netbridge_module", "collections/netscaler/adc/netbridge_nsip6_binding_module", "collections/netscaler/adc/netbridge_nsip_binding_module", "collections/netscaler/adc/netbridge_vlan_binding_module", "collections/netscaler/adc/netprofile_module", "collections/netscaler/adc/netprofile_natrule_binding_module", "collections/netscaler/adc/netprofile_srcportset_binding_module", "collections/netscaler/adc/nsacls6_module", "collections/netscaler/adc/nsacls_module", "collections/netscaler/adc/nsappflowcollector_module", "collections/netscaler/adc/nsappflowparam_module", "collections/netscaler/adc/nsaptlicense_module", "collections/netscaler/adc/nsassignment_module", "collections/netscaler/adc/nscapacity_module", "collections/netscaler/adc/nscentralmanagementserver_module", "collections/netscaler/adc/nsconfig_module", "collections/netscaler/adc/nsconsoleloginprompt_module", "collections/netscaler/adc/nscqaparam_module", "collections/netscaler/adc/nsdhcpparams_module", "collections/netscaler/adc/nsdiameter_module", "collections/netscaler/adc/nsencryptionkey_module", "collections/netscaler/adc/nsencryptionparams_module", "collections/netscaler/adc/nsextension_module", "collections/netscaler/adc/nsfeature_module", "collections/netscaler/adc/nshmackey_module", "collections/netscaler/adc/nshostname_module", "collections/netscaler/adc/nshttpparam_module", "collections/netscaler/adc/nshttpprofile_module", "collections/netscaler/adc/nsicapprofile_module", "collections/netscaler/adc/nsip6_module", "collections/netscaler/adc/nsip_module", "collections/netscaler/adc/nslicenseparameters_module", "collections/netscaler/adc/nslicenseproxyserver_module", "collections/netscaler/adc/nslicenseserver_module", "collections/netscaler/adc/nslimitidentifier_module", "collections/netscaler/adc/nslimitselector_module", "collections/netscaler/adc/nslimitsessions_module", "collections/netscaler/adc/nsmigration_module", "collections/netscaler/adc/nsmode_module", "collections/netscaler/adc/nsparam_module", "collections/netscaler/adc/nspartition_bridgegroup_binding_module", "collections/netscaler/adc/nspartition_module", "collections/netscaler/adc/nspartition_vlan_binding_module", "collections/netscaler/adc/nspartition_vxlan_binding_module", "collections/netscaler/adc/nsratecontrol_module", "collections/netscaler/adc/nsrpcnode_module", "collections/netscaler/adc/nsservicefunction_module", "collections/netscaler/adc/nsservicepath_module", "collections/netscaler/adc/nsservicepath_nsservicefunction_binding_module", "collections/netscaler/adc/nssimpleacl6_module", "collections/netscaler/adc/nssimpleacl_module", "collections/netscaler/adc/nsspparams_module", "collections/netscaler/adc/nsstats_module", "collections/netscaler/adc/nssurgeq_module", "collections/netscaler/adc/nstcpbufparam_module", "collections/netscaler/adc/nstcpparam_module", "collections/netscaler/adc/nstcpprofile_module", "collections/netscaler/adc/nstimeout_module", "collections/netscaler/adc/nstimer_autoscalepolicy_binding_module", "collections/netscaler/adc/nstimer_module", "collections/netscaler/adc/nstrace_module", "collections/netscaler/adc/nstrafficdomain_bridgegroup_binding_module", "collections/netscaler/adc/nstrafficdomain_module", "collections/netscaler/adc/nstrafficdomain_vlan_binding_module", "collections/netscaler/adc/nstrafficdomain_vxlan_binding_module", "collections/netscaler/adc/nsvariable_module", "collections/netscaler/adc/nsvpxparam_module", "collections/netscaler/adc/nsweblogparam_module", "collections/netscaler/adc/nsxmlnamespace_module", "collections/netscaler/adc/ntpparam_module", "collections/netscaler/adc/ntpserver_module", "collections/netscaler/adc/onlinkipv6prefix_module", "collections/netscaler/adc/pcpprofile_module", "collections/netscaler/adc/pcpserver_module", "collections/netscaler/adc/ping6_module", "collections/netscaler/adc/ping_module", "collections/netscaler/adc/policydataset_module", "collections/netscaler/adc/policydataset_value_binding_module", "collections/netscaler/adc/policyexpression_module", "collections/netscaler/adc/policyhttpcallout_module", "collections/netscaler/adc/policymap_module", "collections/netscaler/adc/policyparam_module", "collections/netscaler/adc/policypatset_module", "collections/netscaler/adc/policypatset_pattern_binding_module", "collections/netscaler/adc/policypatsetfile_module", "collections/netscaler/adc/policystringmap_module", "collections/netscaler/adc/policystringmap_pattern_binding_module", "collections/netscaler/adc/policyurlset_module", "collections/netscaler/adc/protocolhttpband_module", "collections/netscaler/adc/ptp_module", "collections/netscaler/adc/quicbridgeprofile_module", "collections/netscaler/adc/quicparam_module", "collections/netscaler/adc/quicprofile_module", "collections/netscaler/adc/radiusnode_module", "collections/netscaler/adc/rdpclientprofile_module", "collections/netscaler/adc/rdpconnections_module", "collections/netscaler/adc/rdpserverprofile_module", "collections/netscaler/adc/reboot_module", "collections/netscaler/adc/reportingconfig_module", "collections/netscaler/adc/reputationsettings_module", "collections/netscaler/adc/responderaction_module", "collections/netscaler/adc/responderglobal_responderpolicy_binding_module", "collections/netscaler/adc/responderhtmlpage_module", "collections/netscaler/adc/responderparam_module", "collections/netscaler/adc/responderpolicy_module", "collections/netscaler/adc/responderpolicylabel_module", "collections/netscaler/adc/responderpolicylabel_responderpolicy_binding_module", "collections/netscaler/adc/rewriteaction_module", "collections/netscaler/adc/rewriteglobal_rewritepolicy_binding_module", "collections/netscaler/adc/rewriteparam_module", "collections/netscaler/adc/rewritepolicy_module", "collections/netscaler/adc/rewritepolicylabel_module", "collections/netscaler/adc/rewritepolicylabel_rewritepolicy_binding_module", "collections/netscaler/adc/rnat6_module", "collections/netscaler/adc/rnat6_nsip6_binding_module", "collections/netscaler/adc/rnat_module", "collections/netscaler/adc/rnat_nsip_binding_module", "collections/netscaler/adc/rnat_retainsourceportset_binding_module", "collections/netscaler/adc/rnatglobal_auditsyslogpolicy_binding_module", "collections/netscaler/adc/rnatparam_module", "collections/netscaler/adc/rnatsession_module", "collections/netscaler/adc/route6_module", "collections/netscaler/adc/route_module", "collections/netscaler/adc/routerdynamicrouting_module", "collections/netscaler/adc/rsskeytype_module", "collections/netscaler/adc/server_module", "collections/netscaler/adc/service_lbmonitor_binding_module", "collections/netscaler/adc/service_module", "collections/netscaler/adc/servicegroup_lbmonitor_binding_module", "collections/netscaler/adc/servicegroup_module", "collections/netscaler/adc/servicegroup_servicegroupmember_binding_module", "collections/netscaler/adc/smppparam_module", "collections/netscaler/adc/smppuser_module", "collections/netscaler/adc/snmpalarm_module", "collections/netscaler/adc/snmpcommunity_module", "collections/netscaler/adc/snmpengineid_module", "collections/netscaler/adc/snmpgroup_module", "collections/netscaler/adc/snmpmanager_module", "collections/netscaler/adc/snmpmib_module", "collections/netscaler/adc/snmpoption_module", "collections/netscaler/adc/snmptrap_module", "collections/netscaler/adc/snmptrap_snmpuser_binding_module", "collections/netscaler/adc/snmpuser_module", "collections/netscaler/adc/snmpview_module", "collections/netscaler/adc/spilloveraction_module", "collections/netscaler/adc/spilloverpolicy_module", "collections/netscaler/adc/sslaction_module", "collections/netscaler/adc/sslcacertgroup_module", "collections/netscaler/adc/sslcacertgroup_sslcertkey_binding_module", "collections/netscaler/adc/sslcert_module", "collections/netscaler/adc/sslcertbundle_module", "collections/netscaler/adc/sslcertfile_module", "collections/netscaler/adc/sslcertificatechain_module", "collections/netscaler/adc/sslcertkey_module", "collections/netscaler/adc/sslcertkey_sslocspresponder_binding_module", "collections/netscaler/adc/sslcertkeybundle_module", "collections/netscaler/adc/sslcertreq_module", "collections/netscaler/adc/sslcipher_module", "collections/netscaler/adc/sslcipher_sslciphersuite_binding_module", "collections/netscaler/adc/sslcrl_module", "collections/netscaler/adc/sslcrlfile_module", "collections/netscaler/adc/ssldhfile_module", "collections/netscaler/adc/ssldhparam_module", "collections/netscaler/adc/ssldtlsprofile_module", "collections/netscaler/adc/sslecdsakey_module", "collections/netscaler/adc/sslfips_module", "collections/netscaler/adc/sslfipskey_module", "collections/netscaler/adc/sslfipssimsource_module", "collections/netscaler/adc/sslfipssimtarget_module", "collections/netscaler/adc/sslglobal_sslpolicy_binding_module", "collections/netscaler/adc/sslhsmkey_module", "collections/netscaler/adc/sslkeyfile_module", "collections/netscaler/adc/ssllogprofile_module", "collections/netscaler/adc/sslocspresponder_module", "collections/netscaler/adc/sslparameter_module", "collections/netscaler/adc/sslpkcs12_module", "collections/netscaler/adc/sslpkcs8_module", "collections/netscaler/adc/sslpolicy_module", "collections/netscaler/adc/sslpolicylabel_module", "collections/netscaler/adc/sslpolicylabel_sslpolicy_binding_module", "collections/netscaler/adc/sslprofile_ecccurve_binding_module", "collections/netscaler/adc/sslprofile_module", "collections/netscaler/adc/sslprofile_sslcertkey_binding_module", "collections/netscaler/adc/sslprofile_sslcipher_binding_module", "collections/netscaler/adc/sslprofile_sslciphersuite_binding_module", "collections/netscaler/adc/sslrsakey_module", "collections/netscaler/adc/sslservice_ecccurve_binding_module", "collections/netscaler/adc/sslservice_module", "collections/netscaler/adc/sslservice_sslcertkey_binding_module", "collections/netscaler/adc/sslservice_sslcipher_binding_module", "collections/netscaler/adc/sslservice_sslciphersuite_binding_module", "collections/netscaler/adc/sslservice_sslpolicy_binding_module", "collections/netscaler/adc/sslservicegroup_ecccurve_binding_module", "collections/netscaler/adc/sslservicegroup_module", "collections/netscaler/adc/sslservicegroup_sslcertkey_binding_module", "collections/netscaler/adc/sslservicegroup_sslcipher_binding_module", "collections/netscaler/adc/sslservicegroup_sslciphersuite_binding_module", "collections/netscaler/adc/sslvserver_ecccurve_binding_module", "collections/netscaler/adc/sslvserver_module", "collections/netscaler/adc/sslvserver_sslcertkey_binding_module", "collections/netscaler/adc/sslvserver_sslcertkeybundle_binding_module", "collections/netscaler/adc/sslvserver_sslcipher_binding_module", "collections/netscaler/adc/sslvserver_sslciphersuite_binding_module", "collections/netscaler/adc/sslvserver_sslpolicy_binding_module", "collections/netscaler/adc/sslwrapkey_module", "collections/netscaler/adc/streamidentifier_module", "collections/netscaler/adc/streamselector_module", "collections/netscaler/adc/streamsession_module", "collections/netscaler/adc/subscribergxinterface_module", "collections/netscaler/adc/subscriberparam_module", "collections/netscaler/adc/subscriberprofile_module", "collections/netscaler/adc/subscriberradiusinterface_module", "collections/netscaler/adc/subscribersessions_module", "collections/netscaler/adc/systemadmuserinfo_module", "collections/netscaler/adc/systembackup_module", "collections/netscaler/adc/systemcmdpolicy_module", "collections/netscaler/adc/systemcollectionparam_module", "collections/netscaler/adc/systemcpuparam_module", "collections/netscaler/adc/systementitydata_module", "collections/netscaler/adc/systemextramgmtcpu_module", "collections/netscaler/adc/systemfile_module", "collections/netscaler/adc/systemglobal_auditnslogpolicy_binding_module", "collections/netscaler/adc/systemglobal_auditsyslogpolicy_binding_module", "collections/netscaler/adc/systemglobal_authenticationldappolicy_binding_module", "collections/netscaler/adc/systemglobal_authenticationlocalpolicy_binding_module", "collections/netscaler/adc/systemglobal_authenticationpolicy_binding_module", "collections/netscaler/adc/systemglobal_authenticationradiuspolicy_binding_module", "collections/netscaler/adc/systemglobal_authenticationtacacspolicy_binding_module", "collections/netscaler/adc/systemgroup_module", "collections/netscaler/adc/systemgroup_nspartition_binding_module", "collections/netscaler/adc/systemgroup_systemcmdpolicy_binding_module", "collections/netscaler/adc/systemgroup_systemuser_binding_module", "collections/netscaler/adc/systemhwerror_module", "collections/netscaler/adc/systemkek_module", "collections/netscaler/adc/systemparameter_module", "collections/netscaler/adc/systemrestorepoint_module", "collections/netscaler/adc/systemsession_module", "collections/netscaler/adc/systemsshkey_module", "collections/netscaler/adc/systemuser_module", "collections/netscaler/adc/systemuser_nspartition_binding_module", "collections/netscaler/adc/systemuser_systemcmdpolicy_binding_module", "collections/netscaler/adc/tmformssoaction_module", "collections/netscaler/adc/tmglobal_auditnslogpolicy_binding_module", "collections/netscaler/adc/tmglobal_auditsyslogpolicy_binding_module", "collections/netscaler/adc/tmglobal_tmsessionpolicy_binding_module", "collections/netscaler/adc/tmglobal_tmtrafficpolicy_binding_module", "collections/netscaler/adc/tmsamlssoprofile_module", "collections/netscaler/adc/tmsessionaction_module", "collections/netscaler/adc/tmsessionparameter_module", "collections/netscaler/adc/tmsessionpolicy_module", "collections/netscaler/adc/tmtrafficaction_module", "collections/netscaler/adc/tmtrafficpolicy_module", "collections/netscaler/adc/traceroute6_module", "collections/netscaler/adc/traceroute_module", "collections/netscaler/adc/transformaction_module", "collections/netscaler/adc/transformglobal_transformpolicy_binding_module", "collections/netscaler/adc/transformpolicy_module", "collections/netscaler/adc/transformpolicylabel_module", "collections/netscaler/adc/transformpolicylabel_transformpolicy_binding_module", "collections/netscaler/adc/transformprofile_module", "collections/netscaler/adc/tunnelglobal_tunneltrafficpolicy_binding_module", "collections/netscaler/adc/tunneltrafficpolicy_module", "collections/netscaler/adc/ulfdserver_module", "collections/netscaler/adc/urlfilteringcategorization_module", "collections/netscaler/adc/urlfilteringparameter_module", "collections/netscaler/adc/userprotocol_module", "collections/netscaler/adc/uservserver_module", "collections/netscaler/adc/videooptimizationdetectionaction_module", "collections/netscaler/adc/videooptimizationdetectionpolicy_module", "collections/netscaler/adc/videooptimizationdetectionpolicylabel_module", "collections/netscaler/adc/videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_binding_module", "collections/netscaler/adc/videooptimizationglobaldetection_videooptimizationdetectionpolicy_binding_module", "collections/netscaler/adc/videooptimizationglobalpacing_videooptimizationpacingpolicy_binding_module", "collections/netscaler/adc/videooptimizationpacingaction_module", "collections/netscaler/adc/videooptimizationpacingpolicy_module", "collections/netscaler/adc/videooptimizationpacingpolicylabel_module", "collections/netscaler/adc/videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_binding_module", "collections/netscaler/adc/videooptimizationparameter_module", "collections/netscaler/adc/vlan_channel_binding_module", "collections/netscaler/adc/vlan_interface_binding_module", "collections/netscaler/adc/vlan_linkset_binding_module", "collections/netscaler/adc/vlan_module", "collections/netscaler/adc/vlan_nsip6_binding_module", "collections/netscaler/adc/vlan_nsip_binding_module", "collections/netscaler/adc/vpnalwaysonprofile_module", "collections/netscaler/adc/vpnclientlessaccesspolicy_module", "collections/netscaler/adc/vpnclientlessaccessprofile_module", "collections/netscaler/adc/vpnepaprofile_module", "collections/netscaler/adc/vpneula_module", "collections/netscaler/adc/vpnformssoaction_module", "collections/netscaler/adc/vpnglobal_appcontroller_binding_module", "collections/netscaler/adc/vpnglobal_auditnslogpolicy_binding_module", "collections/netscaler/adc/vpnglobal_auditsyslogpolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationcertpolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationldappolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationlocalpolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationnegotiatepolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationpolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationradiuspolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationsamlpolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationtacacspolicy_binding_module", "collections/netscaler/adc/vpnglobal_domain_binding_module", "collections/netscaler/adc/vpnglobal_intranetip6_binding_module", "collections/netscaler/adc/vpnglobal_intranetip_binding_module", "collections/netscaler/adc/vpnglobal_sharefileserver_binding_module", "collections/netscaler/adc/vpnglobal_sslcertkey_binding_module", "collections/netscaler/adc/vpnglobal_staserver_binding_module", "collections/netscaler/adc/vpnglobal_vpnclientlessaccesspolicy_binding_module", "collections/netscaler/adc/vpnglobal_vpneula_binding_module", "collections/netscaler/adc/vpnglobal_vpnintranetapplication_binding_module", "collections/netscaler/adc/vpnglobal_vpnnexthopserver_binding_module", "collections/netscaler/adc/vpnglobal_vpnportaltheme_binding_module", "collections/netscaler/adc/vpnglobal_vpnsessionpolicy_binding_module", "collections/netscaler/adc/vpnglobal_vpntrafficpolicy_binding_module", "collections/netscaler/adc/vpnglobal_vpnurl_binding_module", "collections/netscaler/adc/vpnglobal_vpnurlpolicy_binding_module", "collections/netscaler/adc/vpnicaconnection_module", "collections/netscaler/adc/vpnintranetapplication_module", "collections/netscaler/adc/vpnnexthopserver_module", "collections/netscaler/adc/vpnparameter_module", "collections/netscaler/adc/vpnpcoipconnection_module", "collections/netscaler/adc/vpnpcoipprofile_module", "collections/netscaler/adc/vpnpcoipvserverprofile_module", "collections/netscaler/adc/vpnportaltheme_module", "collections/netscaler/adc/vpnsamlssoprofile_module", "collections/netscaler/adc/vpnsessionaction_module", "collections/netscaler/adc/vpnsessionpolicy_module", "collections/netscaler/adc/vpntrafficaction_module", "collections/netscaler/adc/vpntrafficpolicy_module", "collections/netscaler/adc/vpnurl_module", "collections/netscaler/adc/vpnurlaction_module", "collections/netscaler/adc/vpnurlpolicy_module", "collections/netscaler/adc/vpnvserver_aaapreauthenticationpolicy_binding_module", "collections/netscaler/adc/vpnvserver_analyticsprofile_binding_module", "collections/netscaler/adc/vpnvserver_appcontroller_binding_module", "collections/netscaler/adc/vpnvserver_appflowpolicy_binding_module", "collections/netscaler/adc/vpnvserver_auditnslogpolicy_binding_module", "collections/netscaler/adc/vpnvserver_auditsyslogpolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationcertpolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationdfapolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationldappolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationlocalpolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationloginschemapolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationnegotiatepolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationoauthidppolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationpolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationradiuspolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationsamlidppolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationsamlpolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationtacacspolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationwebauthpolicy_binding_module", "collections/netscaler/adc/vpnvserver_cachepolicy_binding_module", "collections/netscaler/adc/vpnvserver_cspolicy_binding_module", "collections/netscaler/adc/vpnvserver_feopolicy_binding_module", "collections/netscaler/adc/vpnvserver_icapolicy_binding_module", "collections/netscaler/adc/vpnvserver_intranetip6_binding_module", "collections/netscaler/adc/vpnvserver_intranetip_binding_module", "collections/netscaler/adc/vpnvserver_module", "collections/netscaler/adc/vpnvserver_responderpolicy_binding_module", "collections/netscaler/adc/vpnvserver_rewritepolicy_binding_module", "collections/netscaler/adc/vpnvserver_sharefileserver_binding_module", "collections/netscaler/adc/vpnvserver_staserver_binding_module", "collections/netscaler/adc/vpnvserver_vpnclientlessaccesspolicy_binding_module", "collections/netscaler/adc/vpnvserver_vpnepaprofile_binding_module", "collections/netscaler/adc/vpnvserver_vpneula_binding_module", "collections/netscaler/adc/vpnvserver_vpnintranetapplication_binding_module", "collections/netscaler/adc/vpnvserver_vpnnexthopserver_binding_module", "collections/netscaler/adc/vpnvserver_vpnportaltheme_binding_module", "collections/netscaler/adc/vpnvserver_vpnsessionpolicy_binding_module", "collections/netscaler/adc/vpnvserver_vpntrafficpolicy_binding_module", "collections/netscaler/adc/vpnvserver_vpnurl_binding_module", "collections/netscaler/adc/vpnvserver_vpnurlpolicy_binding_module", "collections/netscaler/adc/vrid6_channel_binding_module", "collections/netscaler/adc/vrid6_interface_binding_module", "collections/netscaler/adc/vrid6_module", "collections/netscaler/adc/vrid6_trackinterface_binding_module", "collections/netscaler/adc/vrid_channel_binding_module", "collections/netscaler/adc/vrid_interface_binding_module", "collections/netscaler/adc/vrid_module", "collections/netscaler/adc/vrid_trackinterface_binding_module", "collections/netscaler/adc/vridparam_module", "collections/netscaler/adc/vserver_module", "collections/netscaler/adc/vxlan_module", "collections/netscaler/adc/vxlan_nsip6_binding_module", "collections/netscaler/adc/vxlan_nsip_binding_module", "collections/netscaler/adc/vxlan_srcip_binding_module", "collections/netscaler/adc/vxlanvlanmap_module", "collections/netscaler/adc/vxlanvlanmap_vxlan_binding_module", "collections/netscaler/index", "index"], "filenames": ["collections/environment_variables.rst", "collections/index.rst", "collections/index_module.rst", "collections/netscaler/adc/aaacertparams_module.rst", "collections/netscaler/adc/aaaglobal_aaapreauthenticationpolicy_binding_module.rst", "collections/netscaler/adc/aaaglobal_authenticationnegotiateaction_binding_module.rst", "collections/netscaler/adc/aaagroup_aaauser_binding_module.rst", "collections/netscaler/adc/aaagroup_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/aaagroup_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/aaagroup_authorizationpolicy_binding_module.rst", "collections/netscaler/adc/aaagroup_intranetip6_binding_module.rst", "collections/netscaler/adc/aaagroup_intranetip_binding_module.rst", "collections/netscaler/adc/aaagroup_module.rst", "collections/netscaler/adc/aaagroup_tmsessionpolicy_binding_module.rst", "collections/netscaler/adc/aaagroup_vpnintranetapplication_binding_module.rst", "collections/netscaler/adc/aaagroup_vpnsessionpolicy_binding_module.rst", "collections/netscaler/adc/aaagroup_vpntrafficpolicy_binding_module.rst", "collections/netscaler/adc/aaagroup_vpnurl_binding_module.rst", "collections/netscaler/adc/aaagroup_vpnurlpolicy_binding_module.rst", "collections/netscaler/adc/aaakcdaccount_module.rst", "collections/netscaler/adc/aaaldapparams_module.rst", "collections/netscaler/adc/aaaotpparameter_module.rst", "collections/netscaler/adc/aaaparameter_module.rst", "collections/netscaler/adc/aaapreauthenticationaction_module.rst", "collections/netscaler/adc/aaapreauthenticationparameter_module.rst", "collections/netscaler/adc/aaapreauthenticationpolicy_module.rst", "collections/netscaler/adc/aaaradiusparams_module.rst", "collections/netscaler/adc/aaasession_module.rst", "collections/netscaler/adc/aaassoprofile_module.rst", "collections/netscaler/adc/aaatacacsparams_module.rst", "collections/netscaler/adc/aaauser_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/aaauser_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/aaauser_authorizationpolicy_binding_module.rst", "collections/netscaler/adc/aaauser_intranetip6_binding_module.rst", "collections/netscaler/adc/aaauser_intranetip_binding_module.rst", "collections/netscaler/adc/aaauser_module.rst", "collections/netscaler/adc/aaauser_tmsessionpolicy_binding_module.rst", "collections/netscaler/adc/aaauser_vpnintranetapplication_binding_module.rst", "collections/netscaler/adc/aaauser_vpnsessionpolicy_binding_module.rst", "collections/netscaler/adc/aaauser_vpntrafficpolicy_binding_module.rst", "collections/netscaler/adc/aaauser_vpnurl_binding_module.rst", "collections/netscaler/adc/aaauser_vpnurlpolicy_binding_module.rst", "collections/netscaler/adc/admparameter_module.rst", "collections/netscaler/adc/analyticsglobal_analyticsprofile_binding_module.rst", "collections/netscaler/adc/analyticsprofile_module.rst", "collections/netscaler/adc/apispec_module.rst", "collections/netscaler/adc/apispecfile_module.rst", "collections/netscaler/adc/appalgparam_module.rst", "collections/netscaler/adc/appflowaction_analyticsprofile_binding_module.rst", "collections/netscaler/adc/appflowaction_module.rst", "collections/netscaler/adc/appflowcollector_module.rst", "collections/netscaler/adc/appflowglobal_appflowpolicy_binding_module.rst", "collections/netscaler/adc/appflowparam_module.rst", "collections/netscaler/adc/appflowpolicy_module.rst", "collections/netscaler/adc/appflowpolicylabel_appflowpolicy_binding_module.rst", "collections/netscaler/adc/appflowpolicylabel_module.rst", "collections/netscaler/adc/appfwarchive_module.rst", "collections/netscaler/adc/appfwconfidfield_module.rst", "collections/netscaler/adc/appfwcustomsettings_module.rst", "collections/netscaler/adc/appfwfieldtype_module.rst", "collections/netscaler/adc/appfwglobal_appfwpolicy_binding_module.rst", "collections/netscaler/adc/appfwglobal_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/appfwglobal_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/appfwgrpccontenttype_module.rst", "collections/netscaler/adc/appfwgrpcwebjsoncontenttype_module.rst", "collections/netscaler/adc/appfwgrpcwebtextcontenttype_module.rst", "collections/netscaler/adc/appfwhtmlerrorpage_module.rst", "collections/netscaler/adc/appfwjsoncontenttype_module.rst", "collections/netscaler/adc/appfwjsonerrorpage_module.rst", "collections/netscaler/adc/appfwlearningdata_module.rst", "collections/netscaler/adc/appfwlearningsettings_module.rst", "collections/netscaler/adc/appfwmultipartformcontenttype_module.rst", "collections/netscaler/adc/appfwpolicy_module.rst", "collections/netscaler/adc/appfwpolicylabel_appfwpolicy_binding_module.rst", "collections/netscaler/adc/appfwpolicylabel_module.rst", "collections/netscaler/adc/appfwprofile_appfwconfidfield_binding_module.rst", "collections/netscaler/adc/appfwprofile_blockkeyword_binding_module.rst", "collections/netscaler/adc/appfwprofile_bypasslist_binding_module.rst", "collections/netscaler/adc/appfwprofile_cmdinjection_binding_module.rst", "collections/netscaler/adc/appfwprofile_contenttype_binding_module.rst", "collections/netscaler/adc/appfwprofile_cookieconsistency_binding_module.rst", "collections/netscaler/adc/appfwprofile_creditcardnumber_binding_module.rst", "collections/netscaler/adc/appfwprofile_crosssitescripting_binding_module.rst", "collections/netscaler/adc/appfwprofile_csrftag_binding_module.rst", "collections/netscaler/adc/appfwprofile_denylist_binding_module.rst", "collections/netscaler/adc/appfwprofile_denyurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_excluderescontenttype_binding_module.rst", "collections/netscaler/adc/appfwprofile_fakeaccount_binding_module.rst", "collections/netscaler/adc/appfwprofile_fieldconsistency_binding_module.rst", "collections/netscaler/adc/appfwprofile_fieldformat_binding_module.rst", "collections/netscaler/adc/appfwprofile_fileuploadtype_binding_module.rst", "collections/netscaler/adc/appfwprofile_jsonblockkeyword_binding_module.rst", "collections/netscaler/adc/appfwprofile_jsoncmdurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_jsondosurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_jsonsqlurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_jsonxssurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_logexpression_binding_module.rst", "collections/netscaler/adc/appfwprofile_module.rst", "collections/netscaler/adc/appfwprofile_safeobject_binding_module.rst", "collections/netscaler/adc/appfwprofile_sqlinjection_binding_module.rst", "collections/netscaler/adc/appfwprofile_starturl_binding_module.rst", "collections/netscaler/adc/appfwprofile_trustedlearningclients_binding_module.rst", "collections/netscaler/adc/appfwprofile_xmlattachmenturl_binding_module.rst", "collections/netscaler/adc/appfwprofile_xmldosurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_xmlsqlinjection_binding_module.rst", "collections/netscaler/adc/appfwprofile_xmlvalidationurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_xmlwsiurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_xmlxss_binding_module.rst", "collections/netscaler/adc/appfwprotofile_module.rst", "collections/netscaler/adc/appfwsettings_module.rst", "collections/netscaler/adc/appfwsignatures_module.rst", "collections/netscaler/adc/appfwurlencodedformcontenttype_module.rst", "collections/netscaler/adc/appfwwsdl_module.rst", "collections/netscaler/adc/appfwxmlcontenttype_module.rst", "collections/netscaler/adc/appfwxmlerrorpage_module.rst", "collections/netscaler/adc/appfwxmlschema_module.rst", "collections/netscaler/adc/application_module.rst", "collections/netscaler/adc/appqoeaction_module.rst", "collections/netscaler/adc/appqoecustomresp_module.rst", "collections/netscaler/adc/appqoeparameter_module.rst", "collections/netscaler/adc/appqoepolicy_module.rst", "collections/netscaler/adc/arp_module.rst", "collections/netscaler/adc/arpparam_module.rst", "collections/netscaler/adc/auditmessageaction_module.rst", "collections/netscaler/adc/auditnslogaction_module.rst", "collections/netscaler/adc/auditnslogglobal_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/auditnslogparams_module.rst", "collections/netscaler/adc/auditnslogpolicy_module.rst", "collections/netscaler/adc/auditsyslogaction_module.rst", "collections/netscaler/adc/auditsyslogglobal_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/auditsyslogparams_module.rst", "collections/netscaler/adc/auditsyslogpolicy_module.rst", "collections/netscaler/adc/authenticationadfsproxyprofile_module.rst", "collections/netscaler/adc/authenticationauthnprofile_module.rst", "collections/netscaler/adc/authenticationazurekeyvault_module.rst", "collections/netscaler/adc/authenticationcaptchaaction_module.rst", "collections/netscaler/adc/authenticationcertaction_module.rst", "collections/netscaler/adc/authenticationcertpolicy_module.rst", "collections/netscaler/adc/authenticationcitrixauthaction_module.rst", "collections/netscaler/adc/authenticationdfaaction_module.rst", "collections/netscaler/adc/authenticationdfapolicy_module.rst", "collections/netscaler/adc/authenticationemailaction_module.rst", "collections/netscaler/adc/authenticationepaaction_module.rst", "collections/netscaler/adc/authenticationldapaction_module.rst", "collections/netscaler/adc/authenticationldappolicy_module.rst", "collections/netscaler/adc/authenticationlocalpolicy_module.rst", "collections/netscaler/adc/authenticationloginschema_module.rst", "collections/netscaler/adc/authenticationloginschemapolicy_module.rst", "collections/netscaler/adc/authenticationnegotiateaction_module.rst", "collections/netscaler/adc/authenticationnegotiatepolicy_module.rst", "collections/netscaler/adc/authenticationnoauthaction_module.rst", "collections/netscaler/adc/authenticationoauthaction_module.rst", "collections/netscaler/adc/authenticationoauthidppolicy_module.rst", "collections/netscaler/adc/authenticationoauthidpprofile_module.rst", "collections/netscaler/adc/authenticationpolicy_module.rst", "collections/netscaler/adc/authenticationpolicylabel_authenticationpolicy_binding_module.rst", "collections/netscaler/adc/authenticationpolicylabel_module.rst", "collections/netscaler/adc/authenticationpushservice_module.rst", "collections/netscaler/adc/authenticationradiusaction_module.rst", "collections/netscaler/adc/authenticationradiuspolicy_module.rst", "collections/netscaler/adc/authenticationsamlaction_module.rst", "collections/netscaler/adc/authenticationsamlidppolicy_module.rst", "collections/netscaler/adc/authenticationsamlidpprofile_module.rst", "collections/netscaler/adc/authenticationsamlpolicy_module.rst", "collections/netscaler/adc/authenticationsmartaccesspolicy_module.rst", "collections/netscaler/adc/authenticationsmartaccessprofile_module.rst", "collections/netscaler/adc/authenticationstorefrontauthaction_module.rst", "collections/netscaler/adc/authenticationtacacsaction_module.rst", "collections/netscaler/adc/authenticationtacacspolicy_module.rst", "collections/netscaler/adc/authenticationvserver_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationcertpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationldappolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationlocalpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationloginschemapolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationnegotiatepolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationoauthidppolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationradiuspolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationsamlidppolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationsamlpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationsmartaccesspolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationtacacspolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationwebauthpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_cachepolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_cspolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_module.rst", "collections/netscaler/adc/authenticationvserver_responderpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_rewritepolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_tmsessionpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_vpnportaltheme_binding_module.rst", "collections/netscaler/adc/authenticationwebauthaction_module.rst", "collections/netscaler/adc/authenticationwebauthpolicy_module.rst", "collections/netscaler/adc/authorizationpolicy_module.rst", "collections/netscaler/adc/authorizationpolicylabel_authorizationpolicy_binding_module.rst", "collections/netscaler/adc/authorizationpolicylabel_module.rst", "collections/netscaler/adc/autoscaleaction_module.rst", "collections/netscaler/adc/autoscalepolicy_module.rst", "collections/netscaler/adc/autoscaleprofile_module.rst", "collections/netscaler/adc/azureapplication_module.rst", "collections/netscaler/adc/azurekeyvault_module.rst", "collections/netscaler/adc/botglobal_botpolicy_binding_module.rst", "collections/netscaler/adc/botpolicy_module.rst", "collections/netscaler/adc/botpolicylabel_botpolicy_binding_module.rst", "collections/netscaler/adc/botpolicylabel_module.rst", "collections/netscaler/adc/botprofile_blacklist_binding_module.rst", "collections/netscaler/adc/botprofile_captcha_binding_module.rst", "collections/netscaler/adc/botprofile_ipreputation_binding_module.rst", "collections/netscaler/adc/botprofile_kmdetectionexpr_binding_module.rst", "collections/netscaler/adc/botprofile_logexpression_binding_module.rst", "collections/netscaler/adc/botprofile_module.rst", "collections/netscaler/adc/botprofile_ratelimit_binding_module.rst", "collections/netscaler/adc/botprofile_tps_binding_module.rst", "collections/netscaler/adc/botprofile_trapinsertionurl_binding_module.rst", "collections/netscaler/adc/botprofile_whitelist_binding_module.rst", "collections/netscaler/adc/botsettings_module.rst", "collections/netscaler/adc/botsignature_module.rst", "collections/netscaler/adc/bridgegroup_module.rst", "collections/netscaler/adc/bridgegroup_nsip6_binding_module.rst", "collections/netscaler/adc/bridgegroup_nsip_binding_module.rst", "collections/netscaler/adc/bridgegroup_vlan_binding_module.rst", "collections/netscaler/adc/bridgetable_module.rst", "collections/netscaler/adc/cachecontentgroup_module.rst", "collections/netscaler/adc/cacheforwardproxy_module.rst", "collections/netscaler/adc/cacheglobal_cachepolicy_binding_module.rst", "collections/netscaler/adc/cacheobject_module.rst", "collections/netscaler/adc/cacheparameter_module.rst", "collections/netscaler/adc/cachepolicy_module.rst", "collections/netscaler/adc/cachepolicylabel_cachepolicy_binding_module.rst", "collections/netscaler/adc/cachepolicylabel_module.rst", "collections/netscaler/adc/cacheselector_module.rst", "collections/netscaler/adc/callhome_module.rst", "collections/netscaler/adc/change_password_module.rst", "collections/netscaler/adc/channel_interface_binding_module.rst", "collections/netscaler/adc/channel_module.rst", "collections/netscaler/adc/cloudallowedngsticketprofile_module.rst", "collections/netscaler/adc/cloudawsparam_module.rst", "collections/netscaler/adc/cloudcredential_module.rst", "collections/netscaler/adc/cloudngsparameter_module.rst", "collections/netscaler/adc/cloudparameter_module.rst", "collections/netscaler/adc/cloudparaminternal_module.rst", "collections/netscaler/adc/cloudprofile_module.rst", "collections/netscaler/adc/cloudtunnelparameter_module.rst", "collections/netscaler/adc/cloudtunnelvserver_module.rst", "collections/netscaler/adc/cluster_module.rst", "collections/netscaler/adc/clusterfiles_module.rst", "collections/netscaler/adc/clusterinstance_module.rst", "collections/netscaler/adc/clusternode_module.rst", "collections/netscaler/adc/clusternode_routemonitor_binding_module.rst", "collections/netscaler/adc/clusternodegroup_authenticationvserver_binding_module.rst", "collections/netscaler/adc/clusternodegroup_clusternode_binding_module.rst", "collections/netscaler/adc/clusternodegroup_crvserver_binding_module.rst", "collections/netscaler/adc/clusternodegroup_csvserver_binding_module.rst", "collections/netscaler/adc/clusternodegroup_gslbsite_binding_module.rst", "collections/netscaler/adc/clusternodegroup_gslbvserver_binding_module.rst", "collections/netscaler/adc/clusternodegroup_lbvserver_binding_module.rst", "collections/netscaler/adc/clusternodegroup_module.rst", "collections/netscaler/adc/clusternodegroup_nslimitidentifier_binding_module.rst", "collections/netscaler/adc/clusternodegroup_service_binding_module.rst", "collections/netscaler/adc/clusternodegroup_streamidentifier_binding_module.rst", "collections/netscaler/adc/clusternodegroup_vpnvserver_binding_module.rst", "collections/netscaler/adc/clusterpropstatus_module.rst", "collections/netscaler/adc/cmpaction_module.rst", "collections/netscaler/adc/cmpglobal_cmppolicy_binding_module.rst", "collections/netscaler/adc/cmpparameter_module.rst", "collections/netscaler/adc/cmppolicy_module.rst", "collections/netscaler/adc/cmppolicylabel_cmppolicy_binding_module.rst", "collections/netscaler/adc/cmppolicylabel_module.rst", "collections/netscaler/adc/contentinspectionaction_module.rst", "collections/netscaler/adc/contentinspectioncallout_module.rst", "collections/netscaler/adc/contentinspectionglobal_contentinspectionpolicy_binding_module.rst", "collections/netscaler/adc/contentinspectionparameter_module.rst", "collections/netscaler/adc/contentinspectionpolicy_module.rst", "collections/netscaler/adc/contentinspectionpolicylabel_contentinspectionpolicy_binding_module.rst", "collections/netscaler/adc/contentinspectionpolicylabel_module.rst", "collections/netscaler/adc/contentinspectionprofile_module.rst", "collections/netscaler/adc/crpolicy_module.rst", "collections/netscaler/adc/crvserver_analyticsprofile_binding_module.rst", "collections/netscaler/adc/crvserver_appflowpolicy_binding_module.rst", "collections/netscaler/adc/crvserver_appfwpolicy_binding_module.rst", "collections/netscaler/adc/crvserver_appqoepolicy_binding_module.rst", "collections/netscaler/adc/crvserver_cachepolicy_binding_module.rst", "collections/netscaler/adc/crvserver_cmppolicy_binding_module.rst", "collections/netscaler/adc/crvserver_crpolicy_binding_module.rst", "collections/netscaler/adc/crvserver_cspolicy_binding_module.rst", "collections/netscaler/adc/crvserver_feopolicy_binding_module.rst", "collections/netscaler/adc/crvserver_icapolicy_binding_module.rst", "collections/netscaler/adc/crvserver_lbvserver_binding_module.rst", "collections/netscaler/adc/crvserver_module.rst", "collections/netscaler/adc/crvserver_policymap_binding_module.rst", "collections/netscaler/adc/crvserver_responderpolicy_binding_module.rst", "collections/netscaler/adc/crvserver_rewritepolicy_binding_module.rst", "collections/netscaler/adc/crvserver_spilloverpolicy_binding_module.rst", "collections/netscaler/adc/csaction_module.rst", "collections/netscaler/adc/csparameter_module.rst", "collections/netscaler/adc/cspolicy_module.rst", "collections/netscaler/adc/cspolicylabel_cspolicy_binding_module.rst", "collections/netscaler/adc/cspolicylabel_module.rst", "collections/netscaler/adc/csvserver_analyticsprofile_binding_module.rst", "collections/netscaler/adc/csvserver_appflowpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_appfwpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_appqoepolicy_binding_module.rst", "collections/netscaler/adc/csvserver_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_authorizationpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_botpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_cachepolicy_binding_module.rst", "collections/netscaler/adc/csvserver_cmppolicy_binding_module.rst", "collections/netscaler/adc/csvserver_contentinspectionpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_cspolicy_binding_module.rst", "collections/netscaler/adc/csvserver_domain_binding_module.rst", "collections/netscaler/adc/csvserver_feopolicy_binding_module.rst", "collections/netscaler/adc/csvserver_gslbvserver_binding_module.rst", "collections/netscaler/adc/csvserver_lbvserver_binding_module.rst", "collections/netscaler/adc/csvserver_module.rst", "collections/netscaler/adc/csvserver_responderpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_rewritepolicy_binding_module.rst", "collections/netscaler/adc/csvserver_spilloverpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_tmtrafficpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_transformpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_vpnvserver_binding_module.rst", "collections/netscaler/adc/dbdbprofile_module.rst", "collections/netscaler/adc/dbuser_module.rst", "collections/netscaler/adc/dnsaaaarec_module.rst", "collections/netscaler/adc/dnsaction64_module.rst", "collections/netscaler/adc/dnsaction_module.rst", "collections/netscaler/adc/dnsaddrec_module.rst", "collections/netscaler/adc/dnscaarec_module.rst", "collections/netscaler/adc/dnscnamerec_module.rst", "collections/netscaler/adc/dnsglobal_dnspolicy_binding_module.rst", "collections/netscaler/adc/dnskey_module.rst", "collections/netscaler/adc/dnsmxrec_module.rst", "collections/netscaler/adc/dnsnameserver_module.rst", "collections/netscaler/adc/dnsnaptrrec_module.rst", "collections/netscaler/adc/dnsnsrec_module.rst", "collections/netscaler/adc/dnsparameter_module.rst", "collections/netscaler/adc/dnspolicy64_module.rst", "collections/netscaler/adc/dnspolicy_module.rst", "collections/netscaler/adc/dnspolicylabel_dnspolicy_binding_module.rst", "collections/netscaler/adc/dnspolicylabel_module.rst", "collections/netscaler/adc/dnsprofile_module.rst", "collections/netscaler/adc/dnsproxyrecords_module.rst", "collections/netscaler/adc/dnsptrrec_module.rst", "collections/netscaler/adc/dnssoarec_module.rst", "collections/netscaler/adc/dnssrvrec_module.rst", "collections/netscaler/adc/dnssubnetcache_module.rst", "collections/netscaler/adc/dnssuffix_module.rst", "collections/netscaler/adc/dnstxtrec_module.rst", "collections/netscaler/adc/dnsview_module.rst", "collections/netscaler/adc/dnszone_module.rst", "collections/netscaler/adc/endpointinfo_module.rst", "collections/netscaler/adc/extendedmemoryparam_module.rst", "collections/netscaler/adc/feoaction_module.rst", "collections/netscaler/adc/feoglobal_feopolicy_binding_module.rst", "collections/netscaler/adc/feoparameter_module.rst", "collections/netscaler/adc/feopolicy_module.rst", "collections/netscaler/adc/fis_channel_binding_module.rst", "collections/netscaler/adc/fis_interface_binding_module.rst", "collections/netscaler/adc/fis_module.rst", "collections/netscaler/adc/forwardingsession_module.rst", "collections/netscaler/adc/gslbconfig_module.rst", "collections/netscaler/adc/gslbldnsentries_module.rst", "collections/netscaler/adc/gslbldnsentry_module.rst", "collections/netscaler/adc/gslbparameter_module.rst", "collections/netscaler/adc/gslbservice_dnsview_binding_module.rst", "collections/netscaler/adc/gslbservice_lbmonitor_binding_module.rst", "collections/netscaler/adc/gslbservice_module.rst", "collections/netscaler/adc/gslbservicegroup_gslbservicegroupmember_binding_module.rst", "collections/netscaler/adc/gslbservicegroup_lbmonitor_binding_module.rst", "collections/netscaler/adc/gslbservicegroup_module.rst", "collections/netscaler/adc/gslbsite_module.rst", "collections/netscaler/adc/gslbvserver_domain_binding_module.rst", "collections/netscaler/adc/gslbvserver_gslbservice_binding_module.rst", "collections/netscaler/adc/gslbvserver_gslbservicegroup_binding_module.rst", "collections/netscaler/adc/gslbvserver_lbpolicy_binding_module.rst", "collections/netscaler/adc/gslbvserver_module.rst", "collections/netscaler/adc/gslbvserver_spilloverpolicy_binding_module.rst", "collections/netscaler/adc/hafailover_module.rst", "collections/netscaler/adc/hafiles_module.rst", "collections/netscaler/adc/hanode_module.rst", "collections/netscaler/adc/hanode_routemonitor6_binding_module.rst", "collections/netscaler/adc/hanode_routemonitor_binding_module.rst", "collections/netscaler/adc/hasync_module.rst", "collections/netscaler/adc/icaaccessprofile_module.rst", "collections/netscaler/adc/icaaction_module.rst", "collections/netscaler/adc/icaglobal_icapolicy_binding_module.rst", "collections/netscaler/adc/icalatencyprofile_module.rst", "collections/netscaler/adc/icaparameter_module.rst", "collections/netscaler/adc/icapolicy_module.rst", "collections/netscaler/adc/inat_module.rst", "collections/netscaler/adc/inatparam_module.rst", "collections/netscaler/adc/index.rst", "collections/netscaler/adc/install_module.rst", "collections/netscaler/adc/interfacepair_module.rst", "collections/netscaler/adc/ip6tunnel_module.rst", "collections/netscaler/adc/ip6tunnelparam_module.rst", "collections/netscaler/adc/ipsecalgprofile_module.rst", "collections/netscaler/adc/ipsecalgsession_module.rst", "collections/netscaler/adc/ipsecparameter_module.rst", "collections/netscaler/adc/ipsecprofile_module.rst", "collections/netscaler/adc/ipset_module.rst", "collections/netscaler/adc/ipset_nsip6_binding_module.rst", "collections/netscaler/adc/ipset_nsip_binding_module.rst", "collections/netscaler/adc/iptunnel_module.rst", "collections/netscaler/adc/iptunnelparam_module.rst", "collections/netscaler/adc/ipv6_module.rst", "collections/netscaler/adc/l2param_module.rst", "collections/netscaler/adc/l3param_module.rst", "collections/netscaler/adc/l4param_module.rst", "collections/netscaler/adc/lacp_module.rst", "collections/netscaler/adc/lbaction_module.rst", "collections/netscaler/adc/lbglobal_lbpolicy_binding_module.rst", "collections/netscaler/adc/lbgroup_lbvserver_binding_module.rst", "collections/netscaler/adc/lbgroup_module.rst", "collections/netscaler/adc/lbmetrictable_metric_binding_module.rst", "collections/netscaler/adc/lbmetrictable_module.rst", "collections/netscaler/adc/lbmonitor_metric_binding_module.rst", "collections/netscaler/adc/lbmonitor_module.rst", "collections/netscaler/adc/lbmonitor_sslcertkey_binding_module.rst", "collections/netscaler/adc/lbparameter_module.rst", "collections/netscaler/adc/lbpersistentsessions_module.rst", "collections/netscaler/adc/lbpolicy_module.rst", "collections/netscaler/adc/lbpolicylabel_lbpolicy_binding_module.rst", "collections/netscaler/adc/lbpolicylabel_module.rst", "collections/netscaler/adc/lbprofile_module.rst", "collections/netscaler/adc/lbroute6_module.rst", "collections/netscaler/adc/lbroute_module.rst", "collections/netscaler/adc/lbsipparameters_module.rst", "collections/netscaler/adc/lbvserver_analyticsprofile_binding_module.rst", "collections/netscaler/adc/lbvserver_appflowpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_appfwpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_appqoepolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_authorizationpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_botpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_cachepolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_cmppolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_contentinspectionpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_dnspolicy64_binding_module.rst", "collections/netscaler/adc/lbvserver_feopolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_lbpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_module.rst", "collections/netscaler/adc/lbvserver_responderpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_rewritepolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_service_binding_module.rst", "collections/netscaler/adc/lbvserver_servicegroup_binding_module.rst", "collections/netscaler/adc/lbvserver_spilloverpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_tmtrafficpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_transformpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_videooptimizationdetectionpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_videooptimizationpacingpolicy_binding_module.rst", "collections/netscaler/adc/lbwlm_lbvserver_binding_module.rst", "collections/netscaler/adc/lbwlm_module.rst", "collections/netscaler/adc/linkset_channel_binding_module.rst", "collections/netscaler/adc/linkset_interface_binding_module.rst", "collections/netscaler/adc/linkset_module.rst", "collections/netscaler/adc/lldpneighbors_module.rst", "collections/netscaler/adc/lldpparam_module.rst", "collections/netscaler/adc/location_module.rst", "collections/netscaler/adc/locationfile6_module.rst", "collections/netscaler/adc/locationfile_module.rst", "collections/netscaler/adc/locationparameter_module.rst", "collections/netscaler/adc/login_module.rst", "collections/netscaler/adc/logout_module.rst", "collections/netscaler/adc/lsnappsattributes_module.rst", "collections/netscaler/adc/lsnappsprofile_lsnappsattributes_binding_module.rst", "collections/netscaler/adc/lsnappsprofile_module.rst", "collections/netscaler/adc/lsnappsprofile_port_binding_module.rst", "collections/netscaler/adc/lsnclient_module.rst", "collections/netscaler/adc/lsnclient_network6_binding_module.rst", "collections/netscaler/adc/lsnclient_network_binding_module.rst", "collections/netscaler/adc/lsnclient_nsacl6_binding_module.rst", "collections/netscaler/adc/lsnclient_nsacl_binding_module.rst", "collections/netscaler/adc/lsngroup_ipsecalgprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_lsnappsprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_lsnhttphdrlogprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_lsnlogprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_lsnpool_binding_module.rst", "collections/netscaler/adc/lsngroup_lsnrtspalgprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_lsnsipalgprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_lsntransportprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_module.rst", "collections/netscaler/adc/lsngroup_pcpserver_binding_module.rst", "collections/netscaler/adc/lsnhttphdrlogprofile_module.rst", "collections/netscaler/adc/lsnip6profile_module.rst", "collections/netscaler/adc/lsnlogprofile_module.rst", "collections/netscaler/adc/lsnparameter_module.rst", "collections/netscaler/adc/lsnpool_lsnip_binding_module.rst", "collections/netscaler/adc/lsnpool_module.rst", "collections/netscaler/adc/lsnrtspalgprofile_module.rst", "collections/netscaler/adc/lsnrtspalgsession_module.rst", "collections/netscaler/adc/lsnsession_module.rst", "collections/netscaler/adc/lsnsipalgcall_module.rst", "collections/netscaler/adc/lsnsipalgprofile_module.rst", "collections/netscaler/adc/lsnstatic_module.rst", "collections/netscaler/adc/lsntransportprofile_module.rst", "collections/netscaler/adc/mapbmr_bmrv4network_binding_module.rst", "collections/netscaler/adc/mapbmr_module.rst", "collections/netscaler/adc/mapdmr_module.rst", "collections/netscaler/adc/mapdomain_mapbmr_binding_module.rst", "collections/netscaler/adc/mapdomain_module.rst", "collections/netscaler/adc/nat64_module.rst", "collections/netscaler/adc/nat64param_module.rst", "collections/netscaler/adc/nd6_module.rst", "collections/netscaler/adc/nd6ravariables_module.rst", "collections/netscaler/adc/nd6ravariables_onlinkipv6prefix_binding_module.rst", "collections/netscaler/adc/netbridge_iptunnel_binding_module.rst", "collections/netscaler/adc/netbridge_module.rst", "collections/netscaler/adc/netbridge_nsip6_binding_module.rst", "collections/netscaler/adc/netbridge_nsip_binding_module.rst", "collections/netscaler/adc/netbridge_vlan_binding_module.rst", "collections/netscaler/adc/netprofile_module.rst", "collections/netscaler/adc/netprofile_natrule_binding_module.rst", "collections/netscaler/adc/netprofile_srcportset_binding_module.rst", "collections/netscaler/adc/nsacls6_module.rst", "collections/netscaler/adc/nsacls_module.rst", "collections/netscaler/adc/nsappflowcollector_module.rst", "collections/netscaler/adc/nsappflowparam_module.rst", "collections/netscaler/adc/nsaptlicense_module.rst", "collections/netscaler/adc/nsassignment_module.rst", "collections/netscaler/adc/nscapacity_module.rst", "collections/netscaler/adc/nscentralmanagementserver_module.rst", "collections/netscaler/adc/nsconfig_module.rst", "collections/netscaler/adc/nsconsoleloginprompt_module.rst", "collections/netscaler/adc/nscqaparam_module.rst", "collections/netscaler/adc/nsdhcpparams_module.rst", "collections/netscaler/adc/nsdiameter_module.rst", "collections/netscaler/adc/nsencryptionkey_module.rst", "collections/netscaler/adc/nsencryptionparams_module.rst", "collections/netscaler/adc/nsextension_module.rst", "collections/netscaler/adc/nsfeature_module.rst", "collections/netscaler/adc/nshmackey_module.rst", "collections/netscaler/adc/nshostname_module.rst", "collections/netscaler/adc/nshttpparam_module.rst", "collections/netscaler/adc/nshttpprofile_module.rst", "collections/netscaler/adc/nsicapprofile_module.rst", "collections/netscaler/adc/nsip6_module.rst", "collections/netscaler/adc/nsip_module.rst", "collections/netscaler/adc/nslicenseparameters_module.rst", "collections/netscaler/adc/nslicenseproxyserver_module.rst", "collections/netscaler/adc/nslicenseserver_module.rst", "collections/netscaler/adc/nslimitidentifier_module.rst", "collections/netscaler/adc/nslimitselector_module.rst", "collections/netscaler/adc/nslimitsessions_module.rst", "collections/netscaler/adc/nsmigration_module.rst", "collections/netscaler/adc/nsmode_module.rst", "collections/netscaler/adc/nsparam_module.rst", "collections/netscaler/adc/nspartition_bridgegroup_binding_module.rst", "collections/netscaler/adc/nspartition_module.rst", "collections/netscaler/adc/nspartition_vlan_binding_module.rst", "collections/netscaler/adc/nspartition_vxlan_binding_module.rst", "collections/netscaler/adc/nsratecontrol_module.rst", "collections/netscaler/adc/nsrpcnode_module.rst", "collections/netscaler/adc/nsservicefunction_module.rst", "collections/netscaler/adc/nsservicepath_module.rst", "collections/netscaler/adc/nsservicepath_nsservicefunction_binding_module.rst", "collections/netscaler/adc/nssimpleacl6_module.rst", "collections/netscaler/adc/nssimpleacl_module.rst", "collections/netscaler/adc/nsspparams_module.rst", "collections/netscaler/adc/nsstats_module.rst", "collections/netscaler/adc/nssurgeq_module.rst", "collections/netscaler/adc/nstcpbufparam_module.rst", "collections/netscaler/adc/nstcpparam_module.rst", "collections/netscaler/adc/nstcpprofile_module.rst", "collections/netscaler/adc/nstimeout_module.rst", "collections/netscaler/adc/nstimer_autoscalepolicy_binding_module.rst", "collections/netscaler/adc/nstimer_module.rst", "collections/netscaler/adc/nstrace_module.rst", "collections/netscaler/adc/nstrafficdomain_bridgegroup_binding_module.rst", "collections/netscaler/adc/nstrafficdomain_module.rst", "collections/netscaler/adc/nstrafficdomain_vlan_binding_module.rst", "collections/netscaler/adc/nstrafficdomain_vxlan_binding_module.rst", "collections/netscaler/adc/nsvariable_module.rst", "collections/netscaler/adc/nsvpxparam_module.rst", "collections/netscaler/adc/nsweblogparam_module.rst", "collections/netscaler/adc/nsxmlnamespace_module.rst", "collections/netscaler/adc/ntpparam_module.rst", "collections/netscaler/adc/ntpserver_module.rst", "collections/netscaler/adc/onlinkipv6prefix_module.rst", "collections/netscaler/adc/pcpprofile_module.rst", "collections/netscaler/adc/pcpserver_module.rst", "collections/netscaler/adc/ping6_module.rst", "collections/netscaler/adc/ping_module.rst", "collections/netscaler/adc/policydataset_module.rst", "collections/netscaler/adc/policydataset_value_binding_module.rst", "collections/netscaler/adc/policyexpression_module.rst", "collections/netscaler/adc/policyhttpcallout_module.rst", "collections/netscaler/adc/policymap_module.rst", "collections/netscaler/adc/policyparam_module.rst", "collections/netscaler/adc/policypatset_module.rst", "collections/netscaler/adc/policypatset_pattern_binding_module.rst", "collections/netscaler/adc/policypatsetfile_module.rst", "collections/netscaler/adc/policystringmap_module.rst", "collections/netscaler/adc/policystringmap_pattern_binding_module.rst", "collections/netscaler/adc/policyurlset_module.rst", "collections/netscaler/adc/protocolhttpband_module.rst", "collections/netscaler/adc/ptp_module.rst", "collections/netscaler/adc/quicbridgeprofile_module.rst", "collections/netscaler/adc/quicparam_module.rst", "collections/netscaler/adc/quicprofile_module.rst", "collections/netscaler/adc/radiusnode_module.rst", "collections/netscaler/adc/rdpclientprofile_module.rst", "collections/netscaler/adc/rdpconnections_module.rst", "collections/netscaler/adc/rdpserverprofile_module.rst", "collections/netscaler/adc/reboot_module.rst", "collections/netscaler/adc/reportingconfig_module.rst", "collections/netscaler/adc/reputationsettings_module.rst", "collections/netscaler/adc/responderaction_module.rst", "collections/netscaler/adc/responderglobal_responderpolicy_binding_module.rst", "collections/netscaler/adc/responderhtmlpage_module.rst", "collections/netscaler/adc/responderparam_module.rst", "collections/netscaler/adc/responderpolicy_module.rst", "collections/netscaler/adc/responderpolicylabel_module.rst", "collections/netscaler/adc/responderpolicylabel_responderpolicy_binding_module.rst", "collections/netscaler/adc/rewriteaction_module.rst", "collections/netscaler/adc/rewriteglobal_rewritepolicy_binding_module.rst", "collections/netscaler/adc/rewriteparam_module.rst", "collections/netscaler/adc/rewritepolicy_module.rst", "collections/netscaler/adc/rewritepolicylabel_module.rst", "collections/netscaler/adc/rewritepolicylabel_rewritepolicy_binding_module.rst", "collections/netscaler/adc/rnat6_module.rst", "collections/netscaler/adc/rnat6_nsip6_binding_module.rst", "collections/netscaler/adc/rnat_module.rst", "collections/netscaler/adc/rnat_nsip_binding_module.rst", "collections/netscaler/adc/rnat_retainsourceportset_binding_module.rst", "collections/netscaler/adc/rnatglobal_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/rnatparam_module.rst", "collections/netscaler/adc/rnatsession_module.rst", "collections/netscaler/adc/route6_module.rst", "collections/netscaler/adc/route_module.rst", "collections/netscaler/adc/routerdynamicrouting_module.rst", "collections/netscaler/adc/rsskeytype_module.rst", "collections/netscaler/adc/server_module.rst", "collections/netscaler/adc/service_lbmonitor_binding_module.rst", "collections/netscaler/adc/service_module.rst", "collections/netscaler/adc/servicegroup_lbmonitor_binding_module.rst", "collections/netscaler/adc/servicegroup_module.rst", "collections/netscaler/adc/servicegroup_servicegroupmember_binding_module.rst", "collections/netscaler/adc/smppparam_module.rst", "collections/netscaler/adc/smppuser_module.rst", "collections/netscaler/adc/snmpalarm_module.rst", "collections/netscaler/adc/snmpcommunity_module.rst", "collections/netscaler/adc/snmpengineid_module.rst", "collections/netscaler/adc/snmpgroup_module.rst", "collections/netscaler/adc/snmpmanager_module.rst", "collections/netscaler/adc/snmpmib_module.rst", "collections/netscaler/adc/snmpoption_module.rst", "collections/netscaler/adc/snmptrap_module.rst", "collections/netscaler/adc/snmptrap_snmpuser_binding_module.rst", "collections/netscaler/adc/snmpuser_module.rst", "collections/netscaler/adc/snmpview_module.rst", "collections/netscaler/adc/spilloveraction_module.rst", "collections/netscaler/adc/spilloverpolicy_module.rst", "collections/netscaler/adc/sslaction_module.rst", "collections/netscaler/adc/sslcacertgroup_module.rst", "collections/netscaler/adc/sslcacertgroup_sslcertkey_binding_module.rst", "collections/netscaler/adc/sslcert_module.rst", "collections/netscaler/adc/sslcertbundle_module.rst", "collections/netscaler/adc/sslcertfile_module.rst", "collections/netscaler/adc/sslcertificatechain_module.rst", "collections/netscaler/adc/sslcertkey_module.rst", "collections/netscaler/adc/sslcertkey_sslocspresponder_binding_module.rst", "collections/netscaler/adc/sslcertkeybundle_module.rst", "collections/netscaler/adc/sslcertreq_module.rst", "collections/netscaler/adc/sslcipher_module.rst", "collections/netscaler/adc/sslcipher_sslciphersuite_binding_module.rst", "collections/netscaler/adc/sslcrl_module.rst", "collections/netscaler/adc/sslcrlfile_module.rst", "collections/netscaler/adc/ssldhfile_module.rst", "collections/netscaler/adc/ssldhparam_module.rst", "collections/netscaler/adc/ssldtlsprofile_module.rst", "collections/netscaler/adc/sslecdsakey_module.rst", "collections/netscaler/adc/sslfips_module.rst", "collections/netscaler/adc/sslfipskey_module.rst", "collections/netscaler/adc/sslfipssimsource_module.rst", "collections/netscaler/adc/sslfipssimtarget_module.rst", "collections/netscaler/adc/sslglobal_sslpolicy_binding_module.rst", "collections/netscaler/adc/sslhsmkey_module.rst", "collections/netscaler/adc/sslkeyfile_module.rst", "collections/netscaler/adc/ssllogprofile_module.rst", "collections/netscaler/adc/sslocspresponder_module.rst", "collections/netscaler/adc/sslparameter_module.rst", "collections/netscaler/adc/sslpkcs12_module.rst", "collections/netscaler/adc/sslpkcs8_module.rst", "collections/netscaler/adc/sslpolicy_module.rst", "collections/netscaler/adc/sslpolicylabel_module.rst", "collections/netscaler/adc/sslpolicylabel_sslpolicy_binding_module.rst", "collections/netscaler/adc/sslprofile_ecccurve_binding_module.rst", "collections/netscaler/adc/sslprofile_module.rst", "collections/netscaler/adc/sslprofile_sslcertkey_binding_module.rst", "collections/netscaler/adc/sslprofile_sslcipher_binding_module.rst", "collections/netscaler/adc/sslprofile_sslciphersuite_binding_module.rst", "collections/netscaler/adc/sslrsakey_module.rst", "collections/netscaler/adc/sslservice_ecccurve_binding_module.rst", "collections/netscaler/adc/sslservice_module.rst", "collections/netscaler/adc/sslservice_sslcertkey_binding_module.rst", "collections/netscaler/adc/sslservice_sslcipher_binding_module.rst", "collections/netscaler/adc/sslservice_sslciphersuite_binding_module.rst", "collections/netscaler/adc/sslservice_sslpolicy_binding_module.rst", "collections/netscaler/adc/sslservicegroup_ecccurve_binding_module.rst", "collections/netscaler/adc/sslservicegroup_module.rst", "collections/netscaler/adc/sslservicegroup_sslcertkey_binding_module.rst", "collections/netscaler/adc/sslservicegroup_sslcipher_binding_module.rst", "collections/netscaler/adc/sslservicegroup_sslciphersuite_binding_module.rst", "collections/netscaler/adc/sslvserver_ecccurve_binding_module.rst", "collections/netscaler/adc/sslvserver_module.rst", "collections/netscaler/adc/sslvserver_sslcertkey_binding_module.rst", "collections/netscaler/adc/sslvserver_sslcertkeybundle_binding_module.rst", "collections/netscaler/adc/sslvserver_sslcipher_binding_module.rst", "collections/netscaler/adc/sslvserver_sslciphersuite_binding_module.rst", "collections/netscaler/adc/sslvserver_sslpolicy_binding_module.rst", "collections/netscaler/adc/sslwrapkey_module.rst", "collections/netscaler/adc/streamidentifier_module.rst", "collections/netscaler/adc/streamselector_module.rst", "collections/netscaler/adc/streamsession_module.rst", "collections/netscaler/adc/subscribergxinterface_module.rst", "collections/netscaler/adc/subscriberparam_module.rst", "collections/netscaler/adc/subscriberprofile_module.rst", "collections/netscaler/adc/subscriberradiusinterface_module.rst", "collections/netscaler/adc/subscribersessions_module.rst", "collections/netscaler/adc/systemadmuserinfo_module.rst", "collections/netscaler/adc/systembackup_module.rst", "collections/netscaler/adc/systemcmdpolicy_module.rst", "collections/netscaler/adc/systemcollectionparam_module.rst", "collections/netscaler/adc/systemcpuparam_module.rst", "collections/netscaler/adc/systementitydata_module.rst", "collections/netscaler/adc/systemextramgmtcpu_module.rst", "collections/netscaler/adc/systemfile_module.rst", "collections/netscaler/adc/systemglobal_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/systemglobal_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/systemglobal_authenticationldappolicy_binding_module.rst", "collections/netscaler/adc/systemglobal_authenticationlocalpolicy_binding_module.rst", "collections/netscaler/adc/systemglobal_authenticationpolicy_binding_module.rst", "collections/netscaler/adc/systemglobal_authenticationradiuspolicy_binding_module.rst", "collections/netscaler/adc/systemglobal_authenticationtacacspolicy_binding_module.rst", "collections/netscaler/adc/systemgroup_module.rst", "collections/netscaler/adc/systemgroup_nspartition_binding_module.rst", "collections/netscaler/adc/systemgroup_systemcmdpolicy_binding_module.rst", "collections/netscaler/adc/systemgroup_systemuser_binding_module.rst", "collections/netscaler/adc/systemhwerror_module.rst", "collections/netscaler/adc/systemkek_module.rst", "collections/netscaler/adc/systemparameter_module.rst", "collections/netscaler/adc/systemrestorepoint_module.rst", "collections/netscaler/adc/systemsession_module.rst", "collections/netscaler/adc/systemsshkey_module.rst", "collections/netscaler/adc/systemuser_module.rst", "collections/netscaler/adc/systemuser_nspartition_binding_module.rst", "collections/netscaler/adc/systemuser_systemcmdpolicy_binding_module.rst", "collections/netscaler/adc/tmformssoaction_module.rst", "collections/netscaler/adc/tmglobal_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/tmglobal_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/tmglobal_tmsessionpolicy_binding_module.rst", "collections/netscaler/adc/tmglobal_tmtrafficpolicy_binding_module.rst", "collections/netscaler/adc/tmsamlssoprofile_module.rst", "collections/netscaler/adc/tmsessionaction_module.rst", "collections/netscaler/adc/tmsessionparameter_module.rst", "collections/netscaler/adc/tmsessionpolicy_module.rst", "collections/netscaler/adc/tmtrafficaction_module.rst", "collections/netscaler/adc/tmtrafficpolicy_module.rst", "collections/netscaler/adc/traceroute6_module.rst", "collections/netscaler/adc/traceroute_module.rst", "collections/netscaler/adc/transformaction_module.rst", "collections/netscaler/adc/transformglobal_transformpolicy_binding_module.rst", "collections/netscaler/adc/transformpolicy_module.rst", "collections/netscaler/adc/transformpolicylabel_module.rst", "collections/netscaler/adc/transformpolicylabel_transformpolicy_binding_module.rst", "collections/netscaler/adc/transformprofile_module.rst", "collections/netscaler/adc/tunnelglobal_tunneltrafficpolicy_binding_module.rst", "collections/netscaler/adc/tunneltrafficpolicy_module.rst", "collections/netscaler/adc/ulfdserver_module.rst", "collections/netscaler/adc/urlfilteringcategorization_module.rst", "collections/netscaler/adc/urlfilteringparameter_module.rst", "collections/netscaler/adc/userprotocol_module.rst", "collections/netscaler/adc/uservserver_module.rst", "collections/netscaler/adc/videooptimizationdetectionaction_module.rst", "collections/netscaler/adc/videooptimizationdetectionpolicy_module.rst", "collections/netscaler/adc/videooptimizationdetectionpolicylabel_module.rst", "collections/netscaler/adc/videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_binding_module.rst", "collections/netscaler/adc/videooptimizationglobaldetection_videooptimizationdetectionpolicy_binding_module.rst", "collections/netscaler/adc/videooptimizationglobalpacing_videooptimizationpacingpolicy_binding_module.rst", "collections/netscaler/adc/videooptimizationpacingaction_module.rst", "collections/netscaler/adc/videooptimizationpacingpolicy_module.rst", "collections/netscaler/adc/videooptimizationpacingpolicylabel_module.rst", "collections/netscaler/adc/videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_binding_module.rst", "collections/netscaler/adc/videooptimizationparameter_module.rst", "collections/netscaler/adc/vlan_channel_binding_module.rst", "collections/netscaler/adc/vlan_interface_binding_module.rst", "collections/netscaler/adc/vlan_linkset_binding_module.rst", "collections/netscaler/adc/vlan_module.rst", "collections/netscaler/adc/vlan_nsip6_binding_module.rst", "collections/netscaler/adc/vlan_nsip_binding_module.rst", "collections/netscaler/adc/vpnalwaysonprofile_module.rst", "collections/netscaler/adc/vpnclientlessaccesspolicy_module.rst", "collections/netscaler/adc/vpnclientlessaccessprofile_module.rst", "collections/netscaler/adc/vpnepaprofile_module.rst", "collections/netscaler/adc/vpneula_module.rst", "collections/netscaler/adc/vpnformssoaction_module.rst", "collections/netscaler/adc/vpnglobal_appcontroller_binding_module.rst", "collections/netscaler/adc/vpnglobal_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationcertpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationldappolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationlocalpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationnegotiatepolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationradiuspolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationsamlpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationtacacspolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_domain_binding_module.rst", "collections/netscaler/adc/vpnglobal_intranetip6_binding_module.rst", "collections/netscaler/adc/vpnglobal_intranetip_binding_module.rst", "collections/netscaler/adc/vpnglobal_sharefileserver_binding_module.rst", "collections/netscaler/adc/vpnglobal_sslcertkey_binding_module.rst", "collections/netscaler/adc/vpnglobal_staserver_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnclientlessaccesspolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpneula_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnintranetapplication_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnnexthopserver_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnportaltheme_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnsessionpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpntrafficpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnurl_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnurlpolicy_binding_module.rst", "collections/netscaler/adc/vpnicaconnection_module.rst", "collections/netscaler/adc/vpnintranetapplication_module.rst", "collections/netscaler/adc/vpnnexthopserver_module.rst", "collections/netscaler/adc/vpnparameter_module.rst", "collections/netscaler/adc/vpnpcoipconnection_module.rst", "collections/netscaler/adc/vpnpcoipprofile_module.rst", "collections/netscaler/adc/vpnpcoipvserverprofile_module.rst", "collections/netscaler/adc/vpnportaltheme_module.rst", "collections/netscaler/adc/vpnsamlssoprofile_module.rst", "collections/netscaler/adc/vpnsessionaction_module.rst", "collections/netscaler/adc/vpnsessionpolicy_module.rst", "collections/netscaler/adc/vpntrafficaction_module.rst", "collections/netscaler/adc/vpntrafficpolicy_module.rst", "collections/netscaler/adc/vpnurl_module.rst", "collections/netscaler/adc/vpnurlaction_module.rst", "collections/netscaler/adc/vpnurlpolicy_module.rst", "collections/netscaler/adc/vpnvserver_aaapreauthenticationpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_analyticsprofile_binding_module.rst", "collections/netscaler/adc/vpnvserver_appcontroller_binding_module.rst", "collections/netscaler/adc/vpnvserver_appflowpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationcertpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationdfapolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationldappolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationlocalpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationloginschemapolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationnegotiatepolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationoauthidppolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationradiuspolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationsamlidppolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationsamlpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationtacacspolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationwebauthpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_cachepolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_cspolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_feopolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_icapolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_intranetip6_binding_module.rst", "collections/netscaler/adc/vpnvserver_intranetip_binding_module.rst", "collections/netscaler/adc/vpnvserver_module.rst", "collections/netscaler/adc/vpnvserver_responderpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_rewritepolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_sharefileserver_binding_module.rst", "collections/netscaler/adc/vpnvserver_staserver_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnclientlessaccesspolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnepaprofile_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpneula_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnintranetapplication_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnnexthopserver_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnportaltheme_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnsessionpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpntrafficpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnurl_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnurlpolicy_binding_module.rst", "collections/netscaler/adc/vrid6_channel_binding_module.rst", "collections/netscaler/adc/vrid6_interface_binding_module.rst", "collections/netscaler/adc/vrid6_module.rst", "collections/netscaler/adc/vrid6_trackinterface_binding_module.rst", "collections/netscaler/adc/vrid_channel_binding_module.rst", "collections/netscaler/adc/vrid_interface_binding_module.rst", "collections/netscaler/adc/vrid_module.rst", "collections/netscaler/adc/vrid_trackinterface_binding_module.rst", "collections/netscaler/adc/vridparam_module.rst", "collections/netscaler/adc/vserver_module.rst", "collections/netscaler/adc/vxlan_module.rst", "collections/netscaler/adc/vxlan_nsip6_binding_module.rst", "collections/netscaler/adc/vxlan_nsip_binding_module.rst", "collections/netscaler/adc/vxlan_srcip_binding_module.rst", "collections/netscaler/adc/vxlanvlanmap_module.rst", "collections/netscaler/adc/vxlanvlanmap_vxlan_binding_module.rst", "collections/netscaler/index.rst", "index.rst"], "titles": ["Index of all Collection Environment Variables", "Collection Index", "Index of all Modules", "netscaler.adc.aaacertparams module \u2013 Configuration for certificate parameter resource.", "netscaler.adc.aaaglobal_aaapreauthenticationpolicy_binding module \u2013 Binding Resource definition for describing association between aaaglobal and aaapreauthenticationpolicy resources", "netscaler.adc.aaaglobal_authenticationnegotiateaction_binding module \u2013 Binding Resource definition for describing association between aaaglobal and authenticationnegotiateaction resources", "netscaler.adc.aaagroup_aaauser_binding module \u2013 Binding Resource definition for describing association between aaagroup and aaauser resources", "netscaler.adc.aaagroup_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and auditnslogpolicy resources", "netscaler.adc.aaagroup_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and auditsyslogpolicy resources", "netscaler.adc.aaagroup_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and authorizationpolicy resources", "netscaler.adc.aaagroup_intranetip6_binding module \u2013 Binding Resource definition for describing association between aaagroup and intranetip6 resources", "netscaler.adc.aaagroup_intranetip_binding module \u2013 Binding Resource definition for describing association between aaagroup and intranetip resources", "netscaler.adc.aaagroup module \u2013 Configuration for AAA group resource.", "netscaler.adc.aaagroup_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and tmsessionpolicy resources", "netscaler.adc.aaagroup_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnintranetapplication resources", "netscaler.adc.aaagroup_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnsessionpolicy resources", "netscaler.adc.aaagroup_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpntrafficpolicy resources", "netscaler.adc.aaagroup_vpnurl_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnurl resources", "netscaler.adc.aaagroup_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnurlpolicy resources", "netscaler.adc.aaakcdaccount module \u2013 Configuration for Kerberos constrained delegation account resource.", "netscaler.adc.aaaldapparams module \u2013 Configuration for LDAP parameter resource.", "netscaler.adc.aaaotpparameter module \u2013 Configuration for AAA otpparameter resource.", "netscaler.adc.aaaparameter module \u2013 Configuration for AAA parameter resource.", "netscaler.adc.aaapreauthenticationaction module \u2013 Configuration for pre authentication action resource.", "netscaler.adc.aaapreauthenticationparameter module \u2013 Configuration for pre authentication parameter resource.", "netscaler.adc.aaapreauthenticationpolicy module \u2013 Configuration for pre authentication policy resource.", "netscaler.adc.aaaradiusparams module \u2013 Configuration for RADIUS parameter resource.", "netscaler.adc.aaasession module \u2013 Configuration for active connection resource.", "netscaler.adc.aaassoprofile module \u2013 Configuration for aaa sso profile resource.", "netscaler.adc.aaatacacsparams module \u2013 Configuration for tacacs parameters resource.", "netscaler.adc.aaauser_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and auditnslogpolicy resources", "netscaler.adc.aaauser_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and auditsyslogpolicy resources", "netscaler.adc.aaauser_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and authorizationpolicy resources", "netscaler.adc.aaauser_intranetip6_binding module \u2013 Binding Resource definition for describing association between aaauser and intranetip6 resources", "netscaler.adc.aaauser_intranetip_binding module \u2013 Binding Resource definition for describing association between aaauser and intranetip resources", "netscaler.adc.aaauser module \u2013 Configuration for AAA user resource.", "netscaler.adc.aaauser_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and tmsessionpolicy resources", "netscaler.adc.aaauser_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnintranetapplication resources", "netscaler.adc.aaauser_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnsessionpolicy resources", "netscaler.adc.aaauser_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and vpntrafficpolicy resources", "netscaler.adc.aaauser_vpnurl_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnurl resources", "netscaler.adc.aaauser_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnurlpolicy resources", "netscaler.adc.admparameter module \u2013 Configuration for ADM parameter resource.", "netscaler.adc.analyticsglobal_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between analyticsglobal and analyticsprofile resources", "netscaler.adc.analyticsprofile module \u2013 Configuration for Analytics profile resource.", "netscaler.adc.apispec module \u2013 Configuration for API specification resource.", "netscaler.adc.apispecfile module \u2013 Configuration for API specificationfile resource.", "netscaler.adc.appalgparam module \u2013 Configuration for AppAlg Param resource.", "netscaler.adc.appflowaction_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between appflowaction and analyticsprofile resources", "netscaler.adc.appflowaction module \u2013 Configuration for AppFlow action resource.", "netscaler.adc.appflowcollector module \u2013 Configuration for AppFlow collector resource.", "netscaler.adc.appflowglobal_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between appflowglobal and appflowpolicy resources", "netscaler.adc.appflowparam module \u2013 Configuration for AppFlow parameter resource.", "netscaler.adc.appflowpolicy module \u2013 Configuration for AppFlow policy resource.", "netscaler.adc.appflowpolicylabel_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between appflowpolicylabel and appflowpolicy resources", "netscaler.adc.appflowpolicylabel module \u2013 Configuration for AppFlow policy label resource.", "netscaler.adc.appfwarchive module \u2013 Configuration for archive resource.", "netscaler.adc.appfwconfidfield module \u2013 Configuration for configured confidential form fields resource.", "netscaler.adc.appfwcustomsettings module \u2013 Configuration for application firewall custom settings XML configuration resource.", "netscaler.adc.appfwfieldtype module \u2013 Configuration for application firewall form field type resource.", "netscaler.adc.appfwglobal_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between appfwglobal and appfwpolicy resources", "netscaler.adc.appfwglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between appfwglobal and auditnslogpolicy resources", "netscaler.adc.appfwglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between appfwglobal and auditsyslogpolicy resources", "netscaler.adc.appfwgrpccontenttype module \u2013 Configuration for gRRPC content type resource.", "netscaler.adc.appfwgrpcwebjsoncontenttype module \u2013 Configuration for gRRPC-Web-json content type resource.", "netscaler.adc.appfwgrpcwebtextcontenttype module \u2013 Configuration for gRRPC-Web-text content type resource.", "netscaler.adc.appfwhtmlerrorpage module \u2013 Configuration for HTML error page resource.", "netscaler.adc.appfwjsoncontenttype module \u2013 Configuration for JSON content type resource.", "netscaler.adc.appfwjsonerrorpage module \u2013 Configuration for JSON error page resource.", "netscaler.adc.appfwlearningdata module \u2013 Configuration for learning data resource.", "netscaler.adc.appfwlearningsettings module \u2013 Configuration for learning settings resource.", "netscaler.adc.appfwmultipartformcontenttype module \u2013 Configuration for Multipart form content type resource.", "netscaler.adc.appfwpolicy module \u2013 Configuration for application firewall policy resource.", "netscaler.adc.appfwpolicylabel_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between appfwpolicylabel and appfwpolicy resources", "netscaler.adc.appfwpolicylabel module \u2013 Configuration for application firewall policy label resource.", "netscaler.adc.appfwprofile_appfwconfidfield_binding module \u2013 Binding Resource definition for describing association between appfwprofile and appfwconfidfield resources", "netscaler.adc.appfwprofile_blockkeyword_binding module \u2013 Binding Resource definition for describing association between appfwprofile and blockkeyword resources", "netscaler.adc.appfwprofile_bypasslist_binding module \u2013 Binding Resource definition for describing association between appfwprofile and bypasslist resources", "netscaler.adc.appfwprofile_cmdinjection_binding module \u2013 Binding Resource definition for describing association between appfwprofile and cmdinjection resources", "netscaler.adc.appfwprofile_contenttype_binding module \u2013 Binding Resource definition for describing association between appfwprofile and contenttype resources", "netscaler.adc.appfwprofile_cookieconsistency_binding module \u2013 Binding Resource definition for describing association between appfwprofile and cookieconsistency resources", "netscaler.adc.appfwprofile_creditcardnumber_binding module \u2013 Binding Resource definition for describing association between appfwprofile and creditcardnumber resources", "netscaler.adc.appfwprofile_crosssitescripting_binding module \u2013 Binding Resource definition for describing association between appfwprofile and crosssitescripting resources", "netscaler.adc.appfwprofile_csrftag_binding module \u2013 Binding Resource definition for describing association between appfwprofile and csrftag resources", "netscaler.adc.appfwprofile_denylist_binding module \u2013 Binding Resource definition for describing association between appfwprofile and denylist resources", "netscaler.adc.appfwprofile_denyurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and denyurl resources", "netscaler.adc.appfwprofile_excluderescontenttype_binding module \u2013 Binding Resource definition for describing association between appfwprofile and excluderescontenttype resources", "netscaler.adc.appfwprofile_fakeaccount_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fakeaccount resources", "netscaler.adc.appfwprofile_fieldconsistency_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fieldconsistency resources", "netscaler.adc.appfwprofile_fieldformat_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fieldformat resources", "netscaler.adc.appfwprofile_fileuploadtype_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fileuploadtype resources", "netscaler.adc.appfwprofile_jsonblockkeyword_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsonblockkeyword resources", "netscaler.adc.appfwprofile_jsoncmdurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsoncmdurl resources", "netscaler.adc.appfwprofile_jsondosurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsondosurl resources", "netscaler.adc.appfwprofile_jsonsqlurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsonsqlurl resources", "netscaler.adc.appfwprofile_jsonxssurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsonxssurl resources", "netscaler.adc.appfwprofile_logexpression_binding module \u2013 Binding Resource definition for describing association between appfwprofile and logexpression resources", "netscaler.adc.appfwprofile module \u2013 Configuration for application firewall profile resource.", "netscaler.adc.appfwprofile_safeobject_binding module \u2013 Binding Resource definition for describing association between appfwprofile and safeobject resources", "netscaler.adc.appfwprofile_sqlinjection_binding module \u2013 Binding Resource definition for describing association between appfwprofile and sqlinjection resources", "netscaler.adc.appfwprofile_starturl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and starturl resources", "netscaler.adc.appfwprofile_trustedlearningclients_binding module \u2013 Binding Resource definition for describing association between appfwprofile and trustedlearningclients resources", "netscaler.adc.appfwprofile_xmlattachmenturl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlattachmenturl resources", "netscaler.adc.appfwprofile_xmldosurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmldosurl resources", "netscaler.adc.appfwprofile_xmlsqlinjection_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlsqlinjection resources", "netscaler.adc.appfwprofile_xmlvalidationurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlvalidationurl resources", "netscaler.adc.appfwprofile_xmlwsiurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlwsiurl resources", "netscaler.adc.appfwprofile_xmlxss_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlxss resources", "netscaler.adc.appfwprotofile module \u2013 Configuration for gRPC protofile resource.", "netscaler.adc.appfwsettings module \u2013 Configuration for AS settings resource.", "netscaler.adc.appfwsignatures module \u2013 Configuration for application firewall signatures XML configuration resource.", "netscaler.adc.appfwurlencodedformcontenttype module \u2013 Configuration for Urlencoded form content type resource.", "netscaler.adc.appfwwsdl module \u2013 Configuration for WSDL file resource.", "netscaler.adc.appfwxmlcontenttype module \u2013 Configuration for XML Content type resource.", "netscaler.adc.appfwxmlerrorpage module \u2013 Configuration for xml error page resource.", "netscaler.adc.appfwxmlschema module \u2013 Configuration for XML schema resource.", "netscaler.adc.application module \u2013 Configuration for application resource.", "netscaler.adc.appqoeaction module \u2013 Configuration for AppQoS action resource.", "netscaler.adc.appqoecustomresp module \u2013 Configuration for AppQoE custom response page resource.", "netscaler.adc.appqoeparameter module \u2013 Configuration for QOS parameter resource.", "netscaler.adc.appqoepolicy module \u2013 Configuration for AppQoS policy resource.", "netscaler.adc.arp module \u2013 Configuration for arp resource.", "netscaler.adc.arpparam module \u2013 Configuration for Global arp parameters resource.", "netscaler.adc.auditmessageaction module \u2013 Configuration for message action resource.", "netscaler.adc.auditnslogaction module \u2013 Configuration for ns log action resource.", "netscaler.adc.auditnslogglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between auditnslogglobal and auditnslogpolicy resources", "netscaler.adc.auditnslogparams module \u2013 Configuration for ns log parameters resource.", "netscaler.adc.auditnslogpolicy module \u2013 Configuration for ns log policy resource.", "netscaler.adc.auditsyslogaction module \u2013 Configuration for system log action resource.", "netscaler.adc.auditsyslogglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between auditsyslogglobal and auditsyslogpolicy resources", "netscaler.adc.auditsyslogparams module \u2013 Configuration for system log parameters resource.", "netscaler.adc.auditsyslogpolicy module \u2013 Configuration for system log policy resource.", "netscaler.adc.authenticationadfsproxyprofile module \u2013 Configuration for ADFSProxy Profile resource.", "netscaler.adc.authenticationauthnprofile module \u2013 Configuration for Authentication profile resource.", "netscaler.adc.authenticationazurekeyvault module \u2013 Configuration for Azure Key Vault entity resource.", "netscaler.adc.authenticationcaptchaaction module \u2013 Configuration for Captcha Action resource.", "netscaler.adc.authenticationcertaction module \u2013 Configuration for CERT action resource.", "netscaler.adc.authenticationcertpolicy module \u2013 Configuration for CERT policy resource.", "netscaler.adc.authenticationcitrixauthaction module \u2013 Configuration for Citrix Authentication action resource.", "netscaler.adc.authenticationdfaaction module \u2013 Configuration for Dfa authentication action resource.", "netscaler.adc.authenticationdfapolicy module \u2013 Configuration for Dfa authentication policy resource.", "netscaler.adc.authenticationemailaction module \u2013 Configuration for Email entity resource.", "netscaler.adc.authenticationepaaction module \u2013 Configuration for epa action resource.", "netscaler.adc.authenticationldapaction module \u2013 Configuration for LDAP action resource.", "netscaler.adc.authenticationldappolicy module \u2013 Configuration for LDAP policy resource.", "netscaler.adc.authenticationlocalpolicy module \u2013 Configuration for LOCAL policy resource.", "netscaler.adc.authenticationloginschema module \u2013 Configuration for 0 resource.", "netscaler.adc.authenticationloginschemapolicy module \u2013 Configuration for 0 resource.", "netscaler.adc.authenticationnegotiateaction module \u2013 Configuration for Negotiate action resource.", "netscaler.adc.authenticationnegotiatepolicy module \u2013 Configuration for Negotiate Policy resource.", "netscaler.adc.authenticationnoauthaction module \u2013 Configuration for no authentication action resource.", "netscaler.adc.authenticationoauthaction module \u2013 Configuration for OAuth authentication action resource.", "netscaler.adc.authenticationoauthidppolicy module \u2013 Configuration for AAA OAuth IdentityProvider (IdP) policy resource.", "netscaler.adc.authenticationoauthidpprofile module \u2013 Configuration for OAuth Identity Provider (IdP) profile resource.", "netscaler.adc.authenticationpolicy module \u2013 Configuration for Authentication Policy resource.", "netscaler.adc.authenticationpolicylabel_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationpolicylabel and authenticationpolicy resources", "netscaler.adc.authenticationpolicylabel module \u2013 Configuration for authentication policy label resource.", "netscaler.adc.authenticationpushservice module \u2013 Configuration for Service details for sending push notifications resource.", "netscaler.adc.authenticationradiusaction module \u2013 Configuration for RADIUS action resource.", "netscaler.adc.authenticationradiuspolicy module \u2013 Configuration for RADIUS policy resource.", "netscaler.adc.authenticationsamlaction module \u2013 Configuration for AAA Saml action resource.", "netscaler.adc.authenticationsamlidppolicy module \u2013 Configuration for AAA Saml IdentityProvider (IdP) policy resource.", "netscaler.adc.authenticationsamlidpprofile module \u2013 Configuration for AAA Saml IdentityProvider (IdP) profile resource.", "netscaler.adc.authenticationsamlpolicy module \u2013 Configuration for AAA Saml policy resource.", "netscaler.adc.authenticationsmartaccesspolicy module \u2013 Configuration for SmartAccess policy resource.", "netscaler.adc.authenticationsmartaccessprofile module \u2013 Configuration for SmartAccess profile resource.", "netscaler.adc.authenticationstorefrontauthaction module \u2013 Configuration for Storefront authentication action resource.", "netscaler.adc.authenticationtacacsaction module \u2013 Configuration for TACACS action resource.", "netscaler.adc.authenticationtacacspolicy module \u2013 Configuration for TACACS policy resource.", "netscaler.adc.authenticationvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and auditnslogpolicy resources", "netscaler.adc.authenticationvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and auditsyslogpolicy resources", "netscaler.adc.authenticationvserver_authenticationcertpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationcertpolicy resources", "netscaler.adc.authenticationvserver_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationldappolicy resources", "netscaler.adc.authenticationvserver_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationlocalpolicy resources", "netscaler.adc.authenticationvserver_authenticationloginschemapolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationloginschemapolicy resources", "netscaler.adc.authenticationvserver_authenticationnegotiatepolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationnegotiatepolicy resources", "netscaler.adc.authenticationvserver_authenticationoauthidppolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationoauthidppolicy resources", "netscaler.adc.authenticationvserver_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationpolicy resources", "netscaler.adc.authenticationvserver_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationradiuspolicy resources", "netscaler.adc.authenticationvserver_authenticationsamlidppolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationsamlidppolicy resources", "netscaler.adc.authenticationvserver_authenticationsamlpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationsamlpolicy resources", "netscaler.adc.authenticationvserver_authenticationsmartaccesspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationsmartaccesspolicy resources", "netscaler.adc.authenticationvserver_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationtacacspolicy resources", "netscaler.adc.authenticationvserver_authenticationwebauthpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationwebauthpolicy resources", "netscaler.adc.authenticationvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and cachepolicy resources", "netscaler.adc.authenticationvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and cspolicy resources", "netscaler.adc.authenticationvserver module \u2013 Configuration for authentication virtual server resource.", "netscaler.adc.authenticationvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and responderpolicy resources", "netscaler.adc.authenticationvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and rewritepolicy resources", "netscaler.adc.authenticationvserver_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and tmsessionpolicy resources", "netscaler.adc.authenticationvserver_vpnportaltheme_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and vpnportaltheme resources", "netscaler.adc.authenticationwebauthaction module \u2013 Configuration for Web authentication action resource.", "netscaler.adc.authenticationwebauthpolicy module \u2013 Configuration for Web authentication policy resource.", "netscaler.adc.authorizationpolicy module \u2013 Configuration for authorization policy resource.", "netscaler.adc.authorizationpolicylabel_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between authorizationpolicylabel and authorizationpolicy resources", "netscaler.adc.authorizationpolicylabel module \u2013 Configuration for authorization policy label resource.", "netscaler.adc.autoscaleaction module \u2013 Configuration for autoscale action resource.", "netscaler.adc.autoscalepolicy module \u2013 Configuration for Autoscale policy resource.", "netscaler.adc.autoscaleprofile module \u2013 Configuration for autoscale profile resource.", "netscaler.adc.azureapplication module \u2013 Configuration for Azure Application resource.", "netscaler.adc.azurekeyvault module \u2013 Configuration for Azure Key Vault entity resource.", "netscaler.adc.botglobal_botpolicy_binding module \u2013 Binding Resource definition for describing association between botglobal and botpolicy resources", "netscaler.adc.botpolicy module \u2013 Configuration for Bot policy resource.", "netscaler.adc.botpolicylabel_botpolicy_binding module \u2013 Binding Resource definition for describing association between botpolicylabel and botpolicy resources", "netscaler.adc.botpolicylabel module \u2013 Configuration for Bot policy label resource.", "netscaler.adc.botprofile_blacklist_binding module \u2013 Binding Resource definition for describing association between botprofile and blacklist resources", "netscaler.adc.botprofile_captcha_binding module \u2013 Binding Resource definition for describing association between botprofile and captcha resources", "netscaler.adc.botprofile_ipreputation_binding module \u2013 Binding Resource definition for describing association between botprofile and ipreputation resources", "netscaler.adc.botprofile_kmdetectionexpr_binding module \u2013 Binding Resource definition for describing association between botprofile and kmdetectionexpr resources", "netscaler.adc.botprofile_logexpression_binding module \u2013 Binding Resource definition for describing association between botprofile and logexpression resources", "netscaler.adc.botprofile module \u2013 Configuration for Bot profile resource.", "netscaler.adc.botprofile_ratelimit_binding module \u2013 Binding Resource definition for describing association between botprofile and ratelimit resources", "netscaler.adc.botprofile_tps_binding module \u2013 Binding Resource definition for describing association between botprofile and tps resources", "netscaler.adc.botprofile_trapinsertionurl_binding module \u2013 Binding Resource definition for describing association between botprofile and trapinsertionurl resources", "netscaler.adc.botprofile_whitelist_binding module \u2013 Binding Resource definition for describing association between botprofile and whitelist resources", "netscaler.adc.botsettings module \u2013 Configuration for Bot engine settings resource.", "netscaler.adc.botsignature module \u2013 Configuration for bot signatures resource.", "netscaler.adc.bridgegroup module \u2013 Configuration for bridge group resource.", "netscaler.adc.bridgegroup_nsip6_binding module \u2013 Binding Resource definition for describing association between bridgegroup and nsip6 resources", "netscaler.adc.bridgegroup_nsip_binding module \u2013 Binding Resource definition for describing association between bridgegroup and nsip resources", "netscaler.adc.bridgegroup_vlan_binding module \u2013 Binding Resource definition for describing association between bridgegroup and vlan resources", "netscaler.adc.bridgetable module \u2013 Configuration for bridge table entry resource.", "netscaler.adc.cachecontentgroup module \u2013 Configuration for Integrated Cache content group resource.", "netscaler.adc.cacheforwardproxy module \u2013 Configuration for forward proxy resource.", "netscaler.adc.cacheglobal_cachepolicy_binding module \u2013 Binding Resource definition for describing association between cacheglobal and cachepolicy resources", "netscaler.adc.cacheobject module \u2013 Configuration for cache object resource.", "netscaler.adc.cacheparameter module \u2013 Configuration for cache parameter resource.", "netscaler.adc.cachepolicy module \u2013 Configuration for Integrated Cache policy resource.", "netscaler.adc.cachepolicylabel_cachepolicy_binding module \u2013 Binding Resource definition for describing association between cachepolicylabel and cachepolicy resources", "netscaler.adc.cachepolicylabel module \u2013 Configuration for cache policy label resource.", "netscaler.adc.cacheselector module \u2013 Configuration for cache selector resource.", "netscaler.adc.callhome module \u2013 Configuration for callhome resource.", "netscaler.adc.change_password module \u2013 Change password of a user on a NetScaler ADC node.", "netscaler.adc.channel_interface_binding module \u2013 Binding Resource definition for describing association between channel and interface resources", "netscaler.adc.channel module \u2013 Configuration for channel resource.", "netscaler.adc.cloudallowedngsticketprofile module \u2013 Configuration for Allowed ticket profile for NGS resource.", "netscaler.adc.cloudawsparam module \u2013 Configuration for cloud awsParam resource.", "netscaler.adc.cloudcredential module \u2013 Configuration for cloud credentials resource.", "netscaler.adc.cloudngsparameter module \u2013 Configuration for cloud ngsparameter resource.", "netscaler.adc.cloudparameter module \u2013 Configuration for cloud parameter resource.", "netscaler.adc.cloudparaminternal module \u2013 Configuration for cloud paramInternal resource.", "netscaler.adc.cloudprofile module \u2013 Configuration for cloud profile resource.", "netscaler.adc.cloudtunnelparameter module \u2013 Configuration for Cloudtunnel parameter resource.", "netscaler.adc.cloudtunnelvserver module \u2013 Configuration for Cloud Tunnel virtual server resource.", "netscaler.adc.cluster module \u2013 Configuration for 0 resource.", "netscaler.adc.clusterfiles module \u2013 Configuration for files resource.", "netscaler.adc.clusterinstance module \u2013 Configuration for cluster instance resource.", "netscaler.adc.clusternode module \u2013 Configuration for cluster node resource.", "netscaler.adc.clusternode_routemonitor_binding module \u2013 Binding Resource definition for describing association between clusternode and routemonitor resources", "netscaler.adc.clusternodegroup_authenticationvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and authenticationvserver resources", "netscaler.adc.clusternodegroup_clusternode_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and clusternode resources", "netscaler.adc.clusternodegroup_crvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and crvserver resources", "netscaler.adc.clusternodegroup_csvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and csvserver resources", "netscaler.adc.clusternodegroup_gslbsite_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and gslbsite resources", "netscaler.adc.clusternodegroup_gslbvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and gslbvserver resources", "netscaler.adc.clusternodegroup_lbvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and lbvserver resources", "netscaler.adc.clusternodegroup module \u2013 Configuration for Node group object type resource.", "netscaler.adc.clusternodegroup_nslimitidentifier_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and nslimitidentifier resources", "netscaler.adc.clusternodegroup_service_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and service resources", "netscaler.adc.clusternodegroup_streamidentifier_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and streamidentifier resources", "netscaler.adc.clusternodegroup_vpnvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and vpnvserver resources", "netscaler.adc.clusterpropstatus module \u2013 Configuration for 0 resource.", "netscaler.adc.cmpaction module \u2013 Configuration for compression action resource.", "netscaler.adc.cmpglobal_cmppolicy_binding module \u2013 Binding Resource definition for describing association between cmpglobal and cmppolicy resources", "netscaler.adc.cmpparameter module \u2013 Configuration for CMP parameter resource.", "netscaler.adc.cmppolicy module \u2013 Configuration for compression policy resource.", "netscaler.adc.cmppolicylabel_cmppolicy_binding module \u2013 Binding Resource definition for describing association between cmppolicylabel and cmppolicy resources", "netscaler.adc.cmppolicylabel module \u2013 Configuration for compression policy label resource.", "netscaler.adc.contentinspectionaction module \u2013 Configuration for Content Inspection action resource.", "netscaler.adc.contentinspectioncallout module \u2013 Configuration for Content Inspection callout resource.", "netscaler.adc.contentinspectionglobal_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between contentinspectionglobal and contentinspectionpolicy resources", "netscaler.adc.contentinspectionparameter module \u2013 Configuration for Contentinspection parameter resource.", "netscaler.adc.contentinspectionpolicy module \u2013 Configuration for ContentInspection policy resource.", "netscaler.adc.contentinspectionpolicylabel_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between contentinspectionpolicylabel and contentinspectionpolicy resources", "netscaler.adc.contentinspectionpolicylabel module \u2013 Configuration for ContentInspection policy label resource.", "netscaler.adc.contentinspectionprofile module \u2013 Configuration for ContentInspection profile resource.", "netscaler.adc.crpolicy module \u2013 Configuration for cache redirection policy resource.", "netscaler.adc.crvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between crvserver and analyticsprofile resources", "netscaler.adc.crvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and appflowpolicy resources", "netscaler.adc.crvserver_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and appfwpolicy resources", "netscaler.adc.crvserver_appqoepolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and appqoepolicy resources", "netscaler.adc.crvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and cachepolicy resources", "netscaler.adc.crvserver_cmppolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and cmppolicy resources", "netscaler.adc.crvserver_crpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and crpolicy resources", "netscaler.adc.crvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and cspolicy resources", "netscaler.adc.crvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and feopolicy resources", "netscaler.adc.crvserver_icapolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and icapolicy resources", "netscaler.adc.crvserver_lbvserver_binding module \u2013 Binding Resource definition for describing association between crvserver and lbvserver resources", "netscaler.adc.crvserver module \u2013 Configuration for CR virtual server resource.", "netscaler.adc.crvserver_policymap_binding module \u2013 Binding Resource definition for describing association between crvserver and policymap resources", "netscaler.adc.crvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and responderpolicy resources", "netscaler.adc.crvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and rewritepolicy resources", "netscaler.adc.crvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and spilloverpolicy resources", "netscaler.adc.csaction module \u2013 Configuration for Content Switching action resource.", "netscaler.adc.csparameter module \u2013 Configuration for CS parameter resource.", "netscaler.adc.cspolicy module \u2013 Configuration for content-switching policy resource.", "netscaler.adc.cspolicylabel_cspolicy_binding module \u2013 Binding Resource definition for describing association between cspolicylabel and cspolicy resources", "netscaler.adc.cspolicylabel module \u2013 Configuration for CS policy label resource.", "netscaler.adc.csvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between csvserver and analyticsprofile resources", "netscaler.adc.csvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and appflowpolicy resources", "netscaler.adc.csvserver_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and appfwpolicy resources", "netscaler.adc.csvserver_appqoepolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and appqoepolicy resources", "netscaler.adc.csvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and auditnslogpolicy resources", "netscaler.adc.csvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and auditsyslogpolicy resources", "netscaler.adc.csvserver_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and authorizationpolicy resources", "netscaler.adc.csvserver_botpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and botpolicy resources", "netscaler.adc.csvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and cachepolicy resources", "netscaler.adc.csvserver_cmppolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and cmppolicy resources", "netscaler.adc.csvserver_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and contentinspectionpolicy resources", "netscaler.adc.csvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and cspolicy resources", "netscaler.adc.csvserver_domain_binding module \u2013 Binding Resource definition for describing association between csvserver and domain resources", "netscaler.adc.csvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and feopolicy resources", "netscaler.adc.csvserver_gslbvserver_binding module \u2013 Binding Resource definition for describing association between csvserver and gslbvserver resources", "netscaler.adc.csvserver_lbvserver_binding module \u2013 Binding Resource definition for describing association between csvserver and lbvserver resources", "netscaler.adc.csvserver module \u2013 Configuration for CS virtual server resource.", "netscaler.adc.csvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and responderpolicy resources", "netscaler.adc.csvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and rewritepolicy resources", "netscaler.adc.csvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and spilloverpolicy resources", "netscaler.adc.csvserver_tmtrafficpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and tmtrafficpolicy resources", "netscaler.adc.csvserver_transformpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and transformpolicy resources", "netscaler.adc.csvserver_vpnvserver_binding module \u2013 Binding Resource definition for describing association between csvserver and vpnvserver resources", "netscaler.adc.dbdbprofile module \u2013 Configuration for DB profile resource.", "netscaler.adc.dbuser module \u2013 Configuration for DB user resource.", "netscaler.adc.dnsaaaarec module \u2013 Configuration for IPv6 address type record resource.", "netscaler.adc.dnsaction64 module \u2013 Configuration for dns64 action resource.", "netscaler.adc.dnsaction module \u2013 Configuration for DNS action resource.", "netscaler.adc.dnsaddrec module \u2013 Configuration for address type record resource.", "netscaler.adc.dnscaarec module \u2013 Configuration for CAA record resource.", "netscaler.adc.dnscnamerec module \u2013 Configuration for CNAME record resource.", "netscaler.adc.dnsglobal_dnspolicy_binding module \u2013 Binding Resource definition for describing association between dnsglobal and dnspolicy resources", "netscaler.adc.dnskey module \u2013 Configuration for dns key resource.", "netscaler.adc.dnsmxrec module \u2013 Configuration for MX record resource.", "netscaler.adc.dnsnameserver module \u2013 Configuration for name server resource.", "netscaler.adc.dnsnaptrrec module \u2013 Configuration for NAPTR record resource.", "netscaler.adc.dnsnsrec module \u2013 Configuration for name server record resource.", "netscaler.adc.dnsparameter module \u2013 Configuration for DNS parameter resource.", "netscaler.adc.dnspolicy64 module \u2013 Configuration for dns64 policy resource.", "netscaler.adc.dnspolicy module \u2013 Configuration for DNS policy resource.", "netscaler.adc.dnspolicylabel_dnspolicy_binding module \u2013 Binding Resource definition for describing association between dnspolicylabel and dnspolicy resources", "netscaler.adc.dnspolicylabel module \u2013 Configuration for dns policy label resource.", "netscaler.adc.dnsprofile module \u2013 Configuration for DNS profile resource.", "netscaler.adc.dnsproxyrecords module \u2013 Configuration for proxy record resource.", "netscaler.adc.dnsptrrec module \u2013 Configuration for PTR record resource.", "netscaler.adc.dnssoarec module \u2013 Configuration for SOA record resource.", "netscaler.adc.dnssrvrec module \u2013 Configuration for server record resource.", "netscaler.adc.dnssubnetcache module \u2013 Configuration for subnet cache resource.", "netscaler.adc.dnssuffix module \u2013 Configuration for DNS suffix resource.", "netscaler.adc.dnstxtrec module \u2013 Configuration for TXT record resource.", "netscaler.adc.dnsview module \u2013 Configuration for DNS view resource.", "netscaler.adc.dnszone module \u2013 Configuration for DNS zone resource.", "netscaler.adc.endpointinfo module \u2013 Configuration for Information resource.", "netscaler.adc.extendedmemoryparam module \u2013 Configuration for Parameter for extended memory used by LSN and Subscriber Store resource.", "netscaler.adc.feoaction module \u2013 Configuration for Front end optimization action resource.", "netscaler.adc.feoglobal_feopolicy_binding module \u2013 Binding Resource definition for describing association between feoglobal and feopolicy resources", "netscaler.adc.feoparameter module \u2013 Configuration for FEO parameter resource.", "netscaler.adc.feopolicy module \u2013 Configuration for Front end optimization policy resource.", "netscaler.adc.fis_channel_binding module \u2013 Binding Resource definition for describing association between fis and channel resources", "netscaler.adc.fis_interface_binding module \u2013 Binding Resource definition for describing association between fis and interface resources", "netscaler.adc.fis module \u2013 Configuration for \u201cFIS\u201d resource.", "netscaler.adc.forwardingsession module \u2013 Configuration for session forward resource.", "netscaler.adc.gslbconfig module \u2013 Configuration for gslb config resource.", "netscaler.adc.gslbldnsentries module \u2013 Configuration for LDNS entry resource.", "netscaler.adc.gslbldnsentry module \u2013 Configuration for LDNS entry resource.", "netscaler.adc.gslbparameter module \u2013 Configuration for GSLB parameter resource.", "netscaler.adc.gslbservice_dnsview_binding module \u2013 Binding Resource definition for describing association between gslbservice and dnsview resources", "netscaler.adc.gslbservice_lbmonitor_binding module \u2013 Binding Resource definition for describing association between gslbservice and lbmonitor resources", "netscaler.adc.gslbservice module \u2013 Configuration for GSLB service resource.", "netscaler.adc.gslbservicegroup_gslbservicegroupmember_binding module \u2013 Binding Resource definition for describing association between gslbservicegroup and gslbservicegroupmember resources", "netscaler.adc.gslbservicegroup_lbmonitor_binding module \u2013 Binding Resource definition for describing association between gslbservicegroup and lbmonitor resources", "netscaler.adc.gslbservicegroup module \u2013 Configuration for GSLB service group resource.", "netscaler.adc.gslbsite module \u2013 Configuration for GSLB site resource.", "netscaler.adc.gslbvserver_domain_binding module \u2013 Binding Resource definition for describing association between gslbvserver and domain resources", "netscaler.adc.gslbvserver_gslbservice_binding module \u2013 Binding Resource definition for describing association between gslbvserver and gslbservice resources", "netscaler.adc.gslbvserver_gslbservicegroup_binding module \u2013 Binding Resource definition for describing association between gslbvserver and gslbservicegroup resources", "netscaler.adc.gslbvserver_lbpolicy_binding module \u2013 Binding Resource definition for describing association between gslbvserver and lbpolicy resources", "netscaler.adc.gslbvserver module \u2013 Configuration for Global Server Load Balancing Virtual Server resource.", "netscaler.adc.gslbvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between gslbvserver and spilloverpolicy resources", "netscaler.adc.hafailover module \u2013 Configuration for failover resource.", "netscaler.adc.hafiles module \u2013 Configuration for files resource.", "netscaler.adc.hanode module \u2013 Configuration for node resource.", "netscaler.adc.hanode_routemonitor6_binding module \u2013 Binding Resource definition for describing association between hanode and routemonitor6 resources", "netscaler.adc.hanode_routemonitor_binding module \u2013 Binding Resource definition for describing association between hanode and routemonitor resources", "netscaler.adc.hasync module \u2013 Configuration for sync resource.", "netscaler.adc.icaaccessprofile module \u2013 Configuration for ica accessprofile resource.", "netscaler.adc.icaaction module \u2013 Configuration for ica action resource.", "netscaler.adc.icaglobal_icapolicy_binding module \u2013 Binding Resource definition for describing association between icaglobal and icapolicy resources", "netscaler.adc.icalatencyprofile module \u2013 Configuration for Profile for Latency monitoring resource.", "netscaler.adc.icaparameter module \u2013 Configuration for Config Parameters for NS ICA resource.", "netscaler.adc.icapolicy module \u2013 Configuration for ICA policy resource.", "netscaler.adc.inat module \u2013 Configuration for inbound nat resource.", "netscaler.adc.inatparam module \u2013 Configuration for INAT parameter resource.", "Netscaler.Adc", "netscaler.adc.install module \u2013 Configuration for 0 resource.", "netscaler.adc.interfacepair module \u2013 Configuration for \u201cInterface Pair\u201d resource.", "netscaler.adc.ip6tunnel module \u2013 Configuration for ip6 Tunnel resource.", "netscaler.adc.ip6tunnelparam module \u2013 Configuration for ip6 tunnel parameter resource.", "netscaler.adc.ipsecalgprofile module \u2013 Configuration for IPSEC ALG profile resource.", "netscaler.adc.ipsecalgsession module \u2013 Configuration for IPSEC ALG session resource.", "netscaler.adc.ipsecparameter module \u2013 Configuration for IPSEC paramter resource.", "netscaler.adc.ipsecprofile module \u2013 Configuration for IPSEC profile resource.", "netscaler.adc.ipset module \u2013 Configuration for network ipset resource.", "netscaler.adc.ipset_nsip6_binding module \u2013 Binding Resource definition for describing association between ipset and nsip6 resources", "netscaler.adc.ipset_nsip_binding module \u2013 Binding Resource definition for describing association between ipset and nsip resources", "netscaler.adc.iptunnel module \u2013 Configuration for ip Tunnel resource.", "netscaler.adc.iptunnelparam module \u2013 Configuration for ip tunnel parameter resource.", "netscaler.adc.ipv6 module \u2013 Configuration for ip v6 resource.", "netscaler.adc.l2param module \u2013 Configuration for Layer 2 related parameter resource.", "netscaler.adc.l3param module \u2013 Configuration for Layer 3 related parameter resource.", "netscaler.adc.l4param module \u2013 Configuration for Layer 4 related parameter resource.", "netscaler.adc.lacp module \u2013 Configuration for Link aggregation control protocol resource.", "netscaler.adc.lbaction module \u2013 Configuration for lb action resource.", "netscaler.adc.lbglobal_lbpolicy_binding module \u2013 Binding Resource definition for describing association between lbglobal and lbpolicy resources", "netscaler.adc.lbgroup_lbvserver_binding module \u2013 Binding Resource definition for describing association between lbgroup and lbvserver resources", "netscaler.adc.lbgroup module \u2013 Configuration for LB group resource.", "netscaler.adc.lbmetrictable_metric_binding module \u2013 Binding Resource definition for describing association between lbmetrictable and metric resources", "netscaler.adc.lbmetrictable module \u2013 Configuration for metric table resource.", "netscaler.adc.lbmonitor_metric_binding module \u2013 Binding Resource definition for describing association between lbmonitor and metric resources", "netscaler.adc.lbmonitor module \u2013 Configuration for monitor resource.", "netscaler.adc.lbmonitor_sslcertkey_binding module \u2013 Binding Resource definition for describing association between lbmonitor and sslcertkey resources", "netscaler.adc.lbparameter module \u2013 Configuration for LB parameter resource.", "netscaler.adc.lbpersistentsessions module \u2013 Configuration for persistence session resource.", "netscaler.adc.lbpolicy module \u2013 Configuration for lb policy resource.", "netscaler.adc.lbpolicylabel_lbpolicy_binding module \u2013 Binding Resource definition for describing association between lbpolicylabel and lbpolicy resources", "netscaler.adc.lbpolicylabel module \u2013 Configuration for lb policy label resource.", "netscaler.adc.lbprofile module \u2013 Configuration for LB profile resource.", "netscaler.adc.lbroute6 module \u2013 Configuration for LB route6 resource.", "netscaler.adc.lbroute module \u2013 Configuration for LB route resource.", "netscaler.adc.lbsipparameters module \u2013 Configuration for SIP parameters resource.", "netscaler.adc.lbvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between lbvserver and analyticsprofile resources", "netscaler.adc.lbvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and appflowpolicy resources", "netscaler.adc.lbvserver_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and appfwpolicy resources", "netscaler.adc.lbvserver_appqoepolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and appqoepolicy resources", "netscaler.adc.lbvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and auditnslogpolicy resources", "netscaler.adc.lbvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and auditsyslogpolicy resources", "netscaler.adc.lbvserver_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and authorizationpolicy resources", "netscaler.adc.lbvserver_botpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and botpolicy resources", "netscaler.adc.lbvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and cachepolicy resources", "netscaler.adc.lbvserver_cmppolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and cmppolicy resources", "netscaler.adc.lbvserver_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and contentinspectionpolicy resources", "netscaler.adc.lbvserver_dnspolicy64_binding module \u2013 Binding Resource definition for describing association between lbvserver and dnspolicy64 resources", "netscaler.adc.lbvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and feopolicy resources", "netscaler.adc.lbvserver_lbpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and lbpolicy resources", "netscaler.adc.lbvserver module \u2013 Configuration for Load Balancing Virtual Server resource.", "netscaler.adc.lbvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and responderpolicy resources", "netscaler.adc.lbvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and rewritepolicy resources", "netscaler.adc.lbvserver_service_binding module \u2013 Binding Resource definition for describing association between lbvserver and service resources", "netscaler.adc.lbvserver_servicegroup_binding module \u2013 Binding Resource definition for describing association between lbvserver and servicegroup resources", "netscaler.adc.lbvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and spilloverpolicy resources", "netscaler.adc.lbvserver_tmtrafficpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and tmtrafficpolicy resources", "netscaler.adc.lbvserver_transformpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and transformpolicy resources", "netscaler.adc.lbvserver_videooptimizationdetectionpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and videooptimizationdetectionpolicy resources", "netscaler.adc.lbvserver_videooptimizationpacingpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and videooptimizationpacingpolicy resources", "netscaler.adc.lbwlm_lbvserver_binding module \u2013 Binding Resource definition for describing association between lbwlm and lbvserver resources", "netscaler.adc.lbwlm module \u2013 Configuration for web log manager resource.", "netscaler.adc.linkset_channel_binding module \u2013 Binding Resource definition for describing association between linkset and channel resources", "netscaler.adc.linkset_interface_binding module \u2013 Binding Resource definition for describing association between linkset and interface resources", "netscaler.adc.linkset module \u2013 Configuration for link set resource.", "netscaler.adc.lldpneighbors module \u2013 Configuration for lldp neighbors resource.", "netscaler.adc.lldpparam module \u2013 Configuration for lldp params resource.", "netscaler.adc.location module \u2013 Configuration for location resource.", "netscaler.adc.locationfile6 module \u2013 Configuration for location file6 resource.", "netscaler.adc.locationfile module \u2013 Configuration for location file resource.", "netscaler.adc.locationparameter module \u2013 Configuration for location parameter resource.", "netscaler.adc.login module \u2013 Login to a NetScaler ADC node.", "netscaler.adc.logout module \u2013 Logout from a NetScaler ADC node.", "netscaler.adc.lsnappsattributes module \u2013 Configuration for LSN Application Attributes resource.", "netscaler.adc.lsnappsprofile_lsnappsattributes_binding module \u2013 Binding Resource definition for describing association between lsnappsprofile and lsnappsattributes resources", "netscaler.adc.lsnappsprofile module \u2013 Configuration for LSN Application Profile resource.", "netscaler.adc.lsnappsprofile_port_binding module \u2013 Binding Resource definition for describing association between lsnappsprofile and port resources", "netscaler.adc.lsnclient module \u2013 Configuration for lsn client resource.", "netscaler.adc.lsnclient_network6_binding module \u2013 Binding Resource definition for describing association between lsnclient and network6 resources", "netscaler.adc.lsnclient_network_binding module \u2013 Binding Resource definition for describing association between lsnclient and network resources", "netscaler.adc.lsnclient_nsacl6_binding module \u2013 Binding Resource definition for describing association between lsnclient and nsacl6 resources", "netscaler.adc.lsnclient_nsacl_binding module \u2013 Binding Resource definition for describing association between lsnclient and nsacl resources", "netscaler.adc.lsngroup_ipsecalgprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and ipsecalgprofile resources", "netscaler.adc.lsngroup_lsnappsprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnappsprofile resources", "netscaler.adc.lsngroup_lsnhttphdrlogprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnhttphdrlogprofile resources", "netscaler.adc.lsngroup_lsnlogprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnlogprofile resources", "netscaler.adc.lsngroup_lsnpool_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnpool resources", "netscaler.adc.lsngroup_lsnrtspalgprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnrtspalgprofile resources", "netscaler.adc.lsngroup_lsnsipalgprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnsipalgprofile resources", "netscaler.adc.lsngroup_lsntransportprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsntransportprofile resources", "netscaler.adc.lsngroup module \u2013 Configuration for LSN group resource.", "netscaler.adc.lsngroup_pcpserver_binding module \u2013 Binding Resource definition for describing association between lsngroup and pcpserver resources", "netscaler.adc.lsnhttphdrlogprofile module \u2013 Configuration for LSN HTTP header logging Profile resource.", "netscaler.adc.lsnip6profile module \u2013 Configuration for LSN ip6 Profile resource.", "netscaler.adc.lsnlogprofile module \u2013 Configuration for LSN logging Profile resource.", "netscaler.adc.lsnparameter module \u2013 Configuration for LSN parameter resource.", "netscaler.adc.lsnpool_lsnip_binding module \u2013 Binding Resource definition for describing association between lsnpool and lsnip resources", "netscaler.adc.lsnpool module \u2013 Configuration for LSN pool resource.", "netscaler.adc.lsnrtspalgprofile module \u2013 Configuration for LSN RTSPALG Profile resource.", "netscaler.adc.lsnrtspalgsession module \u2013 Configuration for LSN RTSPALG session resource.", "netscaler.adc.lsnsession module \u2013 Configuration for lsn session resource.", "netscaler.adc.lsnsipalgcall module \u2013 Configuration for LSN SIPALG call resource.", "netscaler.adc.lsnsipalgprofile module \u2013 Configuration for LSN SIPALG Profile resource.", "netscaler.adc.lsnstatic module \u2013 Configuration for static mapping resource.", "netscaler.adc.lsntransportprofile module \u2013 Configuration for LSN Transport Profile resource.", "netscaler.adc.mapbmr_bmrv4network_binding module \u2013 Binding Resource definition for describing association between mapbmr and bmrv4network resources", "netscaler.adc.mapbmr module \u2013 Configuration for MAP-T Basic Mapping rule resource.", "netscaler.adc.mapdmr module \u2013 Configuration for MAP-T Default Mapping rule resource.", "netscaler.adc.mapdomain_mapbmr_binding module \u2013 Binding Resource definition for describing association between mapdomain and mapbmr resources", "netscaler.adc.mapdomain module \u2013 Configuration for MAP-T Map Domain resource.", "netscaler.adc.nat64 module \u2013 Configuration for nat64 config resource.", "netscaler.adc.nat64param module \u2013 Configuration for NAT64 parameter resource.", "netscaler.adc.nd6 module \u2013 Configuration for nd6 resource.", "netscaler.adc.nd6ravariables module \u2013 Configuration for nd6 Router Advertisment configuration variables resource.", "netscaler.adc.nd6ravariables_onlinkipv6prefix_binding module \u2013 Binding Resource definition for describing association between nd6ravariables and onlinkipv6prefix resources", "netscaler.adc.netbridge_iptunnel_binding module \u2013 Binding Resource definition for describing association between netbridge and iptunnel resources", "netscaler.adc.netbridge module \u2013 Configuration for network bridge resource.", "netscaler.adc.netbridge_nsip6_binding module \u2013 Binding Resource definition for describing association between netbridge and nsip6 resources", "netscaler.adc.netbridge_nsip_binding module \u2013 Binding Resource definition for describing association between netbridge and nsip resources", "netscaler.adc.netbridge_vlan_binding module \u2013 Binding Resource definition for describing association between netbridge and vlan resources", "netscaler.adc.netprofile module \u2013 Configuration for Network profile resource.", "netscaler.adc.netprofile_natrule_binding module \u2013 Binding Resource definition for describing association between netprofile and natrule resources", "netscaler.adc.netprofile_srcportset_binding module \u2013 Binding Resource definition for describing association between netprofile and srcportset resources", "netscaler.adc.nsacls6 module \u2013 Configuration for ACL6 entry resource.", "netscaler.adc.nsacls module \u2013 Configuration for ACL entry resource.", "netscaler.adc.nsappflowcollector module \u2013 Configuration for appflowCollector resource.", "netscaler.adc.nsappflowparam module \u2013 Configuration for appflowParam resource.", "netscaler.adc.nsaptlicense module \u2013 Configuration for aptlicense resource.", "netscaler.adc.nsassignment module \u2013 Configuration for assignment resource.", "netscaler.adc.nscapacity module \u2013 Configuration for capacity resource.", "netscaler.adc.nscentralmanagementserver module \u2013 Configuration for centralmanagementserver resource.", "netscaler.adc.nsconfig module \u2013 Configuration for system config resource.", "netscaler.adc.nsconsoleloginprompt module \u2013 Configuration for console prompt resource.", "netscaler.adc.nscqaparam module \u2013 Configuration for cqaparam resource.", "netscaler.adc.nsdhcpparams module \u2013 Configuration for DHCP parameters resource.", "netscaler.adc.nsdiameter module \u2013 Configuration for Diameter Parameters resource.", "netscaler.adc.nsencryptionkey module \u2013 Configuration for encryption key resource.", "netscaler.adc.nsencryptionparams module \u2013 Configuration for default encryption parameters resource.", "netscaler.adc.nsextension module \u2013 Configuration for Extension resource.", "netscaler.adc.nsfeature module \u2013 Configuration for feature resource.", "netscaler.adc.nshmackey module \u2013 Configuration for HMAC key resource.", "netscaler.adc.nshostname module \u2013 Configuration for host name resource.", "netscaler.adc.nshttpparam module \u2013 Configuration for HTTP parameter resource.", "netscaler.adc.nshttpprofile module \u2013 Configuration for HTTP profile resource.", "netscaler.adc.nsicapprofile module \u2013 Configuration for ICAP profile resource.", "netscaler.adc.nsip6 module \u2013 Configuration for ip6 resource.", "netscaler.adc.nsip module \u2013 Configuration for ip resource.", "netscaler.adc.nslicenseparameters module \u2013 Configuration for licenseparameters resource.", "netscaler.adc.nslicenseproxyserver module \u2013 Configuration for licenseproxyserver resource.", "netscaler.adc.nslicenseserver module \u2013 Configuration for licenseserver resource.", "netscaler.adc.nslimitidentifier module \u2013 Configuration for limit Indetifier resource.", "netscaler.adc.nslimitselector module \u2013 Configuration for limit selector resource.", "netscaler.adc.nslimitsessions module \u2013 Configuration for limit sessions resource.", "netscaler.adc.nsmigration module \u2013 Configuration for Migration operation resource.", "netscaler.adc.nsmode module \u2013 Configuration for ns mode resource.", "netscaler.adc.nsparam module \u2013 Configuration for Citrix ADC parameters resource.", "netscaler.adc.nspartition_bridgegroup_binding module \u2013 Binding Resource definition for describing association between nspartition and bridgegroup resources", "netscaler.adc.nspartition module \u2013 Configuration for admin partition resource.", "netscaler.adc.nspartition_vlan_binding module \u2013 Binding Resource definition for describing association between nspartition and vlan resources", "netscaler.adc.nspartition_vxlan_binding module \u2013 Binding Resource definition for describing association between nspartition and vxlan resources", "netscaler.adc.nsratecontrol module \u2013 Configuration for rate control resource.", "netscaler.adc.nsrpcnode module \u2013 Configuration for rpc node resource.", "netscaler.adc.nsservicefunction module \u2013 Configuration for service Function resource.", "netscaler.adc.nsservicepath module \u2013 Configuration for service Chain resource.", "netscaler.adc.nsservicepath_nsservicefunction_binding module \u2013 Binding Resource definition for describing association between nsservicepath and nsservicefunction resources", "netscaler.adc.nssimpleacl6 module \u2013 Configuration for simple ACL6 resource.", "netscaler.adc.nssimpleacl module \u2013 Configuration for simple ACL resource.", "netscaler.adc.nsspparams module \u2013 Configuration for Surge Protection parameter resource.", "netscaler.adc.nsstats module \u2013 Configuration for stats resource.", "netscaler.adc.nssurgeq module \u2013 Configuration for surge queue resource.", "netscaler.adc.nstcpbufparam module \u2013 Configuration for tcp buffer parameter resource.", "netscaler.adc.nstcpparam module \u2013 Configuration for tcp parameters resource.", "netscaler.adc.nstcpprofile module \u2013 Configuration for TCP profile resource.", "netscaler.adc.nstimeout module \u2013 Configuration for timeout resource.", "netscaler.adc.nstimer_autoscalepolicy_binding module \u2013 Binding Resource definition for describing association between nstimer and autoscalepolicy resources", "netscaler.adc.nstimer module \u2013 Configuration for Timer resource.", "netscaler.adc.nstrace module \u2013 Configuration for nstrace operations resource.", "netscaler.adc.nstrafficdomain_bridgegroup_binding module \u2013 Binding Resource definition for describing association between nstrafficdomain and bridgegroup resources", "netscaler.adc.nstrafficdomain module \u2013 Configuration for Traffic Domain resource.", "netscaler.adc.nstrafficdomain_vlan_binding module \u2013 Binding Resource definition for describing association between nstrafficdomain and vlan resources", "netscaler.adc.nstrafficdomain_vxlan_binding module \u2013 Binding Resource definition for describing association between nstrafficdomain and vxlan resources", "netscaler.adc.nsvariable module \u2013 Configuration for variable resource.", "netscaler.adc.nsvpxparam module \u2013 Configuration for \u201cVPX\u201d resource.", "netscaler.adc.nsweblogparam module \u2013 Configuration for Web log parameters resource.", "netscaler.adc.nsxmlnamespace module \u2013 Configuration for XML namespace resource.", "netscaler.adc.ntpparam module \u2013 Configuration for NTP parameter resource.", "netscaler.adc.ntpserver module \u2013 Configuration for NTP server resource.", "netscaler.adc.onlinkipv6prefix module \u2013 Configuration for on-link IPv6 global prefixes for Router Advertisment resource.", "netscaler.adc.pcpprofile module \u2013 Configuration for PCP Profile resource.", "netscaler.adc.pcpserver module \u2013 Configuration for server resource.", "netscaler.adc.ping6 module \u2013 Configuration for 0 resource.", "netscaler.adc.ping module \u2013 Configuration for 0 resource.", "netscaler.adc.policydataset module \u2013 Configuration for TYPE set resource.", "netscaler.adc.policydataset_value_binding module \u2013 Binding Resource definition for describing association between policydataset and value resources", "netscaler.adc.policyexpression module \u2013 Configuration for expression resource.", "netscaler.adc.policyhttpcallout module \u2013 Configuration for HTTP callout resource.", "netscaler.adc.policymap module \u2013 Configuration for map policy resource.", "netscaler.adc.policyparam module \u2013 Configuration for policy parameter resource.", "netscaler.adc.policypatset module \u2013 Configuration for PAT set resource.", "netscaler.adc.policypatset_pattern_binding module \u2013 Binding Resource definition for describing association between policypatset and pattern resources", "netscaler.adc.policypatsetfile module \u2013 Configuration for patset file resource.", "netscaler.adc.policystringmap module \u2013 Configuration for string map resource.", "netscaler.adc.policystringmap_pattern_binding module \u2013 Binding Resource definition for describing association between policystringmap and pattern resources", "netscaler.adc.policyurlset module \u2013 Configuration for URL set resource.", "netscaler.adc.protocolhttpband module \u2013 Configuration for HTTP request/response band resource.", "netscaler.adc.ptp module \u2013 Configuration for Precision Time Protocol resource.", "netscaler.adc.quicbridgeprofile module \u2013 Configuration for QUIC BRIDGE profile resource.", "netscaler.adc.quicparam module \u2013 Configuration for Citrix ADC QUIC parameters resource.", "netscaler.adc.quicprofile module \u2013 Configuration for QUIC profile resource.", "netscaler.adc.radiusnode module \u2013 Configuration for RADIUS Node resource.", "netscaler.adc.rdpclientprofile module \u2013 Configuration for RDP clientprofile resource.", "netscaler.adc.rdpconnections module \u2013 Configuration for active rdp connections resource.", "netscaler.adc.rdpserverprofile module \u2013 Configuration for RDP serverprofile resource.", "netscaler.adc.reboot module \u2013 Configuration for 0 resource.", "netscaler.adc.reportingconfig module \u2013 Configuration for reporting config resource.", "netscaler.adc.reputationsettings module \u2013 Configuration for Reputation service settings resource.", "netscaler.adc.responderaction module \u2013 Configuration for responder action resource.", "netscaler.adc.responderglobal_responderpolicy_binding module \u2013 Binding Resource definition for describing association between responderglobal and responderpolicy resources", "netscaler.adc.responderhtmlpage module \u2013 Configuration for Responder HTML page resource.", "netscaler.adc.responderparam module \u2013 Configuration for responser parameter resource.", "netscaler.adc.responderpolicy module \u2013 Configuration for responder policy resource.", "netscaler.adc.responderpolicylabel module \u2013 Configuration for responder policy label resource.", "netscaler.adc.responderpolicylabel_responderpolicy_binding module \u2013 Binding Resource definition for describing association between responderpolicylabel and responderpolicy resources", "netscaler.adc.rewriteaction module \u2013 Configuration for rewrite action resource.", "netscaler.adc.rewriteglobal_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between rewriteglobal and rewritepolicy resources", "netscaler.adc.rewriteparam module \u2013 Configuration for rewrite parameter resource.", "netscaler.adc.rewritepolicy module \u2013 Configuration for rewrite policy resource.", "netscaler.adc.rewritepolicylabel module \u2013 Configuration for rewrite policy label resource.", "netscaler.adc.rewritepolicylabel_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between rewritepolicylabel and rewritepolicy resources", "netscaler.adc.rnat6 module \u2013 Configuration for IPv6 RNAT configured route resource.", "netscaler.adc.rnat6_nsip6_binding module \u2013 Binding Resource definition for describing association between rnat6 and nsip6 resources", "netscaler.adc.rnat module \u2013 Configuration for RNAT configured route resource.", "netscaler.adc.rnat_nsip_binding module \u2013 Binding Resource definition for describing association between rnat and nsip resources", "netscaler.adc.rnat_retainsourceportset_binding module \u2013 Binding Resource definition for describing association between rnat and retainsourceportset resources", "netscaler.adc.rnatglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between rnatglobal and auditsyslogpolicy resources", "netscaler.adc.rnatparam module \u2013 Configuration for RNAT parameter resource.", "netscaler.adc.rnatsession module \u2013 Configuration for RNAT session resource.", "netscaler.adc.route6 module \u2013 Configuration for route 6 resource.", "netscaler.adc.route module \u2013 Configuration for route resource.", "netscaler.adc.routerdynamicrouting module \u2013 Configuration for dynamic routing config resource.", "netscaler.adc.rsskeytype module \u2013 Configuration for RSS key type resource.", "netscaler.adc.server module \u2013 Configuration for server resource.", "netscaler.adc.service_lbmonitor_binding module \u2013 Binding Resource definition for describing association between service and lbmonitor resources", "netscaler.adc.service module \u2013 Configuration for service resource.", "netscaler.adc.servicegroup_lbmonitor_binding module \u2013 Binding Resource definition for describing association between servicegroup and lbmonitor resources", "netscaler.adc.servicegroup module \u2013 Configuration for service group resource.", "netscaler.adc.servicegroup_servicegroupmember_binding module \u2013 Binding Resource definition for describing association between servicegroup and servicegroupmember resources", "netscaler.adc.smppparam module \u2013 Configuration for SMPP configuration parameters resource.", "netscaler.adc.smppuser module \u2013 Configuration for SMPP user resource.", "netscaler.adc.snmpalarm module \u2013 Configuration for alarm resource.", "netscaler.adc.snmpcommunity module \u2013 Configuration for community resource.", "netscaler.adc.snmpengineid module \u2013 Configuration for SNMP engine id resource.", "netscaler.adc.snmpgroup module \u2013 Configuration for SNMP group resource.", "netscaler.adc.snmpmanager module \u2013 Configuration for manager resource.", "netscaler.adc.snmpmib module \u2013 Configuration for SNMP mib resource.", "netscaler.adc.snmpoption module \u2013 Configuration for SNMP option resource.", "netscaler.adc.snmptrap module \u2013 Configuration for snmp trap resource.", "netscaler.adc.snmptrap_snmpuser_binding module \u2013 Binding Resource definition for describing association between snmptrap and snmpuser resources", "netscaler.adc.snmpuser module \u2013 Configuration for SNMP user resource.", "netscaler.adc.snmpview module \u2013 Configuration for view resource.", "netscaler.adc.spilloveraction module \u2013 Configuration for Spillover action resource.", "netscaler.adc.spilloverpolicy module \u2013 Configuration for Spillover policy resource.", "netscaler.adc.sslaction module \u2013 Configuration for SSL action resource.", "netscaler.adc.sslcacertgroup module \u2013 Configuration for Group of CA certificate-key pairs resource.", "netscaler.adc.sslcacertgroup_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslcacertgroup and sslcertkey resources", "netscaler.adc.sslcert module \u2013 Configuration for cerificate resource.", "netscaler.adc.sslcertbundle module \u2013 Configuration for Imported Certbundle resource.", "netscaler.adc.sslcertfile module \u2013 Configuration for Imported Certfile resource.", "netscaler.adc.sslcertificatechain module \u2013 Configuration for linked certificate resource.", "netscaler.adc.sslcertkey module \u2013 Configuration for certificate key resource.", "netscaler.adc.sslcertkey_sslocspresponder_binding module \u2013 Binding Resource definition for describing association between sslcertkey and sslocspresponder resources", "netscaler.adc.sslcertkeybundle module \u2013 Configuration for certkey bundle resource.", "netscaler.adc.sslcertreq module \u2013 Configuration for certificate request resource.", "netscaler.adc.sslcipher module \u2013 Configuration for cipher resource.", "netscaler.adc.sslcipher_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslcipher and sslciphersuite resources", "netscaler.adc.sslcrl module \u2013 Configuration for Certificate Revocation List resource.", "netscaler.adc.sslcrlfile module \u2013 Configuration for Imported crl files resource.", "netscaler.adc.ssldhfile module \u2013 Configuration for dh imported file resource.", "netscaler.adc.ssldhparam module \u2013 Configuration for dh Parameter resource.", "netscaler.adc.ssldtlsprofile module \u2013 Configuration for DTLS profile resource.", "netscaler.adc.sslecdsakey module \u2013 Configuration for ecdsa key resource.", "netscaler.adc.sslfips module \u2013 Configuration for fips resource.", "netscaler.adc.sslfipskey module \u2013 Configuration for FIPS key resource.", "netscaler.adc.sslfipssimsource module \u2013 Configuration for FIPsSIM source resource.", "netscaler.adc.sslfipssimtarget module \u2013 Configuration for FIPS SIM Target resource.", "netscaler.adc.sslglobal_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslglobal and sslpolicy resources", "netscaler.adc.sslhsmkey module \u2013 Configuration for HSM key resource.", "netscaler.adc.sslkeyfile module \u2013 Configuration for Imported ssl key files resource.", "netscaler.adc.ssllogprofile module \u2013 Configuration for SSL logging Profile resource.", "netscaler.adc.sslocspresponder module \u2013 Configuration for OCSP responser resource.", "netscaler.adc.sslparameter module \u2013 Configuration for SSL parameter resource.", "netscaler.adc.sslpkcs12 module \u2013 Configuration for pkcs12 resource.", "netscaler.adc.sslpkcs8 module \u2013 Configuration for pkcs8 resource.", "netscaler.adc.sslpolicy module \u2013 Configuration for SSL policy resource.", "netscaler.adc.sslpolicylabel module \u2013 Configuration for SSL policy label resource.", "netscaler.adc.sslpolicylabel_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslpolicylabel and sslpolicy resources", "netscaler.adc.sslprofile_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslprofile and ecccurve resources", "netscaler.adc.sslprofile module \u2013 Configuration for SSL profile resource.", "netscaler.adc.sslprofile_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslprofile and sslcertkey resources", "netscaler.adc.sslprofile_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslprofile and sslcipher resources", "netscaler.adc.sslprofile_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslprofile and sslciphersuite resources", "netscaler.adc.sslrsakey module \u2013 Configuration for RSA key resource.", "netscaler.adc.sslservice_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslservice and ecccurve resources", "netscaler.adc.sslservice module \u2013 Configuration for SSL service resource.", "netscaler.adc.sslservice_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslservice and sslcertkey resources", "netscaler.adc.sslservice_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslservice and sslcipher resources", "netscaler.adc.sslservice_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslservice and sslciphersuite resources", "netscaler.adc.sslservice_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslservice and sslpolicy resources", "netscaler.adc.sslservicegroup_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and ecccurve resources", "netscaler.adc.sslservicegroup module \u2013 Configuration for SSL service group resource.", "netscaler.adc.sslservicegroup_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and sslcertkey resources", "netscaler.adc.sslservicegroup_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and sslcipher resources", "netscaler.adc.sslservicegroup_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and sslciphersuite resources", "netscaler.adc.sslvserver_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslvserver and ecccurve resources", "netscaler.adc.sslvserver module \u2013 Configuration for SSL virtual server resource.", "netscaler.adc.sslvserver_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslcertkey resources", "netscaler.adc.sslvserver_sslcertkeybundle_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslcertkeybundle resources", "netscaler.adc.sslvserver_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslcipher resources", "netscaler.adc.sslvserver_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslciphersuite resources", "netscaler.adc.sslvserver_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslpolicy resources", "netscaler.adc.sslwrapkey module \u2013 Configuration for WRAP key resource.", "netscaler.adc.streamidentifier module \u2013 Configuration for identifier resource.", "netscaler.adc.streamselector module \u2013 Configuration for selector resource.", "netscaler.adc.streamsession module \u2013 Configuration for active connection resource.", "netscaler.adc.subscribergxinterface module \u2013 Configuration for Gx interface Parameters resource.", "netscaler.adc.subscriberparam module \u2013 Configuration for Subscriber Params resource.", "netscaler.adc.subscriberprofile module \u2013 Configuration for Subscriber Profile resource.", "netscaler.adc.subscriberradiusinterface module \u2013 Configuration for RADIUS interface Parameters resource.", "netscaler.adc.subscribersessions module \u2013 Configuration for subscriber sesions resource.", "netscaler.adc.systemadmuserinfo module \u2013 Configuration for 0 resource.", "netscaler.adc.systembackup module \u2013 Configuration for Backup Data for ns backup and restore resource.", "netscaler.adc.systemcmdpolicy module \u2013 Configuration for command policy resource.", "netscaler.adc.systemcollectionparam module \u2013 Configuration for collection parameter resource.", "netscaler.adc.systemcpuparam module \u2013 Configuration for 0 resource.", "netscaler.adc.systementitydata module \u2013 Configuration for entity data resource.", "netscaler.adc.systemextramgmtcpu module \u2013 Configuration for 0 resource.", "netscaler.adc.systemfile module \u2013 Configuration for file resource.", "netscaler.adc.systemglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and auditnslogpolicy resources", "netscaler.adc.systemglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and auditsyslogpolicy resources", "netscaler.adc.systemglobal_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationldappolicy resources", "netscaler.adc.systemglobal_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationlocalpolicy resources", "netscaler.adc.systemglobal_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationpolicy resources", "netscaler.adc.systemglobal_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationradiuspolicy resources", "netscaler.adc.systemglobal_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationtacacspolicy resources", "netscaler.adc.systemgroup module \u2013 Configuration for system group resource.", "netscaler.adc.systemgroup_nspartition_binding module \u2013 Binding Resource definition for describing association between systemgroup and nspartition resources", "netscaler.adc.systemgroup_systemcmdpolicy_binding module \u2013 Binding Resource definition for describing association between systemgroup and systemcmdpolicy resources", "netscaler.adc.systemgroup_systemuser_binding module \u2013 Binding Resource definition for describing association between systemgroup and systemuser resources", "netscaler.adc.systemhwerror module \u2013 Configuration for Hardware errors resource.", "netscaler.adc.systemkek module \u2013 Configuration for Key encryption Key resource.", "netscaler.adc.systemparameter module \u2013 Configuration for system parameter resource.", "netscaler.adc.systemrestorepoint module \u2013 Configuration for Setting restorepoints for auto restore resource.", "netscaler.adc.systemsession module \u2013 Configuration for system session resource.", "netscaler.adc.systemsshkey module \u2013 Configuration for 0 resource.", "netscaler.adc.systemuser module \u2013 Configuration for system user resource.", "netscaler.adc.systemuser_nspartition_binding module \u2013 Binding Resource definition for describing association between systemuser and nspartition resources", "netscaler.adc.systemuser_systemcmdpolicy_binding module \u2013 Binding Resource definition for describing association between systemuser and systemcmdpolicy resources", "netscaler.adc.tmformssoaction module \u2013 Configuration for Form sso action resource.", "netscaler.adc.tmglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and auditnslogpolicy resources", "netscaler.adc.tmglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and auditsyslogpolicy resources", "netscaler.adc.tmglobal_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and tmsessionpolicy resources", "netscaler.adc.tmglobal_tmtrafficpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and tmtrafficpolicy resources", "netscaler.adc.tmsamlssoprofile module \u2013 Configuration for SAML sso action resource.", "netscaler.adc.tmsessionaction module \u2013 Configuration for TM session action resource.", "netscaler.adc.tmsessionparameter module \u2013 Configuration for session parameter resource.", "netscaler.adc.tmsessionpolicy module \u2013 Configuration for TM session policy resource.", "netscaler.adc.tmtrafficaction module \u2013 Configuration for TM traffic action resource.", "netscaler.adc.tmtrafficpolicy module \u2013 Configuration for TM traffic policy resource.", "netscaler.adc.traceroute6 module \u2013 Configuration for 0 resource.", "netscaler.adc.traceroute module \u2013 Configuration for 0 resource.", "netscaler.adc.transformaction module \u2013 Configuration for transform action resource.", "netscaler.adc.transformglobal_transformpolicy_binding module \u2013 Binding Resource definition for describing association between transformglobal and transformpolicy resources", "netscaler.adc.transformpolicy module \u2013 Configuration for URL Transformation policy resource.", "netscaler.adc.transformpolicylabel module \u2013 Configuration for transform policy label resource.", "netscaler.adc.transformpolicylabel_transformpolicy_binding module \u2013 Binding Resource definition for describing association between transformpolicylabel and transformpolicy resources", "netscaler.adc.transformprofile module \u2013 Configuration for URL Transformation profile resource.", "netscaler.adc.tunnelglobal_tunneltrafficpolicy_binding module \u2013 Binding Resource definition for describing association between tunnelglobal and tunneltrafficpolicy resources", "netscaler.adc.tunneltrafficpolicy module \u2013 Configuration for tunnel policy resource.", "netscaler.adc.ulfdserver module \u2013 Configuration for ulfd server resource.", "netscaler.adc.urlfilteringcategorization module \u2013 Configuration for Categorization resource.", "netscaler.adc.urlfilteringparameter module \u2013 Configuration for URLFILTERING paramter resource.", "netscaler.adc.userprotocol module \u2013 Configuration for user protocol resource.", "netscaler.adc.uservserver module \u2013 Configuration for virtual server resource.", "netscaler.adc.videooptimizationdetectionaction module \u2013 Configuration for videooptimization detectionaction resource.", "netscaler.adc.videooptimizationdetectionpolicy module \u2013 Configuration for videooptimization detectionpolicy resource.", "netscaler.adc.videooptimizationdetectionpolicylabel module \u2013 Configuration for videooptimization detection policy label resource.", "netscaler.adc.videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationdetectionpolicylabel and videooptimizationdetectionpolicy resources", "netscaler.adc.videooptimizationglobaldetection_videooptimizationdetectionpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationglobaldetection and videooptimizationdetectionpolicy resources", "netscaler.adc.videooptimizationglobalpacing_videooptimizationpacingpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationglobalpacing and videooptimizationpacingpolicy resources", "netscaler.adc.videooptimizationpacingaction module \u2013 Configuration for videooptimization pacingaction resource.", "netscaler.adc.videooptimizationpacingpolicy module \u2013 Configuration for videooptimization pacingpolicy resource.", "netscaler.adc.videooptimizationpacingpolicylabel module \u2013 Configuration for videooptimization pacing policy label resource.", "netscaler.adc.videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationpacingpolicylabel and videooptimizationpacingpolicy resources", "netscaler.adc.videooptimizationparameter module \u2013 Configuration for VideoOptimization parameter resource.", "netscaler.adc.vlan_channel_binding module \u2013 Binding Resource definition for describing association between vlan and channel resources", "netscaler.adc.vlan_interface_binding module \u2013 Binding Resource definition for describing association between vlan and interface resources", "netscaler.adc.vlan_linkset_binding module \u2013 Binding Resource definition for describing association between vlan and linkset resources", "netscaler.adc.vlan module \u2013 Configuration for \u201cVLAN\u201d resource.", "netscaler.adc.vlan_nsip6_binding module \u2013 Binding Resource definition for describing association between vlan and nsip6 resources", "netscaler.adc.vlan_nsip_binding module \u2013 Binding Resource definition for describing association between vlan and nsip resources", "netscaler.adc.vpnalwaysonprofile module \u2013 Configuration for AlwyasON profile resource.", "netscaler.adc.vpnclientlessaccesspolicy module \u2013 Configuration for Clientless VPN rewrite policy resource.", "netscaler.adc.vpnclientlessaccessprofile module \u2013 Configuration for Clientless VPN rewrite profile resource.", "netscaler.adc.vpnepaprofile module \u2013 Configuration for Epa profile resource.", "netscaler.adc.vpneula module \u2013 Configuration for EULA for vservers resource.", "netscaler.adc.vpnformssoaction module \u2013 Configuration for Form sso action resource.", "netscaler.adc.vpnglobal_appcontroller_binding module \u2013 Binding Resource definition for describing association between vpnglobal and appcontroller resources", "netscaler.adc.vpnglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and auditnslogpolicy resources", "netscaler.adc.vpnglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and auditsyslogpolicy resources", "netscaler.adc.vpnglobal_authenticationcertpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationcertpolicy resources", "netscaler.adc.vpnglobal_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationldappolicy resources", "netscaler.adc.vpnglobal_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationlocalpolicy resources", "netscaler.adc.vpnglobal_authenticationnegotiatepolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationnegotiatepolicy resources", "netscaler.adc.vpnglobal_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationpolicy resources", "netscaler.adc.vpnglobal_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationradiuspolicy resources", "netscaler.adc.vpnglobal_authenticationsamlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationsamlpolicy resources", "netscaler.adc.vpnglobal_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationtacacspolicy resources", "netscaler.adc.vpnglobal_domain_binding module \u2013 Binding Resource definition for describing association between vpnglobal and domain resources", "netscaler.adc.vpnglobal_intranetip6_binding module \u2013 Binding Resource definition for describing association between vpnglobal and intranetip6 resources", "netscaler.adc.vpnglobal_intranetip_binding module \u2013 Binding Resource definition for describing association between vpnglobal and intranetip resources", "netscaler.adc.vpnglobal_sharefileserver_binding module \u2013 Binding Resource definition for describing association between vpnglobal and sharefileserver resources", "netscaler.adc.vpnglobal_sslcertkey_binding module \u2013 Binding Resource definition for describing association between vpnglobal and sslcertkey resources", "netscaler.adc.vpnglobal_staserver_binding module \u2013 Binding Resource definition for describing association between vpnglobal and staserver resources", "netscaler.adc.vpnglobal_vpnclientlessaccesspolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnclientlessaccesspolicy resources", "netscaler.adc.vpnglobal_vpneula_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpneula resources", "netscaler.adc.vpnglobal_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnintranetapplication resources", "netscaler.adc.vpnglobal_vpnnexthopserver_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnnexthopserver resources", "netscaler.adc.vpnglobal_vpnportaltheme_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnportaltheme resources", "netscaler.adc.vpnglobal_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnsessionpolicy resources", "netscaler.adc.vpnglobal_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpntrafficpolicy resources", "netscaler.adc.vpnglobal_vpnurl_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnurl resources", "netscaler.adc.vpnglobal_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnurlpolicy resources", "netscaler.adc.vpnicaconnection module \u2013 Configuration for active ica connections resource.", "netscaler.adc.vpnintranetapplication module \u2013 Configuration for SSLVPN intranet application resource.", "netscaler.adc.vpnnexthopserver module \u2013 Configuration for Next Hop Server resource.", "netscaler.adc.vpnparameter module \u2013 Configuration for VPN parameter resource.", "netscaler.adc.vpnpcoipconnection module \u2013 Configuration for PCoIP connection resource.", "netscaler.adc.vpnpcoipprofile module \u2013 Configuration for PCoIP session profile resource.", "netscaler.adc.vpnpcoipvserverprofile module \u2013 Configuration for PCoIP vserver profile resource.", "netscaler.adc.vpnportaltheme module \u2013 Configuration for portaltheme resource.", "netscaler.adc.vpnsamlssoprofile module \u2013 Configuration for SAML sso action resource.", "netscaler.adc.vpnsessionaction module \u2013 Configuration for VPN session action resource.", "netscaler.adc.vpnsessionpolicy module \u2013 Configuration for VPN session policy resource.", "netscaler.adc.vpntrafficaction module \u2013 Configuration for VPN traffic action resource.", "netscaler.adc.vpntrafficpolicy module \u2013 Configuration for VPN traffic policy resource.", "netscaler.adc.vpnurl module \u2013 Configuration for VPN URL resource.", "netscaler.adc.vpnurlaction module \u2013 Configuration for VPN url action resource.", "netscaler.adc.vpnurlpolicy module \u2013 Configuration for VPN url policy resource.", "netscaler.adc.vpnvserver_aaapreauthenticationpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and aaapreauthenticationpolicy resources", "netscaler.adc.vpnvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between vpnvserver and analyticsprofile resources", "netscaler.adc.vpnvserver_appcontroller_binding module \u2013 Binding Resource definition for describing association between vpnvserver and appcontroller resources", "netscaler.adc.vpnvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and appflowpolicy resources", "netscaler.adc.vpnvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and auditnslogpolicy resources", "netscaler.adc.vpnvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and auditsyslogpolicy resources", "netscaler.adc.vpnvserver_authenticationcertpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationcertpolicy resources", "netscaler.adc.vpnvserver_authenticationdfapolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationdfapolicy resources", "netscaler.adc.vpnvserver_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationldappolicy resources", "netscaler.adc.vpnvserver_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationlocalpolicy resources", "netscaler.adc.vpnvserver_authenticationloginschemapolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationloginschemapolicy resources", "netscaler.adc.vpnvserver_authenticationnegotiatepolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationnegotiatepolicy resources", "netscaler.adc.vpnvserver_authenticationoauthidppolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationoauthidppolicy resources", "netscaler.adc.vpnvserver_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationpolicy resources", "netscaler.adc.vpnvserver_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationradiuspolicy resources", "netscaler.adc.vpnvserver_authenticationsamlidppolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationsamlidppolicy resources", "netscaler.adc.vpnvserver_authenticationsamlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationsamlpolicy resources", "netscaler.adc.vpnvserver_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationtacacspolicy resources", "netscaler.adc.vpnvserver_authenticationwebauthpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationwebauthpolicy resources", "netscaler.adc.vpnvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and cachepolicy resources", "netscaler.adc.vpnvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and cspolicy resources", "netscaler.adc.vpnvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and feopolicy resources", "netscaler.adc.vpnvserver_icapolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and icapolicy resources", "netscaler.adc.vpnvserver_intranetip6_binding module \u2013 Binding Resource definition for describing association between vpnvserver and intranetip6 resources", "netscaler.adc.vpnvserver_intranetip_binding module \u2013 Binding Resource definition for describing association between vpnvserver and intranetip resources", "netscaler.adc.vpnvserver module \u2013 Configuration for VPN virtual server resource.", "netscaler.adc.vpnvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and responderpolicy resources", "netscaler.adc.vpnvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and rewritepolicy resources", "netscaler.adc.vpnvserver_sharefileserver_binding module \u2013 Binding Resource definition for describing association between vpnvserver and sharefileserver resources", "netscaler.adc.vpnvserver_staserver_binding module \u2013 Binding Resource definition for describing association between vpnvserver and staserver resources", "netscaler.adc.vpnvserver_vpnclientlessaccesspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnclientlessaccesspolicy resources", "netscaler.adc.vpnvserver_vpnepaprofile_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnepaprofile resources", "netscaler.adc.vpnvserver_vpneula_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpneula resources", "netscaler.adc.vpnvserver_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnintranetapplication resources", "netscaler.adc.vpnvserver_vpnnexthopserver_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnnexthopserver resources", "netscaler.adc.vpnvserver_vpnportaltheme_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnportaltheme resources", "netscaler.adc.vpnvserver_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnsessionpolicy resources", "netscaler.adc.vpnvserver_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpntrafficpolicy resources", "netscaler.adc.vpnvserver_vpnurl_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnurl resources", "netscaler.adc.vpnvserver_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnurlpolicy resources", "netscaler.adc.vrid6_channel_binding module \u2013 Binding Resource definition for describing association between vrid6 and channel resources", "netscaler.adc.vrid6_interface_binding module \u2013 Binding Resource definition for describing association between vrid6 and interface resources", "netscaler.adc.vrid6 module \u2013 Configuration for Virtual Router ID for IPv6 resource.", "netscaler.adc.vrid6_trackinterface_binding module \u2013 Binding Resource definition for describing association between vrid6 and trackinterface resources", "netscaler.adc.vrid_channel_binding module \u2013 Binding Resource definition for describing association between vrid and channel resources", "netscaler.adc.vrid_interface_binding module \u2013 Binding Resource definition for describing association between vrid and interface resources", "netscaler.adc.vrid module \u2013 Configuration for Virtual Router ID resource.", "netscaler.adc.vrid_trackinterface_binding module \u2013 Binding Resource definition for describing association between vrid and trackinterface resources", "netscaler.adc.vridparam module \u2013 Configuration for VR ID parameter resource.", "netscaler.adc.vserver module \u2013 Configuration for virtual server resource.", "netscaler.adc.vxlan module \u2013 Configuration for \u201cVXLAN\u201d resource.", "netscaler.adc.vxlan_nsip6_binding module \u2013 Binding Resource definition for describing association between vxlan and nsip6 resources", "netscaler.adc.vxlan_nsip_binding module \u2013 Binding Resource definition for describing association between vxlan and nsip resources", "netscaler.adc.vxlan_srcip_binding module \u2013 Binding Resource definition for describing association between vxlan and srcip resources", "netscaler.adc.vxlanvlanmap module \u2013 Configuration for vxlan vlan mapping resource.", "netscaler.adc.vxlanvlanmap_vxlan_binding module \u2013 Binding Resource definition for describing association between vxlanvlanmap and vxlan resources", "Collections in the Netscaler Namespace", "Welcome to my Ansible collection documentation"], "terms": {"The": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "follow": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "document": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896], "declar": [0, 103], "plugin": [0, 827, 833, 865], "us": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "ansibl": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "core": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "configur": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 48, 51, 54, 60, 61, 62, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 218, 219, 220, 224, 228, 232, 233, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 263, 266, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 329, 338, 353, 356, 357, 364, 365, 367, 368, 371, 372, 373, 374, 376, 380, 381, 385, 391, 401, 402, 411, 412, 414, 416, 418, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 463, 464, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 497, 500, 506, 507, 509, 510, 511, 513, 514, 548, 550, 551, 556, 566, 569, 571, 572, 585, 591, 594, 609, 614, 616, 620, 622, 624, 625, 626, 634, 636, 638, 649, 656, 662, 666, 677, 687, 688, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 786, 787, 788, 790, 791, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 887, 891, 892, 893, 895], "ar": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896], "set": [0, 2, 12, 20, 22, 26, 35, 44, 49, 50, 52, 53, 55, 57, 60, 61, 62, 72, 73, 74, 97, 105, 117, 122, 124, 126, 128, 130, 133, 136, 143, 147, 154, 156, 160, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 189, 193, 194, 195, 201, 202, 203, 204, 210, 217, 221, 222, 225, 226, 227, 229, 231, 233, 234, 244, 245, 246, 247, 256, 262, 264, 265, 267, 269, 270, 271, 272, 273, 274, 288, 295, 297, 314, 323, 325, 327, 328, 331, 332, 333, 334, 335, 337, 339, 342, 343, 344, 347, 349, 352, 358, 363, 366, 369, 370, 375, 379, 383, 390, 391, 392, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 409, 410, 411, 413, 415, 416, 417, 418, 419, 421, 422, 423, 424, 431, 432, 433, 439, 440, 442, 447, 448, 453, 467, 469, 475, 478, 481, 482, 485, 487, 488, 489, 496, 498, 501, 503, 504, 505, 508, 512, 520, 523, 526, 527, 530, 533, 534, 535, 536, 537, 538, 541, 542, 547, 549, 555, 557, 558, 563, 564, 565, 567, 568, 570, 573, 574, 578, 582, 583, 585, 586, 587, 591, 592, 593, 594, 602, 608, 609, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 635, 636, 637, 638, 639, 642, 643, 646, 647, 648, 649, 650, 651, 655, 657, 661, 665, 667, 681, 682, 685, 686, 689, 694, 695, 696, 697, 698, 699, 701, 706, 713, 714, 716, 717, 725, 736, 742, 746, 755, 756, 758, 760, 761, 762, 763, 764, 765, 766, 775, 776, 777, 778, 779, 780, 782, 783, 784, 789, 792, 794, 797, 825, 827, 833, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 865, 876, 877, 879, 882, 886, 890, 894], "No": [0, 20, 109, 124, 126, 128, 130, 387, 462, 528, 574, 582, 583, 682, 689, 706, 716, 882, 886], "have": [0, 20, 35, 53, 93, 97, 103, 143, 147, 151, 160, 161, 167, 186, 225, 226, 227, 234, 247, 256, 265, 276, 288, 295, 314, 331, 333, 336, 337, 343, 344, 349, 352, 360, 366, 368, 369, 375, 388, 390, 404, 405, 406, 409, 413, 417, 419, 427, 442, 462, 482, 489, 523, 538, 547, 558, 568, 573, 582, 583, 617, 618, 630, 633, 635, 637, 645, 651, 667, 673, 685, 689, 706, 716, 726, 736, 742, 746, 757, 764, 769, 776, 782, 786, 787, 788, 793, 825, 827, 833, 834, 836, 839, 865], "been": [0, 206, 352, 395, 404, 417, 419, 523, 547, 573, 617, 633, 635, 645, 667, 716], "defin": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "These": [1, 143, 151, 160, 167, 234, 272, 391, 612, 618, 657, 664, 682, 689, 711, 776, 896], "here": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896], "netscal": [1, 897], "adc": [1, 896, 897], "aaacertparam": [2, 391], "certif": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 656, 657, 658, 659, 662, 663, 665, 666, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "paramet": [2, 391], "resourc": [2, 232, 391, 463, 464], "aaaglobal_aaapreauthenticationpolicy_bind": [2, 391], "bind": [2, 12, 20, 22, 35, 49, 53, 55, 72, 74, 97, 117, 143, 154, 156, 186, 193, 195, 202, 204, 210, 217, 227, 229, 234, 241, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 337, 339, 358, 366, 369, 375, 379, 391, 400, 413, 415, 417, 419, 421, 423, 424, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 519, 537, 538, 549, 555, 567, 570, 584, 590, 593, 612, 613, 618, 619, 621, 623, 635, 637, 639, 640, 644, 648, 650, 655, 657, 661, 663, 665, 667, 685, 686, 689, 695, 701, 706, 736, 746, 764, 765, 776, 777, 782, 783, 789, 865, 882, 886, 890, 894], "definit": [2, 146, 391, 523, 587], "describ": [2, 59, 239, 391, 459, 462, 528, 689, 762], "associ": [2, 27, 49, 50, 53, 56, 97, 108, 127, 131, 156, 158, 165, 186, 197, 221, 276, 288, 293, 295, 314, 325, 327, 332, 355, 359, 366, 369, 375, 384, 388, 391, 403, 417, 442, 467, 482, 512, 528, 532, 537, 538, 567, 570, 573, 584, 586, 590, 592, 593, 628, 630, 635, 637, 641, 642, 644, 645, 651, 653, 657, 664, 685, 762, 769, 773, 774, 827, 833, 835, 837, 838, 865, 882, 886], "between": [2, 3, 12, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 35, 42, 44, 45, 46, 47, 49, 50, 52, 53, 55, 56, 57, 58, 59, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 74, 97, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 186, 191, 192, 193, 195, 196, 197, 198, 199, 200, 202, 204, 210, 215, 216, 217, 221, 222, 223, 225, 226, 227, 229, 230, 231, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 256, 261, 262, 264, 265, 267, 268, 269, 271, 272, 274, 275, 276, 288, 293, 294, 295, 297, 314, 321, 322, 323, 324, 325, 326, 327, 328, 330, 331, 332, 333, 334, 335, 336, 337, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 354, 355, 358, 359, 360, 361, 362, 363, 366, 369, 370, 375, 377, 378, 379, 382, 383, 384, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 403, 404, 405, 406, 407, 408, 409, 410, 413, 415, 417, 419, 420, 421, 423, 424, 425, 426, 427, 442, 453, 456, 457, 458, 459, 460, 461, 462, 465, 467, 469, 482, 484, 485, 486, 487, 489, 490, 491, 492, 493, 494, 495, 496, 498, 499, 501, 502, 503, 504, 505, 508, 512, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 549, 552, 553, 554, 555, 557, 558, 559, 560, 561, 562, 563, 564, 565, 567, 568, 570, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 610, 611, 612, 613, 615, 617, 618, 619, 621, 623, 627, 628, 629, 630, 631, 632, 633, 635, 637, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 663, 664, 665, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 678, 679, 680, 681, 682, 683, 684, 685, 686, 689, 693, 695, 701, 706, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 736, 740, 741, 742, 743, 744, 745, 746, 749, 754, 755, 756, 757, 758, 759, 760, 761, 762, 764, 765, 767, 769, 770, 771, 772, 773, 774, 775, 776, 777, 781, 782, 783, 785, 789, 792, 793, 794, 795, 796, 797, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 865, 882, 886, 888, 889, 890, 894], "aaaglob": [2, 391], "aaapreauthenticationpolici": [2, 391], "aaaglobal_authenticationnegotiateaction_bind": [2, 391], "authenticationnegotiateact": [2, 391], "aaagroup": [2, 391], "aaa": [2, 23, 27, 52, 129, 142, 143, 151, 153, 167, 245, 378, 391, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 827, 865], "group": [2, 3, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 20, 23, 26, 27, 28, 29, 52, 73, 97, 134, 135, 136, 139, 141, 142, 143, 148, 150, 151, 153, 156, 158, 160, 162, 166, 167, 171, 172, 173, 175, 178, 180, 182, 183, 191, 218, 219, 220, 221, 225, 226, 227, 233, 234, 246, 247, 364, 366, 367, 368, 373, 375, 391, 394, 403, 406, 412, 417, 419, 424, 442, 445, 446, 474, 475, 476, 477, 478, 479, 480, 481, 483, 487, 489, 495, 496, 514, 548, 561, 569, 587, 621, 622, 623, 629, 630, 636, 638, 650, 654, 656, 665, 666, 689, 691, 692, 697, 698, 702, 703, 704, 709, 710, 737, 738, 739, 786, 787, 788, 790, 791, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "aaagroup_aaauser_bind": [2, 12, 391], "aaauser": [2, 391], "aaagroup_auditnslogpolicy_bind": [2, 12, 391], "auditnslogpolici": [2, 391], "aaagroup_auditsyslogpolicy_bind": [2, 12, 391], "auditsyslogpolici": [2, 391], "aaagroup_authorizationpolicy_bind": [2, 12, 391], "authorizationpolici": [2, 391], "aaagroup_intranetip6_bind": [2, 12, 391], "intranetip6": [2, 391], "aaagroup_intranetip_bind": [2, 12, 391], "intranetip": [2, 391], "aaagroup_tmsessionpolicy_bind": [2, 12, 391], "tmsessionpolici": [2, 391, 606], "aaagroup_vpnintranetapplication_bind": [2, 12, 391], "vpnintranetappl": [2, 391], "aaagroup_vpnsessionpolicy_bind": [2, 12, 391], "vpnsessionpolici": [2, 391], "aaagroup_vpntrafficpolicy_bind": [2, 12, 391], "vpntrafficpolici": [2, 391], "aaagroup_vpnurl_bind": [2, 12, 391], "vpnurl": [2, 391, 838, 839], "aaagroup_vpnurlpolicy_bind": [2, 12, 391], "vpnurlpolici": [2, 391], "aaakcdaccount": [2, 391], "kerbero": [2, 148, 160, 162, 391, 754, 755, 756, 758, 832, 835], "constrain": [2, 391, 536, 587, 755, 756, 758, 835], "deleg": [2, 330, 333, 366, 391, 755, 756, 758, 835], "account": [2, 22, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 75, 87, 97, 132, 134, 148, 157, 158, 167, 186, 222, 244, 321, 391, 417, 442, 522, 635, 717, 719, 755, 756, 758, 827, 833, 835, 865], "aaaldapparam": [2, 391], "ldap": [2, 22, 192, 391, 417, 602, 667], "aaaotpparamet": [2, 391], "otpparamet": [2, 391], "aaaparamet": [2, 391], "aaapreauthenticationact": [2, 391], "pre": [2, 391, 399, 564, 602, 604, 882, 886], "authent": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 155, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "action": [2, 22, 25, 28, 48, 52, 53, 69, 76, 77, 78, 82, 83, 84, 88, 89, 90, 97, 98, 99, 109, 110, 120, 126, 127, 130, 131, 133, 134, 137, 140, 141, 144, 146, 147, 149, 152, 153, 154, 159, 161, 162, 163, 164, 168, 192, 193, 197, 202, 205, 206, 207, 210, 211, 212, 226, 227, 265, 271, 272, 276, 295, 314, 336, 337, 355, 359, 363, 375, 388, 391, 417, 419, 421, 442, 472, 473, 482, 502, 512, 520, 535, 536, 566, 573, 591, 611, 612, 617, 618, 621, 628, 653, 682, 685, 711, 717, 723, 742, 757, 759, 769, 775, 776, 781, 782, 834, 836, 839], "aaapreauthenticationparamet": [2, 391], "polici": [2, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 54, 60, 61, 62, 73, 109, 117, 125, 129, 134, 135, 141, 146, 147, 150, 153, 155, 162, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 194, 196, 201, 203, 215, 222, 224, 226, 228, 243, 262, 263, 264, 266, 270, 271, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 329, 338, 353, 363, 364, 366, 374, 376, 383, 385, 391, 411, 419, 422, 424, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 482, 520, 523, 528, 536, 566, 567, 573, 586, 587, 608, 609, 611, 614, 615, 616, 617, 620, 626, 637, 641, 677, 682, 687, 689, 695, 699, 700, 702, 703, 704, 706, 711, 713, 729, 730, 731, 732, 733, 734, 735, 738, 747, 748, 750, 751, 752, 753, 755, 756, 758, 762, 763, 766, 768, 776, 778, 779, 780, 782, 784, 794, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "aaaradiusparam": [2, 391], "radiu": [2, 22, 133, 143, 241, 297, 314, 366, 369, 375, 391, 417, 423, 442, 609, 613, 615, 619, 635, 637, 716, 717, 827, 833], "aaasess": [2, 391], "activ": [2, 20, 97, 103, 109, 143, 148, 199, 200, 207, 234, 239, 246, 288, 314, 351, 366, 369, 386, 391, 396, 442, 467, 482, 487, 519, 522, 537, 538, 542, 545, 547, 559, 563, 564, 600, 635, 637, 695, 701, 706, 716, 717, 827, 828, 833, 865, 882, 886, 888], "connect": [2, 20, 25, 26, 29, 42, 52, 72, 97, 109, 117, 119, 124, 126, 128, 130, 143, 147, 152, 158, 161, 167, 186, 191, 215, 221, 234, 238, 239, 241, 246, 268, 271, 272, 288, 314, 321, 335, 359, 363, 366, 369, 370, 375, 379, 383, 389, 391, 392, 396, 398, 399, 407, 408, 417, 419, 424, 427, 442, 458, 467, 482, 487, 489, 496, 499, 514, 522, 523, 525, 527, 534, 535, 536, 538, 542, 547, 549, 553, 559, 562, 563, 564, 565, 568, 598, 600, 602, 604, 612, 617, 618, 623, 625, 629, 630, 633, 635, 637, 641, 654, 671, 682, 689, 695, 696, 706, 713, 716, 742, 746, 757, 758, 759, 764, 776, 786, 787, 788, 792, 825, 827, 829, 833, 865, 889], "aaassoprofil": [2, 391], "sso": [2, 20, 143, 146, 391, 755, 756, 758, 827, 833, 835, 837, 838, 865], "profil": [2, 5, 43, 48, 50, 69, 70, 72, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 117, 128, 134, 136, 147, 148, 151, 152, 157, 160, 161, 164, 166, 167, 191, 196, 197, 202, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 268, 269, 277, 288, 298, 314, 325, 332, 335, 383, 391, 403, 417, 428, 442, 465, 466, 468, 474, 475, 476, 477, 479, 480, 481, 482, 522, 563, 581, 602, 604, 635, 637, 665, 682, 688, 690, 691, 692, 695, 701, 706, 716, 749, 754, 758, 762, 764, 793, 797, 825, 827, 832, 833, 835, 837, 838, 841, 865, 871], "aaatacacsparam": [2, 391], "tacac": [2, 22, 391, 523], "user": [2, 6, 19, 20, 21, 22, 26, 27, 28, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 44, 51, 52, 54, 61, 62, 73, 97, 109, 124, 126, 128, 130, 132, 133, 134, 135, 137, 138, 140, 141, 143, 144, 146, 147, 148, 149, 150, 151, 153, 154, 156, 157, 158, 159, 160, 162, 163, 166, 168, 171, 172, 173, 175, 178, 180, 182, 183, 186, 192, 199, 200, 203, 206, 207, 208, 210, 211, 212, 215, 222, 224, 228, 241, 264, 265, 266, 268, 271, 272, 275, 297, 314, 321, 352, 363, 366, 370, 375, 383, 391, 392, 403, 411, 412, 413, 415, 417, 419, 421, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 463, 518, 519, 522, 535, 536, 537, 538, 547, 564, 580, 581, 588, 602, 603, 607, 608, 611, 612, 614, 615, 617, 618, 635, 644, 649, 657, 664, 665, 666, 673, 677, 685, 689, 695, 697, 703, 706, 709, 721, 723, 736, 739, 742, 747, 748, 749, 754, 755, 756, 758, 774, 778, 784, 792, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 813, 815, 820, 821, 823, 824, 825, 827, 828, 830, 832, 833, 834, 835, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 871, 876, 877, 879], "aaauser_auditnslogpolicy_bind": [2, 35, 391], "aaauser_auditsyslogpolicy_bind": [2, 35, 391], "aaauser_authorizationpolicy_bind": [2, 35, 391], "aaauser_intranetip6_bind": [2, 35, 391], "aaauser_intranetip_bind": [2, 35, 391], "aaauser_tmsessionpolicy_bind": [2, 35, 391], "aaauser_vpnintranetapplication_bind": [2, 35, 391], "aaauser_vpnsessionpolicy_bind": [2, 35, 391], "aaauser_vpntrafficpolicy_bind": [2, 35, 391], "aaauser_vpnurl_bind": [2, 35, 391], "aaauser_vpnurlpolicy_bind": [2, 35, 391], "admparamet": [2, 391], "adm": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "analyticsglobal_analyticsprofile_bind": [2, 391], "analyticsglob": [2, 391], "analyticsprofil": [2, 391, 486], "analyt": [2, 43, 48, 117, 277, 298, 391, 428, 486, 547, 742, 841], "apispec": [2, 97, 391], "api": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "specif": [2, 52, 97, 117, 124, 126, 128, 130, 134, 143, 147, 151, 158, 160, 288, 314, 350, 364, 366, 375, 391, 403, 404, 417, 424, 442, 459, 467, 498, 515, 516, 523, 535, 537, 538, 557, 558, 568, 573, 574, 645, 648, 649, 651, 654, 714, 755, 756], "apispecfil": [2, 391], "specificationfil": [2, 391], "appalgparam": [2, 391], "appalg": [2, 391], "param": [2, 288, 313, 366, 391, 408, 419, 602, 635, 689, 695, 706, 774], "appflowact": [2, 391, 612], "appflow": [2, 44, 48, 51, 54, 124, 126, 128, 129, 130, 186, 288, 314, 352, 366, 369, 375, 391, 442, 517, 518, 531, 591, 595, 612, 635, 637, 713, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 865], "appflowaction_analyticsprofile_bind": [2, 49, 391], "appflowcollector": [2, 391], "collector": [2, 44, 49, 52, 124, 126, 128, 130, 391, 517], "appflowglobal_appflowpolicy_bind": [2, 391], "appflowglob": [2, 391], "appflowpolici": [2, 391], "appflowparam": [2, 391], "appflowpolicylabel": [2, 391], "label": [2, 6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 51, 54, 60, 61, 62, 73, 155, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 181, 182, 183, 194, 201, 203, 224, 228, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 329, 338, 350, 391, 411, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 462, 525, 609, 614, 616, 620, 673, 677, 687, 699, 711, 729, 730, 731, 732, 733, 734, 735, 750, 751, 753, 763, 766, 778, 779, 780, 784, 794, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "appflowpolicylabel_appflowpolicy_bind": [2, 53, 55, 391], "appfwarch": [2, 391], "archiv": [2, 97, 391], "appfwconfidfield": [2, 391], "confidenti": [2, 75, 391, 568, 595], "form": [2, 20, 44, 56, 69, 70, 75, 76, 78, 82, 83, 88, 89, 97, 99, 109, 143, 146, 191, 247, 288, 314, 350, 391, 406, 419, 424, 442, 456, 520, 536, 568, 587, 661, 663, 758, 835, 865, 884, 885, 886, 887], "field": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "appfwcustomset": [2, 391], "applic": [2, 6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 42, 44, 52, 61, 62, 70, 73, 103, 109, 134, 151, 153, 160, 162, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 200, 210, 222, 224, 237, 247, 263, 278, 279, 280, 281, 282, 283, 285, 286, 288, 289, 290, 291, 292, 302, 303, 314, 318, 329, 333, 335, 363, 366, 367, 368, 369, 374, 375, 376, 378, 383, 391, 392, 407, 417, 419, 431, 432, 433, 439, 440, 442, 447, 448, 466, 468, 475, 482, 489, 496, 523, 528, 535, 537, 538, 539, 563, 565, 574, 602, 615, 621, 623, 635, 637, 639, 667, 677, 689, 695, 706, 713, 716, 729, 730, 731, 732, 733, 734, 735, 742, 750, 751, 753, 754, 755, 756, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 832, 833, 835, 837, 838, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 873, 876, 877], "firewal": [2, 70, 73, 109, 370, 378, 391, 417, 419, 442, 865], "custom": [2, 97, 146, 156, 157, 160, 167, 239, 336, 337, 391, 417, 442, 462, 497, 498, 528, 535, 536, 538, 541, 602, 635, 636, 637, 638, 646, 794, 827], "xml": [2, 66, 69, 70, 97, 102, 103, 104, 105, 106, 107, 109, 146, 160, 378, 391, 417, 523, 615, 641, 794, 795], "appfwfieldtyp": [2, 391], "type": [2, 4, 7, 8, 9, 13, 15, 16, 18, 20, 22, 26, 30, 31, 32, 36, 38, 39, 41, 44, 45, 50, 51, 52, 54, 55, 60, 61, 62, 69, 70, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 110, 123, 124, 125, 126, 128, 129, 130, 138, 141, 143, 151, 156, 158, 160, 186, 191, 194, 196, 198, 201, 202, 203, 205, 211, 212, 214, 222, 224, 228, 234, 241, 262, 263, 264, 266, 267, 268, 269, 270, 272, 273, 274, 275, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 296, 297, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 312, 314, 315, 316, 317, 318, 319, 320, 325, 327, 328, 329, 330, 331, 332, 333, 334, 335, 338, 339, 340, 341, 342, 343, 344, 347, 349, 353, 360, 366, 370, 374, 375, 376, 385, 388, 391, 398, 399, 403, 410, 411, 413, 417, 419, 421, 422, 423, 424, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 463, 464, 467, 478, 482, 485, 488, 489, 490, 492, 494, 495, 515, 516, 519, 521, 522, 523, 535, 537, 538, 541, 542, 565, 573, 585, 586, 587, 591, 596, 606, 608, 609, 612, 613, 614, 615, 616, 619, 620, 629, 630, 633, 635, 636, 637, 638, 639, 641, 642, 644, 648, 649, 650, 651, 652, 654, 657, 677, 678, 686, 687, 689, 695, 699, 706, 711, 716, 717, 718, 726, 728, 729, 730, 731, 732, 733, 734, 735, 741, 742, 745, 749, 752, 753, 755, 756, 761, 763, 765, 766, 767, 768, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 794, 797, 814, 815, 820, 823, 824, 825, 826, 827, 833, 835, 837, 838, 869, 889, 890], "appfwglobal_appfwpolicy_bind": [2, 391], "appfwglob": [2, 391], "appfwpolici": [2, 391, 606], "appfwglobal_auditnslogpolicy_bind": [2, 391], "appfwglobal_auditsyslogpolicy_bind": [2, 391], "appfwgrpccontenttyp": [2, 391], "grrpc": [2, 391], "content": [2, 44, 52, 69, 70, 79, 86, 97, 102, 117, 119, 123, 124, 126, 128, 130, 141, 225, 226, 227, 272, 276, 278, 279, 280, 281, 282, 283, 285, 286, 288, 289, 290, 291, 292, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 366, 391, 442, 528, 529, 535, 587, 595, 615, 641, 716, 728, 754, 755, 756, 775, 794, 832, 889], "appfwgrpcwebjsoncontenttyp": [2, 391], "web": [2, 52, 57, 69, 70, 75, 78, 82, 83, 88, 97, 99, 109, 140, 151, 207, 297, 314, 352, 391, 417, 442, 523, 535, 547, 608, 641, 654, 664, 755, 756, 825, 827, 833, 835, 837, 838, 865], "json": [2, 44, 91, 92, 93, 94, 95, 97, 151, 215, 350, 391, 615, 641, 837], "appfwgrpcwebtextcontenttyp": [2, 391], "text": [2, 90, 97, 269, 391, 417, 419, 424, 520, 523, 528, 535, 547, 568, 573, 587, 608, 615, 619, 635, 641, 650, 689, 706, 754, 827, 832, 833], "appfwhtmlerrorpag": [2, 391], "html": [2, 42, 70, 97, 117, 118, 314, 352, 391, 392, 417, 587, 608, 615, 794], "error": [2, 22, 97, 109, 123, 124, 126, 128, 130, 147, 152, 154, 161, 202, 210, 246, 271, 272, 340, 378, 379, 390, 391, 407, 417, 418, 419, 421, 503, 528, 535, 563, 583, 608, 612, 617, 618, 639, 641, 647, 671, 680, 681, 689, 695, 706, 742, 760, 761, 776, 782, 827, 833], "page": [2, 22, 44, 49, 52, 57, 75, 97, 117, 146, 160, 352, 378, 391, 417, 608, 695, 706, 755, 756, 827, 833, 865, 871], "appfwjsoncontenttyp": [2, 391], "appfwjsonerrorpag": [2, 391], "appfwlearningdata": [2, 391], "learn": [2, 42, 59, 97, 109, 122, 151, 166, 221, 363, 370, 391, 392, 405, 406, 407, 417, 442, 563, 635, 641, 682], "data": [2, 42, 44, 47, 52, 89, 97, 102, 103, 128, 153, 162, 210, 234, 264, 269, 297, 343, 352, 369, 379, 383, 391, 392, 398, 399, 403, 442, 458, 494, 528, 532, 535, 547, 563, 564, 565, 568, 574, 575, 582, 583, 584, 585, 587, 594, 600, 607, 615, 635, 637, 639, 675, 676, 682, 685, 686, 689, 706, 713, 717, 723, 724, 795, 813, 830, 832], "appfwlearningset": [2, 391], "appfwmultipartformcontenttyp": [2, 391], "multipart": [2, 97, 391], "appfwpolicylabel": [2, 391, 606], "appfwpolicylabel_appfwpolicy_bind": [2, 72, 74, 391], "appfwprofil": [2, 391, 606], "appfwprofile_appfwconfidfield_bind": [2, 97, 391], "appfwprofile_blockkeyword_bind": [2, 97, 391], "blockkeyword": [2, 91, 391, 641], "appfwprofile_bypasslist_bind": [2, 97, 391], "bypasslist": [2, 391], "appfwprofile_cmdinjection_bind": [2, 97, 391], "cmdinject": [2, 391], "appfwprofile_contenttype_bind": [2, 97, 391], "contenttyp": [2, 69, 97, 391], "appfwprofile_cookieconsistency_bind": [2, 97, 391], "cookieconsist": [2, 69, 97, 391], "appfwprofile_creditcardnumber_bind": [2, 97, 391], "creditcardnumb": [2, 69, 391], "appfwprofile_crosssitescripting_bind": [2, 97, 391], "crosssitescript": [2, 69, 97, 391], "appfwprofile_csrftag_bind": [2, 97, 391], "csrftag": [2, 69, 97, 391], "appfwprofile_denylist_bind": [2, 97, 391], "denylist": [2, 391], "appfwprofile_denyurl_bind": [2, 97, 391], "denyurl": [2, 391], "appfwprofile_excluderescontenttype_bind": [2, 97, 391], "excluderescontenttyp": [2, 391], "appfwprofile_fakeaccount_bind": [2, 97, 391], "fakeaccount": [2, 391], "appfwprofile_fieldconsistency_bind": [2, 97, 391], "fieldconsist": [2, 69, 97, 391], "appfwprofile_fieldformat_bind": [2, 97, 391], "fieldformat": [2, 59, 69, 97, 391], "appfwprofile_fileuploadtype_bind": [2, 97, 391], "fileuploadtyp": [2, 391], "appfwprofile_jsonblockkeyword_bind": [2, 97, 391], "jsonblockkeyword": [2, 391], "appfwprofile_jsoncmdurl_bind": [2, 97, 391], "jsoncmdurl": [2, 391], "appfwprofile_jsondosurl_bind": [2, 97, 391], "jsondosurl": [2, 391], "appfwprofile_jsonsqlurl_bind": [2, 97, 391], "jsonsqlurl": [2, 391], "appfwprofile_jsonxssurl_bind": [2, 97, 391], "jsonxssurl": [2, 391], "appfwprofile_logexpression_bind": [2, 97, 391], "logexpress": [2, 391], "appfwprofile_safeobject_bind": [2, 97, 391], "safeobject": [2, 391], "appfwprofile_sqlinjection_bind": [2, 97, 391], "sqlinject": [2, 69, 97, 391], "appfwprofile_starturl_bind": [2, 97, 391], "starturl": [2, 69, 97, 391], "appfwprofile_trustedlearningclients_bind": [2, 97, 391], "trustedlearningcli": [2, 391], "appfwprofile_xmlattachmenturl_bind": [2, 97, 391], "xmlattachmenturl": [2, 391], "appfwprofile_xmldosurl_bind": [2, 97, 391], "xmldosurl": [2, 391], "appfwprofile_xmlsqlinjection_bind": [2, 97, 391], "xmlsqlinject": [2, 391], "appfwprofile_xmlvalidationurl_bind": [2, 97, 391], "xmlvalidationurl": [2, 391], "appfwprofile_xmlwsiurl_bind": [2, 97, 391], "xmlwsiurl": [2, 391], "appfwprofile_xmlxss_bind": [2, 97, 391], "xmlxss": [2, 391], "appfwprotofil": [2, 391], "grpc": [2, 44, 63, 64, 65, 97, 391, 417, 535, 641], "protofil": [2, 391], "appfwset": [2, 391], "AS": [2, 22, 211, 391], "appfwsignatur": [2, 391], "signatur": [2, 97, 109, 134, 153, 160, 162, 210, 215, 391, 641, 654, 682, 689, 695, 701, 706], "appfwurlencodedformcontenttyp": [2, 391], "urlencod": [2, 97, 391], "appfwwsdl": [2, 391], "wsdl": [2, 105, 378, 391], "file": [2, 19, 23, 24, 44, 45, 46, 56, 90, 97, 103, 108, 109, 110, 115, 116, 142, 146, 148, 151, 160, 208, 210, 215, 216, 330, 352, 354, 363, 382, 383, 389, 391, 392, 399, 417, 460, 523, 529, 530, 537, 538, 547, 568, 577, 578, 584, 590, 595, 602, 610, 615, 641, 648, 649, 655, 656, 657, 658, 659, 661, 663, 667, 670, 672, 673, 674, 675, 676, 678, 683, 684, 689, 693, 695, 706, 722, 742, 745, 794, 825, 827, 833, 835, 837, 838], "appfwxmlcontenttyp": [2, 391], "appfwxmlerrorpag": [2, 391], "appfwxmlschema": [2, 391], "schema": [2, 44, 105, 108, 146, 156, 378, 391, 641], "appqoeact": [2, 391], "appqo": [2, 119, 129, 391, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "appqoecustomresp": [2, 391], "respons": [2, 20, 26, 29, 44, 49, 52, 86, 97, 105, 117, 119, 135, 143, 147, 153, 158, 160, 162, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 191, 194, 206, 210, 215, 222, 225, 226, 229, 230, 262, 264, 265, 267, 268, 269, 270, 271, 272, 273, 274, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 324, 335, 340, 363, 369, 371, 374, 375, 376, 391, 413, 417, 419, 421, 424, 427, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 512, 534, 535, 536, 538, 563, 570, 573, 575, 587, 608, 609, 612, 613, 615, 616, 617, 618, 619, 620, 635, 636, 637, 638, 661, 689, 695, 701, 706, 713, 716, 742, 749, 754, 760, 761, 762, 763, 764, 776, 777, 782, 783, 794, 797, 832, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "appqoeparamet": [2, 391], "qo": [2, 391], "appqoepolici": [2, 391, 606], "arp": [2, 246, 288, 391, 406, 417, 488, 537, 538, 570, 630], "arpparam": [2, 391], "global": [2, 44, 51, 262, 263, 314, 329, 332, 349, 353, 364, 366, 370, 385, 391, 395, 404, 409, 419, 424, 442, 458, 482, 487, 512, 523, 537, 542, 547, 560, 565, 566, 573, 626, 635, 636, 637, 638, 677, 682, 818, 827, 833], "auditmessageact": [2, 391], "messag": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "auditnslogact": [2, 391], "n": [2, 117, 233, 234, 247, 288, 314, 341, 349, 363, 366, 369, 382, 391, 392, 405, 407, 419, 424, 442, 467, 488, 512, 522, 523, 527, 528, 530, 536, 563, 564, 582, 583, 585, 608, 615, 635, 637, 641, 682, 689, 713, 736, 741, 746, 760, 761, 827, 833, 882, 886], "log": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "auditnslogglobal_auditnslogpolicy_bind": [2, 391], "auditnslogglob": [2, 391], "auditnslogparam": [2, 391], "auditsyslogact": [2, 391], "system": [2, 4, 20, 42, 125, 129, 171, 172, 173, 175, 178, 180, 182, 183, 234, 241, 246, 247, 335, 369, 378, 391, 392, 418, 442, 512, 521, 527, 531, 537, 538, 547, 549, 553, 559, 563, 574, 575, 591, 605, 635, 637, 657, 661, 665, 666, 682, 703, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 752, 768, 815, 820, 823, 827, 833, 865, 889], "auditsyslogglobal_auditsyslogpolicy_bind": [2, 391], "auditsyslogglob": [2, 391], "auditsyslogparam": [2, 391], "authenticationadfsproxyprofil": [2, 391], "adfsproxi": [2, 391, 442], "authenticationauthnprofil": [2, 391], "authenticationazurekeyvault": [2, 391], "azur": [2, 207, 239, 241, 391], "kei": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 529, 530, 531, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 656, 657, 658, 659, 660, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 673, 675, 676, 677, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "vault": [2, 199, 391], "entiti": [2, 52, 97, 103, 121, 124, 126, 128, 130, 151, 153, 160, 162, 186, 218, 219, 238, 256, 257, 259, 288, 314, 359, 360, 366, 379, 389, 390, 391, 400, 405, 425, 426, 442, 469, 470, 471, 472, 473, 482, 489, 492, 503, 504, 512, 528, 532, 537, 538, 557, 558, 561, 565, 570, 573, 606, 621, 623, 629, 630, 633, 635, 637, 641, 648, 649, 689, 706, 754, 790, 791, 832, 865], "authenticationcaptchaact": [2, 391], "captcha": [2, 391], "authenticationcertact": [2, 391], "cert": [2, 19, 22, 143, 391, 641, 656, 661, 682, 689, 711], "authenticationcertpolici": [2, 391], "authenticationcitrixauthact": [2, 391], "citrix": [2, 12, 19, 20, 23, 24, 25, 26, 29, 35, 42, 44, 45, 46, 48, 49, 50, 52, 53, 55, 59, 72, 74, 97, 109, 116, 117, 121, 123, 124, 126, 127, 128, 130, 131, 134, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 222, 223, 226, 227, 233, 234, 239, 243, 247, 262, 264, 265, 267, 272, 274, 276, 288, 293, 295, 297, 314, 322, 323, 326, 327, 328, 331, 332, 333, 334, 335, 336, 337, 340, 342, 343, 344, 347, 349, 351, 359, 366, 367, 368, 369, 375, 383, 384, 386, 388, 389, 390, 391, 392, 394, 403, 405, 406, 409, 410, 413, 417, 419, 421, 422, 423, 424, 442, 453, 458, 459, 460, 461, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 487, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 513, 514, 520, 522, 523, 526, 527, 529, 530, 532, 533, 534, 535, 536, 537, 538, 542, 554, 563, 564, 565, 568, 570, 573, 577, 578, 587, 600, 601, 602, 605, 608, 610, 612, 613, 615, 618, 619, 621, 623, 625, 627, 628, 629, 630, 633, 635, 639, 641, 642, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 682, 685, 686, 689, 695, 701, 706, 712, 713, 714, 716, 717, 728, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 776, 777, 782, 783, 793, 794, 825, 826, 827, 832, 833, 834, 835, 836, 837, 865, 882, 886, 890], "authenticationdfaact": [2, 391], "dfa": [2, 391], "authenticationdfapolici": [2, 391], "authenticationemailact": [2, 391], "email": [2, 52, 143, 231, 343, 391, 646, 657, 664, 813, 825, 827, 833], "authenticationepaact": [2, 391], "epa": [2, 23, 24, 391, 865, 871], "authenticationldapact": [2, 391], "authenticationldappolici": [2, 391], "authenticationlocalpolici": [2, 391], "local": [2, 20, 22, 35, 143, 160, 216, 222, 332, 360, 363, 366, 367, 368, 369, 370, 380, 381, 391, 394, 403, 504, 530, 537, 568, 582, 592, 602, 610, 664, 678, 722, 742, 772, 827, 833], "authenticationloginschema": [2, 391], "0": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 722, 723, 724, 726, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "authenticationloginschemapolici": [2, 391, 606], "negoti": [2, 5, 391, 396, 563, 654, 689, 706, 755, 756, 827, 833], "authenticationnegotiatepolici": [2, 391], "authenticationnoauthact": [2, 391], "authenticationoauthact": [2, 391], "oauth": [2, 134, 391], "authenticationoauthidppolici": [2, 391, 606], "identityprovid": [2, 160, 391], "idp": [2, 134, 141, 151, 160, 391, 754, 832], "authenticationoauthidpprofil": [2, 391], "ident": [2, 134, 151, 152, 157, 160, 161, 369, 391, 527, 637, 682, 689], "provid": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "authenticationpolici": [2, 391, 606], "authenticationpolicylabel": [2, 391, 606], "authenticationpolicylabel_authenticationpolicy_bind": [2, 154, 156, 391], "authenticationpushservic": [2, 391], "servic": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 367, 368, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 636, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "detail": [2, 12, 22, 51, 97, 123, 124, 126, 128, 130, 151, 153, 210, 224, 225, 327, 333, 347, 369, 385, 391, 392, 417, 530, 544, 545, 594, 629, 630, 637, 654, 717, 742, 827, 833, 837], "send": [2, 20, 26, 29, 42, 44, 49, 52, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 117, 119, 123, 124, 128, 134, 143, 147, 153, 158, 160, 162, 186, 191, 194, 210, 215, 221, 234, 264, 268, 269, 271, 272, 288, 314, 330, 335, 352, 363, 369, 375, 386, 389, 390, 391, 392, 398, 399, 406, 417, 419, 421, 458, 467, 482, 497, 498, 499, 503, 505, 535, 536, 538, 563, 564, 570, 580, 582, 583, 587, 600, 608, 611, 612, 617, 618, 633, 635, 637, 639, 641, 645, 647, 648, 649, 671, 681, 682, 689, 695, 701, 706, 716, 717, 742, 749, 754, 760, 761, 763, 776, 797, 827, 832, 833, 865, 889], "push": [2, 44, 129, 132, 134, 143, 241, 264, 314, 391, 442, 531, 535, 537, 538, 563, 564, 591, 682, 689, 695, 706, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 889], "notif": [2, 22, 134, 143, 330, 386, 391, 564], "authenticationradiusact": [2, 391], "authenticationradiuspolici": [2, 391], "authenticationsamlact": [2, 391], "saml": [2, 22, 391, 602, 758, 835, 837, 838], "authenticationsamlidppolici": [2, 391, 606], "authenticationsamlidpprofil": [2, 391], "authenticationsamlpolici": [2, 391], "authenticationsmartaccesspolici": [2, 391], "smartaccess": [2, 391], "authenticationsmartaccessprofil": [2, 391], "authenticationstorefrontauthact": [2, 391], "storefront": [2, 391, 417, 827, 833, 865], "authenticationtacacsact": [2, 391], "authenticationtacacspolici": [2, 391], "authenticationvserv": [2, 391, 606], "virtual": [2, 51, 52, 54, 60, 61, 62, 73, 117, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 224, 228, 234, 241, 263, 266, 269, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 293, 294, 295, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 332, 366, 367, 368, 369, 370, 371, 372, 373, 374, 376, 391, 403, 407, 411, 412, 413, 419, 420, 422, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 512, 537, 538, 542, 561, 563, 574, 587, 588, 609, 614, 616, 620, 635, 636, 637, 654, 662, 666, 677, 681, 682, 689, 695, 701, 705, 707, 708, 709, 710, 711, 716, 763, 766, 778, 779, 780, 784, 786, 787, 788, 790, 791, 825, 827, 833, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 888], "server": [2, 20, 22, 26, 28, 29, 35, 46, 51, 52, 54, 56, 60, 61, 62, 66, 68, 73, 97, 109, 110, 112, 114, 115, 117, 123, 124, 126, 127, 128, 130, 131, 132, 134, 136, 137, 139, 140, 141, 143, 144, 148, 149, 151, 153, 154, 157, 158, 159, 160, 163, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 194, 201, 203, 215, 216, 222, 223, 224, 226, 228, 231, 241, 263, 264, 266, 268, 269, 270, 272, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 293, 294, 295, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 321, 330, 331, 335, 337, 340, 343, 349, 352, 359, 362, 364, 366, 367, 368, 369, 370, 371, 372, 373, 374, 376, 383, 389, 390, 391, 405, 406, 407, 408, 411, 412, 413, 417, 419, 420, 422, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 460, 461, 482, 483, 502, 512, 514, 522, 523, 526, 527, 530, 534, 535, 536, 537, 538, 540, 541, 542, 547, 553, 559, 561, 563, 564, 565, 568, 577, 587, 588, 592, 595, 598, 601, 602, 604, 607, 608, 609, 610, 611, 612, 614, 616, 618, 620, 623, 624, 625, 634, 635, 636, 637, 638, 640, 645, 654, 657, 658, 659, 661, 662, 664, 666, 667, 668, 669, 671, 677, 679, 681, 682, 689, 695, 696, 701, 705, 707, 708, 709, 710, 711, 714, 716, 742, 745, 746, 749, 763, 764, 766, 778, 779, 780, 784, 794, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 812, 814, 815, 818, 820, 821, 823, 825, 827, 829, 832, 833, 835, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 882, 886, 888], "authenticationvserver_auditnslogpolicy_bind": [2, 186, 391], "authenticationvserver_auditsyslogpolicy_bind": [2, 186, 391], "authenticationvserver_authenticationcertpolicy_bind": [2, 186, 391], "authenticationvserver_authenticationldappolicy_bind": [2, 186, 391], "authenticationvserver_authenticationlocalpolicy_bind": [2, 186, 391], "authenticationvserver_authenticationloginschemapolicy_bind": [2, 186, 391], "authenticationvserver_authenticationnegotiatepolicy_bind": [2, 186, 391], "authenticationvserver_authenticationoauthidppolicy_bind": [2, 186, 391], "authenticationvserver_authenticationpolicy_bind": [2, 186, 391], "authenticationvserver_authenticationradiuspolicy_bind": [2, 186, 391], "authenticationvserver_authenticationsamlidppolicy_bind": [2, 186, 391], "authenticationvserver_authenticationsamlpolicy_bind": [2, 186, 391], "authenticationvserver_authenticationsmartaccesspolicy_bind": [2, 186, 391], "authenticationvserver_authenticationtacacspolicy_bind": [2, 186, 391], "authenticationvserver_authenticationwebauthpolicy_bind": [2, 186, 391], "authenticationwebauthpolici": [2, 391], "authenticationvserver_cachepolicy_bind": [2, 186, 391], "cachepolici": [2, 391, 606], "authenticationvserver_cspolicy_bind": [2, 186, 391], "cspolici": [2, 391], "authenticationvserver_responderpolicy_bind": [2, 186, 391], "responderpolici": [2, 391, 606], "authenticationvserver_rewritepolicy_bind": [2, 186, 391], "rewritepolici": [2, 391, 606], "authenticationvserver_tmsessionpolicy_bind": [2, 186, 391], "authenticationvserver_vpnportaltheme_bind": [2, 186, 391], "vpnportalthem": [2, 391], "authenticationwebauthact": [2, 391], "author": [2, 391], "authorizationpolicylabel": [2, 391, 606], "authorizationpolicylabel_authorizationpolicy_bind": [2, 193, 195, 391], "autoscaleact": [2, 391], "autoscal": [2, 241, 369, 391, 442, 637], "autoscalepolici": [2, 391], "autoscaleprofil": [2, 391], "azureappl": [2, 200, 391], "azurekeyvault": [2, 391, 678], "botglobal_botpolicy_bind": [2, 391], "botglob": [2, 391], "botpolici": [2, 391, 606], "bot": [2, 49, 129, 201, 203, 205, 207, 209, 212, 214, 391, 531, 591, 641, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "botpolicylabel": [2, 391, 606], "botpolicylabel_botpolicy_bind": [2, 202, 204, 391], "botprofil": [2, 391, 606], "botprofile_blacklist_bind": [2, 210, 391], "blacklist": [2, 391], "botprofile_captcha_bind": [2, 210, 391], "botprofile_ipreputation_bind": [2, 210, 391], "ipreput": [2, 391], "botprofile_kmdetectionexpr_bind": [2, 210, 391], "kmdetectionexpr": [2, 391], "botprofile_logexpression_bind": [2, 210, 391], "botprofile_ratelimit_bind": [2, 210, 391], "ratelimit": [2, 391, 641], "botprofile_tps_bind": [2, 210, 391], "tp": [2, 206, 210, 391], "botprofile_trapinsertionurl_bind": [2, 210, 391], "trapinsertionurl": [2, 391], "botprofile_whitelist_bind": [2, 210, 391], "whitelist": [2, 238, 391], "botset": [2, 391], "engin": [2, 70, 97, 109, 335, 391, 419, 496, 529, 535, 563, 573, 682], "botsignatur": [2, 391], "bridgegroup": [2, 391], "bridg": [2, 218, 219, 220, 391, 406, 442, 507, 509, 510, 511, 548, 569, 635], "bridgegroup_nsip6_bind": [2, 217, 391], "nsip6": [2, 379, 391, 648], "bridgegroup_nsip_bind": [2, 217, 391], "nsip": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 893, 894, 895], "bridgegroup_vlan_bind": [2, 217, 391], "vlan": [2, 121, 217, 218, 219, 221, 234, 275, 288, 379, 391, 403, 408, 442, 504, 505, 506, 508, 523, 537, 538, 547, 549, 554, 568, 570, 582, 606, 629, 630, 717, 718, 720, 865, 890, 895], "bridget": [2, 391], "tabl": [2, 121, 363, 391, 406, 414, 416, 417, 504, 535, 537, 538, 629, 630, 671, 760, 761, 894, 895], "entri": [2, 121, 122, 160, 205, 214, 233, 234, 263, 335, 341, 363, 370, 375, 389, 391, 406, 482, 495, 496, 504, 520, 547, 573, 585, 595, 623, 628, 629, 630, 633, 641, 644, 682, 747, 748, 880, 881, 884, 885, 889], "cachecontentgroup": [2, 391, 606], "integr": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 224, 225, 226, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "cach": [2, 22, 44, 52, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 223, 224, 228, 262, 264, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 314, 321, 323, 326, 327, 328, 330, 331, 333, 334, 335, 337, 340, 341, 342, 343, 344, 347, 352, 359, 391, 431, 432, 433, 439, 440, 442, 447, 448, 523, 547, 587, 588, 635, 637, 661, 681, 682, 689, 695, 701, 706, 713, 827, 833, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 876, 877, 879, 889], "cacheforwardproxi": [2, 391], "forward": [2, 44, 60, 61, 62, 73, 97, 194, 201, 268, 270, 273, 275, 278, 279, 280, 281, 282, 283, 285, 286, 288, 290, 291, 292, 296, 314, 321, 335, 337, 340, 349, 366, 369, 375, 383, 391, 406, 407, 411, 419, 442, 467, 564, 609, 616, 620, 629, 635, 637, 654, 664, 681, 682, 689, 706, 711, 763, 766, 779, 780, 888], "proxi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "cacheglobal_cachepolicy_bind": [2, 391], "cacheglob": [2, 391], "cacheobject": [2, 391], "object": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "cacheparamet": [2, 391], "cachepolicylabel": [2, 391, 606], "cachepolicylabel_cachepolicy_bind": [2, 227, 229, 391], "cacheselector": [2, 391], "selector": [2, 222, 391, 542, 713], "callhom": [2, 129, 391, 392, 531, 591, 641, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "change_password": [2, 391], "chang": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "password": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "node": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "channel": [2, 207, 288, 379, 391, 408, 409, 442, 494, 553, 865], "channel_interface_bind": [2, 234, 391], "interfac": [2, 121, 221, 234, 246, 247, 275, 336, 337, 356, 379, 391, 406, 417, 454, 457, 458, 488, 504, 523, 537, 538, 568, 582, 583, 630, 641, 717, 736, 746, 786, 788, 827, 833, 837, 838, 880, 882, 883, 884, 886, 887], "cloudallowedngsticketprofil": [2, 391], "allow": [2, 22, 23, 24, 26, 29, 59, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 117, 123, 139, 143, 151, 158, 160, 162, 167, 193, 206, 207, 208, 210, 211, 212, 215, 234, 264, 267, 275, 314, 329, 335, 339, 358, 359, 366, 369, 379, 383, 389, 391, 403, 406, 408, 413, 418, 419, 424, 442, 467, 472, 473, 482, 496, 497, 498, 502, 505, 523, 535, 536, 537, 538, 542, 547, 554, 563, 564, 574, 586, 589, 600, 602, 608, 611, 617, 619, 621, 628, 637, 647, 654, 657, 664, 667, 682, 685, 689, 695, 696, 706, 711, 723, 736, 742, 746, 755, 756, 765, 792, 794, 797, 825, 827, 833, 835, 837, 838, 865, 890], "ticket": [2, 19, 148, 160, 238, 391, 689, 706, 814, 869], "ng": [2, 52, 211, 239, 391], "cloudawsparam": [2, 391], "cloud": [2, 138, 143, 153, 157, 162, 200, 207, 234, 391, 522, 637, 772, 827, 832, 833, 895], "awsparam": [2, 391], "cloudcredenti": [2, 391], "credenti": [2, 146, 148, 391, 417, 749, 755, 756, 797, 827, 833, 835], "cloudngsparamet": [2, 391], "ngsparamet": [2, 391], "cloudparamet": [2, 391], "cloudparamintern": [2, 391], "paramintern": [2, 391], "cloudprofil": [2, 391], "cloudtunnelparamet": [2, 391], "cloudtunnel": [2, 391], "cloudtunnelvserv": [2, 391], "tunnel": [2, 26, 121, 158, 207, 221, 247, 275, 391, 407, 417, 504, 507, 535, 792, 827, 833], "cluster": [2, 27, 52, 121, 218, 219, 221, 225, 231, 233, 234, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 323, 326, 327, 328, 331, 333, 334, 342, 343, 344, 345, 347, 350, 356, 357, 358, 361, 363, 370, 391, 394, 403, 404, 409, 420, 424, 442, 457, 488, 491, 492, 493, 504, 515, 516, 521, 523, 527, 533, 537, 538, 541, 568, 573, 574, 596, 621, 622, 623, 629, 630, 631, 635, 637, 641, 643, 646, 648, 682, 716, 720, 727, 742, 786, 787, 788, 790, 791, 824, 828, 882, 886], "clusterfil": [2, 391], "clusterinst": [2, 391], "instanc": [2, 42, 239, 391, 392, 522, 742], "clusternod": [2, 391], "clusternode_routemonitor_bind": [2, 244, 247, 391], "routemonitor": [2, 380, 391], "clusternodegroup": [2, 391], "clusternodegroup_authenticationvserver_bind": [2, 244, 247, 256, 391], "clusternodegroup_clusternode_bind": [2, 244, 247, 256, 391], "clusternodegroup_crvserver_bind": [2, 244, 247, 256, 391], "crvserver": [2, 391, 606], "clusternodegroup_csvserver_bind": [2, 244, 247, 256, 391], "csvserver": [2, 238, 391, 606], "clusternodegroup_gslbsite_bind": [2, 244, 247, 256, 391], "gslbsite": [2, 391, 606], "clusternodegroup_gslbvserver_bind": [2, 244, 247, 256, 391], "gslbvserver": [2, 391, 606], "clusternodegroup_lbvserver_bind": [2, 244, 247, 256, 391], "lbvserver": [2, 391, 606], "clusternodegroup_nslimitidentifier_bind": [2, 244, 247, 256, 391], "nslimitidentifi": [2, 391, 606], "clusternodegroup_service_bind": [2, 244, 247, 256, 391], "clusternodegroup_streamidentifier_bind": [2, 244, 247, 256, 391], "streamidentifi": [2, 391], "clusternodegroup_vpnvserver_bind": [2, 244, 247, 256, 391], "vpnvserver": [2, 391], "clusterpropstatu": [2, 391], "cmpaction": [2, 391], "compress": [2, 263, 264, 266, 289, 391, 535, 635, 637, 713, 769], "cmpglobal_cmppolicy_bind": [2, 391], "cmpglobal": [2, 391], "cmppolici": [2, 391, 606], "cmpparamet": [2, 391], "cmp": [2, 129, 262, 265, 267, 391, 531, 591, 635, 637, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "cmppolicylabel": [2, 391, 606], "cmppolicylabel_cmppolicy_bind": [2, 265, 267, 391], "contentinspectionact": [2, 391], "inspect": [2, 69, 81, 86, 97, 124, 126, 128, 130, 271, 272, 275, 321, 391], "contentinspectioncallout": [2, 391], "callout": [2, 391, 528, 532, 573, 586, 590, 593, 595], "contentinspectionglobal_contentinspectionpolicy_bind": [2, 391], "contentinspectionglob": [2, 391], "contentinspectionpolici": [2, 391, 606], "contentinspectionparamet": [2, 391], "contentinspect": [2, 49, 129, 268, 270, 273, 391, 531, 591, 635, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "contentinspectionpolicylabel": [2, 391, 606], "contentinspectionpolicylabel_contentinspectionpolicy_bind": [2, 272, 274, 391], "contentinspectionprofil": [2, 391], "crpolici": [2, 391], "redirect": [2, 22, 52, 84, 97, 133, 151, 160, 162, 205, 206, 207, 210, 211, 212, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 314, 335, 366, 367, 368, 369, 375, 383, 391, 405, 442, 489, 523, 547, 587, 588, 604, 608, 621, 623, 635, 637, 689, 695, 706, 754, 832, 889], "cr": [2, 129, 211, 277, 391, 531, 535, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "crvserver_analyticsprofile_bind": [2, 288, 391], "crvserver_appflowpolicy_bind": [2, 288, 391], "crvserver_appfwpolicy_bind": [2, 288, 391], "crvserver_appqoepolicy_bind": [2, 288, 391], "crvserver_cachepolicy_bind": [2, 288, 391], "crvserver_cmppolicy_bind": [2, 288, 391], "crvserver_crpolicy_bind": [2, 288, 391], "crvserver_cspolicy_bind": [2, 288, 391], "crvserver_feopolicy_bind": [2, 288, 391], "feopolici": [2, 391], "crvserver_icapolicy_bind": [2, 288, 391], "icapolici": [2, 391], "crvserver_lbvserver_bind": [2, 288, 391], "crvserver_policymap_bind": [2, 288, 391], "policymap": [2, 391], "crvserver_responderpolicy_bind": [2, 288, 391], "crvserver_rewritepolicy_bind": [2, 288, 391], "crvserver_spilloverpolicy_bind": [2, 288, 391], "spilloverpolici": [2, 391, 606], "csaction": [2, 391], "switch": [2, 269, 276, 278, 286, 289, 290, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 366, 391, 408, 419, 442, 523, 549, 563, 587, 641, 716, 786, 787, 788, 827, 833, 889], "csparamet": [2, 391], "c": [2, 129, 207, 233, 234, 247, 293, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 312, 313, 315, 316, 317, 318, 319, 320, 391, 419, 424, 531, 564, 568, 582, 583, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 837], "cspolicylabel": [2, 391], "cspolicylabel_cspolicy_bind": [2, 295, 297, 391], "csvserver_analyticsprofile_bind": [2, 314, 391], "csvserver_appflowpolicy_bind": [2, 314, 391], "csvserver_appfwpolicy_bind": [2, 314, 391], "csvserver_appqoepolicy_bind": [2, 314, 391], "csvserver_auditnslogpolicy_bind": [2, 314, 391], "csvserver_auditsyslogpolicy_bind": [2, 314, 391], "csvserver_authorizationpolicy_bind": [2, 314, 391], "csvserver_botpolicy_bind": [2, 314, 391], "csvserver_cachepolicy_bind": [2, 314, 391], "csvserver_cmppolicy_bind": [2, 314, 391], "csvserver_contentinspectionpolicy_bind": [2, 314, 391], "csvserver_cspolicy_bind": [2, 314, 391], "csvserver_domain_bind": [2, 314, 391], "domain": [2, 44, 52, 121, 124, 128, 133, 148, 166, 186, 200, 207, 218, 219, 288, 314, 323, 326, 327, 328, 331, 333, 334, 335, 337, 340, 342, 343, 344, 346, 347, 349, 352, 359, 366, 367, 368, 369, 372, 375, 389, 390, 391, 400, 405, 413, 417, 419, 425, 426, 442, 467, 470, 471, 472, 473, 482, 492, 495, 499, 500, 503, 504, 512, 522, 537, 538, 540, 541, 557, 558, 568, 569, 571, 572, 578, 582, 583, 587, 588, 602, 621, 623, 629, 630, 633, 635, 636, 637, 638, 648, 649, 661, 664, 689, 695, 701, 706, 755, 756, 760, 761, 762, 790, 791, 827, 830, 833, 865], "csvserver_feopolicy_bind": [2, 314, 391], "csvserver_gslbvserver_bind": [2, 314, 391], "csvserver_lbvserver_bind": [2, 314, 391], "csvserver_responderpolicy_bind": [2, 314, 391], "csvserver_rewritepolicy_bind": [2, 314, 391], "csvserver_spilloverpolicy_bind": [2, 314, 391], "csvserver_tmtrafficpolicy_bind": [2, 314, 391], "tmtrafficpolici": [2, 391, 606], "csvserver_transformpolicy_bind": [2, 314, 391], "transformpolici": [2, 391], "csvserver_vpnvserver_bind": [2, 314, 391], "dbdbprofil": [2, 391], "db": [2, 245, 314, 391, 442, 641, 741, 772], "dbuser": [2, 391], "dnsaaaarec": [2, 391], "ipv6": [2, 10, 33, 77, 84, 205, 214, 217, 241, 248, 288, 314, 324, 325, 335, 342, 359, 363, 375, 380, 381, 389, 390, 391, 394, 395, 407, 413, 442, 460, 470, 485, 492, 495, 497, 498, 499, 502, 503, 504, 537, 557, 568, 582, 584, 585, 587, 604, 629, 633, 635, 641, 645, 648, 649, 717, 774, 789, 814, 826, 827, 833, 863, 865, 869, 890], "address": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 324, 325, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "record": [2, 44, 49, 52, 143, 330, 335, 340, 349, 352, 366, 370, 375, 383, 391, 417, 419, 518, 595, 615, 633, 636, 637, 638, 671, 682, 689, 713, 714, 827, 833, 865], "dnsaction": [2, 391], "dn": [2, 20, 56, 124, 128, 130, 143, 222, 226, 241, 245, 288, 297, 314, 323, 326, 327, 328, 329, 331, 332, 333, 334, 336, 338, 341, 342, 343, 344, 345, 347, 363, 364, 366, 369, 370, 375, 378, 391, 417, 419, 423, 442, 523, 613, 615, 619, 633, 635, 636, 637, 638, 641, 645, 654, 657, 664, 667, 792, 826, 827, 833], "dnsaction64": [2, 391], "dns64": [2, 335, 391, 442], "dnsaddrec": [2, 391], "dnscaarec": [2, 391], "caa": [2, 341, 391], "dnscnamerec": [2, 391], "cname": [2, 314, 341, 366, 375, 391], "dnsglobal_dnspolicy_bind": [2, 391], "dnsglobal": [2, 391], "dnspolici": [2, 391], "dnskei": [2, 341, 391, 641], "dnsmxrec": [2, 391], "mx": [2, 211, 341, 391], "dnsnameserv": [2, 391], "name": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 35, 36, 37, 38, 39, 41, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 66, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 120, 123, 124, 125, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 222, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234, 235, 241, 243, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 265, 266, 267, 268, 269, 270, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 333, 335, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 352, 353, 355, 356, 357, 358, 359, 360, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 383, 384, 385, 386, 388, 389, 391, 394, 396, 399, 400, 401, 402, 403, 410, 411, 412, 413, 414, 415, 416, 417, 418, 420, 421, 422, 423, 424, 425, 426, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 457, 460, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 488, 489, 490, 492, 494, 495, 496, 497, 498, 499, 500, 501, 502, 507, 508, 509, 510, 511, 512, 513, 514, 517, 520, 522, 523, 525, 528, 530, 532, 535, 536, 540, 541, 542, 544, 547, 548, 549, 550, 551, 554, 555, 556, 557, 558, 561, 564, 566, 567, 568, 570, 573, 575, 578, 580, 581, 582, 583, 584, 585, 586, 587, 588, 590, 591, 592, 593, 594, 595, 598, 600, 602, 603, 604, 606, 608, 609, 610, 612, 613, 614, 615, 616, 618, 619, 620, 621, 622, 623, 624, 625, 626, 628, 629, 630, 633, 634, 635, 636, 637, 638, 640, 641, 642, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 721, 722, 723, 724, 726, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 742, 743, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 789, 792, 793, 794, 795, 796, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 813, 815, 816, 818, 819, 820, 821, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 889, 894, 895], "dnsnaptrrec": [2, 391], "naptr": [2, 314, 341, 366, 370, 375, 391], "dnsnsrec": [2, 391], "dnsparamet": [2, 391], "dnspolicy64": [2, 391], "dnspolicylabel": [2, 391, 606], "dnspolicylabel_dnspolicy_bind": [2, 337, 339, 391], "dnsprofil": [2, 391], "dnsproxyrecord": [2, 391], "dnsptrrec": [2, 391], "ptr": [2, 341, 391], "dnssoarec": [2, 391], "soa": [2, 323, 326, 327, 328, 331, 333, 334, 341, 342, 344, 347, 349, 391, 417], "dnssrvrec": [2, 391], "dnssubnetcach": [2, 391], "subnet": [2, 27, 205, 214, 218, 219, 323, 326, 327, 328, 331, 333, 334, 335, 340, 342, 343, 344, 347, 359, 375, 391, 403, 417, 442, 470, 471, 492, 497, 509, 510, 523, 537, 538, 553, 585, 623, 628, 630, 637, 645, 790, 791, 825, 827, 833, 891, 892], "dnssuffix": [2, 391], "suffix": [2, 160, 288, 330, 342, 370, 391, 588, 792, 827, 833], "dnstxtrec": [2, 391], "txt": [2, 341, 391], "dnsview": [2, 391], "view": [2, 42, 227, 246, 325, 327, 333, 337, 347, 352, 364, 366, 391, 392, 586, 629, 630, 644, 650], "dnszone": [2, 391], "zone": [2, 124, 126, 128, 130, 323, 326, 327, 328, 330, 331, 333, 334, 342, 343, 344, 347, 391, 417, 547], "endpointinfo": [2, 391], "inform": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "extendedmemoryparam": [2, 391, 487], "extend": [2, 340, 352, 391, 417, 472, 473, 509, 510, 511, 515, 516, 523, 615, 623, 628, 689, 741], "memori": [2, 222, 226, 335, 391, 419, 424, 487, 534, 535, 549, 562, 563, 564, 568, 573, 575, 641, 682, 713], "lsn": [2, 52, 124, 126, 128, 129, 130, 391, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 495, 512, 531, 538, 591, 641, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "subscrib": [2, 124, 126, 128, 130, 391, 465, 467, 468, 470, 471, 472, 473, 482, 485, 486, 487, 489, 492, 495, 496, 547, 615, 716], "store": [2, 45, 66, 68, 110, 112, 114, 115, 143, 146, 151, 160, 167, 216, 222, 225, 226, 227, 262, 264, 347, 366, 391, 417, 419, 424, 458, 460, 461, 530, 568, 587, 600, 657, 661, 664, 672, 678, 683, 684, 693, 713, 726, 794, 827, 833, 837], "feoaction": [2, 391], "front": [2, 353, 391, 417, 654, 689], "end": [2, 6, 7, 8, 10, 11, 14, 16, 17, 18, 22, 24, 30, 31, 33, 34, 37, 39, 40, 41, 42, 52, 61, 62, 160, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 199, 263, 289, 302, 303, 318, 329, 335, 340, 353, 374, 376, 391, 392, 432, 433, 442, 448, 528, 585, 586, 602, 654, 657, 677, 682, 689, 695, 701, 706, 726, 729, 730, 731, 732, 734, 735, 750, 751, 753, 755, 756, 758, 827, 833, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877], "optim": [2, 97, 264, 353, 389, 391, 467, 534, 535, 564, 627, 775, 776, 777, 781, 782, 783, 835], "feoglobal_feopolicy_bind": [2, 391], "feoglob": [2, 391], "feoparamet": [2, 391], "feo": [2, 129, 352, 391, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "fi": [2, 211, 391], "fis_channel_bind": [2, 358, 391], "fis_interface_bind": [2, 358, 391], "forwardingsess": [2, 391], "session": [2, 12, 27, 47, 52, 70, 97, 109, 119, 124, 126, 128, 130, 133, 134, 135, 141, 143, 146, 150, 151, 153, 160, 162, 167, 210, 211, 215, 297, 314, 351, 369, 370, 375, 379, 383, 387, 389, 391, 395, 396, 404, 406, 413, 417, 442, 463, 465, 467, 468, 482, 486, 487, 489, 490, 494, 495, 496, 512, 519, 545, 564, 577, 604, 605, 623, 624, 635, 637, 641, 654, 671, 682, 689, 695, 701, 706, 713, 716, 717, 718, 736, 742, 746, 758, 794, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 837, 838, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 861, 865, 876, 877], "gslbconfig": [2, 391], "gslb": [2, 129, 293, 312, 314, 320, 340, 349, 364, 365, 367, 368, 371, 372, 373, 374, 375, 376, 391, 410, 419, 424, 459, 531, 538, 591, 641, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "config": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "gslbldnsentri": [2, 391], "ldn": [2, 332, 363, 370, 375, 391, 417, 462], "gslbparamet": [2, 391], "gslbservic": [2, 391, 606], "gslbservice_dnsview_bind": [2, 366, 391], "gslbservice_lbmonitor_bind": [2, 366, 391], "lbmonitor": [2, 391], "gslbservicegroup": [2, 391, 606], "gslbservicegroup_gslbservicegroupmember_bind": [2, 366, 369, 391], "gslbservicegroupmemb": [2, 391, 606], "gslbservicegroup_lbmonitor_bind": [2, 366, 369, 391], "site": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "load": [2, 44, 49, 135, 269, 293, 294, 295, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 314, 315, 316, 317, 318, 319, 332, 349, 364, 366, 367, 368, 369, 370, 391, 412, 413, 416, 417, 419, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 446, 447, 448, 449, 450, 451, 452, 453, 523, 547, 587, 634, 635, 636, 637, 638, 661, 681, 682, 716, 774, 865, 889], "balanc": [2, 44, 269, 293, 294, 295, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 314, 315, 316, 317, 318, 319, 332, 349, 364, 366, 367, 368, 369, 370, 391, 412, 413, 417, 419, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 446, 447, 448, 449, 450, 451, 453, 587, 635, 636, 637, 638, 716, 774, 865, 889], "gslbvserver_domain_bind": [2, 375, 391], "gslbvserver_gslbservice_bind": [2, 375, 391], "gslbvserver_gslbservicegroup_bind": [2, 375, 391], "gslbvserver_lbpolicy_bind": [2, 375, 391], "lbpolici": [2, 391], "gslbvserver_spilloverpolicy_bind": [2, 375, 391], "hafailov": [2, 391], "failov": [2, 234, 363, 387, 391, 396, 406, 442, 482, 487], "hafil": [2, 391], "hanod": [2, 391], "hanode_routemonitor6_bind": [2, 379, 391], "routemonitor6": [2, 391], "hanode_routemonitor_bind": [2, 379, 391], "hasync": [2, 379, 391], "sync": [2, 207, 226, 246, 360, 363, 370, 379, 391, 641], "icaaccessprofil": [2, 391], "ica": [2, 385, 386, 391, 547, 827, 833, 835, 865], "accessprofil": [2, 384, 391], "icaact": [2, 391], "icaglobal_icapolicy_bind": [2, 391], "icaglob": [2, 391], "icalatencyprofil": [2, 391], "latenc": [2, 97, 387, 391, 865], "monitor": [2, 151, 234, 245, 363, 365, 366, 368, 369, 370, 379, 391, 416, 418, 419, 442, 538, 568, 570, 602, 629, 630, 634, 635, 636, 637, 638, 641, 664], "icaparamet": [2, 391], "inat": [2, 391, 606], "inbound": [2, 391], "nat": [2, 52, 314, 366, 367, 368, 369, 370, 379, 390, 391, 397, 405, 406, 407, 423, 442, 467, 470, 471, 473, 478, 482, 485, 488, 489, 492, 495, 496, 497, 565, 613, 622, 623, 624, 625, 628], "inatparam": [2, 391], "instal": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "interfacepair": [2, 391], "pair": [2, 143, 151, 153, 157, 160, 167, 288, 330, 349, 359, 366, 367, 368, 369, 389, 391, 417, 467, 547, 573, 593, 594, 623, 637, 638, 656, 660, 661, 662, 664, 681, 683, 689, 695, 696, 706, 707, 749, 797], "ip6tunnel": [2, 391], "ip6": [2, 10, 33, 314, 342, 391, 482, 863], "ip6tunnelparam": [2, 391], "ipsecalgprofil": [2, 391], "ipsec": [2, 391, 403, 404, 474], "alg": [2, 124, 126, 128, 130, 391, 474, 479, 480, 482, 490, 494], "ipsecalgsess": [2, 391], "ipsecparamet": [2, 391], "paramt": [2, 391, 541, 742], "ipsecprofil": [2, 391], "ipset": [2, 288, 314, 391, 442, 865], "network": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 509, 510, 511, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "ipset_nsip6_bind": [2, 391, 400], "ipset_nsip_bind": [2, 391, 400], "iptunnel": [2, 275, 391, 417, 442], "ip": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "iptunnelparam": [2, 391], "v6": [2, 238, 391, 814, 827, 833, 869], "l2param": [2, 391], "layer": [2, 389, 391, 442, 458, 467, 482, 505, 535, 627, 635, 671, 689, 773, 865], "2": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "relat": [2, 128, 130, 321, 359, 378, 379, 389, 391, 482, 487, 535, 538, 566, 623, 635, 776], "l3param": [2, 391], "3": [2, 20, 26, 29, 97, 117, 121, 143, 158, 167, 206, 222, 233, 234, 246, 326, 343, 356, 357, 375, 379, 391, 410, 417, 442, 482, 504, 525, 535, 564, 566, 574, 600, 671, 674, 682, 689, 693, 695, 701, 706, 716, 760, 761, 786, 787, 788, 888], "l4param": [2, 391], "4": [2, 21, 167, 222, 233, 234, 386, 389, 391, 417, 442, 458, 463, 464, 467, 482, 523, 535, 563, 564, 565, 598, 615, 627, 786, 787, 788, 789, 865], "lacp": [2, 234, 391], "link": [2, 391], "aggreg": [2, 171, 172, 173, 175, 178, 180, 182, 183, 391, 564, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "control": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "protocol": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lbaction": [2, 391], "lb": [2, 128, 129, 158, 211, 268, 298, 313, 363, 368, 371, 372, 373, 374, 375, 376, 379, 391, 408, 411, 417, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 531, 568, 591, 634, 636, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 837, 889], "lbglobal_lbpolicy_bind": [2, 391], "lbglobal": [2, 391], "lbgroup": [2, 391], "lbgroup_lbvserver_bind": [2, 391, 413], "lbmetrict": [2, 391], "metric": [2, 44, 52, 363, 370, 375, 391, 417, 442, 537, 538, 713], "lbmetrictable_metric_bind": [2, 391, 415], "lbmonitor_metric_bind": [2, 391, 417], "lbmonitor_sslcertkey_bind": [2, 391, 417], "sslcertkei": [2, 391], "lbparamet": [2, 391], "lbpersistentsess": [2, 391], "persist": [2, 22, 162, 226, 234, 288, 314, 366, 367, 368, 369, 370, 375, 379, 391, 413, 417, 419, 424, 427, 442, 523, 535, 547, 563, 621, 627, 635, 636, 637, 638, 754, 755, 756, 758, 794, 827, 832, 833, 889], "lbpolicylabel": [2, 391], "lbpolicylabel_lbpolicy_bind": [2, 391, 421, 423], "lbprofil": [2, 391], "lbrout": [2, 391], "rout": [2, 217, 288, 314, 359, 379, 390, 391, 405, 407, 419, 425, 442, 499, 523, 526, 537, 538, 598, 716, 760, 761, 789, 825, 827, 833, 865, 889, 890], "lbroute6": [2, 391], "route6": [2, 391], "lbsipparamet": [2, 391], "sip": [2, 297, 344, 391, 417, 442, 480, 482, 493, 494, 609, 613, 615, 619], "lbvserver_analyticsprofile_bind": [2, 391, 442], "lbvserver_appflowpolicy_bind": [2, 391, 442], "lbvserver_appfwpolicy_bind": [2, 391, 442], "lbvserver_appqoepolicy_bind": [2, 391, 442], "lbvserver_auditnslogpolicy_bind": [2, 391, 442], "lbvserver_auditsyslogpolicy_bind": [2, 391, 442], "lbvserver_authorizationpolicy_bind": [2, 391, 442], "lbvserver_botpolicy_bind": [2, 391, 442], "lbvserver_cachepolicy_bind": [2, 391, 442], "lbvserver_cmppolicy_bind": [2, 391, 442], "lbvserver_contentinspectionpolicy_bind": [2, 391, 442], "lbvserver_dnspolicy64_bind": [2, 391, 442], "lbvserver_feopolicy_bind": [2, 391, 442], "lbvserver_lbpolicy_bind": [2, 391, 442], "lbvserver_responderpolicy_bind": [2, 391, 442], "lbvserver_rewritepolicy_bind": [2, 391, 442], "lbvserver_service_bind": [2, 391, 442], "lbvserver_servicegroup_bind": [2, 391, 442], "servicegroup": [2, 241, 367, 368, 369, 391, 419, 561, 606, 641, 700], "lbvserver_spilloverpolicy_bind": [2, 391, 442], "lbvserver_tmtrafficpolicy_bind": [2, 391, 442], "lbvserver_transformpolicy_bind": [2, 391, 442], "lbvserver_videooptimizationdetectionpolicy_bind": [2, 391, 442], "videooptimizationdetectionpolici": [2, 391, 606], "lbvserver_videooptimizationpacingpolicy_bind": [2, 391, 442], "videooptimizationpacingpolici": [2, 391, 606], "lbwlm": [2, 391], "manag": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lbwlm_lbvserver_bind": [2, 391, 453], "linkset": [2, 391], "linkset_channel_bind": [2, 391, 456], "linkset_interface_bind": [2, 391, 456], "lldpneighbor": [2, 391], "lldp": [2, 391, 606, 641], "neighbor": [2, 391, 405, 504, 537], "lldpparam": [2, 391], "locat": [2, 20, 44, 45, 52, 66, 68, 69, 77, 78, 82, 84, 97, 99, 104, 107, 109, 110, 114, 115, 143, 160, 225, 239, 325, 337, 363, 391, 442, 522, 523, 615, 646, 661, 664, 689, 695, 706, 718, 720, 728, 745, 792, 827, 833], "locationfil": [2, 391, 460], "locationfile6": [2, 391], "file6": [2, 391], "locationparamet": [2, 391], "login": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "logout": [2, 160, 162, 391, 463, 758, 827, 833], "from": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 233, 234, 235, 238, 241, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 265, 266, 267, 268, 269, 270, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 352, 353, 355, 356, 357, 358, 359, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 388, 389, 390, 391, 392, 393, 394, 396, 399, 400, 401, 402, 403, 405, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 459, 460, 461, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 494, 495, 496, 497, 498, 499, 500, 501, 502, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 520, 522, 523, 526, 528, 530, 532, 534, 535, 536, 537, 538, 540, 541, 542, 543, 547, 548, 549, 550, 551, 554, 555, 556, 557, 558, 563, 564, 566, 567, 568, 569, 570, 571, 572, 573, 576, 578, 579, 580, 581, 584, 585, 586, 587, 588, 590, 591, 592, 593, 594, 595, 598, 600, 601, 602, 604, 606, 608, 609, 610, 612, 613, 614, 615, 616, 618, 619, 620, 621, 622, 623, 624, 625, 626, 629, 630, 631, 633, 634, 635, 636, 637, 638, 639, 640, 642, 644, 645, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 661, 662, 663, 664, 665, 666, 667, 668, 669, 671, 674, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 716, 717, 718, 722, 723, 726, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 742, 743, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 827, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lsnappsattribut": [2, 391], "attribut": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lsnappsprofil": [2, 391], "lsnappsprofile_lsnappsattributes_bind": [2, 391, 467], "lsnappsprofile_port_bind": [2, 391, 467], "port": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lsnclient": [2, 391], "client": [2, 3, 22, 26, 29, 44, 46, 49, 52, 56, 66, 68, 97, 109, 110, 112, 114, 115, 119, 136, 137, 142, 147, 148, 151, 158, 160, 206, 207, 210, 211, 216, 222, 226, 238, 268, 272, 288, 314, 321, 330, 335, 336, 337, 340, 344, 364, 366, 369, 370, 375, 383, 387, 389, 391, 395, 404, 407, 408, 413, 417, 418, 419, 424, 427, 442, 460, 461, 467, 470, 471, 472, 473, 482, 489, 492, 512, 518, 523, 526, 527, 530, 534, 535, 536, 537, 538, 547, 563, 564, 565, 568, 577, 587, 588, 592, 595, 600, 601, 602, 604, 610, 612, 618, 635, 637, 639, 654, 657, 658, 659, 664, 668, 669, 671, 679, 681, 682, 689, 695, 696, 701, 706, 707, 711, 714, 716, 742, 745, 746, 776, 792, 794, 825, 827, 833, 837, 838, 865, 889], "lsnclient_network6_bind": [2, 391, 469], "network6": [2, 391, 485, 492, 495], "lsnclient_network_bind": [2, 391, 469], "lsnclient_nsacl6_bind": [2, 391, 469], "nsacl6": [2, 391, 606], "lsnclient_nsacl_bind": [2, 391, 469], "nsacl": [2, 391, 606], "lsngroup": [2, 391], "lsngroup_ipsecalgprofile_bind": [2, 391, 482], "lsngroup_lsnappsprofile_bind": [2, 391, 482], "lsngroup_lsnhttphdrlogprofile_bind": [2, 391, 482], "lsnhttphdrlogprofil": [2, 391], "lsngroup_lsnlogprofile_bind": [2, 391, 482], "lsnlogprofil": [2, 391], "lsngroup_lsnpool_bind": [2, 391, 482], "lsnpool": [2, 391], "lsngroup_lsnrtspalgprofile_bind": [2, 391, 482], "lsnrtspalgprofil": [2, 391], "lsngroup_lsnsipalgprofile_bind": [2, 391, 482], "lsnsipalgprofil": [2, 391], "lsngroup_lsntransportprofile_bind": [2, 391, 482], "lsntransportprofil": [2, 391], "lsngroup_pcpserver_bind": [2, 391, 482], "pcpserver": [2, 391, 606], "http": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 588, 589, 590, 591, 592, 593, 594, 595, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "header": [2, 22, 44, 52, 69, 78, 82, 97, 99, 105, 109, 139, 210, 222, 226, 234, 246, 262, 264, 269, 288, 314, 335, 366, 369, 390, 391, 395, 404, 417, 427, 442, 476, 503, 512, 523, 528, 534, 535, 536, 547, 575, 587, 608, 615, 635, 637, 641, 654, 682, 689, 706, 762, 789], "lsnip6profil": [2, 391], "lsnparamet": [2, 391], "pool": [2, 391, 467, 478, 482, 488, 521, 534, 535, 539, 541, 641, 827, 833], "lsnpool_lsnip_bind": [2, 391, 489], "lsnip": [2, 391], "rtspalg": [2, 391, 482], "lsnrtspalgsess": [2, 391], "lsnsession": [2, 391], "lsnsipalgcal": [2, 391], "sipalg": [2, 391, 482], "call": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lsnstatic": [2, 391], "static": [2, 22, 97, 210, 370, 375, 391, 442, 459, 460, 461, 523, 536, 629, 630, 717, 749, 797], "map": [2, 109, 148, 215, 278, 279, 280, 281, 282, 283, 285, 286, 288, 290, 291, 292, 314, 336, 342, 366, 367, 368, 369, 383, 391, 407, 417, 442, 467, 482, 489, 492, 496, 497, 500, 508, 520, 537, 573, 580, 587, 590, 594, 595, 635, 637, 827, 833, 895], "transport": [2, 44, 50, 128, 158, 160, 162, 391, 403, 481, 490, 494, 565, 689, 706, 773, 824, 829], "mapbmr": [2, 391], "t": [2, 105, 109, 234, 391, 535, 582, 583, 595, 717, 736, 742, 746, 760, 761], "basic": [2, 97, 162, 391, 497, 500, 523, 722, 741, 742, 754, 755, 756, 827, 832, 833, 835, 865], "rule": [2, 9, 13, 15, 24, 25, 32, 36, 38, 51, 53, 54, 59, 60, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 110, 117, 120, 127, 131, 137, 140, 144, 145, 147, 149, 152, 154, 155, 159, 160, 161, 163, 164, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 192, 193, 194, 197, 201, 202, 203, 224, 227, 228, 230, 263, 265, 266, 270, 272, 273, 276, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 295, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 324, 329, 333, 336, 337, 338, 353, 355, 359, 366, 374, 375, 376, 379, 385, 388, 391, 411, 413, 417, 418, 421, 422, 429, 430, 431, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 449, 450, 451, 472, 473, 497, 500, 501, 502, 528, 532, 543, 557, 558, 566, 573, 609, 612, 614, 615, 616, 618, 620, 621, 622, 623, 624, 625, 641, 653, 661, 667, 685, 687, 689, 696, 699, 711, 714, 718, 733, 752, 757, 759, 763, 764, 766, 768, 769, 776, 778, 779, 780, 782, 784, 793, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 834, 836, 839, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 876, 877, 879], "mapbmr_bmrv4network_bind": [2, 391, 498], "bmrv4network": [2, 391], "mapdmr": [2, 391], "default": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "mapdomain": [2, 391], "mapdomain_mapbmr_bind": [2, 391, 501], "nat64": [2, 391, 485, 492, 495], "nat64param": [2, 391], "nd6": [2, 391, 405, 417, 629], "nd6ravari": [2, 391], "router": [2, 207, 391, 405, 417], "advertis": [2, 335, 391, 405, 442, 499, 535, 537, 538, 600, 629, 630, 888], "variabl": [2, 4, 125, 129, 232, 391, 419, 424, 463, 464, 520, 530, 591, 729, 730, 731, 732, 733, 734, 735, 736, 742, 746, 752, 768, 815, 820, 823, 827, 833, 897], "nd6ravariables_onlinkipv6prefix_bind": [2, 391, 504, 505], "onlinkipv6prefix": [2, 391], "netbridg": [2, 391], "netbridge_iptunnel_bind": [2, 391, 508], "netbridge_nsip6_bind": [2, 391, 508], "netbridge_nsip_bind": [2, 391, 508], "netbridge_vlan_bind": [2, 391, 508], "netprofil": [2, 50, 128, 288, 314, 391, 406, 417, 442, 502, 635, 637, 865], "netprofile_natrule_bind": [2, 391, 512], "natrul": [2, 391], "netprofile_srcportset_bind": [2, 391, 512], "srcportset": [2, 391], "acl": [2, 124, 126, 128, 130, 359, 391, 407, 473, 515, 623, 628], "nsacls6": [2, 391], "acl6": [2, 359, 391, 472, 502, 621], "nsappflowcollector": [2, 391], "nsappflowparam": [2, 391], "nsaptlicens": [2, 391], "aptlicens": [2, 391], "nsassign": [2, 391], "assign": [2, 46, 52, 89, 97, 116, 124, 126, 128, 130, 143, 158, 167, 186, 216, 218, 219, 241, 288, 314, 323, 326, 331, 353, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 391, 419, 424, 442, 445, 446, 462, 482, 489, 527, 530, 548, 550, 551, 573, 592, 610, 634, 635, 636, 637, 638, 641, 644, 645, 648, 650, 657, 658, 659, 665, 666, 668, 669, 679, 682, 684, 717, 774, 790, 791, 827, 833, 865, 882, 886, 891, 892, 895], "nscapac": [2, 391], "capac": [2, 367, 368, 369, 391, 446, 541, 636, 637, 638, 682], "nscentralmanagementserv": [2, 391], "centralmanagementserv": [2, 391], "nsconfig": [2, 45, 245, 391, 417, 657, 661, 663, 664, 667, 670, 672, 674, 675, 676, 683, 684, 693, 695, 706], "nsconsoleloginprompt": [2, 391], "consol": [2, 391], "prompt": [2, 146, 360, 377, 382, 391, 392, 523, 549, 657, 664, 672, 683, 689, 693, 695, 706, 736, 742, 746, 827, 833], "nscqaparam": [2, 391], "cqaparam": [2, 391], "nsdhcpparam": [2, 391], "dhcp": [2, 22, 391], "nsdiamet": [2, 391], "diamet": [2, 241, 297, 314, 391, 417, 423, 442, 613, 615, 619, 635, 637, 716], "nsencryptionkei": [2, 391], "encrypt": [2, 20, 21, 22, 97, 109, 143, 151, 153, 162, 297, 330, 391, 398, 399, 532, 578, 644, 650, 657, 661, 663, 672, 674, 682, 683, 684, 689, 693, 695, 701, 706, 754, 775, 776, 813, 827, 832, 833], "nsencryptionparam": [2, 391], "nsextens": [2, 391], "extens": [2, 335, 352, 391, 442, 528, 657, 664, 681, 682, 689, 773, 827, 835], "nsfeatur": [2, 391], "featur": [2, 22, 42, 52, 97, 129, 153, 156, 162, 210, 215, 246, 335, 351, 352, 375, 378, 383, 389, 391, 392, 396, 442, 467, 487, 496, 523, 536, 575, 587, 591, 627, 682, 689, 695, 701, 706, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 827, 833], "nshmackei": [2, 391], "hmac": [2, 391], "nshostnam": [2, 391], "host": [2, 44, 46, 52, 56, 66, 68, 97, 101, 110, 112, 114, 115, 124, 128, 143, 207, 212, 216, 222, 225, 226, 232, 245, 288, 314, 330, 331, 334, 335, 344, 366, 370, 383, 390, 391, 392, 405, 417, 442, 460, 461, 463, 464, 467, 484, 518, 527, 530, 536, 537, 538, 578, 582, 583, 587, 592, 595, 608, 610, 635, 645, 658, 659, 668, 669, 679, 682, 689, 745, 760, 761, 772, 825, 827, 833, 837, 838, 865], "nshttpparam": [2, 391], "nshttpprofil": [2, 391], "nsicapprofil": [2, 391], "icap": [2, 268, 269, 391], "nslicenseparamet": [2, 391], "licenseparamet": [2, 391], "nslicenseproxyserv": [2, 391], "licenseproxyserv": [2, 391, 519], "nslicenseserv": [2, 391], "licenseserv": [2, 391, 539], "limit": [2, 97, 109, 210, 211, 222, 257, 259, 335, 347, 351, 386, 391, 419, 424, 487, 496, 505, 521, 523, 525, 534, 535, 537, 547, 549, 563, 564, 575, 600, 639, 641, 664, 682, 713, 736, 742, 746, 865], "indetifi": [2, 391], "nslimitselector": [2, 391], "nslimitsess": [2, 391], "nsmigrat": [2, 391], "migrat": [2, 391, 600, 641], "oper": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "nsmode": [2, 391], "mode": [2, 12, 22, 35, 44, 49, 53, 55, 72, 74, 97, 154, 156, 158, 186, 193, 195, 202, 204, 210, 217, 227, 229, 231, 234, 240, 244, 245, 246, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 335, 337, 339, 340, 349, 358, 363, 366, 369, 375, 378, 379, 389, 391, 392, 396, 400, 406, 407, 413, 415, 417, 419, 421, 423, 424, 442, 453, 456, 458, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 523, 528, 536, 542, 549, 555, 563, 564, 567, 568, 570, 584, 590, 593, 612, 613, 618, 619, 621, 623, 633, 635, 637, 639, 648, 655, 657, 661, 665, 667, 682, 683, 685, 686, 689, 695, 701, 706, 736, 742, 746, 764, 765, 776, 777, 782, 783, 789, 825, 827, 833, 865, 882, 886, 888, 890, 894], "nsparam": [2, 391], "nspartit": [2, 391], "admin": [2, 153, 162, 391, 689, 742, 865], "partit": [2, 391, 407, 523, 537, 538, 548, 550, 551, 641, 647, 648, 678, 737, 741, 747, 757, 789], "nspartition_bridgegroup_bind": [2, 391, 549], "nspartition_vlan_bind": [2, 391, 549], "nspartition_vxlan_bind": [2, 391, 549], "vxlan": [2, 121, 221, 391, 504, 508, 606, 629], "nsratecontrol": [2, 391], "rate": [2, 52, 210, 211, 257, 259, 335, 391, 407, 419, 542, 544, 559, 563, 564, 641, 713, 781, 785], "nsrpcnode": [2, 391], "rpc": [2, 97, 391, 568], "nsservicefunct": [2, 391], "function": [2, 22, 57, 61, 62, 73, 97, 117, 124, 126, 128, 130, 194, 201, 203, 226, 234, 245, 262, 264, 265, 269, 270, 271, 273, 288, 297, 314, 323, 327, 328, 331, 332, 333, 334, 335, 336, 337, 342, 343, 344, 347, 349, 363, 369, 370, 375, 391, 410, 411, 413, 417, 419, 421, 422, 431, 432, 433, 439, 440, 442, 447, 448, 467, 482, 489, 496, 528, 530, 532, 536, 538, 556, 563, 587, 602, 608, 609, 611, 614, 616, 617, 620, 635, 637, 639, 652, 653, 667, 674, 682, 689, 695, 706, 713, 742, 763, 766, 769, 775, 778, 779, 780, 784, 797, 827, 833, 882, 886], "nsservicepath": [2, 391], "chain": [2, 52, 128, 171, 172, 173, 175, 178, 180, 182, 183, 314, 371, 375, 391, 442, 528, 556, 661, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "nsservicepath_nsservicefunction_bind": [2, 391, 555], "nssimpleacl": [2, 391], "simpl": [2, 391, 537, 538, 608], "nssimpleacl6": [2, 391], "nsspparam": [2, 391], "surg": [2, 391, 635, 637], "protect": [2, 93, 97, 102, 103, 109, 133, 160, 210, 391, 404, 564, 611, 612, 635, 637, 657, 671, 835], "nsstat": [2, 391], "stat": [2, 49, 52, 97, 98, 109, 110, 363, 391, 535, 547, 827, 833], "nssurgeq": [2, 391], "queue": [2, 117, 119, 201, 391, 489, 563, 564, 609, 639, 682, 689, 763], "nstcpbufparam": [2, 391], "tcp": [2, 44, 52, 117, 124, 126, 128, 130, 158, 186, 226, 241, 243, 269, 288, 297, 314, 332, 363, 366, 369, 375, 379, 389, 391, 417, 442, 465, 467, 475, 481, 482, 487, 490, 494, 495, 496, 535, 547, 552, 557, 558, 565, 568, 587, 604, 609, 613, 619, 621, 623, 627, 635, 637, 641, 689, 695, 706, 742, 773, 777, 783, 824, 825, 835, 865], "buffer": [2, 97, 391, 535, 563, 564, 568, 575, 582, 635, 637, 641, 682, 689], "nstcpparam": [2, 391], "nstcpprofil": [2, 391], "nstimeout": [2, 391], "timeout": [2, 109, 117, 122, 141, 210, 215, 246, 247, 314, 366, 371, 375, 387, 391, 396, 413, 417, 442, 465, 489, 490, 494, 496, 523, 535, 536, 563, 564, 582, 589, 600, 611, 617, 637, 681, 682, 689, 695, 701, 706, 716, 717, 736, 742, 746, 755, 756, 827, 829, 889], "nstimer": [2, 391], "timer": [2, 391, 458, 565, 566, 682, 689, 695, 706, 716, 758], "nstimer_autoscalepolicy_bind": [2, 391, 567], "nstrace": [2, 268, 391], "nstrafficdomain": [2, 391], "traffic": [2, 22, 50, 52, 53, 55, 121, 131, 186, 207, 218, 219, 227, 234, 243, 256, 268, 271, 276, 288, 295, 297, 314, 336, 337, 359, 375, 379, 388, 389, 390, 391, 398, 399, 400, 405, 406, 407, 413, 417, 419, 421, 424, 425, 426, 427, 442, 467, 470, 471, 472, 473, 482, 485, 492, 495, 503, 504, 512, 513, 518, 535, 537, 538, 542, 547, 554, 557, 558, 568, 569, 571, 572, 574, 582, 583, 618, 621, 623, 627, 628, 629, 630, 633, 635, 637, 648, 649, 685, 755, 756, 757, 760, 761, 764, 769, 776, 790, 791, 792, 793, 825, 827, 830, 833, 834, 839, 865, 882, 886, 889, 890], "nstrafficdomain_bridgegroup_bind": [2, 391, 570], "nstrafficdomain_vlan_bind": [2, 391, 570], "nstrafficdomain_vxlan_bind": [2, 391, 570], "nsvariabl": [2, 391], "nsvpxparam": [2, 391], "vpx": [2, 234, 391, 392, 682], "nsweblogparam": [2, 391], "nsxmlnamespac": [2, 391], "namespac": [2, 103, 350, 391], "ntpparam": [2, 391], "ntp": [2, 245, 391], "ntpserver": [2, 391], "prefix": [2, 26, 158, 269, 288, 324, 330, 335, 336, 344, 359, 366, 367, 368, 369, 371, 375, 390, 391, 405, 498, 499, 502, 506, 513, 537, 576, 586, 587, 588, 593, 601, 615, 645, 717], "pcpprofil": [2, 391, 581], "pcp": [2, 391, 483, 581], "ping": [2, 288, 363, 391, 417, 442, 535, 582, 629, 630, 865], "ping6": [2, 391], "policydataset": [2, 391], "policydataset_value_bind": [2, 391, 584], "valu": [2, 391], "policyexpress": [2, 391], "express": [2, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 20, 24, 25, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 53, 54, 57, 59, 60, 61, 62, 63, 64, 65, 67, 69, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 111, 113, 117, 120, 123, 127, 131, 137, 140, 141, 143, 144, 145, 146, 147, 149, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 191, 192, 193, 194, 201, 202, 203, 205, 208, 209, 210, 214, 222, 224, 227, 228, 230, 243, 263, 265, 266, 269, 270, 271, 272, 273, 276, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 295, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 324, 329, 333, 336, 337, 338, 353, 374, 375, 376, 385, 388, 391, 411, 413, 417, 419, 421, 422, 424, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 462, 520, 528, 532, 536, 566, 568, 573, 577, 578, 587, 589, 590, 593, 595, 608, 609, 612, 614, 615, 616, 617, 618, 620, 653, 677, 685, 687, 699, 711, 713, 714, 716, 723, 729, 730, 731, 732, 733, 734, 735, 749, 750, 751, 752, 753, 754, 757, 758, 759, 762, 763, 764, 766, 768, 769, 776, 778, 779, 780, 782, 784, 793, 794, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 832, 833, 834, 835, 836, 839, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "policyhttpcallout": [2, 391], "policyparam": [2, 391], "policypatset": [2, 391], "pat": [2, 391], "policypatset_pattern_bind": [2, 391, 590], "pattern": [2, 69, 70, 82, 95, 97, 213, 269, 314, 391, 442, 582, 583, 584, 586, 587, 590, 592, 593, 595, 615, 762, 794], "policypatsetfil": [2, 391], "patset": [2, 22, 186, 391, 528, 532, 573, 590, 591, 615, 794, 827, 865], "policystringmap": [2, 391], "string": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "policystringmap_pattern_bind": [2, 391, 593], "policyurlset": [2, 391], "url": [2, 17, 40, 44, 46, 52, 56, 57, 66, 68, 69, 70, 75, 76, 77, 78, 81, 82, 83, 84, 85, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 102, 103, 104, 105, 106, 107, 109, 110, 112, 114, 115, 119, 124, 126, 128, 130, 132, 134, 139, 151, 153, 160, 162, 166, 198, 199, 206, 210, 211, 212, 213, 215, 216, 225, 226, 288, 314, 330, 352, 391, 392, 417, 442, 460, 461, 484, 518, 522, 530, 587, 588, 592, 602, 608, 610, 619, 641, 658, 659, 664, 667, 668, 669, 679, 681, 689, 695, 706, 714, 745, 749, 754, 762, 765, 766, 771, 772, 794, 797, 822, 827, 829, 832, 833, 878, 889], "protocolhttpband": [2, 391], "request": [2, 7, 8, 9, 13, 15, 16, 18, 20, 30, 31, 32, 36, 38, 39, 41, 44, 52, 60, 61, 62, 69, 70, 73, 97, 102, 105, 109, 117, 120, 132, 134, 143, 147, 151, 152, 153, 154, 160, 161, 162, 166, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 191, 193, 194, 201, 202, 206, 210, 211, 212, 213, 215, 222, 223, 225, 226, 229, 230, 243, 262, 265, 267, 268, 269, 270, 271, 272, 273, 274, 275, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 321, 335, 337, 340, 344, 352, 363, 366, 367, 368, 369, 374, 375, 376, 383, 388, 391, 392, 411, 413, 417, 419, 421, 423, 424, 427, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 523, 527, 534, 535, 536, 537, 538, 542, 547, 573, 575, 587, 588, 595, 608, 609, 611, 612, 615, 616, 617, 618, 619, 620, 635, 636, 637, 638, 639, 647, 654, 657, 671, 681, 682, 685, 689, 695, 696, 701, 706, 707, 711, 713, 714, 716, 717, 719, 723, 742, 754, 755, 756, 758, 759, 762, 763, 764, 765, 766, 769, 776, 779, 780, 782, 794, 827, 832, 833, 835, 839, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 889], "band": [2, 391], "ptp": [2, 391], "precis": [2, 391], "time": [2, 22, 44, 49, 52, 109, 119, 122, 124, 126, 128, 130, 141, 151, 153, 160, 162, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 196, 206, 211, 212, 215, 221, 222, 226, 229, 232, 241, 246, 278, 286, 288, 289, 290, 297, 299, 302, 303, 305, 310, 314, 318, 323, 325, 326, 327, 328, 330, 331, 333, 334, 335, 342, 343, 344, 347, 352, 363, 366, 369, 370, 371, 372, 375, 386, 387, 391, 405, 406, 407, 413, 417, 427, 442, 453, 465, 482, 487, 489, 496, 505, 523, 534, 535, 536, 542, 547, 563, 564, 566, 568, 578, 579, 582, 583, 587, 589, 600, 602, 611, 617, 633, 635, 637, 641, 645, 654, 657, 661, 667, 671, 681, 682, 689, 695, 701, 706, 713, 716, 722, 726, 736, 742, 746, 754, 758, 760, 761, 772, 827, 832, 833, 835, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 865, 876, 877, 879, 882, 886], "quicbridgeprofil": [2, 391], "quic": [2, 241, 314, 391, 442, 568, 635, 637, 689, 785], "quicparam": [2, 391], "quicprofil": [2, 391], "radiusnod": [2, 391], "rdpclientprofil": [2, 391], "rdp": [2, 241, 297, 314, 366, 369, 375, 391, 442, 635, 637, 827, 833, 865], "clientprofil": [2, 391], "rdpconnect": [2, 391], "rdpserverprofil": [2, 391], "serverprofil": [2, 391], "reboot": [2, 234, 363, 391, 392], "reportingconfig": [2, 391], "report": [2, 52, 386, 391], "reputationset": [2, 391], "reput": [2, 129, 206, 207, 210, 391, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "responderact": [2, 391], "respond": [2, 117, 129, 152, 204, 246, 288, 335, 343, 349, 374, 375, 376, 391, 417, 442, 505, 531, 535, 536, 537, 538, 563, 564, 591, 609, 614, 645, 662, 681, 689, 695, 696, 701, 706, 729, 730, 731, 732, 733, 734, 735, 741, 752, 768, 815, 820, 865], "responderglobal_responderpolicy_bind": [2, 391], "responderglob": [2, 391], "responderhtmlpag": [2, 391], "responderparam": [2, 391], "responderpolicylabel": [2, 391, 606], "responderpolicylabel_responderpolicy_bind": [2, 391, 612, 613], "rewriteact": [2, 391], "rewrit": [2, 129, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 278, 286, 289, 290, 314, 374, 376, 391, 419, 424, 431, 432, 433, 439, 440, 442, 447, 448, 513, 520, 531, 591, 616, 620, 689, 695, 706, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 876, 877, 879], "rewriteglobal_rewritepolicy_bind": [2, 391], "rewriteglob": [2, 391], "rewriteparam": [2, 391], "rewritepolicylabel": [2, 391, 606], "rewritepolicylabel_rewritepolicy_bind": [2, 391, 618, 619], "rnat": [2, 379, 389, 391, 407, 622, 626], "rnat6": [2, 391], "rnat6_nsip6_bind": [2, 391, 621, 623], "rnat_nsip_bind": [2, 391, 623], "rnat_retainsourceportset_bind": [2, 391, 623], "retainsourceportset": [2, 391], "rnatglobal_auditsyslogpolicy_bind": [2, 391, 623], "rnatglob": [2, 391], "rnatparam": [2, 391], "rnatsess": [2, 391], "6": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "routerdynamicrout": [2, 391], "dynam": [2, 22, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 122, 166, 217, 221, 227, 370, 379, 391, 406, 407, 417, 419, 467, 478, 482, 489, 496, 535, 536, 537, 538, 563, 564, 629, 630, 635, 682, 689, 718, 749, 789, 797, 882, 886, 890], "rsskeytyp": [2, 391], "rss": [2, 97, 391, 424, 442, 635], "service_lbmonitor_bind": [2, 391, 635], "servicegroup_lbmonitor_bind": [2, 391, 635, 637], "servicegroup_servicegroupmember_bind": [2, 391, 635, 637], "servicegroupmemb": [2, 391, 606], "smppparam": [2, 391], "smpp": [2, 241, 297, 314, 391, 417, 442, 635, 637], "smppuser": [2, 391], "snmpalarm": [2, 391], "alarm": [2, 330, 391, 417, 647, 648], "snmpcommun": [2, 391, 417], "commun": [2, 20, 26, 29, 139, 143, 157, 158, 167, 247, 297, 370, 379, 391, 417, 442, 453, 482, 512, 538, 549, 553, 578, 601, 635, 644, 648, 650, 654, 689, 695, 706, 724], "snmpengineid": [2, 391], "snmp": [2, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 234, 241, 330, 391, 414, 415, 417, 442, 482, 537, 538, 539, 563, 568, 635, 637, 641, 642, 645, 649, 651, 713], "id": [2, 26, 52, 69, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 110, 121, 143, 151, 157, 158, 160, 186, 199, 211, 217, 218, 219, 220, 221, 225, 233, 234, 237, 239, 247, 275, 288, 314, 327, 333, 340, 347, 356, 357, 358, 359, 375, 379, 380, 381, 389, 390, 391, 392, 393, 400, 405, 417, 425, 426, 427, 442, 454, 455, 456, 463, 467, 470, 471, 472, 473, 482, 486, 488, 491, 492, 493, 495, 503, 504, 512, 519, 527, 533, 537, 538, 554, 557, 558, 568, 569, 571, 572, 574, 582, 583, 595, 598, 600, 621, 623, 629, 630, 633, 635, 636, 637, 638, 646, 648, 649, 654, 672, 717, 718, 726, 744, 749, 760, 761, 786, 787, 788, 789, 790, 791, 797, 863, 864, 865, 880, 881, 883, 884, 885, 887, 890, 891, 892, 893, 895], "snmpgroup": [2, 391], "snmpmanag": [2, 391], "snmpmib": [2, 391], "mib": [2, 391, 647, 648, 649, 651], "snmpoption": [2, 391], "option": [2, 22, 29, 44, 45, 49, 52, 97, 117, 141, 143, 146, 151, 153, 156, 160, 162, 165, 246, 247, 256, 288, 289, 314, 335, 340, 359, 360, 363, 366, 367, 368, 369, 375, 379, 391, 403, 417, 418, 419, 424, 442, 467, 482, 484, 486, 489, 505, 512, 515, 516, 519, 523, 528, 535, 536, 537, 538, 545, 560, 563, 564, 568, 574, 582, 602, 615, 635, 637, 644, 654, 656, 657, 661, 662, 663, 664, 667, 670, 672, 674, 675, 676, 678, 683, 684, 689, 693, 695, 696, 702, 706, 707, 708, 717, 722, 742, 754, 792, 813, 827, 832, 833, 865, 871, 889], "snmptrap": [2, 391, 713], "trap": [2, 210, 213, 215, 234, 330, 391, 417, 482, 542, 563, 641, 647, 649, 713], "snmptrap_snmpuser_bind": [2, 391, 648], "snmpuser": [2, 391], "snmpview": [2, 391], "spilloveract": [2, 391], "spillov": [2, 288, 314, 375, 391, 442, 523, 547, 641, 827, 833, 889], "sslaction": [2, 391], "ssl": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 681, 683, 684, 687, 688, 690, 691, 692, 693, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "sslcacertgroup": [2, 391], "ca": [2, 19, 211, 391, 418, 459, 610, 654, 656, 657, 662, 667, 682, 689, 690, 696, 702, 707, 813], "sslcacertgroup_sslcertkey_bind": [2, 391, 655], "sslcert": [2, 391], "cerif": [2, 391], "sslcertbundl": [2, 391], "import": [2, 46, 56, 66, 68, 97, 109, 110, 112, 114, 115, 118, 216, 245, 330, 352, 378, 391, 460, 461, 530, 592, 595, 608, 610, 648, 661, 674, 683, 745], "certbundl": [2, 391], "sslcertfil": [2, 391], "certfil": [2, 391, 610, 657, 675, 676, 683], "sslcertificatechain": [2, 391], "sslcertkey_sslocspresponder_bind": [2, 391, 657, 661], "sslocsprespond": [2, 391], "sslcertkeybundl": [2, 391], "certkei": [2, 391, 656, 661, 662, 690, 696, 702, 707, 813], "bundl": [2, 391, 658, 661], "sslcertreq": [2, 391], "sslcipher": [2, 391], "cipher": [2, 391, 528, 529, 535, 654, 666, 688, 689, 690, 691, 692, 693, 695, 697, 698, 703, 704, 706, 709, 710], "sslcipher_sslciphersuite_bind": [2, 391, 665], "sslciphersuit": [2, 391], "sslcrl": [2, 391], "revoc": [2, 391, 682], "list": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "sslcrlfile": [2, 391], "crl": [2, 378, 391, 418, 656, 667, 682, 696, 702, 707, 813], "ssldhfile": [2, 391], "dh": [2, 391, 689, 695, 706], "ssldhparam": [2, 391], "ssldtlsprofil": [2, 391], "dtl": [2, 241, 314, 391, 442, 635, 637, 695, 706, 865], "sslecdsakei": [2, 391], "ecdsa": [2, 391, 674, 682], "sslfip": [2, 391], "fip": [2, 391, 568, 661, 664, 675, 742], "sslfipskei": [2, 391], "sslfipssimsourc": [2, 391], "fipssim": [2, 391], "sourc": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "sslfipssimtarget": [2, 391], "sim": [2, 391, 674], "target": [2, 12, 35, 49, 53, 55, 56, 58, 69, 72, 74, 97, 154, 156, 186, 193, 195, 202, 204, 210, 217, 221, 227, 229, 234, 244, 247, 256, 265, 267, 269, 272, 274, 284, 287, 288, 289, 295, 297, 309, 314, 337, 339, 344, 358, 366, 369, 375, 379, 391, 400, 413, 415, 417, 421, 423, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 549, 555, 567, 570, 584, 587, 588, 590, 593, 608, 612, 613, 615, 618, 619, 621, 623, 635, 637, 648, 655, 657, 661, 665, 675, 685, 686, 689, 695, 701, 706, 736, 746, 764, 765, 776, 777, 782, 783, 789, 832, 865, 882, 886, 890, 894], "sslglobal_sslpolicy_bind": [2, 391], "sslglobal": [2, 391], "sslpolici": [2, 391], "sslhsmkei": [2, 391], "hsm": [2, 391, 661, 673], "sslkeyfil": [2, 391], "ssllogprofil": [2, 391, 654, 689], "ocsp": [2, 391, 418, 656, 662, 682, 689, 695, 696, 701, 702, 706, 707, 813], "sslparamet": [2, 391], "sslpkcs12": [2, 391], "pkcs12": [2, 391], "sslpkcs8": [2, 391], "pkcs8": [2, 391, 672, 693], "sslpolicylabel": [2, 391], "sslpolicylabel_sslpolicy_bind": [2, 391, 685, 686], "sslprofil": [2, 391, 417, 665, 695, 701, 706], "sslprofile_ecccurve_bind": [2, 391, 689], "ecccurv": [2, 391], "sslprofile_sslcertkey_bind": [2, 391, 689], "sslprofile_sslcipher_bind": [2, 391, 689], "sslprofile_sslciphersuite_bind": [2, 391, 689], "sslrsakei": [2, 391], "rsa": [2, 160, 162, 391, 657, 664, 674, 682, 689, 695, 706, 754, 832, 833], "sslservic": [2, 391], "sslservice_ecccurve_bind": [2, 391, 695], "sslservice_sslcertkey_bind": [2, 391, 695], "sslservice_sslcipher_bind": [2, 391, 695], "sslservice_sslciphersuite_bind": [2, 391, 695], "sslservice_sslpolicy_bind": [2, 391, 695], "sslservicegroup": [2, 391], "sslservicegroup_ecccurve_bind": [2, 391, 695, 701], "sslservicegroup_sslcertkey_bind": [2, 391, 695, 701], "sslservicegroup_sslcipher_bind": [2, 391, 695, 701], "sslservicegroup_sslciphersuite_bind": [2, 391, 695, 701], "sslvserver": [2, 391, 606], "sslvserver_ecccurve_bind": [2, 391, 706], "sslvserver_sslcertkey_bind": [2, 391, 706], "sslvserver_sslcertkeybundle_bind": [2, 391, 706], "sslvserver_sslcipher_bind": [2, 391, 706], "sslvserver_sslciphersuite_bind": [2, 391, 706], "sslvserver_sslpolicy_bind": [2, 391, 706], "sslwrapkei": [2, 391], "wrap": [2, 391, 674], "identifi": [2, 20, 27, 52, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 121, 134, 135, 141, 143, 151, 153, 160, 162, 186, 207, 211, 217, 218, 219, 220, 221, 225, 231, 233, 239, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 288, 314, 323, 326, 327, 328, 331, 333, 334, 335, 342, 343, 344, 345, 347, 359, 361, 364, 366, 367, 368, 369, 375, 379, 380, 381, 389, 390, 391, 400, 403, 405, 408, 417, 419, 420, 425, 426, 442, 456, 457, 460, 461, 473, 482, 489, 491, 492, 493, 498, 502, 503, 504, 512, 521, 523, 527, 537, 538, 541, 542, 544, 548, 550, 551, 557, 558, 568, 569, 570, 571, 572, 577, 580, 596, 621, 623, 629, 630, 631, 633, 635, 636, 637, 638, 641, 643, 644, 646, 648, 649, 651, 654, 673, 714, 715, 716, 720, 727, 754, 786, 787, 788, 789, 790, 791, 824, 828, 832, 865, 880, 881, 882, 883, 884, 885, 886, 887, 890, 891, 892, 893], "streamselector": [2, 391], "streamsess": [2, 391], "subscribergxinterfac": [2, 391], "gx": [2, 52, 391, 717], "subscriberparam": [2, 391], "subscriberprofil": [2, 391], "subscriberradiusinterfac": [2, 391], "subscribersess": [2, 391], "sesion": [2, 391], "systemadmuserinfo": [2, 391], "systembackup": [2, 391], "backup": [2, 256, 288, 310, 314, 331, 363, 370, 371, 372, 375, 391, 413, 442, 563, 741, 882, 886, 888, 889], "restor": [2, 97, 391, 574], "systemcmdpolici": [2, 391], "command": [2, 12, 19, 20, 22, 78, 92, 95, 97, 186, 217, 222, 227, 288, 313, 314, 325, 327, 333, 336, 337, 360, 363, 366, 369, 379, 391, 392, 417, 419, 442, 466, 487, 488, 512, 523, 529, 610, 631, 635, 637, 653, 672, 683, 685, 689, 693, 695, 706, 729, 730, 731, 732, 733, 734, 735, 736, 738, 742, 746, 747, 748, 789, 890], "systemcollectionparam": [2, 391], "collect": [2, 391], "systemcpuparam": [2, 391], "systementitydata": [2, 391], "systemextramgmtcpu": [2, 391], "systemfil": [2, 391], "systemglobal_auditnslogpolicy_bind": [2, 391], "systemglob": [2, 391], "systemglobal_auditsyslogpolicy_bind": [2, 391], "systemglobal_authenticationldappolicy_bind": [2, 391], "systemglobal_authenticationlocalpolicy_bind": [2, 391], "systemglobal_authenticationpolicy_bind": [2, 391], "systemglobal_authenticationradiuspolicy_bind": [2, 391], "systemglobal_authenticationtacacspolicy_bind": [2, 391], "systemgroup": [2, 391], "systemgroup_nspartition_bind": [2, 391, 736], "systemgroup_systemcmdpolicy_bind": [2, 391, 736], "systemgroup_systemuser_bind": [2, 391, 736], "systemus": [2, 391], "systemhwerror": [2, 391], "hardwar": [2, 391, 519, 661, 664, 673, 682, 689], "systemkek": [2, 391], "systemparamet": [2, 391], "systemrestorepoint": [2, 391], "restorepoint": [2, 391], "auto": [2, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 215, 234, 363, 369, 370, 391, 405, 528, 532, 549, 637, 667, 682, 689, 827, 833], "systemsess": [2, 391], "systemsshkei": [2, 391], "systemuser_nspartition_bind": [2, 391, 746], "systemuser_systemcmdpolicy_bind": [2, 391, 746], "tmformssoact": [2, 391], "tmglobal_auditnslogpolicy_bind": [2, 391], "tmglobal": [2, 391], "tmglobal_auditsyslogpolicy_bind": [2, 391], "tmglobal_tmsessionpolicy_bind": [2, 391], "tmglobal_tmtrafficpolicy_bind": [2, 391], "tmsamlssoprofil": [2, 391], "tmsessionact": [2, 391], "tm": [2, 27, 133, 211, 391, 756], "tmsessionparamet": [2, 391], "tmtrafficact": [2, 391], "tracerout": [2, 391], "traceroute6": [2, 391], "transformact": [2, 391], "transform": [2, 74, 97, 109, 339, 391, 619, 633, 763, 766], "transformglobal_transformpolicy_bind": [2, 391], "transformglob": [2, 391], "transformpolicylabel": [2, 391], "transformpolicylabel_transformpolicy_bind": [2, 391, 764, 765], "transformprofil": [2, 391], "tunnelglobal_tunneltrafficpolicy_bind": [2, 391], "tunnelglob": [2, 391], "tunneltrafficpolici": [2, 391], "ulfdserv": [2, 391], "ulfd": [2, 391, 546], "urlfilteringcategor": [2, 391], "categor": [2, 391], "urlfilteringparamet": [2, 391], "urlfilt": [2, 124, 126, 128, 129, 130, 391, 531, 591, 641, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "userprotocol": [2, 391, 774], "uservserv": [2, 391, 606], "videooptimizationdetectionact": [2, 391], "videooptim": [2, 129, 391, 431, 432, 433, 439, 440, 447, 448, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 778, 779, 780, 784, 815, 820], "detectionact": [2, 391], "detectionpolici": [2, 391], "videooptimizationdetectionpolicylabel": [2, 391, 606], "detect": [2, 75, 87, 97, 205, 207, 208, 210, 211, 212, 214, 268, 370, 391, 405, 406, 407, 442, 563, 671, 775, 776, 778, 779, 781, 792, 827, 833, 865], "videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_bind": [2, 391, 776, 777], "videooptimizationglobaldetection_videooptimizationdetectionpolicy_bind": [2, 391], "videooptimizationglobaldetect": [2, 391], "videooptimizationglobalpacing_videooptimizationpacingpolicy_bind": [2, 391], "videooptimizationglobalpac": [2, 391], "videooptimizationpacingact": [2, 391], "pacingact": [2, 391], "pacingpolici": [2, 391], "videooptimizationpacingpolicylabel": [2, 391, 606], "pace": [2, 388, 391, 780, 781, 782, 784, 785], "videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_bind": [2, 391, 782, 783], "videooptimizationparamet": [2, 391], "vlan_channel_bind": [2, 391, 789], "vlan_interface_bind": [2, 391, 789], "vlan_linkset_bind": [2, 391, 789], "vlan_nsip6_bind": [2, 391, 789], "vlan_nsip_bind": [2, 391, 789], "vpnalwaysonprofil": [2, 391], "alwyason": [2, 391], "vpnclientlessaccesspolici": [2, 391], "clientless": [2, 391, 619, 827, 833, 837, 838], "vpn": [2, 14, 22, 27, 37, 124, 126, 128, 130, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 245, 293, 312, 320, 335, 366, 391, 602, 619, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 862, 866, 867, 870, 872, 873, 874, 875, 876, 877, 879], "vpnclientlessaccessprofil": [2, 391], "vpnepaprofil": [2, 391], "vpneula": [2, 391], "eula": [2, 391, 816, 872], "vserver": [2, 44, 51, 54, 117, 119, 128, 133, 146, 158, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 196, 201, 203, 241, 249, 251, 252, 253, 254, 255, 260, 268, 269, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 335, 340, 371, 372, 373, 374, 375, 376, 391, 406, 408, 410, 411, 413, 419, 420, 422, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 535, 536, 537, 538, 563, 564, 565, 566, 568, 587, 609, 614, 641, 654, 677, 682, 687, 688, 689, 694, 699, 705, 708, 711, 716, 755, 756, 774, 778, 779, 780, 784, 827, 833, 837, 838, 841, 863, 865, 872, 875], "vpnformssoact": [2, 391], "vpnglobal_appcontroller_bind": [2, 391], "vpnglobal": [2, 391], "appcontrol": [2, 391], "vpnglobal_auditnslogpolicy_bind": [2, 391], "vpnglobal_auditsyslogpolicy_bind": [2, 391], "vpnglobal_authenticationcertpolicy_bind": [2, 391], "vpnglobal_authenticationldappolicy_bind": [2, 391], "vpnglobal_authenticationlocalpolicy_bind": [2, 391], "vpnglobal_authenticationnegotiatepolicy_bind": [2, 391], "vpnglobal_authenticationpolicy_bind": [2, 391], "vpnglobal_authenticationradiuspolicy_bind": [2, 391], "vpnglobal_authenticationsamlpolicy_bind": [2, 391], "vpnglobal_authenticationtacacspolicy_bind": [2, 391], "vpnglobal_domain_bind": [2, 391], "vpnglobal_intranetip6_bind": [2, 391], "vpnglobal_intranetip_bind": [2, 391], "vpnglobal_sharefileserver_bind": [2, 391], "sharefileserv": [2, 391], "vpnglobal_sslcertkey_bind": [2, 391], "vpnglobal_staserver_bind": [2, 391], "staserv": [2, 391], "vpnglobal_vpnclientlessaccesspolicy_bind": [2, 391], "vpnglobal_vpneula_bind": [2, 391], "vpnglobal_vpnintranetapplication_bind": [2, 391], "vpnglobal_vpnnexthopserver_bind": [2, 391], "vpnnexthopserv": [2, 391], "vpnglobal_vpnportaltheme_bind": [2, 391], "vpnglobal_vpnsessionpolicy_bind": [2, 391], "vpnglobal_vpntrafficpolicy_bind": [2, 391], "vpnglobal_vpnurl_bind": [2, 391], "vpnglobal_vpnurlpolicy_bind": [2, 391], "vpnicaconnect": [2, 391], "sslvpn": [2, 129, 391, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "intranet": [2, 10, 11, 14, 17, 27, 33, 34, 37, 40, 158, 391, 755, 756, 809, 810, 811, 817, 822, 827, 833, 863, 864, 873, 878], "next": [2, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 54, 60, 61, 62, 73, 119, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 194, 201, 203, 224, 228, 247, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 353, 374, 376, 385, 391, 406, 410, 411, 419, 422, 424, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 482, 489, 526, 536, 564, 566, 609, 614, 616, 620, 633, 657, 677, 687, 699, 711, 729, 730, 731, 732, 733, 734, 735, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 874, 876, 877, 879, 890], "hop": [2, 52, 391, 406, 417, 505, 537, 547, 760, 761, 818, 865, 874], "vpnparamet": [2, 391], "vpnpcoipconnect": [2, 391], "pcoip": [2, 391, 827, 833, 865], "vpnpcoipprofil": [2, 391], "vpnpcoipvserverprofil": [2, 391], "portalthem": [2, 190, 391, 819, 875], "vpnsamlssoprofil": [2, 391], "vpnsessionact": [2, 391], "vpntrafficact": [2, 391], "vpnurlact": [2, 391], "vpnvserver_aaapreauthenticationpolicy_bind": [2, 391, 865], "vpnvserver_analyticsprofile_bind": [2, 391, 865], "vpnvserver_appcontroller_bind": [2, 391, 865], "vpnvserver_appflowpolicy_bind": [2, 391, 865], "vpnvserver_auditnslogpolicy_bind": [2, 391, 865], "vpnvserver_auditsyslogpolicy_bind": [2, 391, 865], "vpnvserver_authenticationcertpolicy_bind": [2, 391, 865], "vpnvserver_authenticationdfapolicy_bind": [2, 391, 865], "vpnvserver_authenticationldappolicy_bind": [2, 391, 865], "vpnvserver_authenticationlocalpolicy_bind": [2, 391, 865], "vpnvserver_authenticationloginschemapolicy_bind": [2, 391, 865], "vpnvserver_authenticationnegotiatepolicy_bind": [2, 391, 865], "vpnvserver_authenticationoauthidppolicy_bind": [2, 391, 865], "vpnvserver_authenticationpolicy_bind": [2, 391, 865], "vpnvserver_authenticationradiuspolicy_bind": [2, 391, 865], "vpnvserver_authenticationsamlidppolicy_bind": [2, 391, 865], "vpnvserver_authenticationsamlpolicy_bind": [2, 391, 865], "vpnvserver_authenticationtacacspolicy_bind": [2, 391, 865], "vpnvserver_authenticationwebauthpolicy_bind": [2, 391, 865], "vpnvserver_cachepolicy_bind": [2, 391, 865], "vpnvserver_cspolicy_bind": [2, 391, 865], "vpnvserver_feopolicy_bind": [2, 391, 865], "vpnvserver_icapolicy_bind": [2, 391, 865], "vpnvserver_intranetip6_bind": [2, 391, 865], "vpnvserver_intranetip_bind": [2, 391, 865], "vpnvserver_responderpolicy_bind": [2, 391, 865], "vpnvserver_rewritepolicy_bind": [2, 391, 865], "vpnvserver_sharefileserver_bind": [2, 391, 865], "vpnvserver_staserver_bind": [2, 391, 865], "vpnvserver_vpnclientlessaccesspolicy_bind": [2, 391, 865], "vpnvserver_vpnepaprofile_bind": [2, 391, 865], "vpnvserver_vpneula_bind": [2, 391, 865], "vpnvserver_vpnintranetapplication_bind": [2, 391, 865], "vpnvserver_vpnnexthopserver_bind": [2, 391, 865], "vpnvserver_vpnportaltheme_bind": [2, 391, 865], "vpnvserver_vpnsessionpolicy_bind": [2, 391, 865], "vpnvserver_vpntrafficpolicy_bind": [2, 391, 865], "vpnvserver_vpnurl_bind": [2, 391, 865], "vpnvserver_vpnurlpolicy_bind": [2, 391, 865], "vrid": [2, 391, 406, 538, 641, 883], "vrid6": [2, 391, 537], "vrid6_channel_bind": [2, 391, 882, 886], "vrid6_interface_bind": [2, 391, 882, 886], "vrid6_trackinterface_bind": [2, 391, 882, 886], "trackinterfac": [2, 391], "vrid_channel_bind": [2, 391, 886], "vrid_interface_bind": [2, 391, 886], "vrid_trackinterface_bind": [2, 391, 886], "vridparam": [2, 391], "vr": [2, 391], "vxlan_nsip6_bind": [2, 391, 890], "vxlan_nsip_bind": [2, 391, 890], "vxlan_srcip_bind": [2, 391, 890], "srcip": [2, 391, 395, 404, 512, 553, 558, 568, 648, 825], "vxlanvlanmap": [2, 391, 508], "vxlanvlanmap_vxlan_bind": [2, 391, 890, 894], "thi": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 897], "i": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "part": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "version": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "It": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "includ": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "To": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "check": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "whether": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "run": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "galaxi": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "playbook": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "specifi": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "new": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "comment": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "api_path": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "base": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "nitro": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "path": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "onli": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "case": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "an": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "v1": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "defaultauthenticationgroup": [3, 20, 26, 29, 134, 135, 136, 139, 141, 143, 148, 150, 151, 153, 158, 160, 162, 166, 167, 191], "chosen": [3, 20, 23, 26, 29, 136, 139, 142, 143, 148, 151, 158, 160, 166, 167, 191, 325, 327, 563, 717, 827, 833], "when": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "succe": [3, 20, 23, 26, 29, 136, 139, 142, 143, 148, 151, 158, 160, 166, 167, 191, 417, 645, 827, 833], "addit": [3, 20, 26, 29, 136, 139, 143, 146, 148, 151, 158, 160, 166, 167, 191, 210, 267, 340, 369, 398, 399, 408, 419, 424, 442, 467, 496, 523, 528, 608, 615, 637, 664, 682, 689, 706, 749, 786, 787, 788, 797, 827, 833, 865], "extract": [3, 20, 26, 29, 136, 139, 143, 146, 148, 151, 156, 158, 160, 166, 167, 172, 191, 269, 288, 314, 442, 587, 654, 749, 754, 762, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 832, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "groupnamefield": [3, 136, 160], "format": [3, 44, 45, 59, 69, 70, 89, 93, 97, 104, 107, 109, 123, 124, 126, 128, 130, 136, 153, 160, 162, 288, 352, 392, 417, 442, 460, 461, 486, 523, 528, 536, 568, 588, 592, 601, 602, 613, 615, 641, 648, 649, 654, 657, 661, 663, 664, 667, 672, 674, 683, 684, 693, 695, 706, 728, 736, 742, 746, 754, 762, 812, 832, 837, 868], "subfield": [3, 136], "nitro_auth_token": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "ad": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "token": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "nitro_pass": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "which": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "nitro_protocol": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "access": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "choic": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "nitro_us": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "usernam": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "requir": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "applianc": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "where": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "made": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "can": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "colon": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "e": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "g": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "192": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "168": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "1": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "555": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "save_config": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "boolean": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "If": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "true": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "save": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "make": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "ani": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "fals": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "state": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "being": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "present": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "creat": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 61, 62, 63, 64, 65, 67, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 604, 606, 607, 608, 609, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 660, 661, 662, 663, 664, 665, 666, 667, 671, 672, 673, 674, 677, 678, 680, 681, 682, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 716, 717, 718, 719, 721, 722, 723, 724, 725, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 741, 742, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 827, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "need": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 61, 62, 63, 64, 65, 67, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 604, 606, 607, 608, 609, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 660, 661, 662, 663, 665, 666, 667, 671, 673, 677, 678, 680, 681, 682, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 713, 714, 716, 717, 718, 719, 721, 722, 723, 724, 725, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 742, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 827, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "accord": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 61, 62, 63, 64, 65, 67, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 604, 606, 607, 608, 609, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 660, 661, 662, 663, 665, 666, 667, 671, 673, 677, 678, 680, 681, 682, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 713, 714, 716, 717, 718, 719, 721, 722, 723, 724, 725, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 742, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 827, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 61, 62, 63, 64, 65, 67, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 492, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 660, 661, 662, 663, 664, 665, 666, 667, 671, 673, 675, 676, 677, 678, 680, 681, 682, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 713, 714, 716, 717, 718, 719, 721, 722, 723, 724, 725, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 742, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 827, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "usernamefield": [3, 136, 151], "contain": [3, 28, 35, 44, 45, 46, 48, 49, 50, 52, 53, 55, 57, 59, 70, 72, 74, 75, 93, 97, 109, 123, 124, 128, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 272, 274, 276, 288, 293, 295, 297, 314, 321, 335, 340, 347, 366, 369, 370, 375, 383, 384, 386, 388, 407, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 522, 523, 535, 547, 548, 549, 550, 551, 555, 556, 557, 558, 568, 580, 581, 584, 586, 587, 590, 592, 595, 598, 600, 608, 612, 613, 615, 618, 619, 623, 633, 635, 637, 652, 653, 654, 655, 656, 657, 658, 659, 661, 663, 664, 665, 666, 667, 668, 669, 671, 674, 679, 681, 682, 683, 685, 686, 689, 695, 701, 706, 712, 714, 716, 723, 726, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 775, 776, 777, 781, 782, 783, 794, 825, 832, 835, 836, 838, 839, 865, 897], "validate_cert": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "valid": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "should": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "person": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "self": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "sign": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "For": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "more": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "devic": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "see": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "www": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "com": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "citrixadc": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "common": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "uniqu": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "descript": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "indic": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "alwai": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "sampl": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "diff": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "dictionari": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "befor": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "after": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "key2": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "pqr": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "key1": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "xyz": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "prepar": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "done": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "diff_list": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "element": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "differ": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "actual": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "desir": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "class": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "str": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "exist": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "fail": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "loglin": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "sumanth": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lingappa": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "issu": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "tracker": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "repositori": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "builtin": [4, 22, 125, 129, 186, 463, 464, 591, 685, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 823, 827, 833, 865], "built": [4, 109, 117, 125, 129, 147, 154, 161, 265, 272, 276, 336, 337, 591, 612, 618, 682, 685, 697, 709, 729, 730, 731, 732, 733, 734, 735, 752, 768, 769, 776, 782, 815, 820, 823], "intern": [4, 59, 109, 125, 129, 147, 152, 153, 154, 161, 162, 202, 272, 314, 327, 333, 335, 347, 366, 367, 368, 369, 371, 375, 403, 407, 413, 421, 442, 467, 535, 547, 591, 612, 618, 633, 635, 639, 729, 730, 731, 732, 733, 734, 735, 752, 768, 776, 782, 815, 820, 823, 827, 833, 865], "modifi": [4, 12, 35, 49, 53, 55, 72, 74, 97, 105, 125, 129, 154, 156, 186, 193, 195, 202, 204, 210, 217, 222, 227, 229, 234, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 335, 337, 339, 358, 366, 369, 375, 379, 400, 413, 415, 417, 419, 421, 423, 424, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 535, 549, 555, 567, 570, 584, 587, 590, 591, 593, 612, 613, 615, 617, 618, 619, 621, 623, 635, 637, 641, 648, 655, 657, 661, 665, 685, 686, 689, 695, 701, 706, 729, 730, 731, 732, 733, 734, 735, 736, 746, 752, 764, 765, 768, 776, 777, 782, 783, 789, 815, 820, 823, 865, 882, 886, 890, 894], "delet": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 24, 25, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 48, 49, 50, 51, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 121, 123, 124, 125, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 216, 217, 218, 219, 220, 221, 222, 223, 224, 227, 228, 229, 230, 233, 234, 235, 241, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 265, 266, 267, 268, 269, 270, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 352, 353, 355, 356, 357, 358, 359, 362, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 388, 389, 393, 394, 396, 399, 400, 401, 402, 403, 410, 411, 412, 413, 414, 415, 416, 417, 418, 421, 422, 423, 424, 425, 426, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 459, 460, 461, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 494, 495, 496, 497, 498, 499, 500, 501, 502, 504, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 520, 522, 523, 528, 530, 532, 535, 536, 537, 538, 540, 541, 542, 543, 548, 549, 550, 551, 554, 555, 556, 557, 558, 564, 566, 567, 569, 570, 571, 572, 573, 576, 578, 579, 580, 581, 584, 585, 586, 587, 588, 590, 591, 592, 593, 594, 595, 598, 600, 601, 602, 604, 606, 608, 609, 610, 612, 613, 614, 615, 616, 618, 619, 620, 622, 623, 624, 625, 626, 629, 630, 631, 633, 634, 635, 636, 637, 638, 640, 642, 644, 645, 648, 649, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 662, 663, 665, 666, 667, 668, 669, 671, 674, 677, 678, 679, 680, 681, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 717, 718, 722, 723, 726, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 743, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 889, 890, 891, 892, 893, 894, 895], "immut": [4, 125, 129, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 823], "partition_al": [4, 125, 129, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 823], "unbound": [4, 662], "prioriti": [4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 54, 59, 60, 61, 62, 73, 117, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 194, 201, 203, 224, 228, 243, 247, 256, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 325, 329, 331, 335, 337, 338, 344, 353, 374, 376, 385, 409, 411, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451, 563, 566, 609, 614, 616, 620, 626, 662, 665, 666, 677, 687, 688, 689, 690, 691, 692, 699, 711, 729, 730, 731, 732, 733, 734, 735, 738, 748, 750, 751, 752, 753, 762, 763, 766, 768, 778, 779, 780, 784, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 882, 886], "float": [4, 7, 8, 9, 10, 12, 13, 15, 16, 18, 20, 21, 22, 26, 27, 29, 30, 31, 32, 33, 36, 38, 39, 41, 44, 47, 51, 52, 54, 59, 60, 61, 62, 70, 73, 89, 93, 97, 98, 102, 103, 109, 117, 119, 121, 122, 125, 128, 129, 133, 134, 141, 143, 146, 151, 153, 155, 157, 158, 160, 162, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 194, 196, 201, 203, 206, 210, 211, 212, 215, 217, 218, 219, 220, 221, 222, 224, 225, 226, 228, 231, 233, 234, 241, 243, 246, 247, 248, 250, 256, 261, 263, 264, 266, 268, 269, 270, 273, 275, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 314, 315, 316, 317, 318, 319, 323, 325, 326, 327, 328, 329, 330, 331, 333, 334, 335, 338, 342, 343, 344, 345, 347, 351, 352, 353, 354, 356, 357, 358, 359, 361, 363, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 379, 380, 381, 385, 386, 387, 389, 390, 393, 395, 396, 398, 399, 400, 403, 404, 405, 406, 407, 409, 411, 413, 416, 417, 419, 420, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 453, 457, 458, 465, 467, 470, 471, 472, 473, 482, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 498, 503, 504, 505, 506, 511, 512, 518, 521, 523, 525, 527, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 547, 548, 549, 550, 551, 552, 554, 556, 557, 558, 562, 563, 564, 565, 566, 568, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 582, 583, 585, 587, 589, 591, 595, 596, 598, 599, 600, 602, 604, 607, 608, 609, 611, 614, 616, 617, 620, 621, 623, 626, 629, 630, 631, 633, 634, 635, 636, 637, 638, 639, 641, 643, 646, 648, 649, 657, 661, 662, 665, 666, 667, 670, 671, 674, 677, 681, 682, 687, 688, 689, 690, 691, 692, 693, 695, 699, 701, 706, 711, 713, 716, 717, 718, 720, 727, 729, 730, 731, 732, 733, 734, 735, 736, 738, 742, 744, 746, 748, 749, 750, 751, 752, 753, 754, 755, 756, 758, 760, 761, 762, 763, 766, 768, 772, 778, 779, 780, 784, 785, 786, 787, 788, 789, 790, 791, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 810, 815, 820, 821, 823, 824, 827, 828, 829, 832, 833, 835, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 865, 866, 867, 870, 876, 877, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 895], "bound": [4, 5, 7, 8, 9, 10, 11, 13, 15, 16, 18, 30, 31, 32, 33, 34, 36, 38, 39, 41, 43, 44, 48, 51, 54, 55, 60, 61, 62, 73, 74, 117, 133, 143, 156, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 194, 201, 203, 217, 224, 228, 229, 233, 234, 241, 249, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 263, 266, 267, 270, 273, 274, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 329, 339, 353, 356, 357, 363, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 385, 401, 402, 410, 411, 417, 418, 419, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 475, 478, 481, 482, 488, 489, 496, 512, 514, 523, 542, 561, 563, 567, 569, 571, 572, 584, 585, 590, 591, 593, 594, 609, 613, 614, 616, 619, 620, 635, 636, 637, 638, 644, 650, 662, 677, 682, 687, 688, 689, 694, 695, 699, 700, 701, 702, 703, 704, 705, 706, 708, 711, 753, 762, 763, 765, 766, 768, 777, 778, 779, 780, 783, 784, 786, 787, 788, 789, 815, 816, 818, 819, 827, 833, 840, 841, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 870, 872, 874, 875, 876, 877, 879, 882, 886], "absent": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 23, 25, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 48, 49, 50, 51, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 121, 123, 124, 125, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 216, 217, 218, 219, 220, 221, 222, 223, 224, 227, 228, 229, 230, 233, 234, 235, 241, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 265, 266, 267, 268, 269, 270, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 352, 353, 355, 356, 357, 358, 359, 362, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 388, 389, 393, 394, 396, 399, 400, 401, 402, 403, 410, 411, 412, 413, 414, 415, 416, 417, 418, 421, 422, 423, 424, 425, 426, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 459, 460, 461, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 488, 489, 490, 494, 495, 496, 497, 498, 499, 500, 501, 502, 504, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 520, 522, 528, 530, 532, 535, 536, 537, 538, 540, 541, 542, 543, 548, 549, 550, 551, 554, 555, 556, 557, 558, 564, 566, 567, 569, 570, 571, 572, 573, 576, 578, 579, 580, 581, 584, 585, 586, 587, 588, 590, 591, 592, 593, 594, 595, 598, 600, 601, 602, 604, 606, 608, 609, 610, 612, 613, 614, 615, 616, 618, 619, 620, 622, 623, 624, 625, 626, 629, 630, 631, 633, 634, 635, 636, 637, 638, 640, 642, 644, 645, 648, 649, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 662, 663, 665, 666, 667, 668, 669, 671, 674, 677, 678, 679, 680, 681, 685, 686, 687, 688, 689, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 712, 713, 714, 717, 718, 722, 723, 726, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 743, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 889, 890, 891, 892, 893, 894, 895], "windowsprofil": 5, "gotopriorityexpress": [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 54, 60, 61, 62, 73, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 194, 201, 203, 224, 228, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 353, 374, 376, 385, 411, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 566, 609, 614, 616, 620, 677, 687, 699, 711, 729, 730, 731, 732, 733, 734, 735, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "other": [6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 19, 30, 31, 33, 34, 37, 39, 40, 41, 45, 53, 61, 62, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 117, 124, 126, 128, 130, 143, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 196, 207, 210, 222, 234, 247, 256, 263, 275, 288, 289, 297, 302, 303, 314, 318, 321, 327, 329, 331, 333, 335, 340, 349, 358, 363, 367, 368, 369, 370, 379, 388, 389, 403, 406, 413, 416, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451, 462, 467, 478, 488, 489, 496, 505, 528, 532, 535, 536, 537, 538, 554, 563, 564, 573, 574, 587, 629, 630, 635, 636, 637, 638, 641, 661, 677, 682, 689, 696, 729, 730, 731, 732, 734, 735, 750, 751, 753, 760, 761, 794, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 833, 837, 838, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877, 882, 886, 890], "evalu": [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 24, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 53, 54, 55, 60, 61, 62, 73, 109, 120, 143, 147, 152, 154, 155, 160, 161, 162, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 191, 194, 196, 201, 202, 203, 222, 224, 226, 227, 228, 229, 230, 243, 263, 266, 270, 271, 272, 273, 276, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 295, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 324, 329, 336, 337, 338, 347, 353, 363, 374, 375, 376, 385, 388, 411, 413, 417, 419, 421, 422, 424, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 462, 520, 536, 566, 573, 587, 589, 608, 609, 611, 612, 614, 616, 617, 618, 620, 677, 685, 687, 699, 711, 713, 729, 730, 731, 732, 733, 734, 735, 750, 751, 752, 753, 754, 757, 758, 762, 763, 764, 766, 768, 769, 776, 778, 779, 780, 782, 784, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 832, 835, 836, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 871, 876, 877, 879], "current": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 54, 60, 61, 62, 73, 134, 135, 141, 146, 150, 151, 153, 155, 158, 160, 162, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 194, 201, 203, 206, 207, 211, 224, 228, 232, 247, 256, 263, 264, 266, 268, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 322, 327, 329, 338, 350, 353, 374, 376, 379, 385, 411, 419, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 505, 528, 529, 545, 563, 566, 580, 600, 609, 614, 615, 616, 620, 652, 666, 673, 677, 681, 687, 699, 711, 726, 729, 730, 731, 732, 733, 734, 735, 736, 742, 744, 746, 750, 751, 752, 753, 754, 759, 761, 763, 766, 768, 778, 779, 780, 784, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 832, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877, 882, 886], "one": [6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 20, 23, 25, 28, 30, 31, 33, 34, 35, 37, 39, 40, 41, 44, 45, 46, 48, 49, 50, 53, 55, 59, 61, 62, 69, 72, 74, 93, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 227, 233, 234, 241, 243, 247, 256, 262, 263, 265, 267, 269, 272, 274, 275, 276, 288, 289, 293, 295, 297, 302, 303, 314, 318, 321, 329, 332, 343, 350, 352, 359, 360, 366, 370, 375, 378, 379, 383, 384, 386, 388, 395, 404, 410, 412, 413, 415, 417, 419, 421, 422, 423, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 459, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 519, 520, 522, 523, 528, 534, 535, 536, 537, 538, 547, 564, 569, 571, 572, 573, 580, 581, 588, 595, 608, 612, 613, 615, 618, 619, 642, 644, 646, 647, 648, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 677, 679, 681, 685, 686, 689, 695, 701, 706, 712, 714, 717, 723, 729, 730, 731, 732, 734, 735, 736, 746, 749, 750, 751, 753, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 789, 793, 794, 827, 832, 833, 834, 835, 836, 838, 839, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877, 882, 886], "higher": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 59, 61, 62, 73, 109, 133, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 243, 263, 266, 288, 289, 302, 303, 314, 318, 329, 331, 333, 335, 344, 366, 367, 368, 369, 409, 432, 433, 442, 448, 629, 630, 636, 637, 638, 677, 689, 695, 701, 706, 729, 730, 731, 732, 734, 735, 750, 751, 753, 762, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 882, 886], "number": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 56, 59, 61, 62, 69, 70, 72, 73, 74, 81, 93, 97, 103, 109, 117, 119, 121, 123, 124, 126, 127, 128, 130, 131, 133, 136, 137, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 151, 152, 154, 156, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 186, 191, 192, 193, 195, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 221, 222, 225, 226, 227, 231, 239, 241, 243, 246, 247, 248, 261, 263, 266, 267, 269, 272, 274, 275, 288, 289, 302, 303, 314, 318, 323, 326, 327, 328, 329, 330, 331, 333, 334, 335, 342, 343, 344, 345, 347, 352, 358, 359, 361, 363, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 386, 389, 394, 398, 399, 400, 403, 408, 409, 410, 417, 419, 420, 421, 422, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 457, 465, 468, 482, 489, 491, 492, 493, 496, 502, 504, 505, 506, 512, 519, 520, 521, 522, 523, 528, 529, 530, 534, 535, 536, 537, 541, 542, 547, 549, 552, 554, 557, 558, 559, 563, 564, 566, 568, 573, 580, 581, 582, 583, 584, 585, 587, 588, 596, 600, 608, 612, 613, 615, 618, 619, 621, 623, 631, 635, 636, 637, 638, 639, 642, 644, 646, 648, 650, 651, 654, 657, 661, 667, 670, 671, 677, 678, 681, 682, 689, 695, 706, 713, 716, 718, 720, 723, 727, 729, 730, 731, 732, 734, 735, 736, 742, 746, 749, 750, 751, 753, 754, 755, 756, 760, 761, 762, 764, 765, 767, 772, 774, 775, 776, 777, 781, 782, 783, 789, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 824, 825, 826, 827, 828, 832, 833, 838, 839, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 865, 866, 867, 870, 876, 877, 879, 882, 886, 888], "use_invocation_result": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 432, 433, 448, 677], "invok": [6, 7, 8, 10, 11, 14, 16, 17, 18, 25, 30, 31, 33, 34, 37, 39, 40, 41, 51, 54, 60, 61, 62, 73, 155, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 181, 182, 183, 194, 201, 203, 224, 228, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 411, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 567, 609, 612, 614, 616, 620, 677, 687, 699, 711, 729, 730, 731, 732, 733, 734, 735, 763, 766, 778, 779, 780, 784, 793, 794], "anoth": [6, 7, 8, 10, 11, 14, 16, 17, 18, 20, 30, 31, 33, 34, 37, 39, 40, 41, 52, 61, 62, 124, 128, 143, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 366, 404, 419, 432, 433, 448, 482, 557, 558, 645, 677, 689, 695, 706, 792, 827, 833, 865], "final": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 97, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 227, 263, 289, 302, 303, 318, 329, 417, 419, 424, 432, 433, 448, 564, 677], "goto": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 432, 433, 448, 677], "ha": [6, 7, 8, 10, 11, 14, 16, 17, 18, 22, 30, 31, 33, 34, 37, 39, 40, 41, 52, 61, 62, 110, 121, 134, 160, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 186, 196, 206, 207, 208, 211, 212, 218, 219, 222, 225, 226, 234, 243, 263, 288, 289, 297, 302, 303, 314, 318, 329, 335, 355, 359, 363, 370, 374, 376, 379, 382, 383, 386, 387, 389, 390, 395, 400, 404, 405, 406, 417, 419, 425, 426, 432, 433, 442, 448, 467, 482, 487, 495, 496, 503, 504, 512, 523, 535, 537, 538, 541, 547, 553, 557, 558, 563, 573, 574, 605, 615, 621, 623, 629, 630, 633, 635, 637, 641, 644, 645, 648, 649, 654, 667, 677, 682, 689, 695, 706, 742, 790, 791, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "stop": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 222, 263, 289, 302, 303, 314, 318, 329, 335, 340, 343, 406, 432, 433, 448, 568, 677, 758, 865], "anyth": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 432, 433, 448, 677], "than": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 45, 61, 62, 97, 109, 160, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 206, 211, 222, 226, 234, 243, 246, 263, 289, 302, 303, 314, 318, 329, 330, 335, 347, 350, 352, 360, 363, 366, 374, 375, 376, 386, 390, 417, 419, 432, 433, 442, 448, 459, 503, 519, 528, 532, 534, 535, 536, 547, 563, 566, 568, 569, 571, 572, 600, 641, 661, 677, 681, 682, 689, 695, 701, 706, 742, 750, 751, 753, 760, 761, 794, 827, 833, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877, 882, 886], "perform": [6, 7, 8, 10, 11, 14, 16, 17, 18, 19, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 97, 124, 126, 127, 128, 130, 131, 134, 137, 138, 140, 143, 144, 145, 147, 149, 152, 154, 159, 160, 161, 163, 168, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 192, 193, 202, 222, 227, 234, 262, 263, 264, 265, 268, 271, 272, 288, 289, 302, 303, 314, 318, 329, 336, 337, 344, 355, 363, 371, 372, 373, 374, 375, 376, 407, 417, 419, 421, 424, 432, 433, 442, 448, 467, 470, 471, 473, 485, 523, 528, 536, 538, 547, 570, 573, 589, 600, 611, 612, 617, 618, 635, 652, 653, 654, 666, 677, 682, 685, 689, 695, 706, 713, 723, 740, 741, 742, 762, 769, 776, 782, 789], "you": [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 33, 34, 35, 37, 39, 40, 41, 42, 50, 53, 61, 62, 89, 97, 109, 116, 121, 147, 161, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 189, 201, 217, 218, 219, 222, 224, 225, 226, 227, 233, 234, 241, 246, 257, 259, 263, 265, 269, 276, 288, 289, 295, 302, 303, 314, 318, 323, 326, 327, 328, 329, 331, 333, 334, 335, 336, 337, 340, 342, 343, 344, 347, 349, 351, 352, 356, 357, 358, 359, 360, 366, 370, 375, 388, 389, 390, 392, 400, 403, 404, 405, 413, 417, 419, 425, 426, 432, 433, 442, 448, 462, 467, 470, 471, 472, 473, 475, 481, 482, 485, 487, 488, 489, 495, 496, 503, 504, 512, 513, 523, 529, 533, 535, 536, 537, 538, 541, 542, 547, 557, 558, 561, 563, 570, 574, 578, 582, 583, 587, 588, 596, 605, 608, 609, 615, 618, 621, 623, 624, 628, 629, 630, 633, 635, 637, 641, 642, 643, 644, 645, 646, 648, 649, 650, 651, 653, 657, 662, 672, 673, 677, 682, 683, 685, 689, 693, 695, 706, 714, 716, 726, 749, 750, 751, 753, 755, 757, 764, 769, 774, 776, 779, 780, 782, 786, 787, 788, 789, 790, 791, 793, 794, 825, 827, 833, 834, 836, 839, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 876, 877, 879, 882, 884, 885, 886, 887, 890], "determin": [6, 7, 8, 10, 11, 14, 16, 17, 18, 20, 22, 30, 31, 33, 34, 37, 39, 40, 41, 52, 61, 62, 72, 119, 137, 140, 143, 144, 149, 152, 154, 159, 163, 168, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 192, 202, 222, 263, 265, 272, 288, 289, 302, 303, 318, 329, 343, 365, 366, 369, 370, 375, 386, 395, 404, 409, 417, 419, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451, 482, 489, 497, 498, 528, 563, 564, 602, 612, 629, 630, 634, 635, 637, 645, 648, 649, 677, 750, 751, 753, 759, 776, 782, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877, 882, 886, 889], "larger": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 222, 344, 365, 366, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 446, 447, 448, 449, 450, 451, 677, 682, 689, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "largest": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 234, 600, 677, 789, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "undef": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 53, 61, 62, 109, 147, 152, 154, 161, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 202, 263, 271, 272, 289, 302, 303, 318, 329, 363, 374, 376, 419, 421, 432, 433, 448, 528, 573, 589, 611, 612, 617, 618, 677, 716, 750, 751, 753, 776, 782, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "event": [6, 7, 8, 10, 11, 14, 16, 17, 18, 22, 30, 31, 33, 34, 37, 39, 40, 41, 44, 52, 53, 61, 62, 109, 123, 124, 126, 128, 130, 147, 152, 154, 161, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 202, 234, 263, 271, 272, 289, 302, 303, 318, 329, 374, 376, 417, 421, 432, 433, 448, 568, 612, 617, 618, 641, 647, 677, 680, 689, 706, 742, 750, 751, 753, 776, 782, 827, 833, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "trigger": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 117, 119, 120, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 234, 263, 289, 302, 303, 318, 329, 374, 375, 376, 432, 433, 442, 448, 535, 613, 677, 682, 689, 695, 706, 750, 751, 753, 775, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "invalid": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 222, 226, 227, 263, 289, 302, 303, 318, 329, 432, 433, 448, 534, 535, 564, 608, 677, 681, 695, 706, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "numer": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 121, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 368, 432, 433, 448, 459, 528, 532, 573, 582, 583, 587, 635, 636, 677, 742, 750, 751, 753, 760, 761, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "lower": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 59, 73, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 222, 228, 243, 263, 288, 289, 302, 303, 314, 318, 329, 331, 333, 335, 344, 366, 409, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 563, 629, 630, 641, 677, 742, 750, 751, 753, 762, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "sai": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 432, 433, 442, 448, 677, 726, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "30": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 44, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 206, 208, 211, 212, 213, 263, 289, 302, 303, 318, 329, 352, 396, 417, 432, 433, 448, 458, 465, 488, 496, 539, 563, 565, 677, 716, 750, 751, 753, 756, 827, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "highest": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 234, 243, 263, 289, 302, 303, 314, 318, 329, 333, 366, 432, 433, 442, 448, 564, 677, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877], "100": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 119, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 234, 263, 264, 289, 302, 303, 314, 318, 329, 343, 354, 387, 407, 419, 424, 427, 432, 433, 442, 448, 482, 496, 535, 552, 563, 564, 573, 582, 586, 596, 600, 671, 677, 682, 689, 750, 751, 753, 827, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "doe": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 35, 37, 39, 40, 41, 61, 62, 97, 109, 146, 153, 169, 170, 171, 172, 173, 174, 175, 178, 180, 181, 182, 183, 184, 185, 187, 188, 189, 191, 215, 222, 226, 263, 264, 268, 288, 289, 302, 303, 314, 318, 329, 335, 340, 363, 368, 375, 395, 404, 406, 407, 410, 417, 419, 421, 432, 433, 442, 448, 465, 482, 489, 496, 535, 536, 564, 568, 583, 587, 608, 615, 634, 636, 645, 657, 664, 677, 681, 682, 689, 695, 701, 706, 716, 736, 742, 746, 750, 751, 753, 755, 756, 760, 761, 794, 827, 833, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "match": [6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 25, 30, 31, 33, 34, 35, 37, 39, 40, 41, 49, 53, 55, 59, 61, 62, 72, 74, 97, 98, 109, 117, 121, 127, 131, 134, 135, 137, 140, 141, 144, 147, 149, 150, 152, 154, 156, 159, 161, 162, 163, 164, 168, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 186, 192, 193, 195, 202, 204, 210, 215, 217, 222, 226, 227, 229, 234, 243, 244, 247, 256, 262, 263, 265, 267, 269, 272, 274, 288, 289, 295, 296, 297, 302, 303, 314, 318, 329, 337, 339, 355, 358, 366, 369, 375, 379, 388, 400, 413, 415, 417, 421, 423, 427, 432, 433, 442, 448, 453, 456, 462, 465, 467, 468, 469, 482, 489, 498, 501, 502, 504, 505, 508, 512, 523, 547, 549, 555, 557, 558, 567, 570, 584, 587, 590, 593, 594, 595, 612, 613, 615, 618, 619, 621, 623, 635, 637, 641, 648, 649, 655, 657, 661, 664, 665, 667, 671, 677, 682, 685, 686, 689, 695, 701, 706, 723, 736, 746, 750, 751, 753, 757, 759, 762, 764, 765, 769, 776, 777, 782, 783, 789, 793, 794, 834, 836, 839, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877, 882, 886, 890, 894], "85": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 432, 433, 448, 677, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "assum": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 44, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 246, 263, 289, 302, 303, 318, 329, 405, 432, 433, 448, 460, 461, 482, 495, 564, 677, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "increment": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 302, 303, 318, 329, 419, 432, 433, 442, 448, 560, 563, 564, 677, 750, 751, 753, 776, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "10": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 151, 153, 160, 162, 167, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 196, 222, 232, 233, 234, 263, 289, 302, 303, 314, 318, 329, 363, 406, 417, 427, 432, 433, 448, 463, 464, 488, 523, 542, 547, 549, 552, 563, 564, 565, 566, 568, 573, 580, 585, 587, 600, 615, 643, 677, 682, 689, 716, 736, 742, 746, 750, 751, 753, 754, 760, 761, 827, 832, 833, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "everi": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 52, 61, 62, 97, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 222, 234, 263, 289, 302, 303, 318, 329, 370, 387, 398, 399, 419, 424, 427, 432, 433, 448, 552, 641, 654, 677, 682, 689, 695, 706, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "success": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 143, 151, 155, 162, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 181, 182, 183, 191, 263, 288, 289, 302, 303, 314, 318, 329, 343, 363, 417, 419, 432, 433, 442, 448, 563, 564, 641, 677, 729, 730, 731, 732, 733, 734, 735, 749, 750, 751, 753, 797, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "therefor": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 264, 289, 302, 303, 318, 329, 432, 433, 448, 587, 677, 716, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "groupnam": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 27, 225, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 736, 737, 738, 739], "integ": [7, 8, 9, 13, 15, 16, 18, 20, 26, 29, 30, 31, 32, 36, 38, 39, 41, 50, 59, 73, 93, 109, 110, 121, 124, 126, 128, 130, 143, 158, 167, 186, 191, 215, 217, 218, 219, 220, 222, 223, 225, 231, 233, 234, 239, 241, 243, 263, 288, 289, 314, 333, 344, 359, 366, 367, 368, 369, 375, 389, 390, 400, 403, 405, 417, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451, 453, 456, 459, 492, 495, 503, 504, 505, 512, 517, 523, 537, 538, 547, 557, 558, 559, 561, 563, 567, 568, 569, 570, 571, 572, 573, 577, 580, 581, 587, 596, 600, 621, 623, 629, 630, 633, 635, 637, 638, 645, 648, 649, 667, 689, 706, 716, 717, 726, 755, 756, 760, 761, 762, 774, 781, 789, 790, 791, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 825, 826, 827, 830, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 880, 881, 882, 883, 884, 885, 886, 887, 890, 891, 892, 893], "A": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 52, 59, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 131, 133, 143, 158, 210, 218, 222, 226, 243, 248, 288, 314, 324, 331, 335, 336, 341, 344, 347, 350, 360, 364, 365, 366, 368, 375, 416, 417, 419, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451, 458, 459, 482, 488, 489, 499, 528, 532, 535, 537, 538, 542, 549, 563, 564, 568, 573, 584, 590, 599, 600, 615, 630, 633, 634, 635, 636, 641, 643, 651, 666, 681, 682, 689, 695, 703, 706, 716, 755, 756, 758, 762, 789, 794, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 890, 891, 892, 893], "order": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 59, 73, 93, 133, 151, 160, 263, 288, 325, 331, 333, 335, 337, 363, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 410, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 482, 489, 563, 564, 636, 637, 638, 641, 648, 689, 713, 714, 716, 762, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "maximum": [7, 8, 9, 13, 15, 16, 18, 20, 21, 22, 26, 29, 30, 31, 32, 36, 38, 39, 41, 89, 93, 97, 98, 102, 103, 109, 117, 119, 143, 160, 186, 205, 206, 208, 211, 212, 213, 214, 222, 225, 226, 227, 234, 314, 329, 335, 350, 354, 366, 369, 374, 375, 376, 406, 413, 417, 419, 424, 427, 442, 482, 488, 489, 496, 505, 523, 532, 534, 535, 542, 547, 549, 559, 562, 563, 564, 567, 568, 573, 575, 578, 580, 587, 589, 600, 608, 611, 617, 635, 637, 639, 671, 681, 682, 689, 706, 713, 714, 742, 746, 760, 761, 789, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 835, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "syntax": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 123, 224, 528, 532, 536, 573, 586, 608, 615, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "2147483647": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 742, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "classic": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 515, 516, 586, 605, 757, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "64000": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 573, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "bindpoint": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 270, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 353, 374, 376, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 616, 711, 753, 815, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "udp_request": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41], "dns_request": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41], "icmp_request": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41], "get": [9, 13, 15, 26, 32, 36, 38, 42, 51, 54, 60, 73, 97, 109, 151, 153, 155, 158, 160, 174, 176, 177, 179, 184, 185, 187, 188, 189, 194, 201, 203, 210, 215, 222, 224, 225, 228, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 290, 291, 292, 296, 299, 300, 301, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 319, 338, 353, 374, 376, 385, 392, 411, 422, 429, 430, 431, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 449, 450, 451, 496, 566, 587, 607, 609, 614, 616, 620, 629, 633, 642, 681, 682, 687, 699, 711, 733, 749, 752, 763, 766, 768, 778, 779, 780, 784, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 833, 865], "numaddr": [10, 33, 810, 863], "start": [10, 20, 33, 49, 69, 70, 97, 100, 109, 143, 186, 264, 288, 314, 349, 360, 379, 419, 424, 442, 498, 535, 563, 564, 568, 585, 615, 641, 719, 726, 758, 865], "netmask": [11, 27, 34, 218, 219, 248, 359, 375, 380, 381, 426, 442, 463, 464, 470, 471, 492, 497, 509, 510, 513, 523, 538, 623, 628, 630, 633, 645, 790, 791, 810, 811, 825, 827, 833, 864, 891, 892], "binding_memb": [12, 35, 49, 53, 55, 72, 74, 97, 154, 156, 186, 193, 195, 202, 204, 210, 217, 227, 229, 234, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 337, 339, 358, 366, 369, 375, 379, 400, 413, 415, 417, 421, 423, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 549, 555, 567, 570, 584, 590, 593, 612, 613, 618, 619, 621, 623, 635, 637, 648, 655, 657, 661, 665, 685, 686, 689, 695, 701, 706, 736, 746, 764, 765, 776, 777, 782, 783, 789, 865, 882, 886, 890, 894], "member": [12, 35, 49, 53, 55, 72, 74, 97, 143, 154, 156, 186, 193, 195, 202, 204, 210, 217, 220, 227, 229, 234, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 337, 339, 358, 366, 367, 368, 369, 375, 379, 400, 413, 415, 417, 419, 421, 423, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 549, 555, 561, 567, 570, 584, 590, 593, 612, 613, 618, 619, 621, 623, 635, 636, 637, 638, 641, 644, 648, 655, 657, 661, 665, 685, 686, 689, 695, 701, 706, 736, 746, 764, 765, 776, 777, 782, 783, 789, 865, 882, 886, 890, 894], "remov": [12, 35, 49, 53, 55, 66, 68, 72, 74, 97, 98, 112, 114, 115, 121, 143, 151, 154, 156, 160, 167, 186, 193, 195, 202, 204, 210, 215, 217, 221, 222, 227, 229, 234, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 323, 325, 326, 327, 328, 331, 333, 334, 337, 339, 342, 343, 344, 347, 352, 358, 363, 366, 368, 369, 375, 379, 400, 413, 415, 417, 419, 421, 423, 442, 453, 456, 458, 465, 467, 469, 482, 487, 488, 489, 496, 498, 501, 504, 505, 508, 512, 549, 555, 563, 567, 570, 584, 587, 590, 593, 612, 613, 618, 619, 621, 623, 626, 629, 630, 634, 635, 636, 637, 648, 655, 657, 661, 665, 666, 685, 686, 689, 695, 701, 706, 736, 742, 746, 764, 765, 776, 777, 782, 783, 789, 827, 833, 865, 882, 886, 889, 890, 894], "necessari": [12, 35, 49, 53, 55, 72, 74, 97, 151, 154, 156, 186, 193, 195, 202, 204, 210, 217, 227, 229, 234, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 337, 339, 358, 366, 369, 375, 379, 400, 413, 415, 417, 419, 421, 423, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 549, 555, 567, 570, 584, 585, 590, 593, 612, 613, 618, 619, 621, 623, 635, 637, 648, 655, 657, 661, 665, 685, 686, 689, 695, 701, 706, 736, 746, 764, 765, 776, 777, 782, 783, 789, 865, 882, 886, 890, 894], "unbind": [12, 35, 49, 53, 55, 72, 74, 97, 154, 156, 186, 193, 195, 202, 204, 206, 207, 208, 210, 211, 212, 217, 227, 229, 234, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 337, 339, 358, 366, 369, 375, 379, 400, 413, 415, 417, 419, 421, 423, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 549, 555, 567, 570, 584, 590, 593, 612, 613, 618, 619, 621, 623, 635, 637, 648, 655, 657, 661, 663, 665, 685, 686, 689, 695, 701, 706, 736, 746, 764, 765, 776, 777, 782, 783, 789, 865, 882, 886, 890, 894], "must": [12, 22, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 52, 53, 55, 59, 70, 72, 73, 74, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 171, 172, 173, 175, 178, 180, 182, 183, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 222, 225, 226, 227, 229, 230, 241, 243, 247, 262, 264, 265, 267, 268, 269, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 322, 323, 325, 326, 327, 328, 330, 331, 332, 333, 334, 336, 337, 342, 343, 344, 347, 350, 352, 358, 360, 366, 367, 368, 369, 370, 375, 383, 384, 386, 388, 389, 392, 394, 395, 396, 400, 403, 404, 410, 412, 415, 417, 421, 422, 423, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 456, 459, 460, 461, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 520, 522, 523, 527, 528, 530, 532, 535, 536, 537, 538, 542, 547, 548, 549, 550, 551, 554, 555, 556, 557, 558, 561, 563, 564, 565, 573, 578, 580, 581, 584, 586, 587, 588, 590, 592, 593, 595, 598, 600, 605, 608, 612, 613, 615, 618, 619, 621, 623, 624, 633, 635, 637, 638, 640, 644, 645, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 661, 663, 664, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 706, 712, 714, 716, 723, 736, 742, 746, 749, 754, 755, 756, 757, 758, 759, 762, 764, 765, 767, 769, 773, 774, 775, 776, 777, 781, 782, 783, 786, 787, 788, 789, 794, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 825, 827, 832, 833, 835, 836, 838, 839, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 890], "begin": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 222, 227, 229, 230, 241, 243, 262, 264, 265, 267, 268, 269, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 331, 359, 360, 366, 369, 370, 375, 383, 384, 386, 388, 394, 400, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 520, 522, 528, 532, 535, 536, 542, 548, 549, 550, 551, 555, 556, 557, 558, 564, 573, 580, 581, 585, 586, 587, 588, 590, 592, 593, 595, 598, 600, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 652, 653, 654, 655, 656, 657, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 773, 774, 775, 776, 777, 781, 782, 783, 789, 794, 832, 833, 835, 836, 838, 839, 865], "letter": [12, 23, 25, 28, 35, 59, 72, 74, 97, 109, 117, 123, 124, 127, 128, 131, 133, 136, 137, 139, 140, 142, 143, 144, 145, 147, 148, 149, 151, 152, 154, 156, 158, 159, 160, 161, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 267, 269, 272, 274, 275, 358, 359, 383, 384, 386, 389, 394, 400, 403, 410, 421, 422, 423, 502, 512, 520, 522, 535, 536, 542, 554, 564, 586, 587, 588, 590, 592, 593, 595, 608, 612, 613, 615, 618, 619, 621, 623, 642, 644, 646, 648, 650, 651, 664, 723, 736, 742, 746, 762, 764, 765, 767, 773, 775, 776, 777, 781, 782, 783, 789, 838, 839], "underscor": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 269, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 344, 359, 366, 369, 370, 375, 383, 384, 386, 388, 400, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 520, 522, 528, 532, 535, 536, 542, 548, 549, 550, 551, 555, 556, 557, 558, 564, 573, 580, 581, 586, 587, 588, 590, 592, 593, 595, 598, 600, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 773, 774, 775, 776, 777, 781, 782, 783, 789, 794, 832, 833, 835, 836, 838, 839, 865], "charact": [12, 23, 24, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 92, 94, 95, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 269, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 336, 337, 347, 358, 359, 366, 369, 370, 375, 383, 384, 386, 388, 389, 394, 400, 403, 410, 412, 413, 415, 417, 419, 421, 422, 423, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 520, 522, 528, 532, 535, 536, 542, 548, 549, 550, 551, 554, 555, 556, 557, 558, 564, 573, 580, 581, 584, 586, 587, 588, 590, 591, 592, 593, 594, 595, 598, 600, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 642, 643, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 664, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 773, 774, 775, 776, 777, 781, 782, 783, 789, 793, 794, 832, 833, 834, 835, 836, 838, 839, 865], "_": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 269, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 344, 358, 359, 366, 369, 370, 375, 383, 384, 386, 388, 389, 394, 400, 403, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 520, 522, 528, 532, 535, 536, 542, 548, 549, 550, 551, 554, 555, 556, 557, 558, 564, 573, 580, 581, 586, 587, 588, 590, 592, 593, 595, 598, 600, 602, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 773, 774, 775, 776, 777, 781, 782, 783, 789, 794, 832, 833, 835, 836, 838, 839, 865], "consist": [12, 23, 25, 70, 93, 97, 104, 107, 109, 127, 131, 142, 210, 215, 269, 359, 394, 400, 482, 502, 512, 542, 586, 587, 588, 593, 615, 621, 623, 641, 642, 644, 646, 650, 651, 663, 666, 703, 717, 736, 742, 746, 773, 789, 794, 833], "hyphen": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 359, 366, 369, 370, 375, 383, 384, 386, 388, 400, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 520, 522, 535, 536, 548, 549, 550, 551, 555, 556, 557, 558, 564, 588, 598, 600, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 775, 776, 777, 781, 782, 783, 789, 794, 825, 832, 833, 835, 836, 838, 839, 865], "period": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 330, 343, 352, 358, 359, 363, 366, 369, 370, 375, 383, 384, 386, 387, 388, 389, 394, 400, 403, 410, 412, 413, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 453, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 505, 512, 520, 522, 535, 536, 548, 549, 550, 551, 554, 555, 556, 557, 558, 564, 573, 574, 577, 588, 598, 600, 602, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 695, 701, 706, 712, 714, 723, 726, 736, 742, 746, 749, 754, 755, 756, 757, 758, 759, 762, 764, 765, 767, 769, 774, 775, 776, 777, 781, 782, 783, 789, 794, 827, 832, 833, 835, 836, 838, 839, 865], "pound": [12, 23, 25, 35, 59, 72, 74, 97, 123, 124, 127, 128, 131, 133, 136, 137, 139, 140, 142, 143, 144, 145, 148, 149, 151, 154, 156, 158, 159, 160, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 202, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 267, 272, 359, 383, 384, 386, 400, 421, 502, 512, 522, 612, 621, 623, 644, 646, 648, 650, 651, 664, 762, 764, 765, 767, 776, 782, 789], "space": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 92, 94, 95, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 222, 227, 229, 230, 233, 234, 241, 243, 262, 265, 267, 268, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 336, 337, 350, 358, 359, 366, 369, 370, 375, 383, 384, 386, 388, 389, 394, 400, 403, 410, 412, 413, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 459, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 504, 512, 520, 522, 531, 535, 536, 546, 548, 549, 550, 551, 554, 555, 556, 557, 558, 564, 568, 580, 581, 588, 598, 600, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 682, 685, 686, 689, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 775, 776, 777, 781, 782, 783, 789, 793, 794, 832, 833, 834, 835, 836, 838, 839, 865, 880, 881, 884, 885], "equal": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 222, 227, 229, 230, 234, 241, 243, 262, 265, 267, 268, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 359, 363, 366, 369, 370, 374, 375, 376, 383, 384, 386, 388, 400, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 519, 520, 522, 535, 536, 548, 549, 550, 551, 555, 556, 557, 558, 564, 566, 588, 598, 600, 608, 612, 613, 615, 618, 619, 621, 623, 629, 630, 633, 635, 637, 641, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 725, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 775, 776, 777, 781, 782, 783, 789, 794, 832, 833, 835, 836, 838, 839, 865], "cannot": [12, 23, 25, 28, 35, 45, 59, 97, 103, 109, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 191, 192, 193, 195, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 222, 226, 234, 241, 269, 274, 275, 276, 288, 295, 314, 321, 335, 340, 359, 360, 370, 374, 375, 376, 383, 384, 386, 394, 400, 417, 442, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 528, 532, 535, 536, 537, 538, 557, 558, 564, 569, 571, 572, 573, 584, 585, 587, 590, 598, 600, 613, 619, 621, 623, 633, 635, 641, 644, 654, 656, 661, 665, 666, 667, 671, 674, 681, 682, 685, 686, 689, 695, 701, 706, 712, 716, 723, 736, 742, 746, 749, 754, 755, 756, 757, 758, 759, 762, 767, 769, 777, 783, 789, 794, 827, 832, 833, 835, 836, 865], "appli": [12, 23, 25, 28, 35, 37, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 120, 122, 123, 124, 127, 128, 129, 131, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 189, 191, 192, 193, 195, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 221, 227, 234, 243, 246, 262, 265, 267, 272, 274, 276, 278, 286, 288, 289, 290, 293, 295, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 323, 326, 327, 328, 331, 333, 334, 335, 340, 342, 343, 344, 347, 359, 360, 375, 383, 384, 386, 388, 395, 404, 406, 407, 409, 410, 413, 417, 419, 421, 422, 423, 442, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 508, 520, 522, 523, 528, 535, 542, 547, 564, 577, 587, 591, 608, 612, 613, 615, 618, 619, 635, 641, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 678, 679, 681, 682, 684, 685, 686, 689, 706, 712, 716, 729, 730, 731, 732, 733, 734, 735, 736, 742, 746, 749, 752, 754, 755, 757, 758, 759, 762, 764, 765, 767, 768, 769, 776, 777, 782, 783, 793, 794, 815, 820, 827, 832, 833, 834, 835, 836, 838, 839, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 865, 876, 877, 879], "cli": [12, 22, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 222, 227, 241, 243, 262, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 336, 337, 359, 360, 366, 370, 375, 383, 384, 386, 388, 392, 410, 412, 413, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 512, 520, 522, 523, 535, 536, 564, 580, 581, 588, 608, 610, 612, 613, 615, 618, 619, 635, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 793, 794, 832, 833, 834, 835, 836, 838, 839, 865], "enclos": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 92, 94, 95, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 227, 241, 243, 262, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 327, 336, 337, 347, 350, 359, 366, 370, 375, 383, 384, 386, 388, 410, 412, 413, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 459, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 522, 535, 536, 564, 580, 581, 588, 608, 612, 613, 615, 618, 619, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 793, 794, 832, 833, 834, 835, 836, 838, 839, 865], "doubl": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 92, 94, 95, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 227, 241, 243, 262, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 327, 336, 337, 347, 350, 359, 366, 370, 375, 383, 384, 386, 388, 398, 399, 410, 412, 413, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 459, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 522, 535, 536, 564, 568, 580, 581, 584, 588, 608, 612, 613, 615, 618, 619, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 793, 794, 826, 832, 833, 834, 835, 836, 838, 839, 865], "singl": [12, 20, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 227, 241, 243, 262, 264, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 327, 335, 336, 337, 347, 359, 366, 370, 375, 383, 384, 386, 388, 410, 412, 413, 415, 417, 419, 421, 422, 423, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 522, 535, 536, 563, 564, 573, 580, 581, 588, 600, 608, 612, 613, 615, 618, 619, 635, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 689, 695, 701, 706, 712, 714, 723, 736, 746, 749, 754, 755, 756, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 793, 794, 797, 827, 832, 833, 834, 835, 836, 837, 838, 839, 865], "quotat": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 227, 241, 243, 262, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 327, 336, 337, 347, 350, 359, 366, 370, 375, 383, 384, 386, 388, 410, 412, 413, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 459, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 522, 535, 536, 564, 580, 581, 588, 608, 612, 613, 615, 618, 619, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 793, 794, 832, 833, 834, 835, 836, 838, 839, 865], "mark": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 227, 241, 243, 262, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 327, 332, 336, 337, 347, 350, 359, 363, 366, 369, 370, 375, 379, 383, 384, 386, 388, 410, 412, 413, 415, 417, 419, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 459, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 522, 534, 535, 536, 564, 580, 581, 588, 608, 612, 613, 615, 618, 619, 635, 637, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 664, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 793, 794, 832, 833, 834, 835, 836, 838, 839, 865, 871, 888], "my": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 241, 243, 262, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 359, 366, 370, 375, 383, 384, 386, 388, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 520, 522, 535, 536, 564, 580, 581, 588, 608, 612, 613, 615, 618, 619, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 777, 783, 794, 832, 833, 835, 836, 838, 839, 865], "loggedin": [12, 35, 322], "displai": [12, 97, 119, 201, 225, 246, 322, 323, 326, 327, 328, 331, 333, 334, 342, 343, 344, 347, 349, 360, 369, 465, 492, 495, 523, 544, 545, 586, 592, 595, 596, 602, 603, 609, 630, 633, 635, 637, 664, 689, 695, 706, 736, 742, 744, 746, 755, 756, 779, 780, 824, 827, 833, 837, 838, 882, 886], "who": [12, 151, 314, 369, 635, 637, 644, 664, 827, 833], "larg": [12, 52, 93, 97, 102, 103, 470, 471, 473, 485, 682, 689], "mai": [12, 147, 268, 272, 379, 386, 536, 538, 563, 568, 587, 600, 608, 612, 615, 617, 618, 827, 833], "partial": [12, 97, 349, 379, 519, 563, 564, 641], "weight": [12, 133, 146, 288, 344, 365, 366, 367, 368, 369, 372, 375, 416, 417, 442, 445, 446, 629, 630, 634, 635, 636, 637, 638, 725], "respect": [12, 141, 324, 330, 416, 417, 641], "intranetappl": [14, 37, 817, 825, 873], "urlnam": [17, 40, 822, 837, 878], "cacert": [19, 245, 657, 667, 813], "usercert": 19, "do": [19, 35, 50, 53, 93, 97, 103, 116, 117, 119, 121, 147, 160, 161, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 189, 206, 207, 211, 218, 219, 222, 226, 227, 234, 246, 262, 265, 271, 276, 288, 295, 314, 335, 336, 337, 349, 359, 360, 366, 369, 375, 388, 389, 390, 392, 400, 405, 407, 413, 417, 419, 425, 426, 442, 462, 467, 470, 471, 472, 473, 495, 496, 503, 504, 512, 513, 523, 529, 537, 538, 557, 558, 608, 617, 618, 621, 623, 628, 629, 630, 633, 635, 637, 641, 645, 648, 649, 657, 664, 671, 682, 685, 689, 706, 717, 741, 757, 758, 764, 769, 776, 782, 790, 791, 793, 794, 827, 833, 834, 835, 836, 837, 838, 839, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 865, 876, 877, 879, 890], "pkinit": 19, "backchannel": 19, "delegatedus": 19, "enterpriserealm": 19, "enterpris": [19, 151, 521, 648, 649, 792], "realm": [19, 417, 527, 716], "given": [19, 27, 133, 146, 148, 156, 160, 211, 232, 264, 325, 337, 364, 366, 419, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 446, 447, 448, 449, 450, 451, 463, 464, 498, 523, 535, 542, 547, 563, 568, 595, 655, 656, 657, 663, 664, 666, 771, 832], "certain": [19, 226, 234, 335, 726, 759, 827, 833, 865], "kdc": [19, 148], "deploy": [19, 52, 59, 116, 134, 151, 222, 226, 238, 239, 288, 406, 442, 482, 487, 842, 865, 868], "expect": [19, 314, 417, 442, 528], "instead": [19, 52, 97, 160, 314, 335, 343, 359, 369, 375, 417, 487, 489, 535, 536, 547, 564, 570, 608, 612, 615, 633, 637, 645, 667, 682, 689, 716, 717, 761, 789, 827, 833, 835, 865, 882, 886], "princip": [19, 148, 160], "kcdaccount": [19, 321, 417, 755, 756, 758, 827, 833, 835], "kcd": [19, 149, 321, 417, 827, 833], "kcdpassword": 19, "keytab": [19, 148, 245], "realmstr": 19, "servicespn": 19, "spn": 19, "fetch": [19, 22, 143, 151, 160, 162, 167, 602, 667, 716, 837, 838], "construct": [19, 370, 536], "fqdn": [19, 124, 128, 133, 135, 141, 143, 148, 158, 160, 166, 239, 242, 314, 417, 442, 602, 812, 826, 827, 833, 868], "privat": [19, 160, 264, 330, 349, 366, 367, 368, 369, 370, 375, 390, 399, 405, 407, 657, 661, 663, 664, 672, 683, 689, 690, 693, 695, 706, 718, 745, 792], "userrealm": 19, "authtimeout": [20, 26, 29, 143, 158, 167], "second": [20, 26, 29, 44, 52, 109, 117, 119, 122, 124, 128, 143, 158, 160, 167, 196, 206, 210, 212, 215, 221, 222, 241, 246, 288, 314, 323, 325, 326, 327, 328, 330, 331, 333, 334, 335, 342, 343, 344, 347, 363, 366, 369, 370, 371, 375, 379, 396, 398, 399, 406, 410, 417, 419, 427, 442, 458, 462, 465, 482, 489, 490, 494, 496, 505, 518, 525, 535, 536, 552, 557, 558, 563, 564, 565, 567, 573, 577, 578, 579, 580, 582, 583, 587, 595, 599, 600, 633, 635, 637, 641, 645, 671, 681, 689, 695, 701, 706, 716, 717, 736, 742, 746, 760, 761, 826, 827, 882, 886, 888, 889], "wait": [20, 26, 29, 119, 124, 128, 143, 158, 167, 206, 241, 264, 335, 343, 363, 369, 386, 417, 427, 489, 535, 563, 582, 583, 633, 637, 645, 671, 681, 760, 761, 882, 886], "groupattrnam": [20, 29, 143, 167], "groupnameidentifi": [20, 143], "two": [20, 136, 143, 160, 314, 344, 347, 417, 442, 482, 664, 667, 714, 758, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "same": [20, 44, 52, 66, 68, 73, 97, 108, 110, 112, 114, 115, 119, 160, 162, 171, 172, 173, 175, 178, 180, 182, 183, 222, 247, 269, 314, 321, 322, 323, 326, 327, 328, 331, 333, 334, 342, 343, 344, 347, 360, 366, 370, 374, 375, 376, 408, 442, 460, 461, 467, 478, 489, 512, 523, 528, 532, 553, 557, 558, 563, 569, 571, 572, 573, 587, 615, 623, 630, 640, 644, 648, 650, 667, 689, 695, 701, 706, 714, 741, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "groupsearchattribut": [20, 143], "design": [20, 57, 72, 75, 79, 85, 92, 94, 95, 97, 100, 109, 413, 462, 681], "parent": [20, 352, 363, 370, 442], "search": [20, 138, 143, 148, 417, 615, 667], "groupsearchfilt": [20, 143], "groupsearchsubattribut": [20, 143], "subattribut": [20, 143], "ldapbas": [20, 143], "dc": [20, 143], "ldapbinddn": [20, 143], "complet": [20, 44, 97, 200, 314, 360, 366, 369, 442, 535, 563, 615, 635, 637, 641, 681, 689, 706, 716, 749, 797, 865], "distinguish": [20, 134, 143, 417, 654, 657, 661, 664, 667], "ldapbinddnpassword": [20, 143], "ldaploginnam": [20, 143], "queri": [20, 44, 52, 97, 124, 128, 143, 151, 222, 321, 332, 335, 340, 349, 375, 417, 442, 523, 536, 570, 582, 583, 587, 633, 636, 637, 638, 642, 645, 681, 717, 760, 761], "extern": [20, 28, 35, 103, 124, 126, 128, 130, 143, 288, 314, 332, 335, 354, 370, 407, 442, 467, 499, 537, 661, 674, 742, 746], "directori": [20, 132, 143, 148, 199, 200, 245, 417, 519, 604, 657, 664, 667], "maxnestinglevel": [20, 143], "level": [20, 22, 97, 117, 119, 123, 124, 126, 128, 130, 133, 143, 210, 263, 264, 314, 413, 419, 442, 458, 482, 487, 523, 525, 530, 535, 537, 538, 560, 563, 565, 570, 641, 644, 647, 648, 649, 650, 664, 667, 673, 689, 695, 701, 706, 722, 724, 741, 742, 827, 833, 865], "up": [20, 119, 143, 206, 222, 234, 246, 247, 256, 268, 288, 314, 347, 349, 366, 369, 375, 379, 394, 398, 399, 403, 417, 419, 442, 523, 527, 532, 537, 538, 547, 549, 563, 564, 565, 582, 583, 602, 634, 635, 637, 682, 689, 695, 706, 714, 722, 827, 833, 865, 882, 886], "nest": [20, 93, 97, 103, 143, 442], "nestedgroupextract": [20, 143], "belong": [20, 52, 143, 222, 225, 233, 234, 314, 323, 326, 327, 328, 331, 332, 333, 334, 342, 343, 344, 347, 349, 366, 369, 426, 442, 470, 471, 472, 473, 495, 583, 644, 760, 761, 827, 833], "ON": [20, 21, 22, 26, 29, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 136, 143, 153, 158, 160, 162, 167, 186, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 225, 234, 264, 288, 314, 379, 389, 406, 408, 419, 442, 526, 528, 534, 568, 635, 637, 639, 654, 754, 755, 756, 758, 767, 794, 825, 826, 827, 832, 833, 835, 837, 838, 865], "off": [20, 21, 22, 26, 29, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 136, 143, 153, 158, 160, 162, 167, 186, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 225, 234, 264, 288, 314, 321, 379, 389, 419, 442, 523, 526, 528, 530, 534, 547, 635, 637, 639, 754, 755, 756, 758, 767, 792, 794, 825, 826, 827, 832, 833, 835, 837, 838, 865], "passwdchang": [20, 143], "accept": [20, 26, 97, 124, 126, 128, 130, 143, 151, 158, 167, 186, 191, 243, 264, 314, 375, 419, 424, 442, 496, 528, 535, 563, 564, 633, 635, 645, 647, 682, 689, 706, 794, 865], "enabl": [20, 22, 26, 42, 44, 49, 52, 93, 97, 109, 110, 122, 124, 126, 128, 130, 134, 136, 138, 143, 148, 151, 158, 160, 186, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 231, 234, 238, 246, 256, 262, 264, 288, 294, 314, 321, 330, 332, 335, 340, 349, 352, 359, 363, 365, 366, 368, 369, 370, 375, 379, 383, 386, 387, 389, 390, 392, 396, 398, 399, 403, 405, 406, 407, 408, 413, 417, 418, 419, 424, 427, 442, 467, 482, 484, 486, 487, 488, 489, 494, 496, 503, 512, 518, 523, 526, 528, 529, 530, 531, 534, 535, 536, 537, 538, 546, 547, 563, 564, 568, 570, 577, 580, 600, 602, 604, 621, 623, 627, 629, 630, 633, 634, 635, 636, 637, 641, 647, 648, 654, 661, 667, 671, 675, 676, 680, 681, 682, 689, 695, 701, 706, 713, 719, 727, 736, 742, 746, 755, 756, 774, 789, 827, 829, 833, 865, 882, 886, 888, 889, 890], "disabl": [20, 22, 26, 42, 44, 49, 52, 93, 97, 109, 110, 122, 124, 126, 128, 130, 134, 136, 138, 143, 151, 158, 186, 206, 207, 208, 209, 211, 212, 213, 214, 215, 217, 231, 234, 241, 246, 256, 262, 264, 288, 294, 314, 321, 332, 335, 340, 349, 359, 363, 365, 366, 368, 369, 370, 375, 379, 383, 386, 387, 389, 390, 396, 398, 399, 403, 405, 406, 407, 408, 413, 416, 417, 419, 424, 427, 442, 467, 482, 484, 486, 487, 488, 489, 494, 496, 503, 512, 518, 523, 526, 528, 531, 534, 535, 536, 537, 538, 542, 546, 547, 552, 563, 564, 568, 570, 580, 600, 602, 604, 621, 623, 627, 629, 630, 633, 634, 635, 636, 637, 641, 647, 648, 654, 661, 667, 671, 680, 681, 682, 689, 695, 701, 706, 713, 716, 717, 719, 727, 736, 742, 746, 755, 774, 789, 827, 829, 833, 865, 882, 886, 888, 889, 890], "searchfilt": [20, 143], "combin": [20, 143, 205, 210, 211, 212, 222, 297, 352, 408, 417, 442, 568, 689, 695, 701, 706, 827, 833], "execut": [20, 22, 272, 360, 379, 417, 488, 530, 535, 573, 574, 631, 742], "vpnallow": [20, 143], "ldaploginam": 20, "samaccount": [20, 143], "suppli": [20, 143, 327, 333, 602, 641], "bob": [20, 143], "yield": [20, 141, 143, 563, 564, 574], "sectyp": [20, 143], "secur": [20, 49, 52, 69, 97, 109, 143, 160, 245, 335, 417, 419, 424, 522, 523, 528, 537, 538, 547, 553, 568, 635, 644, 649, 650, 657, 661, 664, 673, 674, 682, 689, 695, 701, 706, 755, 756, 814, 826, 827, 833, 835, 837, 838, 865, 869], "plaintext": [20, 143, 528, 598, 835], "tl": [20, 143, 158, 160, 211, 417, 512, 682, 689, 706], "serverip": [20, 26, 29, 124, 126, 128, 130, 143, 158, 167, 191, 268, 269, 540, 578], "your": [20, 26, 29, 42, 97, 392, 664, 825, 835], "serverport": [20, 26, 29, 124, 126, 128, 130, 143, 158, 167, 191, 268, 269], "listen": [20, 26, 29, 50, 158, 167, 243, 288, 314, 344, 366, 417, 442, 517, 602, 604, 641, 647, 648, 649, 719, 865], "389": [20, 143], "ssonameattribut": [20, 143], "altern": [20, 53, 117, 119, 143, 147, 161, 227, 265, 276, 295, 336, 337, 375, 388, 403, 413, 442, 535, 565, 618, 645, 657, 664, 681, 685, 695, 706, 757, 764, 769, 776, 782, 793, 813, 834, 836, 839], "subattributenam": [20, 143], "svrtype": [20, 143], "nd": [20, 143, 537, 629], "otp": [21, 134, 143], "secret": [21, 109, 134, 135, 143, 151, 153, 157, 198, 237, 417, 599, 675, 676, 689], "maxotpdevic": 21, "regist": [21, 132, 134, 417, 463, 464, 522, 664], "max": [21, 22, 30, 31, 32, 36, 38, 39, 41, 93, 102, 103, 128, 234, 335, 375, 379, 386, 419, 442, 523, 573], "255": [21, 97, 160, 314, 347, 409, 442, 463, 464, 532, 533, 537, 538, 547, 568, 574, 645, 681, 882, 886], "aaadloglevel": 22, "aaad": 22, "nsvpn": 22, "avail": [22, 45, 57, 61, 62, 73, 97, 117, 124, 126, 128, 130, 148, 194, 201, 203, 222, 226, 234, 245, 246, 262, 264, 268, 269, 270, 271, 273, 275, 288, 289, 297, 314, 323, 326, 327, 328, 331, 333, 334, 335, 342, 343, 344, 347, 349, 359, 363, 369, 370, 375, 379, 389, 410, 411, 413, 417, 419, 421, 422, 423, 431, 432, 433, 439, 440, 442, 447, 448, 460, 461, 467, 482, 487, 489, 496, 504, 512, 515, 516, 519, 528, 529, 535, 536, 538, 573, 575, 587, 595, 608, 609, 611, 614, 616, 617, 620, 623, 635, 637, 639, 661, 667, 674, 682, 685, 689, 695, 706, 742, 763, 766, 775, 778, 779, 780, 784, 797, 827, 833, 865, 882, 886], "emerg": [22, 123, 124, 126, 128, 130, 297, 647, 742], "immedi": [22, 123, 124, 126, 128, 130, 222, 264, 360, 489, 563, 564, 633, 671, 742], "crisi": [22, 123, 124, 126, 128, 130, 742], "alert": [22, 70, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 123, 124, 126, 128, 130, 539, 647, 661, 742], "might": [22, 45, 123, 124, 126, 128, 130, 366, 375, 417, 419, 424, 442, 482, 602, 608, 653, 657, 661, 667, 742, 774, 865], "critic": [22, 123, 124, 126, 128, 130, 327, 641, 647, 648, 724, 742, 827, 833], "immin": [22, 123, 124, 126, 128, 130, 742], "some": [22, 44, 123, 124, 126, 128, 130, 160, 234, 272, 288, 314, 442, 482, 488, 496, 523, 537, 538, 547, 563, 612, 617, 618, 664, 742, 865], "warn": [22, 123, 124, 126, 128, 130, 360, 442, 568, 641, 647, 648, 664, 689, 695, 706, 724, 742, 827, 833], "futur": [22, 123, 124, 126, 128, 130, 742], "notic": [22, 123, 124, 126, 128, 130, 647, 742], "administr": [22, 123, 124, 126, 128, 130, 146, 231, 629, 630, 646, 664, 742, 749, 797], "know": [22, 123, 124, 126, 128, 130, 742], "about": [22, 42, 49, 51, 53, 57, 66, 68, 72, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 110, 112, 114, 115, 123, 124, 126, 128, 130, 147, 152, 153, 154, 156, 161, 164, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 216, 222, 224, 269, 272, 274, 293, 314, 352, 369, 385, 388, 392, 405, 410, 421, 423, 520, 530, 584, 585, 587, 590, 591, 592, 595, 608, 610, 612, 613, 615, 618, 619, 633, 635, 637, 661, 664, 717, 726, 742, 744, 762, 764, 767, 769, 775, 776, 777, 781, 782, 783, 839], "all": [22, 27, 35, 44, 49, 97, 109, 121, 123, 124, 126, 128, 130, 151, 153, 160, 162, 171, 172, 173, 175, 178, 180, 182, 183, 207, 217, 220, 222, 226, 234, 241, 245, 256, 264, 288, 297, 314, 322, 323, 325, 326, 327, 328, 331, 333, 334, 335, 340, 342, 343, 344, 345, 347, 349, 359, 360, 366, 369, 370, 371, 375, 378, 379, 389, 395, 404, 405, 406, 409, 417, 418, 419, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 467, 475, 482, 487, 488, 489, 495, 496, 499, 512, 523, 528, 530, 537, 538, 542, 547, 557, 558, 560, 568, 570, 573, 578, 588, 592, 595, 603, 608, 611, 615, 617, 623, 624, 626, 633, 635, 637, 642, 644, 648, 654, 665, 667, 680, 682, 688, 689, 694, 696, 700, 705, 706, 713, 717, 726, 736, 741, 742, 744, 754, 755, 756, 789, 824, 825, 827, 828, 832, 833, 835, 865, 882, 886, 890, 897], "low": [22, 117, 123, 124, 126, 128, 130, 207, 234, 525, 641, 713, 742], "debug": [22, 123, 124, 126, 128, 130, 360, 463, 464, 530, 647, 742, 827, 833], "extrem": [22, 123, 124, 126, 128, 130, 742], "aaadnatip": 22, "sent": [22, 26, 44, 49, 52, 97, 121, 124, 126, 128, 130, 134, 139, 141, 142, 146, 151, 153, 158, 160, 162, 206, 222, 234, 246, 269, 288, 330, 335, 340, 367, 368, 369, 375, 379, 386, 389, 392, 398, 399, 404, 405, 417, 427, 442, 467, 497, 498, 502, 512, 523, 536, 542, 563, 564, 578, 583, 587, 588, 595, 599, 600, 602, 613, 635, 636, 637, 638, 639, 641, 647, 648, 649, 654, 671, 689, 695, 696, 701, 706, 707, 716, 754, 755, 756, 758, 760, 761, 777, 783, 786, 787, 788, 827, 832, 833, 835, 865, 888], "aaasessionloglevel": 22, "audit": [22, 123, 124, 125, 126, 127, 128, 129, 130, 131, 297, 482, 530, 536, 647, 742, 827, 833], "apitokencach": 22, "defaultauthtyp": 22, "defaultcsphead": 22, "csp": [22, 231], "dynaddr": 22, "wa": [22, 52, 160, 186, 199, 222, 327, 333, 360, 379, 419, 496, 565, 595, 615, 657, 661, 865], "enableenhancedauthfeedback": 22, "enhanc": [22, 234, 392, 661, 667, 674], "auth": [22, 44, 156, 195, 417, 689, 706], "feedback": [22, 528], "reason": [22, 340, 496, 563, 608, 696, 755, 756, 827, 833], "failur": [22, 143, 234, 379, 398, 399, 417, 641, 716, 827, 833], "NO": [22, 52, 117, 123, 124, 126, 128, 130, 143, 146, 211, 222, 224, 225, 226, 231, 238, 240, 241, 246, 247, 256, 264, 288, 314, 321, 335, 337, 349, 366, 369, 382, 387, 390, 395, 404, 417, 419, 424, 442, 462, 503, 505, 518, 519, 522, 523, 527, 537, 538, 545, 553, 574, 577, 578, 579, 602, 608, 633, 635, 637, 641, 661, 667, 681, 682, 689, 695, 701, 706, 716, 722, 755, 756, 889], "ye": [22, 52, 117, 123, 124, 126, 128, 130, 143, 146, 211, 222, 224, 225, 226, 231, 238, 240, 241, 246, 247, 256, 264, 288, 314, 321, 335, 337, 349, 366, 369, 382, 387, 390, 392, 395, 404, 417, 419, 424, 442, 462, 503, 505, 518, 519, 522, 523, 527, 537, 538, 545, 553, 574, 577, 578, 579, 602, 608, 633, 635, 637, 661, 667, 681, 682, 689, 695, 701, 706, 716, 722, 755, 756, 889], "enablesessionsticki": 22, "sticki": [22, 256, 321, 379, 641], "enablestaticpagecach": 22, "failedlogintimeout": [22, 186, 865], "minut": [22, 70, 151, 160, 162, 186, 196, 212, 247, 288, 314, 330, 366, 371, 375, 396, 413, 417, 442, 453, 482, 523, 535, 547, 567, 595, 667, 713, 754, 755, 756, 758, 827, 832, 833, 835, 865], "lock": [22, 186, 865], "exce": [22, 117, 186, 225, 375, 442, 465, 496, 499, 535, 573, 584, 641, 681, 742, 865], "permiss": [22, 186, 335, 642, 827, 833, 865], "attempt": [22, 109, 137, 140, 143, 144, 149, 154, 159, 163, 168, 186, 192, 215, 222, 226, 335, 343, 398, 399, 563, 689, 865], "ftmode": 22, "first": [22, 27, 117, 119, 143, 206, 207, 208, 211, 212, 232, 267, 275, 288, 314, 335, 358, 375, 389, 390, 403, 405, 410, 413, 419, 442, 459, 462, 467, 482, 489, 525, 528, 530, 535, 536, 539, 554, 564, 573, 595, 608, 633, 674, 762, 826], "shown": [22, 146, 871], "gui": [22, 199, 200, 240, 366, 442, 537, 538, 610, 736, 746], "httponlycooki": [22, 755, 756], "reset": [22, 84, 117, 147, 152, 205, 206, 207, 210, 211, 212, 226, 227, 234, 268, 271, 272, 363, 406, 419, 421, 525, 535, 536, 563, 564, 611, 612, 617, 618, 635, 637, 682, 685, 711, 716, 742, 758, 776], "httponli": [22, 97, 419, 424], "flag": [22, 52, 97, 104, 107, 109, 110, 143, 215, 226, 246, 264, 278, 279, 280, 281, 282, 283, 284, 290, 291, 299, 300, 301, 304, 305, 306, 307, 308, 309, 315, 316, 319, 327, 329, 333, 335, 338, 340, 379, 392, 407, 505, 523, 535, 541, 547, 563, 564, 579, 582, 583, 615, 682, 689, 695, 696, 699, 706, 707, 711, 755, 756, 827, 833], "nsc_aaac": 22, "nsc_tma": 22, "cooki": [22, 44, 49, 52, 69, 70, 78, 80, 82, 97, 99, 109, 133, 186, 210, 211, 215, 222, 314, 366, 369, 371, 375, 413, 419, 424, 442, 518, 523, 547, 563, 564, 602, 604, 641, 755, 756, 758, 762, 794, 797, 827, 833, 865], "nfactor": [22, 153, 162, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 865], "loginencrypt": 22, "flow": [22, 51, 52, 54, 151, 153, 162, 186, 224, 228, 234, 263, 266, 268, 288, 314, 359, 366, 375, 396, 442, 482, 487, 535, 568, 600, 677, 687, 865], "maxaaaus": [22, 366, 865], "concurr": [22, 117, 335, 366, 419, 496, 535, 549, 865], "simultan": [22, 369, 635, 637], "maxkbquest": 22, "question": [22, 143, 664, 813], "ask": [22, 582], "kb": [22, 442, 564, 813], "maxloginattempt": [22, 186, 865], "maxsamldeflates": 22, "deflat": [22, 262], "size": [22, 97, 102, 103, 117, 128, 210, 222, 225, 234, 264, 330, 335, 352, 354, 392, 398, 399, 482, 489, 528, 532, 535, 536, 562, 563, 564, 566, 568, 573, 575, 582, 583, 596, 600, 670, 671, 682, 689, 693, 695, 706, 713, 789, 797], "persistentloginattempt": 22, "storag": [22, 222, 226, 664], "unsuccess": 22, "pwdexpirynotificationdai": 22, "threshold": [22, 70, 117, 206, 212, 234, 264, 314, 335, 354, 365, 366, 368, 375, 386, 395, 404, 407, 416, 417, 442, 525, 535, 542, 563, 564, 566, 634, 635, 636, 641, 682, 713, 889], "dai": [22, 222, 231, 330, 641, 657, 661, 667, 726, 772], "expiri": [22, 222, 264, 330, 343, 539, 641, 654], "mean": [22, 158, 160, 379, 383, 417, 462, 535, 552, 553, 563, 564, 566, 573, 711, 865], "samesit": [22, 97, 186, 419, 424, 827, 865], "gener": [22, 52, 97, 109, 110, 117, 123, 151, 186, 199, 215, 234, 314, 327, 330, 333, 335, 347, 349, 360, 366, 367, 368, 369, 407, 413, 417, 419, 424, 427, 442, 482, 518, 528, 529, 532, 534, 535, 538, 549, 563, 568, 578, 587, 598, 599, 602, 623, 624, 641, 648, 649, 657, 661, 667, 670, 672, 689, 693, 695, 706, 827, 833, 865, 884, 885, 886, 887, 890], "aaatm": [22, 156, 186], "context": [22, 160, 186, 462, 566, 827, 865], "append": [22, 143, 186, 330, 346, 419, 424, 520, 528, 602, 608, 666, 667, 827, 833, 865], "ns_cookies_samesit": [22, 186, 827, 865], "none": [22, 60, 61, 62, 77, 84, 97, 98, 109, 110, 124, 126, 128, 130, 162, 186, 205, 206, 207, 210, 211, 212, 239, 243, 246, 247, 263, 288, 314, 327, 353, 366, 367, 368, 369, 375, 413, 417, 419, 424, 442, 458, 525, 528, 529, 537, 538, 542, 563, 635, 636, 637, 638, 667, 689, 713, 717, 754, 756, 758, 827, 832, 833, 865, 882, 886, 889], "lax": [22, 97, 186, 827, 865], "strict": [22, 97, 160, 186, 246, 256, 379, 404, 419, 424, 535, 682, 689, 706, 827, 833, 865], "tokenintrospectioninterv": 22, "frequenc": [22, 44, 563, 567, 599], "verifi": [22, 134, 151, 160, 162, 532, 577, 610, 654, 671, 681, 754, 832], "despit": 22, "found": [22, 97, 143, 226, 417, 563, 608], "defaultepagroup": [23, 142], "deletefil": [23, 24, 142], "endpoint": [23, 26, 44, 121, 134, 135, 142, 151, 153, 158, 160, 162, 166, 221, 350, 465, 467, 482, 496, 504, 564, 600, 861], "analysi": [23, 24, 142, 861], "tool": [23, 24, 142], "killprocess": [23, 24, 142], "process": [23, 24, 103, 142, 160, 210, 226, 234, 243, 297, 314, 333, 335, 360, 363, 366, 374, 376, 379, 419, 442, 535, 547, 565, 589, 594, 611, 617, 621, 628, 635, 671, 681, 689, 696, 702, 707, 708, 713, 719, 742, 749, 776, 797, 827, 833, 837, 838, 865, 882, 886], "termin": [23, 24, 27, 60, 61, 62, 73, 109, 142, 153, 194, 201, 203, 210, 215, 270, 288, 297, 314, 366, 369, 411, 417, 419, 422, 442, 565, 568, 603, 604, 605, 609, 614, 616, 635, 637, 664, 671, 689, 695, 706, 717, 744, 758, 763, 766, 778, 779, 780, 784, 824, 827], "preauthent": [23, 25, 871], "preauthenticationact": [23, 24], "deni": [23, 24, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 162, 193, 207, 383, 418, 557, 558, 641, 682, 689, 696, 723, 755, 756, 792, 827, 833], "logon": [23, 147, 417, 749, 755, 756, 797, 827, 833, 865, 871], "result": [23, 24, 97, 141, 143, 147, 152, 154, 160, 161, 202, 208, 209, 226, 227, 263, 269, 271, 272, 314, 335, 374, 376, 417, 421, 442, 458, 566, 570, 573, 587, 612, 615, 617, 618, 685, 713, 716, 717, 776, 782, 792, 865, 884, 885, 886, 887], "1023": [24, 151, 496], "basi": [24, 370, 442, 537, 538, 570, 641, 682, 689, 695, 706], "point": [24, 51, 52, 60, 61, 62, 73, 160, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 199, 201, 207, 224, 263, 278, 286, 289, 290, 299, 302, 303, 305, 318, 329, 385, 417, 432, 433, 439, 448, 586, 609, 667, 677, 711, 743, 763, 768, 779, 780, 827, 833, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 865, 876, 877, 879], "reqact": [25, 137, 144, 149, 159, 163, 168, 685], "refus": [26, 158], "authservretri": [26, 158], "retri": [26, 117, 158, 206, 335, 343, 398, 399, 417, 427, 563, 599, 600], "callingstationid": [26, 158], "station": [26, 158, 417], "its": [26, 151, 158, 226, 327, 333, 347, 360, 366, 375, 413, 419, 442, 458, 475, 481, 482, 496, 512, 529, 538, 573, 574, 633, 634, 635, 645, 661, 827, 833, 865, 882, 886], "ipattributetyp": [26, 158], "ipvendorid": [26, 158], "vendor": [26, 110, 158, 417], "encod": [26, 97, 158, 264, 417, 419, 424, 442, 498, 528, 529, 532, 587, 591, 594, 598, 654, 661, 667, 682, 689, 728, 827, 833], "passencod": [26, 158], "packet": [26, 52, 121, 158, 221, 234, 246, 264, 267, 268, 274, 275, 314, 335, 337, 359, 363, 375, 379, 387, 389, 390, 395, 396, 403, 404, 405, 406, 417, 419, 424, 427, 442, 458, 465, 467, 468, 482, 487, 496, 497, 498, 499, 502, 503, 515, 516, 518, 523, 529, 535, 538, 547, 552, 557, 558, 563, 564, 568, 573, 578, 582, 583, 599, 600, 615, 621, 623, 624, 629, 635, 654, 671, 682, 689, 695, 706, 713, 716, 760, 761, 773, 786, 787, 788, 789, 829, 865, 888, 890, 893], "pap": [26, 158], "chap": [26, 158], "mschapv1": [26, 158], "mschapv2": [26, 158], "pwdattributetyp": [26, 158], "pwdvendorid": [26, 158], "radattributetyp": [26, 158], "radgroupsepar": [26, 158], "separ": [26, 97, 106, 143, 151, 158, 160, 167, 233, 234, 442, 465, 468, 488, 504, 530, 536, 568, 595, 602, 714, 749, 797, 827, 833, 835, 880, 881, 884, 885], "delimit": [26, 142, 153, 158, 535, 592, 595, 615], "within": [26, 73, 103, 141, 158, 215, 263, 267, 297, 352, 363, 375, 386, 442, 535, 536, 542, 563, 573, 595, 623, 624, 657, 661, 664, 716, 762, 827, 833], "radgroupsprefix": [26, 158], "preced": [26, 97, 151, 158, 222, 288, 314, 350, 459, 565, 587, 615, 681], "radkei": [26, 158, 417, 601], "share": [26, 29, 139, 158, 167, 198, 264, 288, 314, 383, 399, 404, 413, 417, 442, 488, 523, 537, 538, 547, 549, 601, 602, 604, 654, 664, 689, 695, 701, 706, 789, 825, 865, 882, 886, 888], "radnasid": [26, 158, 417], "nasid": [26, 158], "radnasip": [26, 158, 417], "nasip": [26, 158], "radvendorid": [26, 158], "1812": 26, "tunnelendpointclientip": [26, 158], "iip": 27, "rang": [27, 44, 97, 186, 233, 234, 264, 288, 314, 354, 379, 442, 453, 459, 465, 468, 482, 488, 489, 494, 496, 497, 513, 514, 523, 538, 547, 585, 596, 623, 624, 625, 736, 742, 746, 810, 811, 825, 827, 833, 863, 864, 865, 895], "mask": [27, 97, 218, 219, 314, 359, 363, 375, 403, 413, 442, 470, 471, 492, 497, 509, 510, 538, 585, 623, 628, 630, 645, 790, 791, 825, 827, 833, 891, 892], "nodeid": [27, 121, 221, 225, 231, 247, 248, 261, 323, 326, 327, 328, 331, 333, 334, 342, 343, 344, 345, 347, 361, 420, 457, 491, 492, 493, 504, 521, 541, 568, 596, 631, 716, 720, 727, 824, 828], "sessionkei": 27, "show": [27, 35, 51, 59, 227, 329, 369, 385, 392, 417, 530, 544, 592, 595, 635, 637, 827, 833], "ascii": [28, 44, 45, 46, 48, 49, 50, 53, 55, 132, 134, 135, 138, 141, 146, 147, 150, 152, 153, 157, 161, 162, 199, 200, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 269, 276, 288, 293, 295, 297, 314, 321, 366, 369, 370, 375, 384, 388, 412, 415, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 542, 548, 549, 550, 551, 555, 556, 557, 558, 580, 581, 586, 587, 590, 591, 592, 593, 594, 595, 598, 600, 615, 623, 633, 635, 637, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 746, 749, 754, 755, 757, 758, 759, 769, 773, 774, 794, 832, 833, 835, 836, 865], "alphabet": [28, 44, 48, 49, 50, 53, 55, 222, 227, 229, 230, 243, 262, 265, 267, 268, 369, 384, 388, 557, 558, 623, 633, 635, 637, 652, 653, 769, 794, 833, 835, 836, 865], "alphanumer": [28, 44, 45, 46, 48, 49, 50, 53, 55, 92, 94, 95, 132, 134, 135, 138, 141, 146, 147, 150, 152, 153, 157, 160, 161, 162, 199, 200, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 269, 276, 288, 293, 295, 297, 314, 321, 366, 369, 370, 375, 384, 388, 412, 415, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 542, 548, 549, 550, 551, 555, 556, 557, 558, 580, 581, 586, 587, 590, 592, 593, 595, 598, 600, 615, 623, 633, 635, 637, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 769, 773, 774, 794, 832, 833, 835, 836, 865], "hash": [28, 44, 45, 46, 48, 49, 50, 53, 55, 117, 132, 134, 135, 138, 141, 146, 147, 150, 152, 153, 154, 157, 161, 162, 199, 200, 202, 204, 210, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 366, 367, 368, 369, 370, 375, 384, 388, 398, 399, 410, 412, 415, 417, 419, 421, 422, 423, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 532, 535, 536, 544, 548, 549, 550, 551, 555, 556, 557, 558, 564, 588, 598, 600, 608, 612, 613, 615, 618, 619, 623, 633, 635, 636, 637, 638, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 695, 701, 706, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 769, 774, 775, 776, 777, 781, 782, 783, 794, 832, 833, 835, 836, 838, 839, 865], "auditfailedcmd": [29, 167], "stream": [29, 52, 97, 167, 257, 259, 297, 314, 528, 535, 568, 600, 602, 713, 715], "49": [29, 167], "tacacssecret": [29, 167], "admserviceconnect": 42, "help": [42, 153, 162, 375, 392, 400, 419, 424, 502, 512, 534, 535, 621, 623, 644, 646, 651, 671, 689, 695, 701, 706, 789], "discov": [42, 97, 344, 392], "effortlessli": [42, 392], "insight": [42, 49, 52, 386, 392], "curat": [42, 392], "machin": [42, 207, 392, 568], "recommend": [42, 70, 97, 246, 392, 442, 667, 689, 695, 706, 827, 833], "infrastructur": [42, 160, 392], "let": [42, 392, 542], "automat": [42, 234, 263, 330, 360, 363, 370, 379, 382, 383, 392, 442, 482, 529, 564, 682, 689, 695, 706, 755, 756, 827, 833], "usag": [42, 52, 234, 392, 395, 404, 407, 419, 424, 641, 695, 706], "telemetri": [42, 52, 392], "doc": [42, 391, 392], "en": [42, 392], "u": [42, 97, 124, 126, 128, 130, 211, 233, 234, 247, 392, 459, 563, 664, 716, 717, 736, 742, 746], "13": [42, 167, 392], "govern": [42, 392, 664], "subject": [42, 97, 136, 347, 392, 654, 657, 664, 682, 689], "serviceagr": [42, 392], "bui": [42, 392], "licens": [42, 215, 245, 378, 392, 519, 521, 539, 540, 541, 574, 641, 742, 865], "agreement": [42, 392], "allhttphead": 44, "On": [44, 49, 52, 155, 176, 177, 179, 234, 335, 336, 337, 672, 682, 683, 689, 693, 695, 701, 706, 729, 730, 731, 732, 733, 734, 735], "analyticsauthtoken": [44, 52], "particular": [44, 70, 117, 222, 223, 225, 233, 234, 395, 404, 512, 523, 534, 535, 547, 623, 651, 665, 666, 689, 696, 706, 707], "eg": [44, 105, 211, 568], "splunk": 44, "authorizaiton": 44, "analyticsendpointcontenttyp": 44, "By": [44, 52, 246, 263, 288, 314, 337, 387, 424, 442, 475, 481, 482, 488, 530, 563, 582, 623, 624, 635, 647, 648, 713, 716, 736, 742, 746], "overridden": [44, 343, 383, 404, 547], "analyticsendpointmetadata": 44, "metadata": [44, 153, 160, 162, 350, 595], "analyticsendpointurl": 44, "upload": [44, 97, 109, 608, 641], "auditlog": [44, 52, 128], "rest": [44, 50, 97, 528, 532, 573], "consid": [44, 117, 226, 314, 330, 343, 363, 366, 375, 410, 417, 419, 421, 442, 467, 502, 523, 528, 535, 563, 573, 681, 716], "logstream": [44, 50, 52, 241, 442, 635, 637], "5557": 44, "taken": [44, 117, 196, 205, 206, 207, 210, 211, 212, 442, 523, 565, 566, 582, 583, 671, 718, 760, 761], "properti": [44, 314, 327, 442, 466, 635, 689, 706], "cqareport": [44, 52], "cqa": [44, 52, 129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "grpcstatu": 44, "statu": [44, 97, 222, 225, 246, 288, 314, 370, 375, 379, 417, 442, 563, 608, 641, 681, 689, 695, 701, 706, 865, 882, 886], "httpauthent": 44, "httpclientsidemeasur": 44, "insert": [44, 49, 153, 208, 210, 213, 222, 226, 262, 264, 288, 314, 366, 369, 371, 375, 390, 413, 417, 442, 503, 523, 534, 535, 536, 547, 587, 608, 615, 635, 637, 648, 654, 682, 689], "javascript": [44, 208, 210, 215, 352, 354, 794], "side": [44, 162, 321, 390, 407, 408, 442, 503, 518, 520, 534, 563, 568, 635, 637, 742, 754, 827, 832, 833], "httpcontenttyp": [44, 52], "length": [44, 59, 89, 93, 97, 98, 102, 103, 106, 119, 143, 151, 160, 167, 186, 206, 215, 335, 350, 390, 405, 419, 442, 498, 499, 528, 529, 532, 535, 568, 587, 591, 598, 681, 682, 689, 714, 717, 736, 742, 746, 760, 761], "httpcooki": [44, 52, 518], "httpdomainnam": 44, "httphost": [44, 52, 518], "httplocat": [44, 52], "httpmethod": [44, 52, 225, 518, 587, 681], "method": [44, 52, 57, 97, 143, 151, 171, 172, 173, 175, 178, 180, 182, 183, 225, 314, 366, 367, 368, 369, 370, 375, 408, 417, 419, 424, 442, 459, 484, 518, 528, 529, 568, 587, 602, 635, 636, 637, 638, 667, 681, 682, 689, 717, 749, 797, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "httppagetrack": 44, "embed": [44, 92, 94, 95, 498, 664], "togeth": [44, 478, 489, 681], "httprefer": [44, 52, 518], "refer": [44, 52, 72, 97, 134, 151, 160, 247, 352, 482, 518, 523, 573, 591, 594, 608, 641, 685, 717], "httpsetcooki": [44, 52], "httpsetcookie2": [44, 52], "cookie2": 44, "httpurl": [44, 52, 518], "httpurlqueri": 44, "httpuserag": [44, 52, 518], "agent": [44, 52, 210, 269, 417, 518, 536, 587, 827, 833], "httpvia": [44, 52], "via": [44, 160, 171, 172, 173, 175, 178, 180, 182, 183, 222, 226, 232, 288, 383, 392, 427, 463, 464, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "httpxforwardedforhead": 44, "x": [44, 97, 139, 160, 233, 234, 442, 456, 467, 535, 566, 568, 654, 657, 664, 726, 794], "integratedcach": [44, 129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "metricsexportfrequ": 44, "export": [44, 49, 52, 56, 69, 124, 126, 128, 130, 575, 595, 654, 658, 683, 689, 695, 706], "300": [44, 119, 196, 206, 221, 406, 563, 600, 681, 689, 695, 701, 736, 742, 746], "outputmod": 44, "post": [44, 97, 151, 160, 162, 225, 226, 587, 681, 689, 706, 749, 797], "bodi": [44, 97, 160, 206, 222, 226, 352, 586, 587, 615, 767, 775], "depend": [44, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 246, 262, 314, 350, 360, 417, 458, 467, 482, 489, 522, 538, 542, 582, 583, 654, 681, 682, 825, 827, 833, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 865, 876, 877, 879], "consum": [44, 162, 375, 442, 549, 682], "avro": 44, "prometheu": 44, "influx": 44, "schemafil": 44, "counter": [44, 52, 535, 560, 726, 776, 827, 833], "metricscollector": 44, "servemod": 44, "how": [44, 419, 424, 442, 460, 461, 528, 568, 634, 635, 646, 682, 689, 761, 797, 827, 833], "pull": 44, "tcpburstreport": 44, "burst": [44, 563, 564, 600], "what": [44, 608], "webinsight": [44, 49], "tcpinsight": 44, "securityinsight": [44, 49], "videoinsight": [44, 49, 52], "hdxinsight": [44, 387], "gatewayinsight": 44, "timeseri": 44, "lsninsight": 44, "botinsight": [44, 49], "ciinsight": [44, 49], "udpinsight": 44, "urlcategori": [44, 52], "categori": [44, 52, 110, 207], "spec": [45, 46], "hard": [45, 641, 661, 663], "disk": [45, 568, 641, 661, 663, 740, 794], "drive": [45, 383, 602, 641, 661, 663], "solid": [45, 661, 663], "caus": [45, 124, 126, 128, 130, 143, 222, 225, 442, 589, 611, 617, 661], "inconsist": [45, 641, 661], "high": [45, 117, 234, 359, 386, 389, 460, 461, 482, 487, 529, 623, 641, 661, 882, 886], "setup": [45, 358, 360, 370, 379, 460, 461, 495, 529, 574, 648, 661, 865, 882, 886], "input": [45, 160, 383, 419, 424, 523, 528, 657, 661, 667, 674, 676, 683, 684], "three": [45, 247, 327, 398, 399, 525, 591, 600, 661, 827, 833, 865], "support": [45, 97, 124, 126, 128, 130, 143, 151, 160, 167, 169, 170, 171, 172, 173, 174, 175, 178, 180, 181, 182, 183, 184, 185, 187, 188, 189, 234, 268, 288, 297, 314, 335, 340, 350, 366, 391, 417, 423, 442, 482, 535, 536, 563, 564, 591, 594, 595, 602, 604, 615, 619, 633, 635, 637, 645, 652, 661, 667, 672, 673, 674, 682, 689, 695, 701, 706, 713, 757, 761, 827, 833], "proto": [45, 97], "oa": 45, "swagger": 45, "graphql": 45, "src": [46, 56, 66, 68, 108, 110, 112, 114, 115, 118, 216, 330, 336, 460, 461, 530, 536, 587, 592, 610, 658, 659, 668, 669, 679, 714, 745], "spec_fil": 46, "pptpgreidletimeout": 47, "interv": [47, 52, 134, 151, 153, 157, 160, 162, 211, 212, 215, 231, 246, 379, 386, 387, 398, 399, 406, 417, 419, 442, 458, 505, 518, 539, 542, 547, 563, 564, 565, 567, 577, 595, 641, 667, 713, 758, 888], "sec": [47, 246, 417, 567, 568, 689], "pptp": [47, 241, 482, 635, 637], "gre": [47, 241, 247, 403, 635, 637], "clear": [47, 375, 520, 523, 560, 563, 635, 661, 689, 695, 706, 742, 827, 833], "9000": [47, 234, 314], "clientsidemeasur": [49, 352], "render": [49, 146, 156], "mainpag": 49, "In": [49, 52, 151, 153, 162, 226, 234, 263, 288, 297, 325, 340, 343, 349, 358, 366, 369, 408, 442, 460, 461, 462, 467, 482, 488, 489, 523, 557, 558, 563, 574, 577, 578, 608, 615, 637, 648, 689, 695, 742, 767, 827, 833, 865, 882, 886], "word": [49, 269, 467, 489, 528, 532, 535, 542, 573, 586, 587, 593, 827, 833], "util": [49, 160, 263, 336, 337, 360, 534, 535, 578, 682, 689, 865], "distributionalgorithm": 49, "distribut": [49, 52, 207, 234, 419, 424, 442, 635, 667, 725], "among": [49, 333, 366, 369, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 578, 635, 637], "els": [49, 374, 376, 406, 716], "metricslog": 49, "turn": [49, 97, 246, 314, 405, 424, 442, 530, 635, 865], "newnam": [49, 50, 53, 55, 72, 74, 147, 152, 154, 156, 161, 186, 193, 195, 197, 202, 204, 227, 229, 262, 265, 267, 272, 274, 276, 288, 293, 295, 297, 314, 339, 366, 369, 375, 384, 388, 410, 413, 421, 423, 442, 520, 567, 608, 612, 613, 615, 618, 619, 623, 633, 635, 637, 652, 653, 764, 765, 769, 775, 776, 777, 781, 782, 783, 838, 839, 865], "pagetrack": 49, "track": [49, 97, 109, 210, 211, 215, 392, 542, 682, 689, 713, 882, 883, 886, 887], "waterfal": 49, "chart": 49, "ns_esn": 49, "transactionlog": 49, "anomal": [49, 207], "transact": [49, 52, 134, 160, 162, 264, 268, 314, 325, 366, 369, 419, 424, 442, 535, 536, 542, 563, 573, 575, 635, 637, 654, 681, 682, 689, 695, 701, 706, 713, 754, 832, 865], "videoanalyt": 49, "ipaddress": [50, 121, 218, 219, 223, 231, 241, 247, 288, 314, 325, 326, 362, 366, 379, 401, 402, 417, 442, 453, 463, 464, 509, 510, 517, 522, 523, 538, 553, 581, 587, 633, 635, 645, 774, 790, 791, 827, 833, 891, 892], "ipv4": [50, 77, 84, 205, 214, 241, 247, 248, 288, 314, 324, 325, 326, 335, 342, 359, 363, 375, 380, 381, 389, 390, 403, 405, 407, 413, 442, 470, 471, 488, 495, 497, 498, 499, 502, 503, 513, 517, 537, 538, 558, 568, 584, 585, 587, 604, 623, 624, 628, 630, 633, 635, 645, 648, 649, 774, 814, 826, 827, 833, 865, 869, 890], "four": [50, 234, 349, 557, 558], "coll": 50, "either": [50, 97, 136, 143, 162, 193, 194, 199, 200, 231, 243, 288, 297, 314, 323, 326, 327, 328, 330, 331, 333, 334, 342, 343, 344, 347, 349, 360, 370, 375, 379, 382, 390, 442, 465, 496, 503, 522, 578, 608, 629, 630, 657, 664, 689, 706, 754, 832, 835, 865], "ipfix": [50, 52, 241, 442, 486, 518, 635, 637, 865], "globalbindtyp": [51, 60, 125, 129, 201, 224, 263, 270, 329, 353, 385, 411, 609, 616, 677, 729, 730, 731, 732, 733, 734, 735, 753, 763, 768, 779, 780, 815], "system_glob": [51, 60, 125, 129, 201, 224, 263, 270, 329, 353, 385, 411, 609, 616, 677, 729, 730, 731, 732, 733, 734, 735, 753, 763, 768, 779, 780, 815], "vpn_global": [51, 60, 125, 129, 201, 224, 263, 270, 329, 353, 385, 411, 609, 616, 677, 729, 730, 731, 732, 733, 734, 735, 753, 763, 768, 779, 780, 815], "rnat_glob": [51, 60, 125, 129, 201, 224, 263, 270, 329, 353, 385, 411, 609, 616, 677, 729, 730, 731, 732, 733, 734, 735, 753, 763, 768, 779, 780, 815], "appfw_glob": [51, 60, 125, 129, 201, 224, 263, 270, 329, 353, 385, 411, 609, 616, 677, 729, 730, 731, 732, 733, 734, 735, 753, 763, 768, 779, 780, 815], "labelnam": [51, 54, 55, 60, 61, 62, 73, 74, 155, 156, 194, 195, 201, 203, 204, 224, 228, 229, 263, 266, 267, 270, 273, 274, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 297, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 339, 411, 422, 423, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 609, 613, 614, 616, 619, 620, 677, 686, 687, 699, 711, 763, 765, 766, 777, 778, 779, 780, 783, 784], "labeltyp": [51, 54, 60, 61, 62, 73, 194, 201, 203, 224, 228, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 411, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 609, 614, 616, 620, 677, 687, 699, 711, 763, 766, 778, 779, 780, 784], "policylabel": [51, 54, 55, 60, 61, 62, 73, 74, 194, 201, 203, 224, 228, 263, 266, 267, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 297, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 339, 411, 422, 423, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 609, 614, 616, 620, 677, 687, 699, 711, 763, 765, 766, 778, 779, 780, 784], "policynam": [51, 54, 60, 61, 62, 73, 125, 129, 155, 194, 201, 203, 227, 228, 263, 266, 270, 273, 276, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 295, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 353, 374, 376, 385, 411, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 566, 609, 614, 616, 620, 677, 687, 699, 711, 723, 729, 730, 731, 732, 733, 734, 735, 738, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823], "req_overrid": [51, 60, 61, 62, 201, 224, 263, 270, 329, 353, 411, 609, 616, 753, 763, 768, 779, 780, 815], "req_default": [51, 60, 61, 62, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 201, 224, 263, 270, 329, 353, 411, 609, 616, 753, 763, 768, 779, 780, 815, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 876, 877, 879], "overrid": [51, 201, 332, 407, 475, 481, 512, 602, 609, 635, 661, 666, 763], "othertcp_req_overrid": [51, 411, 609, 616], "othertcp_req_default": [51, 411, 609, 616], "mssql_req_overrid": [51, 411, 609], "mssql_req_default": [51, 411, 609], "mysql_req_overrid": [51, 411, 609], "mysql_req_default": [51, 411, 609], "ica_req_overrid": [51, 385], "ica_req_default": [51, 385], "oracle_req_overrid": [51, 411], "oracle_req_default": [51, 411], "httpquic_req_overrid": [51, 60, 61, 62, 224, 263, 353, 411, 609, 616, 763], "httpquic_req_default": [51, 60, 61, 62, 224, 263, 353, 411, 609, 616, 763], "aaausernam": 52, "appnamerefresh": 52, "appnam": [52, 116], "600": [52, 494, 496, 505, 518, 716], "cacheinsight": 52, "ic": [52, 129, 222, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "l7": [52, 117, 386, 387, 535], "clienttrafficonli": [52, 518], "connectionchain": 52, "so": [52, 97, 109, 119, 124, 126, 128, 130, 160, 211, 271, 363, 379, 410, 419, 421, 442, 482, 489, 496, 528, 596, 611, 615, 617, 645, 648, 682, 741, 742, 827, 833], "also": [52, 103, 207, 222, 225, 232, 241, 272, 314, 332, 335, 370, 383, 417, 419, 442, 463, 464, 482, 496, 497, 498, 523, 538, 560, 563, 566, 602, 612, 618, 644, 654, 657, 664, 685, 716, 742, 786, 787, 788, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 837, 838, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 890, 891, 892, 893], "propag": [52, 379, 382, 523, 529, 574], "across": [52, 171, 172, 173, 175, 178, 180, 182, 183, 288, 335, 419, 496, 542, 568, 573, 789, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "multi": [52, 143, 151, 160, 167, 417, 865], "environ": [52, 232, 463, 464, 568, 574, 682, 827, 833, 865, 897], "logic": [52, 234], "knob": [52, 340], "distributedtrac": 52, "trace": [52, 97, 530, 535, 568, 827, 833], "templat": [52, 116, 518, 523, 837], "disttracingsamplingr": 52, "emailaddress": [52, 141, 162, 231, 664, 754, 832], "flowrecordinterv": 52, "60": [52, 241, 396, 494, 496, 535, 565, 602, 667, 884, 885, 886, 887], "gxsessionreport": 52, "httpauthor": 52, "receiv": [52, 143, 160, 167, 225, 234, 314, 332, 335, 363, 375, 379, 383, 389, 390, 404, 405, 417, 419, 427, 442, 458, 465, 467, 482, 489, 496, 535, 536, 542, 563, 564, 565, 568, 578, 600, 602, 615, 636, 637, 638, 639, 681, 689, 695, 701, 706, 716, 718, 760, 761, 789, 827, 833, 865, 888, 889], "httpdomain": 52, "httpquerywithurl": 52, "segment": [52, 221, 442, 563, 564], "along": [52, 148, 225, 537, 538, 560, 564, 568, 646, 689, 706, 754, 827, 832, 833], "last": [52, 97, 124, 128, 153, 222, 314, 390, 405, 417, 442, 459, 528, 563, 564, 595, 645, 689, 695, 706, 726], "visit": 52, "through": [52, 72, 121, 124, 126, 128, 130, 160, 186, 207, 226, 243, 247, 288, 335, 340, 356, 357, 358, 363, 370, 375, 383, 395, 404, 405, 417, 419, 442, 467, 495, 496, 504, 523, 527, 533, 537, 538, 542, 547, 563, 568, 574, 585, 600, 602, 629, 630, 713, 717, 736, 746, 825, 827, 833], "httpxforwardedfor": 52, "origin": [52, 69, 83, 97, 124, 126, 128, 130, 222, 247, 256, 266, 276, 288, 359, 397, 417, 419, 467, 527, 563, 689, 865, 882, 886], "identifiernam": [52, 257, 259], "identifiersessionnam": 52, "logstreamovernsip": 52, "snip": [52, 128, 370, 379, 389, 404, 417, 442, 523, 537, 538, 637, 648], "lsnlog": 52, "scale": [52, 369, 470, 471, 473, 485, 563, 564, 637], "observationdomainid": 52, "observ": [52, 70, 386], "etc": [52, 245, 563, 608, 742, 813], "each": [52, 97, 124, 126, 128, 130, 167, 206, 207, 208, 212, 222, 234, 246, 288, 321, 331, 344, 347, 350, 358, 366, 367, 368, 369, 379, 383, 395, 404, 406, 442, 459, 475, 481, 482, 489, 496, 528, 531, 532, 546, 556, 563, 564, 568, 573, 587, 595, 602, 608, 615, 623, 624, 633, 635, 637, 638, 644, 657, 681, 689, 706, 714, 755, 756, 758, 761, 827, 833, 835], "observationdomainnam": 52, "observationpointid": 52, "securityinsightrecordinterv": 52, "securityinsighttraff": 52, "individu": [52, 103, 222, 343, 544, 547, 565, 635, 637, 648, 665, 666, 689, 691, 692, 697, 698, 703, 709, 710, 755, 863, 864], "skipcacheredirectionhttptransact": 52, "skip": [52, 143, 417, 568, 689, 722, 792], "miss": [52, 288, 418, 608, 641], "initi": [52, 162, 297, 363, 379, 406, 419, 427, 442, 482, 489, 496, 512, 528, 535, 538, 563, 564, 573, 600, 602, 623, 635, 637, 673, 674, 682, 689, 695, 701, 706, 716, 758, 827, 833], "subscriberawar": 52, "msisdn": 52, "l4": [52, 408], "subscriberidobfusc": 52, "obfusc": 52, "subscriberidobfuscationalgo": 52, "algorithm": [52, 134, 151, 153, 160, 162, 330, 398, 399, 419, 424, 563, 564, 577, 598, 600, 623, 624, 629, 630, 644, 650, 654, 664, 670, 672, 682, 683, 693, 742, 754, 776, 832], "md5": [52, 532, 650, 654, 682], "sha256": [52, 160, 162, 532, 654, 664, 682, 754, 832], "tcpattackcounterinterv": 52, "attack": [52, 93, 97, 103, 117, 206, 207, 222, 335, 419, 424, 496, 564, 577, 641, 671, 681], "templaterefresh": [52, 518], "refresh": [52, 153, 157, 222, 343, 418, 518, 539, 577, 667, 689, 695, 706, 827, 833], "becaus": [52, 171, 172, 173, 175, 178, 180, 182, 183, 278, 286, 289, 290, 343, 375, 417, 442, 482, 489, 496, 528, 570, 615, 667, 682, 689, 695, 696, 706, 794, 827, 833], "transmiss": [52, 234, 496, 563, 564, 568, 600, 789], "udp": [52, 128, 158, 241, 243, 247, 297, 314, 332, 335, 337, 344, 366, 369, 375, 379, 390, 396, 403, 417, 419, 442, 465, 467, 475, 481, 482, 487, 490, 494, 495, 496, 503, 517, 518, 537, 538, 552, 557, 558, 568, 600, 609, 621, 623, 635, 637, 648, 761, 824, 825, 830, 890], "resent": [52, 716], "regular": [52, 57, 59, 63, 64, 65, 67, 71, 75, 76, 78, 79, 80, 82, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 98, 99, 100, 102, 103, 104, 105, 106, 107, 111, 113, 333, 515, 516, 528, 532, 573, 615, 713, 716, 723, 762, 794], "timeseriesovernsip": 52, "seri": [52, 186], "udppmtu": [52, 518], "mtu": [52, 234, 390, 503, 505, 518, 523, 547, 582, 789], "byte": [52, 93, 97, 109, 143, 151, 160, 167, 206, 222, 226, 234, 264, 354, 442, 523, 528, 532, 535, 564, 573, 582, 583, 591, 594, 596, 600, 615, 749, 760, 761, 786, 787, 788, 789, 797, 865], "1472": [52, 518, 600], "usagerecordinterv": 52, "bandwidth": [52, 119, 234, 288, 314, 366, 369, 375, 442, 521, 542, 549, 635, 637, 713, 889], "websaasappusagereport": 52, "saa": [52, 837, 838], "app": [52, 798, 842, 865], "against": [53, 93, 97, 102, 103, 105, 120, 133, 156, 172, 222, 227, 267, 274, 276, 295, 314, 336, 337, 375, 388, 413, 421, 431, 432, 433, 439, 440, 442, 447, 448, 465, 468, 557, 558, 564, 594, 618, 671, 685, 689, 695, 701, 757, 764, 769, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 836, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "entir": [53, 105, 147, 160, 161, 227, 265, 276, 295, 336, 337, 375, 388, 413, 442, 608, 618, 654, 685, 757, 764, 769, 776, 782, 793, 834, 836, 839], "itself": [53, 124, 126, 128, 130, 147, 161, 227, 265, 276, 295, 336, 337, 375, 388, 413, 442, 585, 615, 618, 685, 757, 764, 769, 776, 782, 793, 834, 836, 839], "escap": [53, 147, 161, 227, 265, 276, 295, 336, 337, 375, 388, 413, 442, 608, 618, 685, 757, 764, 769, 776, 782, 793, 834, 836, 839], "undefact": [53, 109, 147, 152, 154, 161, 202, 226, 227, 271, 272, 363, 419, 421, 611, 612, 617, 618, 685, 776, 782], "occur": [53, 109, 234, 288, 314, 335, 375, 442, 482, 528, 535, 595, 689, 706], "invoke_labelnam": [54, 73, 194, 203, 228, 266, 273, 296, 338, 422, 614, 620, 687, 766, 778, 784], "policylabeltyp": [55, 74, 423, 613, 765, 777, 783], "othertcp": [55, 423, 613, 777, 783], "http_quic": [55, 241, 297, 314, 423, 442, 535, 568, 609, 613, 763], "tar": [56, 97], "omit": [56, 221, 557, 558, 681], "preserv": [57, 66, 68, 72, 92, 94, 95, 110, 112, 114, 115, 147, 152, 154, 156, 161, 164, 204, 216, 269, 274, 423, 520, 530, 584, 585, 587, 590, 591, 592, 595, 610, 613, 615, 618, 619, 762, 764, 767, 769, 777, 783, 839], "fieldnam": [57, 76], "isregex": [57, 63, 64, 65, 67, 71, 80, 104, 107, 111, 113], "regex": [57, 59, 63, 64, 65, 67, 71, 75, 76, 78, 80, 82, 87, 88, 89, 90, 91, 92, 94, 95, 99, 104, 107, 111, 113, 160, 213, 615], "notregex": [57, 63, 64, 65, 67, 71, 75, 76, 78, 80, 82, 87, 88, 89, 90, 91, 92, 94, 95, 99, 104, 107, 111, 113], "liter": [57, 76, 77, 84, 91, 153, 587, 608, 615, 726], "intend": [59, 97, 264, 528, 532], "nocharmap": 59, "posit": [59, 73, 93, 222, 227, 263, 375, 498, 537, 538, 563, 564, 573, 629, 630, 762, 789, 890, 891, 892, 893], "pcre": [59, 76, 77, 84, 91, 93, 104, 107, 615, 762], "invoc": [60, 194, 201, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 290, 291, 296, 299, 300, 301, 304, 305, 306, 307, 308, 309, 315, 316, 319, 329, 338, 411, 429, 430, 434, 435, 436, 437, 438, 441, 443, 444, 449, 450, 451, 609, 616, 620, 687, 699, 711, 763, 766, 779, 780], "reqvserv": [60, 61, 62, 73, 194, 224, 228, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 411, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 614, 616, 620, 763, 766, 778, 784], "smaller": [61, 62, 347, 374, 376, 573, 713], "unnam": [61, 62, 73, 203, 228, 411, 422, 614, 778, 784], "grpccontenttypevalu": 63, "classifi": [63, 64, 65, 67, 71, 111, 113], "grpcwebjsoncontenttypevalu": 64, "grpcwebtextcontenttypevalu": 65, "overwrit": [66, 68, 97, 108, 110, 112, 114, 115, 216, 530, 592, 595, 610], "jsoncontenttypevalu": 67, "as_scan_location_sql": [69, 99], "sql": [69, 70, 94, 97, 99, 104, 207, 297, 417, 442, 608, 609, 613, 641], "inject": [69, 70, 78, 92, 94, 97, 99, 104, 107, 207, 288, 314, 442, 865], "except": [69, 78, 82, 97, 99, 104, 107, 222, 297, 340, 369, 379, 419, 523, 535, 615, 623, 624, 637, 696, 744, 792, 827, 833], "formfield": [69, 78, 82, 99], "as_scan_location_xss": [69, 82], "cross": [69, 70, 82, 97, 107, 143, 151, 160, 167, 207, 211, 419, 424, 542, 563], "script": [69, 70, 82, 97, 107, 207, 360, 417, 419, 424, 755, 756, 794, 827, 833], "as_value_expr_sql": [69, 99], "consistitut": [69, 95], "keyword": [69, 76, 78, 91, 92, 94, 95, 97, 99, 592, 641], "specialstr": [69, 78, 92, 94, 95, 99], "wildchar": [69, 94, 99], "as_value_expr_xss": [69, 82], "xss": [69, 95, 97, 107, 641], "tag": [69, 70, 82, 87, 95, 97, 160, 165, 234, 241, 327, 352, 403, 523, 537, 538, 641, 786, 787, 788, 890], "as_value_type_sql": [69, 99], "as_value_type_xss": [69, 82], "exclud": [69, 81, 86, 97, 234, 336, 568, 644, 651, 742, 789], "safe": [69, 81, 97, 98, 641, 865], "commerc": [69, 81, 641], "creditcardnumberurl": [69, 81], "credit": [69, 70, 81, 97], "card": [69, 70, 81, 97, 641, 664, 682], "bypass": [69, 77, 81, 97, 123, 226, 268, 337, 442, 536, 608, 641, 682, 685, 711, 760, 761, 827, 833], "csrfformoriginurl": 69, "csrf": [69, 70, 97, 641], "formactionurl_ff": [69, 89], "formactionurl_ffc": [69, 88], "formactionurl_sql": [69, 99], "formactionurl_xss": [69, 82], "profilenam": [69, 70, 72, 196, 202, 269, 762, 764, 793, 794], "securitycheck": 69, "xmldoscheck": 69, "xmlwsicheck": [69, 106], "xmlattachmentcheck": 69, "totalxmlrequest": 69, "filenam": [69, 417, 568, 592, 602, 722, 728, 743, 795], "total": [69, 97, 103, 109, 143, 151, 160, 167, 226, 314, 417, 519, 542, 560, 713, 742, 865, 882, 886], "attach": [69, 70, 97, 102, 107, 117, 268, 294, 314, 442, 486, 523, 547, 641, 665, 760, 761], "denial": [69, 93, 97, 103, 222], "maxattribut": 69, "maxattributenamelength": 69, "maxattributevaluelength": 69, "maxelementnamelength": 69, "maxfiles": 69, "minfiles": 69, "maxcdatalength": 69, "maxel": 69, "maxelementdepth": 69, "maxelementchildren": 69, "numdtd": 69, "numprocessinginstruct": 69, "numexternalent": 69, "maxentityexpans": 69, "maxentityexpansiondepth": 69, "maxnamespac": 69, "maxnamespaceurilength": 69, "maxsoaparrays": 69, "maxsoaparrayrank": 69, "interoper": [69, 70, 97], "contenttypeautodeploygraceperiod": 70, "hit": [70, 222, 225, 226, 641], "deploi": [70, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 349, 370, 641], "10080": 70, "contenttypeminthreshold": 70, "minimum": [70, 89, 97, 103, 160, 222, 225, 234, 264, 323, 326, 327, 328, 330, 331, 333, 334, 335, 342, 343, 344, 347, 369, 375, 386, 442, 505, 523, 535, 536, 547, 549, 563, 564, 567, 578, 580, 582, 591, 600, 635, 637, 645, 713, 742, 761], "contenttypepercentthreshold": 70, "percent": [70, 97, 222, 442, 713], "cookieconsistencyautodeploygraceperiod": 70, "cookieconsistencyminthreshold": 70, "cookieconsistencypercentthreshold": 70, "percentag": [70, 97, 212, 264, 288, 354, 367, 368, 369, 375, 395, 404, 417, 442, 523, 547, 636, 637, 638, 682, 785], "creditcardnumberminthreshold": 70, "creditcardnumberpercentthreshold": 70, "crosssitescriptingautodeploygraceperiod": 70, "crosssitescriptingminthreshold": 70, "crosssitescriptingpercentthreshold": 70, "csrftagautodeploygraceperiod": 70, "csrftagminthreshold": 70, "forgeri": [70, 97], "csrftagpercentthreshold": 70, "fieldconsistencyautodeploygraceperiod": 70, "fieldconsistencyminthreshold": 70, "fieldconsistencypercentthreshold": 70, "fieldformatautodeploygraceperiod": 70, "fieldformatminthreshold": 70, "fieldformatpercentthreshold": 70, "sqlinjectionautodeploygraceperiod": 70, "sqlinjectionminthreshold": 70, "sqlinjectionpercentthreshold": 70, "starturlautodeploygraceperiod": 70, "starturlminthreshold": 70, "starturlpercentthreshold": 70, "xmlattachmentminthreshold": 70, "xmlattachmentpercentthreshold": 70, "xmlwsiminthreshold": 70, "wsi": [70, 97, 641], "xmlwsipercentthreshold": 70, "multipart_form": 71, "multipartformcontenttypevalu": 71, "later": [72, 351, 392, 487, 488, 615, 689, 695, 706], "logact": [72, 147, 152, 154, 161, 197, 202, 272, 276, 295, 337, 388, 421, 536, 612, 618, 764, 769, 776, 782, 839], "filter": [72, 97, 109, 124, 126, 128, 130, 143, 215, 289, 341, 417, 467, 482, 489, 542, 568, 772], "http_req": [74, 619, 765], "httpquic_req": [74, 229, 267, 619, 765], "alertonli": [75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "cffield_url": 75, "purpos": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 210, 635, 827, 833], "confidfield": 75, "isautodeploi": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "autodeploi": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "notautodeploi": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "isregex_cffield": 75, "fake": [75, 87, 97], "exempt": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "resourceid": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "ruletyp": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "as_blockkeyword_formurl": 76, "as_fieldname_isregex_blockkeyword": 76, "block": [76, 91, 97, 98, 103, 109, 110, 238, 387, 482, 489, 496, 528, 532, 535, 537, 538, 641, 741, 742, 792, 827, 833], "blockkeywordtyp": 76, "as_bypass_list": 77, "as_bypass_list_act": 77, "as_bypass_list_loc": 77, "scan": [77, 84, 207, 827, 865], "as_bypass_list_value_typ": 77, "as_scan_location_cmd": 78, "as_value_expr_cmd": 78, "as_value_type_cmd": 78, "relax": [78, 92, 94, 95, 97, 104, 107, 109, 246, 559, 641], "formactionurl_cmd": 78, "isregex_cmd": 78, "isvalueregex_cmd": 78, "isregex_xss": 82, "isvalueregex_xss": 82, "csrfformactionurl": 83, "as_deny_list": 84, "as_deny_list_act": 84, "as_deny_list_loc": 84, "as_deny_list_value_typ": 84, "repres": [86, 93, 97, 151, 153, 160, 162, 231, 233, 234, 247, 268, 327, 333, 350, 366, 495, 536, 678, 754, 832, 837, 838], "formexpress": 87, "formurl_fad": 87, "isfieldnameregex": 87, "isregex_ffc": 88, "fieldformatmaxlength": 89, "fieldformatminlength": 89, "fieldtyp": 89, "isregex_ff": 89, "as_fileuploadtypes_url": 90, "filetyp": 90, "pdf": 90, "msdoc": 90, "imag": [90, 352, 354], "isnameregex": 90, "isregex_fileuploadtypes_url": 90, "iskeyregex_json_blockkeyword": 91, "jsonblockkeywordtyp": 91, "jsonblockkeywordurl": 91, "keyname_json_blockkeyword": 91, "keynam": [91, 92, 94, 330, 349], "as_value_expr_json_cmd": 92, "cmd": [92, 97, 233, 641], "as_value_type_json_cmd": 92, "iskeyregex_json_cmd": 92, "isvalueregex_json_cmd": 92, "violat": [92, 94, 95, 96, 97, 209, 641], "quot": [92, 94, 95, 535, 568, 608], "ensur": [92, 94, 95, 97, 160, 162, 390, 405, 442, 482, 489, 519, 689, 706, 716], "non": [92, 94, 95, 97, 105, 143, 256, 288, 314, 335, 352, 369, 375, 387, 390, 392, 442, 462, 496, 503, 535, 563, 565, 609, 613, 615, 619, 648, 654, 674, 713, 757, 777, 783, 827, 833, 865, 889], "keyname_json_cmd": 92, "we": [93, 151, 314, 325, 335, 409, 442, 482, 646], "enforc": [93, 103, 387, 442, 689, 706], "jsondo": [93, 97], "item": [93, 104, 107, 367, 368, 369, 827, 833], "toggl": [93, 97, 375, 442], "depth": [93, 103, 117, 681, 827, 833], "count": [93, 109, 117, 366, 375, 386, 689, 695, 706, 713, 865], "arrai": [93, 103, 442, 482], "jsonmaxarraylength": 93, "10000": [93, 234, 587, 639], "jsonmaxarraylengthcheck": 93, "jsonmaxcontainerdepth": 93, "excess": [93, 103, 713], "hierarchi": [93, 103], "5": [93, 124, 128, 151, 153, 160, 162, 167, 264, 335, 343, 363, 370, 386, 417, 542, 567, 582, 583, 615, 633, 645, 670, 754, 760, 761, 832], "jsonmaxcontainerdepthcheck": 93, "jsonmaxdocumentlength": 93, "20000000": [93, 97], "jsonmaxdocumentlengthcheck": 93, "jsonmaxobjectkeycount": 93, "jsonmaxobjectkeycountcheck": 93, "jsonmaxobjectkeylength": 93, "128": [93, 222, 314, 363, 375, 390, 405, 413, 442, 528, 563, 585, 654], "jsonmaxobjectkeylengthcheck": 93, "jsonmaxstringlength": 93, "1000000": [93, 119], "jsonmaxstringlengthcheck": 93, "as_value_expr_json_sql": 94, "as_value_type_json_sql": 94, "iskeyregex_json_sql": 94, "isvalueregex_json_sql": 94, "keyname_json_sql": 94, "as_value_expr_json_xss": 95, "json_xss": 95, "as_value_type_json_xss": 95, "iskeyregex_json_xss": 95, "isvalueregex_json_xss": 95, "keyname_json_xss": 95, "as_logexpress": 96, "happen": [96, 209, 602], "appfw": [96, 97, 109, 129, 531, 568, 591, 641, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "addcookieflag": 97, "add": [97, 117, 121, 222, 234, 244, 246, 247, 313, 323, 325, 326, 327, 328, 331, 333, 334, 336, 337, 342, 343, 344, 347, 379, 417, 419, 424, 427, 442, 488, 497, 498, 499, 500, 501, 504, 520, 536, 537, 538, 541, 542, 563, 595, 602, 629, 630, 645, 653, 655, 656, 666, 685, 716, 722, 742, 773, 792, 827, 833, 884, 885, 886, 887], "prevent": [97, 117, 207, 268, 360, 363, 383, 489, 564, 577, 595, 681, 696, 827, 833], "both": [97, 136, 143, 160, 162, 171, 172, 173, 175, 178, 180, 182, 183, 231, 234, 288, 314, 335, 375, 379, 442, 460, 461, 482, 487, 496, 528, 532, 560, 635, 644, 681, 682, 689, 716, 717, 736, 742, 746, 754, 757, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 825, 827, 832, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "archivenam": 97, "as_prof_bypass_list_en": 97, "as_prof_deny_list_en": 97, "augment": 97, "dure": [97, 119, 146, 151, 160, 206, 211, 222, 246, 327, 330, 333, 335, 343, 352, 363, 369, 379, 410, 417, 418, 475, 481, 482, 542, 600, 602, 635, 637, 661, 664, 682, 683, 689, 695, 696, 701, 706, 711, 713, 722, 755, 756, 825, 827, 833, 865], "blockkeywordact": 97, "statist": [97, 117, 352, 419, 596, 713, 827, 833], "bufferoverflowact": 97, "One": [97, 191, 205, 206, 207, 211, 212, 230, 323, 326, 401, 402, 419, 482, 587, 608, 667], "overflow": [97, 103, 641], "bufferoverflowmaxcookielength": 97, "longer": [97, 343, 535, 600], "4096": [97, 226, 488, 535, 536, 682, 689], "bufferoverflowmaxheaderlength": 97, "bufferoverflowmaxquerylength": 97, "65535": [97, 329, 535, 630], "bufferoverflowmaxtotalheaderlength": 97, "maxheaderlen": [97, 535], "httpprofil": 97, "bufferoverflowmaxurllength": 97, "1024": [97, 354, 549, 563, 568, 596], "canonicalizehtmlrespons": 97, "special": [97, 366, 367, 368, 369, 528, 532, 549, 642, 654, 689, 695, 706, 742], "ceflog": [97, 109], "cef": [97, 109], "checkrequesthead": 97, "well": [97, 143, 151, 482, 496, 528, 535, 713, 716], "clientipexpress": [97, 210], "cmdinjectionact": 97, "cmdinjectiongrammar": 97, "grammar": 97, "cmdinjectiontyp": 97, "cmdsplchar": 97, "char": 97, "cmdkeyword": 97, "cmdsplcharandkeyword": 97, "cmdsplcharorkeyword": 97, "anyon": 97, "contenttypeact": 97, "cookieconsistencyact": 97, "cookieencrypt": 97, "decrypt": [97, 148, 151, 528, 529, 568, 635, 674, 682, 689], "perman": [97, 827, 833], "decryptonli": 97, "encryptsessiononli": 97, "encryptal": 97, "cookiehijackingact": 97, "hijack": 97, "tlsv1": [97, 689, 695, 701, 706], "cookieproxi": 97, "sessiononli": 97, "cookiesamesiteattribut": 97, "cookietransform": 97, "browser": [97, 119, 147, 210, 268, 271, 272, 352, 536, 611, 612, 617, 618, 654, 664, 689, 695, 706, 794, 827, 833, 865], "possibli": 97, "them": [97, 109, 124, 126, 128, 130, 186, 215, 352, 489, 570, 587, 648, 650, 835], "caution": [97, 143, 314, 695, 706, 794], "sure": [97, 143, 314, 349, 442, 519, 541, 755], "regardless": [97, 109, 226, 314, 382, 405, 442, 467, 538, 689, 706], "creditcard": 97, "visa": 97, "mastercard": 97, "amex": 97, "jcb": 97, "dinersclub": 97, "creditcardact": 97, "creditcardmaxallow": 97, "appear": [97, 224, 442, 615, 681, 689, 695, 706, 827, 833, 837, 838], "serv": [97, 117, 222, 226, 288, 335, 340, 343, 375, 442], "creditcardxout": 97, "replac": [97, 141, 256, 333, 335, 343, 352, 366, 370, 482, 563, 588, 602, 615, 623, 624, 682, 736, 742, 746], "digit": [97, 160], "crosssitescriptingact": 97, "crosssitescriptingcheckcompleteurl": 97, "just": [97, 442, 534, 535, 717], "portion": [97, 162, 442, 754, 832], "crosssitescriptingtransformunsafehtml": 97, "danger": 97, "csrftagact": 97, "customset": 97, "defaultcharset": 97, "alreadi": [97, 232, 369, 488, 495, 573, 592, 617, 635, 637], "iso": [97, 124, 126, 128, 130, 528, 664], "8859": 97, "english": 97, "big5": 97, "chines": 97, "tradit": 97, "gb2312": 97, "simplifi": 97, "sji": 97, "japanes": 97, "shift": 97, "ji": 97, "euc": 97, "jp": [97, 211], "9": [97, 167, 264, 528, 532, 534, 535, 566, 573], "turkish": 97, "utf": [97, 591, 594, 682, 689], "8": [97, 167, 222, 233, 234, 314, 398, 399, 497, 498, 528, 542, 563, 564, 591, 594, 600, 672, 682, 684, 689, 693, 742], "unicod": [97, 682, 689], "kr": [97, 211], "korean": 97, "defaultfieldformatmaxlength": 97, "enter": [97, 146, 166, 288, 343, 363, 375, 442, 523, 536, 547, 563, 591, 594, 633, 657, 672, 683, 693, 742, 865], "defaultfieldformatminlength": 97, "zero": [97, 314, 335, 375, 390, 398, 399, 416, 417, 419, 442, 503, 532, 535, 536, 549, 552, 563, 565, 664, 682, 689, 695, 706, 716, 717], "defaultfieldformattyp": 97, "explicitli": [97, 363, 827, 833], "standard": [97, 234, 297, 521, 528, 615, 689, 695, 706, 827, 833, 865], "littl": 97, "further": [97, 109, 215, 268, 374, 376, 589, 611, 617, 776], "advanc": [97, 146, 153, 154, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 264, 417, 528, 586, 587, 689, 694, 695, 696, 697, 698, 699, 701, 706, 711, 729, 730, 731, 732, 733, 734, 735, 750, 751, 753, 757, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 833, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 871, 876, 877], "signific": 97, "heavili": 97, "cve": 97, "denyurlact": 97, "take": [97, 117, 147, 151, 222, 226, 233, 234, 247, 256, 288, 314, 326, 375, 379, 383, 417, 442, 523, 535, 564, 565, 587, 654, 717, 722, 742, 865], "over": [97, 160, 247, 288, 314, 344, 375, 379, 409, 417, 427, 442, 482, 549, 565, 568, 587, 602, 629, 630, 713, 789, 890], "even": [97, 288, 314, 335, 360, 375, 379, 406, 419, 442, 496, 529, 538, 563, 564, 647, 681, 689, 695, 696, 706, 716, 742, 827, 833, 865, 871], "would": [97, 105, 132, 141, 143, 151, 153, 160, 162, 191, 208, 288, 314, 360, 379, 442, 453, 523, 536, 542, 563, 587, 595, 716, 726, 754, 832, 865, 871], "otherwis": [97, 143, 234, 324, 370, 406, 442, 587, 615, 648, 649, 827, 833, 882, 886], "dosecurecreditcardlog": 97, "dynamiclearn": 97, "enableformtag": 97, "errorurl": [97, 210], "excludefileuploadfromcheck": 97, "exemptclosureurlsfromsecuritycheck": 97, "pass": [97, 105, 337, 386, 419, 523, 529, 535, 547, 650, 657, 661, 663, 664, 672, 682, 683, 689, 693, 755, 756, 827, 833], "closur": [97, 563], "fakeaccountdetect": 97, "fieldconsistencyact": 97, "fieldformatact": 97, "suggest": 97, "fileuploadmaxnum": 97, "per": [97, 103, 109, 117, 146, 205, 206, 208, 211, 213, 214, 335, 352, 375, 398, 399, 407, 419, 442, 487, 535, 542, 552, 562, 563, 564, 568, 682, 689, 713, 742, 746, 760, 761], "submiss": 97, "unlimit": [97, 523, 547, 549], "fileuploadtypesact": 97, "fileuploadtypeact": 97, "geolocationlog": [97, 109], "geo": [97, 109], "grpcaction": 97, "htmlerrorobject": 97, "htmlerrorstatuscod": 97, "code": [97, 141, 151, 207, 222, 239, 288, 314, 417, 442, 519, 522, 534, 608, 664, 671, 716, 865], "empti": [97, 160, 375, 529, 535, 608], "200": [97, 222, 246, 288, 314, 379, 419, 442, 542, 559, 596, 608], "htmlerrorstatusmessag": 97, "importprofilenam": 97, "updat": [97, 109, 118, 160, 206, 207, 208, 211, 212, 215, 263, 314, 321, 363, 406, 442, 535, 563, 564, 595, 641, 661, 717, 741, 772, 889], "infercontenttypexmlpayloadact": 97, "infer": [97, 151], "payload": [97, 398, 399, 403, 442, 482, 535, 547, 564, 600], "mismatch": [97, 143, 641, 689, 695, 706], "pleas": [97, 146, 151, 337, 419, 424, 535], "insertcookiesamesiteattribut": 97, "inspectcontenttyp": 97, "gwt": 97, "inspectquerycontenttyp": 97, "invalidpercenthandl": 97, "handl": [97, 147, 264, 268, 272, 288, 314, 335, 379, 442, 536, 612, 618, 689, 711, 773, 794, 838], "asp_mod": 97, "microsoft": [97, 134, 151, 297, 442, 609, 613, 827, 833], "asp": 97, "secure_mod": 97, "jsonblockkeywordact": 97, "jsoncmdinjectionact": 97, "jsoncmdinjectiongrammar": 97, "jsoncmdinjectiontyp": 97, "jsondosact": 97, "jsonerrorobject": 97, "jsonerrorstatuscod": 97, "jsonerrorstatusmessag": 97, "jsonsqlinjectionact": 97, "jsonsqlinjectiongrammar": 97, "jsonsqlinjectiontyp": 97, "sqlsplchar": 97, "sqlkeyword": 97, "sqlsplcharandkeyword": 97, "sqlsplcharorkeyword": 97, "jsonxssact": 97, "logeverypolicyhit": 97, "matchurlstr": 97, "multipleheaderact": 97, "multipl": [97, 142, 210, 230, 233, 234, 247, 314, 321, 331, 335, 340, 344, 351, 375, 419, 442, 467, 478, 487, 489, 504, 528, 531, 535, 542, 546, 557, 558, 563, 569, 571, 572, 582, 583, 584, 590, 602, 615, 623, 624, 644, 674, 689, 695, 701, 706, 789, 825, 827, 833, 865, 880, 881, 884, 885], "keeplast": 97, "keep": [97, 379, 482, 536, 564, 634, 635, 637, 695, 701, 706, 713], "optimizepartialreq": 97, "those": [97, 160, 335, 419, 442, 563, 602, 789], "backend": [97, 117, 288, 321, 335, 340, 383, 417, 514, 535, 568, 625, 633, 689, 695, 827], "most": [97, 151, 585, 630, 664, 713, 827, 833], "full": [97, 143, 222, 419, 442, 489, 523, 536, 568, 587, 664, 722, 742, 827, 833], "purg": [97, 716], "percentdecoderecurs": 97, "recurs": [97, 103, 332, 335, 442], "decod": [97, 535, 598, 600], "postbodylimit": [97, 641], "10gb": 97, "20mb": 97, "postbodylimitact": 97, "postbodylimitsignatur": 97, "http_post_bodi": 97, "could": [97, 716, 717], "impact": 97, "cpu": [97, 264, 395, 404, 574, 641, 682, 689, 695, 701, 706], "2048": 97, "protofileobject": 97, "refererheadercheck": 97, "came": [97, 288, 689], "outsid": [97, 499], "although": 97, "if_pres": 97, "alwaysexceptstarturl": 97, "alwaysexceptfirstrequest": 97, "relaxationrul": 97, "replaceurlstr": 97, "while": [97, 128, 129, 135, 151, 160, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 246, 275, 288, 314, 335, 363, 417, 442, 462, 467, 482, 535, 536, 541, 557, 558, 563, 591, 689, 695, 696, 706, 707, 729, 730, 731, 732, 733, 734, 735, 741, 752, 768, 815, 820, 827, 833, 882, 886], "requestcontenttyp": 97, "responsecontenttyp": 97, "restact": 97, "rfcprofil": 97, "rfc": [97, 124, 126, 128, 130, 222, 327, 442, 564, 682, 689], "semicolonfieldsepar": 97, "sessioncookienam": [97, 109, 210, 215], "31": [97, 109, 210, 215, 234, 247, 409, 419, 424, 538, 642, 644, 648, 650, 651, 789], "symbol": [97, 109, 117, 210, 215, 344, 375, 442, 760, 761, 789], "sessionlessfieldconsist": 97, "sessionless": [97, 442], "postonli": 97, "sessionlessurlclosur": 97, "less": [97, 206, 222, 226, 234, 246, 329, 330, 352, 363, 417, 519, 528, 532, 535, 547, 563, 566, 568], "sqlinjectionact": 97, "sqlinjectionchecksqlwildchar": 97, "wild": 97, "sqlinjectiongrammar": 97, "sqlinjectiononlycheckfieldswithsqlchar": 97, "without": [97, 109, 119, 138, 143, 147, 160, 162, 166, 210, 215, 223, 268, 271, 272, 288, 314, 360, 363, 377, 379, 382, 419, 421, 427, 442, 460, 461, 482, 489, 496, 523, 528, 535, 536, 542, 549, 563, 589, 605, 611, 612, 617, 618, 633, 717, 742, 755, 756, 776, 827, 833], "harmless": 97, "sqlinjectionparsecom": 97, "pars": [97, 103, 109, 512, 661, 749, 773, 797], "ansi": 97, "mozilla": 97, "style": [97, 124, 126, 128, 130], "checkal": 97, "ansinest": 97, "sqlinjectionruletyp": 97, "sqlinjectiontransformspecialchar": 97, "sinc": [97, 222, 496], "sqlinjectiontyp": 97, "starturlact": 97, "starturlclosur": 97, "convert": [97, 352, 354, 683, 684, 689, 695, 706], "chunk": 97, "atleast": [97, 742], "stripcom": 97, "strip": 97, "striphtmlcom": 97, "exclude_script_tag": 97, "stripxmlcom": 97, "atom": 97, "feed": 97, "blog": 97, "urldecoderequestcooki": 97, "usehtmlerrorobject": 97, "verboseloglevel": [97, 210], "verbos": [97, 210, 360, 760, 761], "patternpayload": 97, "patternpayloadhead": 97, "xmlattachmentact": 97, "xmldosact": 97, "xdo": 97, "xmlerrorobject": 97, "xmlerrorstatuscod": 97, "xmlerrorstatusmessag": 97, "xmlformatact": 97, "xmlsoapfaultact": 97, "soap": [97, 103, 105, 641], "fault": [97, 641], "xmlsqlinjectionact": 97, "xmlsqlinjectionchecksqlwildchar": 97, "xmlsqlinjectiononlycheckfieldswithsqlchar": 97, "xmlsqlinjectionparsecom": 97, "section": [97, 340, 535, 615, 664], "xmlsqlinjectiontyp": 97, "xmlvalidationact": 97, "xmlwsiaction": 97, "xmlxssaction": 97, "xout": 98, "as_express": 98, "maxmatchlength": 98, "isregex_sql": 99, "isvalueregex_sql": 99, "trust": [101, 132, 134, 141, 239, 577], "xmlattachmentcontenttyp": 102, "xmlattachmentcontenttypecheck": 102, "illeg": 102, "xmlmaxattachments": 102, "xmlmaxattachmentsizecheck": 102, "xmlblockdtd": 103, "dtd": 103, "expans": 103, "xmlblockexternalent": 103, "xxe": 103, "forc": [103, 160, 207, 222, 360, 377, 379, 382, 523, 549, 563, 573, 577, 595, 742, 758, 827, 833], "untrust": 103, "xmlblockpi": 103, "pi": [103, 536, 608], "instruct": 103, "xmlmaxattributenamelength": 103, "longest": [103, 314, 442], "xmlmaxattributenamelengthcheck": 103, "xmlmaxattribut": 103, "xmlmaxattributescheck": 103, "xmlmaxattributevaluelength": 103, "xmlmaxattributevaluelengthcheck": 103, "atribut": 103, "xmlmaxchardatalength": 103, "cdata": 103, "quantiti": 103, "unpars": 103, "xmlmaxchardatalengthcheck": 103, "xmlmaxelementchildren": 103, "children": [103, 363], "xmlmaxelementchildrencheck": 103, "xmlmaxelementdepth": 103, "xmlmaxelementdepthcheck": 103, "xmlmaxelementnamelength": 103, "expand": [103, 576], "xmlmaxelementnamelengthcheck": 103, "xmlmaxel": 103, "xmlmaxelementscheck": 103, "xmlmaxentityexpansiondepth": 103, "aganist": 103, "xmlmaxentityexpansiondepthcheck": 103, "xmlmaxentityexpans": 103, "xmlmaxentityexpansionscheck": 103, "xmlmaxfiles": 103, "xmlmaxfilesizecheck": 103, "xmlmaxnamespac": 103, "xmlmaxnamespacescheck": 103, "xmlmaxnamespaceurilength": 103, "uri": [103, 162, 417, 536, 657, 664, 754, 832], "xmlmaxnamespaceurilengthcheck": 103, "xmlmaxnod": 103, "xmlmaxnodescheck": 103, "xmlmaxsoaparrayrank": 103, "rank": [103, 525], "dimens": [103, 352], "xmlmaxsoaparrays": 103, "abus": 103, "xmlminfiles": 103, "xmlminfilesizecheck": 103, "min": [103, 151, 153, 160, 162, 417, 525, 567, 754, 832], "xmlsoaparraycheck": 103, "as_scan_location_xmlsql": 104, "isregex_xmlsql": 104, "fix": [104, 107, 160, 241, 442, 564, 568, 635, 637], "xmladditionalsoaphead": 105, "addtion": 105, "xmlendpointcheck": 105, "behaviour": [105, 574, 742, 827, 833, 865], "w": [105, 106, 211, 563, 564, 760, 761], "r": [105, 211, 405, 536, 608, 760, 761], "absolut": [105, 460, 461, 767], "mention": [105, 227, 234, 602, 647], "org": [105, 417, 461], "exampleservic": 105, "relaiv": 105, "hostnam": [105, 133, 143, 160, 226, 288, 323, 326, 417, 533, 582, 583, 736, 742, 746, 825], "rel": [105, 222, 289, 367, 368, 369, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 446, 447, 448, 449, 450, 451, 636, 637, 638, 767, 797, 882, 886], "xmlrequestschema": 105, "xmlresponseschema": 105, "xmlvalidaterespons": 105, "xmlvalidatesoapenvelop": 105, "evelop": 105, "xmlwsdl": 105, "comma": [106, 142, 160, 530, 595, 827, 833, 865], "relev": [106, 146, 340, 689, 699, 711], "r1140": 106, "r1141": 106, "as_scan_location_xmlxss": 107, "isregex_xmlxss": 107, "centralizedlearn": 109, "central": [109, 522], "clientiplogginghead": 109, "cookiepostencryptprefix": 109, "prepend": [109, 344], "defaultprofil": [109, 215, 682], "appfw_bypass": 109, "unmatch": [109, 215], "back": [109, 215, 234, 247, 256, 370, 379, 442, 682, 722, 741], "entitydecod": 109, "multibyt": 109, "half": [109, 226, 563, 564, 565], "width": [109, 352], "importsizelimit": 109, "cumul": 109, "134217728": 109, "learnratelimit": 109, "examin": 109, "drop": [109, 117, 147, 152, 205, 206, 207, 210, 211, 212, 268, 271, 272, 314, 325, 335, 337, 340, 363, 366, 375, 395, 404, 407, 419, 421, 442, 467, 496, 534, 535, 536, 557, 558, 563, 564, 568, 602, 611, 612, 617, 618, 635, 641, 648, 649, 682, 685, 689, 776, 882, 886], "abov": [109, 147, 154, 161, 206, 272, 288, 386, 418, 419, 424, 442, 530, 612, 618, 634, 635, 648, 711, 776, 782], "400": 109, "logmalformedreq": 109, "malform": 109, "doesn": 109, "malformedreqact": 109, "proxypassword": [109, 215, 607], "proxyport": [109, 215, 607], "aw": [109, 211, 215, 239], "8080": [109, 215], "proxyserv": [109, 215, 607], "proxyusernam": [109, 215, 607], "sessionlifetim": 109, "amount": [109, 222, 226, 246, 288, 351, 363, 417, 487, 563, 600, 645, 681, 682, 689, 835], "remain": [109, 363, 379, 442, 535, 539, 600, 689, 755, 756, 758, 827, 833, 882, 886], "continu": [109, 146, 222, 256, 268, 288, 314, 369, 375, 406, 417, 419, 442, 482, 563, 637, 689, 695, 706], "establish": [109, 135, 151, 375, 396, 417, 442, 482, 487, 489, 514, 535, 563, 564, 600, 604, 625, 682, 689, 695, 701, 706, 716, 792, 827, 833], "open": [109, 117, 366, 369, 496, 549, 559, 635, 637, 689, 706, 827, 833, 835], "sessionlimit": 109, "max_limit": 109, "reach": [109, 117, 225, 314, 335, 366, 383, 417, 419, 442, 496, 519, 554, 563, 589, 611, 617, 639, 827, 833, 889], "100000": [109, 234], "sessiontimeout": [109, 210, 215, 465, 496], "900": [109, 206, 716, 736, 742, 746], "signatureautoupd": [109, 215], "signatureurl": [109, 215], "download": [109, 215, 222, 245, 352, 602, 682, 689], "s3": [109, 215], "amazonaw": [109, 215], "nsappfwsignatur": 109, "signaturesmap": 109, "undefin": [109, 147, 152, 154, 161, 202, 227, 271, 272, 421, 573, 612, 617, 618, 682, 685, 776, 782], "condit": [109, 147, 152, 154, 161, 202, 271, 272, 363, 370, 419, 421, 472, 473, 482, 502, 535, 564, 611, 612, 617, 618, 641, 776, 782], "appfw_block": 109, "useconfigurablesecretkei": 109, "autoenablenewsignatur": 110, "merg": [110, 568, 689, 695, 706], "mergedefault": 110, "preservedefact": 110, "def": 110, "ruleid": 110, "sha1": [110, 160, 162, 532, 654, 664, 682, 754, 832], "vendortyp": 110, "third": [110, 442, 462, 525, 564, 580], "parti": [110, 134, 141, 153, 162, 580, 754, 758, 832, 835], "waf": 110, "snort": 110, "xslt": 110, "urlencodedformcontenttypevalu": 111, "xmlcontenttypevalu": 113, "apptemplatefilenam": 116, "appexpert": 116, "deploymentfilenam": 116, "altcontentpath": 117, "ac": 117, "altcontentsvcnam": 117, "customfil": 117, "delai": [117, 241, 247, 288, 363, 369, 525, 563, 564, 600, 633, 635, 637, 681, 682, 689, 695, 706, 882, 886], "microsecond": 117, "gather": 117, "lowest": [117, 243, 247, 314, 331, 333, 366, 375, 442, 630, 865], "dosact": 117, "under": [117, 206, 222, 246, 335, 370, 417, 424, 442, 602, 635, 664, 736, 746], "correspond": [117, 160, 186, 264, 314, 324, 335, 375, 410, 418, 442, 487, 523, 525, 527, 566, 568, 602, 716, 865], "mandatori": [117, 141, 151, 231, 275, 330, 418, 523, 536, 538, 557, 558, 646, 654, 656, 689, 695, 696, 702, 706, 707, 813], "simplerespons": 117, "hicrespons": 117, "dostrigexpress": 117, "maxconn": [117, 523, 547, 549], "argument": [117, 146, 264, 269, 275, 330, 417, 442, 529, 530, 536, 542, 547, 561, 563, 564, 574, 580, 605, 633, 646, 654, 736, 742, 746], "numretri": 117, "polqdepth": 117, "queu": [117, 222, 535, 639, 671, 682, 689], "increas": [117, 212, 351, 398, 419, 424, 442, 487, 535, 563, 564, 641, 648, 689, 706], "subsequ": [117, 375, 442, 467, 570, 595, 682, 827, 833], "until": [117, 206, 335, 340, 366, 417, 419, 442, 482, 489, 682, 882, 886], "again": [117, 206, 207, 208, 211, 212, 335, 340, 379, 716, 827, 833], "medium": [117, 525], "priqdepth": 117, "priorirti": 117, "qdepth": 117, "respondwith": [117, 608], "retryonreset": 117, "retryontimeout": 117, "millisec": 117, "upon": [117, 151, 222, 264, 360, 406, 586], "tcpprofil": 117, "l2": [117, 246, 288, 314, 406, 546], "l3": [117, 246, 546], "avgwaitingcli": 119, "averag": [119, 207, 417, 442, 641], "sit": 119, "dosattackthresh": 119, "mitig": [119, 207, 210, 212, 419, 424], "2000": [119, 314, 417, 442, 542], "maxaltrespbandwidth": 119, "sessionlif": 119, "window": [119, 160, 321, 398, 399, 417, 535, 563, 564, 713, 825, 827, 833], "onc": [119, 325, 335, 370, 427, 482, 535, 563, 682, 717, 741], "ifnum": [121, 221, 233, 234, 356, 357, 393, 454, 455, 457, 504, 523, 786, 787, 788, 880, 881, 884, 885], "slot": [121, 356, 357, 504, 786, 787, 788, 880, 881, 884, 885], "notat": [121, 233, 234, 314, 350, 356, 357, 442, 459, 504, 585, 786, 787, 788, 880, 881, 884, 885], "want": [121, 146, 186, 201, 218, 219, 233, 241, 257, 259, 288, 314, 344, 347, 356, 357, 359, 360, 366, 375, 389, 390, 400, 405, 409, 417, 419, 425, 426, 442, 470, 471, 475, 481, 485, 503, 504, 512, 513, 536, 537, 538, 542, 557, 558, 561, 609, 621, 623, 628, 629, 630, 633, 635, 637, 641, 642, 644, 645, 648, 649, 651, 653, 774, 779, 780, 790, 791], "mac": [121, 221, 234, 288, 359, 404, 406, 408, 417, 419, 442, 504, 549, 570, 584, 671, 827, 833, 865], "ownernod": [121, 356, 357, 358, 409, 488, 527, 533, 537, 538, 574, 643, 646, 882, 886], "owner": [121, 218, 219, 256, 363, 394, 403, 409, 537, 538, 621, 622, 623, 629, 630, 689, 706, 786, 787, 788, 790, 791, 882, 886], "td": [121, 186, 211, 218, 219, 288, 314, 359, 389, 390, 400, 405, 425, 426, 442, 467, 470, 471, 472, 473, 492, 495, 503, 504, 512, 537, 538, 557, 558, 569, 570, 571, 572, 588, 621, 623, 629, 630, 633, 635, 637, 648, 649, 790, 791], "becom": [121, 186, 211, 218, 219, 234, 246, 247, 256, 288, 314, 359, 375, 379, 389, 390, 400, 405, 425, 426, 427, 442, 470, 471, 472, 473, 503, 504, 512, 523, 537, 538, 557, 558, 621, 623, 629, 630, 633, 635, 637, 648, 649, 664, 755, 756, 758, 790, 791, 827, 833, 882, 886, 889], "vtep": [121, 221, 504], "reachabl": [121, 405, 495, 504, 505], "spoofvalid": 122, "spoof": [122, 210, 564, 827, 833], "out": [122, 221, 288, 314, 335, 369, 386, 406, 417, 464, 467, 487, 536, 563, 564, 583, 635, 637, 689, 706, 742, 827, 833, 865], "ag": [122, 211, 222, 335, 417], "previous": [122, 146, 221, 232, 325, 406, 419, 467, 827, 833], "expir": [122, 141, 221, 222, 330, 343, 369, 406, 417, 418, 557, 558, 573, 635, 637, 654, 661, 716, 865], "1200": 122, "bypasssafetycheck": [123, 608], "safeti": [123, 608], "unsaf": [123, 608], "loglevel": [123, 124, 126, 128, 130, 530, 724], "sever": [123, 288, 641, 647, 648], "logtonewnslog": 123, "nslog": [123, 124, 125, 126, 127, 417, 482], "stringbuilderexpr": [123, 615], "appflowexport": [124, 126, 128, 130], "contentinspectionlog": [124, 126, 128, 130], "dateformat": [124, 126, 128, 130], "date": [124, 126, 128, 130, 418, 654, 667, 689, 695, 706, 736, 742, 746], "mmddyyyi": [124, 126, 128, 130], "month": [124, 126, 128, 130, 726], "year": [124, 126, 128, 130, 726], "ddmmyyyi": [124, 126, 128, 130], "european": [124, 126, 128, 130], "yyyymmdd": [124, 126, 128, 130], "domainresolvenow": [124, 128, 633], "resolv": [124, 128, 245, 288, 332, 335, 340, 346, 417, 442, 633, 645, 716, 825], "domainresolveretri": [124, 128, 633, 645], "logfacil": [124, 126, 128, 130], "facil": [124, 126, 128, 130, 615], "3164": [124, 126, 128, 130], "7": [124, 126, 128, 130, 167, 231, 264, 330, 528, 535, 563], "local0": [124, 126, 128, 130], "local7": [124, 126, 128, 130], "local1": [124, 126, 128, 130], "local2": [124, 126, 128, 130], "local3": [124, 126, 128, 130], "local4": [124, 126, 128, 130], "local5": [124, 126, 128, 130], "local6": [124, 126, 128, 130], "serverdomainnam": [124, 128], "auditserv": 124, "mutual": [124, 128, 143, 158, 222, 269, 314, 347, 349, 360, 442, 587, 716], "exclus": [124, 128, 143, 158, 222, 269, 314, 347, 349, 360, 442, 587, 716], "sslintercept": [124, 126, 128, 129, 130, 531, 591, 689, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "intercept": [124, 126, 128, 288, 682, 685, 689, 690, 711, 825, 827, 833], "subscriberlog": [124, 126, 128, 130], "timezon": [124, 126, 128, 130, 523, 547, 722], "timestamp": [124, 126, 128, 130, 564, 722, 726], "gmt_time": [124, 126, 128, 130], "coordin": [124, 126, 128, 130, 222, 244, 247], "univers": [124, 126, 128, 130, 222, 664], "local_tim": [124, 126, 128, 130], "userdefinedauditlog": [124, 126, 128, 130], "ignor": [124, 126, 128, 130, 222, 225, 340, 375, 390, 395, 404, 417, 442, 503, 534, 536, 605, 671, 682, 689, 695, 706, 767], "meet": [124, 126, 128, 130, 528, 538], "criteria": [124, 126, 128, 130, 226, 324, 417, 615, 797, 834, 839], "info": [128, 487, 512, 547, 647, 724, 827, 833], "syslog": [128, 129, 130, 131, 245, 417, 482, 641, 721], "lbvservernam": 128, "servernam": [128, 143, 158, 268, 269, 366, 367, 369, 522, 540, 541, 561, 578, 635, 637, 638], "maxlogdatasizetohold": 128, "held": 128, "nsb": 128, "500": [128, 496, 535, 689, 695], "tcpprofilenam": [128, 288, 314, 442, 635, 637, 865], "whose": [128, 151, 153, 156, 160, 201, 209, 221, 222, 225, 232, 234, 243, 314, 352, 359, 366, 369, 375, 416, 417, 420, 442, 470, 471, 472, 473, 485, 502, 513, 537, 538, 575, 609, 621, 628, 635, 637, 706, 779, 780, 865, 890], "tune": [128, 407, 408], "wl": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "weblog": [129, 531, 535, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "sp": [129, 160, 162, 531, 591, 635, 637, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "surgeprotect": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "loadbalanc": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "contentswitch": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "cacheredirect": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "sc": [129, 211, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "sureconnect": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "cmpcntl": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "compressioncontrol": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "pq": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "priorityqueu": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "hdosp": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "httpdosprotect": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "globalserverloadbalanc": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ssloffload": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "cf": [129, 211, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "contentfilt": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ospf": [129, 531, 537, 538, 591, 629, 630, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ospfrout": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "rip": [129, 531, 538, 591, 629, 630, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "riprout": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "bgp": [129, 531, 538, 591, 629, 630, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "bgprout": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ipv6pt": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ipv6protocoltransl": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "applicationfirewal": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "nspush": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "netscalerpush": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "cloudbridg": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "isi": [129, 531, 591, 629, 630, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "isisrout": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ch": [129, 211, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "contentacceler": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "rise": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "largescalenat": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "rdpproxi": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "rep": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "forwardproxi": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "adaptivetcp": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ci": [129, 211, 269, 275, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "apigatewai": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ifnorm": 130, "interceptionn": 130, "certkeynam": [132, 186, 418, 656, 660, 696, 702, 707, 813, 865], "adf": [132, 442], "act": [132, 207, 223, 256, 335, 482, 563, 682], "serverurl": [132, 135, 139, 141, 166], "fulli": [132, 141, 288, 346, 442, 522, 540, 541, 578, 587, 602, 664, 682, 865], "qualifi": [132, 141, 222, 269, 346, 350, 442, 459, 462, 522, 540, 541, 568, 578, 586, 587, 593, 602, 664, 865], "authenticationdomain": [133, 186], "unspecifi": [133, 160, 162, 754, 832], "authenticationhost": [133, 314, 442], "authenticationlevel": 133, "authnvsnam": [133, 314, 442], "obtain": [134, 146, 151, 153, 160, 162, 199, 327, 333, 335, 340, 347, 375, 405, 417, 419, 442, 535, 563, 667, 717, 754, 758, 832, 835], "clientid": [134, 139, 141, 151, 153, 157, 199, 419, 424], "reli": [134, 141, 153, 162, 758, 835], "clientsecret": [134, 141, 151, 153, 157, 199], "pushservic": [134, 143], "refreshinterv": [134, 151, 153, 157], "50": [134, 153, 157, 264, 375, 442, 542], "servicekeynam": 134, "friendli": [134, 162, 754, 832], "comput": [134, 160, 162, 363, 383, 419, 532, 563, 654, 754, 832], "signaturealg": [134, 153, 160, 162, 754, 832], "rs256": [134, 151, 153], "tenantid": [134, 151, 199], "usual": [134, 151, 288, 482, 657, 664, 865], "tokenendpoint": [134, 151, 199], "vaultnam": 134, "portal": [134, 190, 199, 200, 819, 875], "secretkei": 135, "gatewai": [135, 166, 378, 417, 482, 523, 537, 538, 602, 629, 630, 792, 794, 825, 826, 827, 833, 834, 837, 838, 865], "sitekei": 135, "issuer": [136, 151, 153, 162, 654, 661, 664, 667, 682, 689], "certifc": 136, "twofactor": 136, "factor": [136, 146, 156, 160, 386, 442, 563, 564, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 889], "authenticationtyp": 138, "implement": [138, 151, 288, 366, 367, 368, 369, 375, 419, 427, 442, 528, 574], "connector": [138, 239], "citrixconnector": 138, "athena": [138, 141, 151], "exchang": [139, 151, 331, 363, 369, 370, 375, 417, 563, 635, 637, 641, 661, 689, 695, 701, 706], "passphras": [139, 330, 419, 424, 661], "deliv": [141, 331], "mail": [141, 143, 331, 661, 664, 667, 674], "destin": [141, 221, 222, 226, 234, 246, 288, 314, 359, 390, 397, 403, 405, 406, 408, 417, 419, 424, 425, 427, 442, 465, 467, 468, 475, 482, 489, 494, 495, 497, 498, 502, 523, 547, 557, 558, 570, 595, 630, 635, 639, 648, 716, 760, 761, 825, 827, 833, 865, 890], "smtp": [141, 207, 417], "like": [141, 563, 685, 726, 742, 813, 835], "25": [141, 264], "180": [141, 314, 363, 563, 600, 829], "emailid": 141, "csecexpr": 142, "hold": [142, 563, 716], "clientsecurityexpress": 142, "quarantinegroup": 142, "quarantin": 142, "alternateemailattr": 143, "alternat": 143, "attribute1": [143, 151, 160, 162, 167, 191, 754, 832], "attribute10": [143, 151, 160, 162, 167, 191, 754, 832], "attribute11": [143, 151, 160, 162, 167, 191, 754, 832], "attribute12": [143, 151, 160, 162, 167, 191, 754, 832], "attribute13": [143, 151, 160, 162, 167, 191, 754, 832], "attribute14": [143, 151, 160, 162, 167, 191, 754, 832], "attribute15": [143, 151, 160, 162, 167, 191, 754, 832], "attribute16": [143, 151, 160, 162, 167, 191, 754, 832], "attribute2": [143, 151, 160, 162, 167, 191, 754, 832], "attribute3": [143, 151, 160, 162, 167, 191, 754, 832], "attribute4": [143, 151, 160, 162, 167, 191, 754, 832], "attribute5": [143, 151, 160, 162, 167, 191, 754, 832], "attribute6": [143, 151, 160, 162, 167, 191, 754, 832], "attribute7": [143, 151, 160, 162, 167, 191, 754, 832], "attribute8": [143, 151, 160, 162, 167, 191, 754, 832], "attribute9": [143, 151, 160, 162, 167, 191, 754, 832], "preceed": [143, 160, 167], "trail": [143, 151, 160, 167, 314, 442], "127": [143, 151, 153, 160, 167, 568, 584, 646, 742, 825], "2047": [143, 160, 167], "primari": [143, 171, 172, 173, 175, 178, 180, 182, 183, 186, 288, 314, 343, 363, 375, 379, 442, 482, 487, 574, 641, 755, 756, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "secondari": [143, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 222, 225, 226, 343, 359, 379, 382, 389, 396, 417, 442, 482, 487, 529, 623, 641, 755, 756, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "cloudattribut": 143, "followreferr": 143, "referr": [143, 335, 340], "g1": 143, "direct": [143, 264, 288, 314, 375, 413, 417, 419, 442, 535, 827, 833], "Be": 143, "kbattribut": 143, "knowledgebasedauthent": 143, "kba": 143, "retriev": [143, 222, 610, 667], "preconfigur": 143, "answer": [143, 206, 340, 615, 761, 813], "knowledg": 143, "cn": [143, 211, 689, 695, 701], "ldaphostnam": 143, "validateservercert": 143, "maxldapreferr": 143, "mssrvrecordloc": 143, "mssrv": 143, "srv": [143, 341, 344, 633], "pertain": 143, "domainnam": [143, 310, 314, 337, 371, 372, 375], "_msdc": 143, "_ldap": 143, "_tcp": 143, "otpsecret": 143, "onetimepassword": 143, "referraldnslookup": 143, "lookup": [143, 226, 335, 344, 419, 664, 682, 717], "rec": 143, "requireus": 143, "usersearch": 143, "sshpublickei": 143, "ssh": [143, 245, 537, 538, 568, 742, 745], "publickei": [143, 330, 399], "rba": [143, 156, 523, 742], "signon": 143, "sub": [143, 520], "authenticationschema": 146, "read": [146, 330, 460, 461], "ui": [146, 156, 211, 591, 594, 827], "abl": [146, 654], "noschema": [146, 156], "loginschema": [146, 147, 156], "authenticationstrength": 146, "wai": [146, 153, 162, 223, 726], "passwdexpress": [146, 758, 835], "passwordcredentialindex": 146, "index": [146, 160, 167, 207, 556, 585, 587, 591, 667], "ssocredenti": [146, 755, 756, 827, 833], "singlesignon": [146, 758, 835], "usercredentialindex": 146, "userexpress": [146, 758, 835], "noop": [147, 325, 608, 611, 612, 615, 682, 685], "implicitli": [147, 529], "go": [147, 222, 246, 268, 360, 379, 417, 424, 442, 635, 654, 716], "close": [147, 241, 268, 272, 419, 496, 527, 536, 563, 564, 565, 612, 618, 633, 635, 637, 682, 689, 695, 701, 706, 758, 776, 827, 833, 865], "program": [147, 268, 272, 536, 612, 618], "resend": [147, 268, 271, 272, 363, 419, 421, 536, 611, 612, 617, 618, 671], "messagelog": [147, 152, 154, 161, 202, 272, 337, 388, 421, 612, 618, 769, 776, 782, 839], "select": [147, 151, 162, 226, 247, 256, 269, 288, 314, 324, 344, 360, 363, 373, 375, 395, 398, 399, 403, 404, 410, 442, 446, 459, 502, 520, 535, 563, 564, 602, 611, 615, 617, 623, 624, 667, 672, 674, 693, 713, 754, 827, 832, 833, 865], "loginschemapolici": 147, "choos": [147, 160, 161, 262, 265, 400, 502, 512, 514, 535, 563, 578, 621, 623, 625, 644, 646, 651, 652, 653, 662, 769, 789, 827, 833], "represnt": 148, "domainus": 148, "domainuserpasswd": 148, "ntlmpath": 148, "ntlm": [148, 755, 756, 827, 833], "fallback": 148, "ou": 148, "organiz": 148, "unit": [148, 234, 330, 375, 417, 442, 458, 521, 567, 664, 726, 789], "allowedalgorithm": 151, "multivalu": 151, "verif": [151, 610, 654, 681, 682, 829], "hs256": 151, "rs512": [151, 153], "audienc": [151, 153, 160, 162, 754, 832], "typic": [151, 153, 160, 162, 343, 349, 442, 499, 608, 664, 689, 695, 706, 754, 832], "recipi": [151, 153, 754, 832], "authorizationendpoint": 151, "unauthent": [151, 865], "oauthact": 151, "certendpoint": 151, "jwk": 151, "jwt": 151, "certfilepath": 151, "granttyp": 151, "grant": [151, 199, 523, 547], "graphendpoint": 151, "graph": 151, "mobil": [151, 160, 207, 210, 827, 833, 865], "em": [151, 689], "idtokendecryptendpoint": 151, "idtoken": [151, 153, 157], "introspecturl": 151, "metadataurl": [151, 160, 162], "known": [151, 207, 482, 496, 577, 588, 654, 682, 689], "oauthtyp": 151, "intun": 151, "pkce": 151, "1440": [151, 453], "resourceuri": 151, "skewtim": [151, 153, 160, 162, 754, 832], "clock": [151, 160, 681], "skew": [151, 160], "incom": [151, 160, 162, 222, 226, 268, 288, 314, 375, 390, 419, 424, 442, 465, 468, 503, 536, 557, 558, 563, 570, 635, 827, 833], "ie": [151, 153, 160, 162, 211, 754, 832], "20min": [151, 153, 160, 162, 754, 832], "tokenendpointauthmethod": 151, "variant": 151, "client_secret_post": 151, "client_secret_jwt": 151, "private_key_jwt": 151, "client_secret_bas": 151, "userinfourl": 151, "oauthidppolici": 152, "value_expr": 153, "name2": [153, 749, 797], "value2_expr": 153, "configservic": 153, "decid": [153, 162, 226, 288, 442, 536, 682, 711, 792, 827, 833], "right": [153, 162, 520, 615, 650], "relai": [153, 162, 499], "is_member_of": [153, 162], "default_auth_group": [153, 162], "encrypttoken": 153, "redirecturl": [153, 288, 314, 889], "relyingpartymetadataurl": 153, "rp": 153, "jwks_uri": 153, "public": [153, 160, 207, 288, 330, 349, 366, 367, 368, 369, 370, 389, 399, 403, 578, 623, 624, 664, 689, 693, 695, 701, 706, 742, 745, 865], "sendpassword": [153, 162, 754, 832], "openid": 153, "signatureservic": [153, 162, 832], "offload": [153, 349, 564, 689, 695, 706, 865], "durat": [153, 206, 222, 417, 458, 535, 563, 564, 587], "nextfactor": [155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 729, 730, 731, 732, 733, 734, 735], "intervent": 156, "aaatm_req": 156, "rba_req": 156, "customerid": [157, 239], "remot": [158, 160, 221, 268, 297, 360, 363, 370, 394, 403, 418, 536, 600, 602, 641, 696, 758, 792, 827, 833, 835], "targetlbvserv": [158, 293, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319], "ssl_tcp": [158, 241, 269, 297, 314, 366, 369, 375, 442, 568, 635, 637, 689], "artifactresolutionserviceurl": 160, "artifact": [160, 162], "resolut": [160, 222, 332, 335, 582, 583, 633, 681, 792, 827, 833], "assert": [160, 162, 754, 832], "239": 160, "attributeconsumingserviceindex": 160, "serviceprovid": [160, 162, 754, 832], "authnctxclassref": 160, "internetprotocol": 160, "internetprotocolpassword": 160, "acquir": [160, 526], "mobileonefactorunregist": 160, "explicit": [160, 534, 564], "interact": [160, 314, 689, 695, 706, 717], "mobiletwofactorunregist": 160, "registr": [160, 494], "pin": [160, 222], "mobileonefactorcontract": 160, "reflect": [160, 265, 653, 769], "contract": 160, "procedur": 160, "mobiletwofactorcontract": 160, "unprotect": 160, "passwordprotectedtransport": 160, "previoussess": 160, "had": [160, 442], "past": [160, 418, 563], "x509": [160, 661, 663, 689], "509": [160, 654, 657, 664], "pgp": 160, "spki": 160, "xmldsig": 160, "smartcard": [160, 833, 865], "smartcardpki": 160, "mechan": [160, 162, 314, 442, 563, 564, 827, 833, 835], "softwarepki": 160, "softwar": [160, 417, 605, 682, 825], "telephoni": [160, 297], "provis": [160, 482], "line": [160, 217, 288, 314, 336, 337, 488, 530, 595, 608, 672, 682, 683, 693, 736, 742, 746, 789, 890], "telephon": 160, "adsl": 160, "nomadtelephoni": 160, "roam": 160, "personaltelephoni": 160, "authenticatedtelephoni": 160, "secureremotepassword": 160, "tlsclient": 160, "timesynctoken": 160, "synchron": [160, 245, 359, 360, 378, 379, 382, 389, 482, 487, 578, 623], "customauthnctxclassref": 160, "samlact": [160, 162], "samlact1": 160, "class1": 160, "loa1": 160, "class2": 160, "loa2": 160, "digestmethod": [160, 162, 664, 754, 832], "digest": [160, 162, 532, 654, 664, 682, 754, 755, 756, 827, 832, 833], "enforceusernam": 160, "edit": [160, 263, 521, 827, 833], "forceauthn": 160, "logoutbind": [160, 162], "logouturl": 160, "singlelogout": 160, "logoutrequest": 160, "cleanup": [160, 288, 565, 568], "metadatarefreshinterv": [160, 162], "3600": [160, 162, 215, 323, 325, 326, 327, 328, 330, 331, 333, 334, 342, 343, 344, 347, 366, 563, 568, 599], "fill": [160, 264, 582, 583], "samlidpcertnam": [160, 162], "samlredirecturl": 160, "relaystaterul": [160, 754, 832], "actionnam": [160, 324, 325, 337], "relayst": [160, 754, 832], "eq": [160, 337, 417, 568], "contains_ani": 160, "patset_nam": 160, "samlsp": 160, "regex_match": 160, "re": [160, 211, 229, 267, 269, 274, 417, 442, 528, 532, 535, 573, 577, 586, 587, 593, 602, 615, 689], "requestedauthncontext": 160, "statement": [160, 352], "exact": [160, 191, 288, 536, 587, 595], "better": [160, 419, 424, 482, 602, 682, 689], "samlacsindex": 160, "samlbind": [160, 162], "metadateurl": 160, "samlissuernam": [160, 162, 754, 832], "samlrejectunsignedassert": 160, "reject": [160, 162, 635, 637], "unsign": [160, 162, 289, 573], "samlsigningcertnam": [160, 754, 832], "samltwofactor": 160, "samluserfield": 160, "sendthumbprint": 160, "thumbprint": 160, "statecheck": 160, "req": [160, 229, 267, 274, 586, 587, 608, 615, 714], "storesamlrespons": 160, "life": [160, 505, 579, 689], "samlidppolici": 161, "acsurlrul": 162, "come": [162, 223, 247, 256, 288, 314, 547, 736, 746, 882, 886], "assertionconsumerserviceurl": [162, 754, 832], "attribute10expr": [162, 754, 832], "attribute10format": [162, 754, 832], "attribute10friendlynam": [162, 754, 832], "attribute11expr": [162, 754, 832], "attribute11format": [162, 754, 832], "attribute11friendlynam": [162, 754, 832], "attribute12expr": [162, 754, 832], "attribute12format": [162, 754, 832], "attribute12friendlynam": [162, 754, 832], "attribute13expr": [162, 754, 832], "attribute13format": [162, 754, 832], "attribute13friendlynam": [162, 754, 832], "attribute14expr": [162, 754, 832], "attribute14format": [162, 754, 832], "attribute14friendlynam": [162, 754, 832], "attribute15expr": [162, 754, 832], "attribute15format": [162, 754, 832], "attribute15friendlynam": [162, 754, 832], "attribute16expr": [162, 754, 832], "attribute16format": [162, 754, 832], "attribute16friendlynam": [162, 754, 832], "attribute1expr": [162, 754, 832], "attribute1format": [162, 754, 832], "attribute1friendlynam": [162, 754, 832], "attribute2expr": [162, 754, 832], "attribute2format": [162, 754, 832], "attribute2friendlynam": [162, 754, 832], "attribute3expr": [162, 754, 832], "attribute3format": [162, 754, 832], "attribute3friendlynam": [162, 754, 832], "attribute4expr": [162, 754, 832], "attribute4format": [162, 754, 832], "attribute4friendlynam": [162, 754, 832], "attribute5expr": [162, 754, 832], "attribute5format": [162, 754, 832], "attribute5friendlynam": [162, 754, 832], "attribute6expr": [162, 754, 832], "attribute6format": [162, 754, 832], "attribute6friendlynam": [162, 754, 832], "attribute7expr": [162, 754, 832], "attribute7format": [162, 754, 832], "attribute7friendlynam": [162, 754, 832], "attribute8expr": [162, 754, 832], "attribute8format": [162, 754, 832], "attribute8friendlynam": [162, 754, 832], "attribute9expr": [162, 754, 832], "attribute9format": [162, 754, 832], "attribute9friendlynam": [162, 754, 832], "encryptassert": [162, 754, 832], "encryptionalgorithm": [162, 754, 832], "des3": [162, 528, 529, 672, 683, 693, 754, 832], "aes128": [162, 398, 399, 528, 529, 754, 832], "aes192": [162, 398, 399, 528, 529, 754, 832], "aes256": [162, 398, 399, 528, 529, 672, 683, 693, 754, 832], "keytransportalg": 162, "v1_5": 162, "rsa_oaep": 162, "samlidp": 162, "nameidexpr": [162, 754, 832], "nameidentifi": [162, 754, 832], "nameidformat": [162, 754, 832], "x509subjectnam": [162, 754, 832], "windowsdomainqualifiednam": [162, 754, 832], "transient": [162, 754, 832], "rejectunsignedrequest": 162, "arriv": [162, 222, 288, 417, 535, 547, 588, 682, 689], "samlresposn": 162, "samlsigningcertvers": 162, "samlspcertnam": [162, 754, 832], "authnrequest": 162, "samlspcertvers": 162, "serviceproviderid": 162, "scenario": [162, 349, 405, 442, 574], "signassert": [162, 754, 832], "splogouturl": 162, "11": [167, 222, 587], "12": [167, 417, 577, 683, 736, 742, 746], "14": [167, 234, 391, 789], "15": [167, 206, 222, 535, 595], "16": [167, 227, 336, 489, 497, 498, 528, 532, 575, 577, 582, 583, 827, 833], "y": [167, 392, 442, 467, 568], "res_default": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 224, 263, 270, 329, 353, 616, 753, 768, 779, 780, 815, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 876, 877, 879], "ica_request": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "othertcp_request": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "aaa_request": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "aaa_respons": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "groupextract": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "bindind": [169, 170, 171, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189], "multifactor": [171, 172, 173, 175, 178, 180, 182, 183], "afterward": [171, 172, 173, 175, 178, 180, 182, 183], "tertiari": [172, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "succeed": [172, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "appflowlog": [186, 288, 314, 366, 369, 375, 442, 635, 637, 713, 865], "ipv46": [186, 288, 314, 442, 865], "renam": [186, 267, 314, 776, 782], "consecut": [186, 288, 314, 398, 399, 417, 689, 695, 706, 865], "servicetyp": [186, 241, 243, 288, 314, 366, 369, 375, 442, 635, 637, 865], "theme": [190, 819, 827, 875], "webauth": [191, 192], "fullreqexpr": [191, 587], "manual": [191, 234, 405, 442, 536, 587, 825], "scheme": [191, 534, 587], "successrul": 191, "resvserv": [194, 224, 228, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 614, 616, 620, 763, 778, 784], "actionscal": 196, "quiettim": 196, "scale_up": 196, "scale_down": 196, "vmdestroygraceperiod": 196, "vm": 196, "kept": [196, 396, 442, 482, 487, 534, 535, 595], "inact": [196, 234, 363, 565, 726, 736, 742, 746, 758], "destroi": 196, "apikei": 198, "sharedsecret": 198, "cloudstack": 198, "insid": [199, 442, 608, 661, 664, 895], "microsoftonlin": 199, "tenant": [199, 237], "vaultresourc": 199, "net": [199, 200, 512, 689, 695, 701, 706], "azurevaultnam": 200, "test": [200, 417, 595], "keyvault": [200, 678], "bot_bind_com": [205, 206, 207, 208, 209, 211, 212, 213, 214], "bot_blacklist": 205, "32": [205, 214, 215, 314, 390, 405, 413, 442, 456, 528, 532, 582, 671], "bot_blacklist_act": 205, "bot_blacklist_en": 205, "disbal": 205, "black": [205, 210], "bot_blacklist_typ": 205, "ipv6_subnet": [205, 214], "bot_blacklist_valu": 205, "logmessag": [205, 206, 207, 208, 209, 211, 212, 213, 214], "bot_captcha_act": 206, "challeng": 206, "bot_captcha_en": 206, "bot_captcha_url": 206, "fingerprint": [206, 210, 215, 654], "captcharesourc": 206, "graceperiod": 206, "successfulli": [206, 360, 528], "muteperiod": 206, "try": 206, "silent": [206, 496, 535, 564, 600], "mute": 206, "requestsizelimit": 206, "avoid": [206, 602, 681, 689, 695, 701, 706, 716, 742], "ddo": [206, 207], "8000": 206, "retryattempt": 206, "solv": 206, "waittim": 206, "bot_iprep_act": 207, "combind": 207, "bot_iprep_en": 207, "repuat": 207, "bot_ipreput": 207, "reuput": 207, "ip_bas": 207, "malici": 207, "botnet": 207, "infect": 207, "zombi": [207, 563, 565], "master": [207, 360, 363, 413, 568, 689, 882, 886, 888], "spam_sourc": 207, "spam": 207, "forum": 207, "scanner": 207, "reconnaiss": 207, "probe": [207, 288, 314, 369, 417, 442, 453, 538, 563, 564, 600, 635, 637, 760, 761], "brute": [207, 577], "flood": [207, 335, 563], "malwar": 207, "webroot": 207, "score": [207, 525], "contact": [207, 231, 343, 646, 664], "phish": 207, "kind": [207, 350, 528, 532], "fraud": 207, "click": [207, 263], "game": 207, "anonym": [207, 667], "onion": 207, "aka": 207, "tor": 207, "darknet": 207, "mobile_threat": 207, "harm": 207, "windows_exploit": 207, "offer": 207, "distributig": 207, "shell": [207, 537, 538], "rootkit": 207, "worm": 207, "virus": 207, "web_attack": 207, "ifram": 207, "tor_proxi": 207, "exit": [207, 582, 583], "cloud_aw": 207, "amazon": 207, "cloud_gcp": 207, "googl": [207, 595, 742], "platform": [207, 234, 521, 682, 689, 695, 701, 706], "cloud_azur": 207, "cloud_oracl": 207, "oracl": [207, 241, 297, 314, 366, 369, 375, 417, 423, 442, 635, 637], "cloud_ibm": 207, "ibm": 207, "cloud_salesforc": 207, "salesforc": 207, "bot_km_detection_en": 208, "keyboard": [208, 210, 602, 827, 833], "mous": [208, 210, 827, 833], "bot_km_expression_nam": 208, "bot_km_expression_valu": 208, "vlaue": 208, "bot_log_expression_en": 209, "bot_log_expression_nam": 209, "bot_log_expression_valu": 209, "bot_enable_black_list": 210, "bot_enable_ip_reput": 210, "bot_enable_rate_limit": 210, "bot_enable_tp": 210, "bot_enable_white_list": 210, "white": [210, 214, 535], "devicefingerprint": 210, "devicefingerprintact": 210, "devicefingerprintmobil": 210, "android": [210, 827, 833], "io": [210, 211, 827, 833], "dfprequestlimit": [210, 215], "headlessbrowserdetect": 210, "headless": 210, "kmdetect": 210, "kmeventspostbodylimit": 210, "km": [210, 211], "kmjavascriptnam": 210, "sessioncooki": [210, 215], "signaturemultipleuseragentheaderact": 210, "seen": [210, 349, 396, 535], "checklast": 210, "signaturenouseragentheaderact": 210, "spoofedreqact": 210, "good": [210, 525], "trapact": 210, "trapurl": 210, "whenev": [210, 222, 340, 527], "http_full_head": 210, "bot_rate_limit_act": 211, "bot_rate_limit_en": 211, "bot_rate_limit_typ": 211, "source_ip": [211, 212], "geoloc": [211, 212], "countri": [211, 459, 461, 462, 664], "ja3_fingerprint": 211, "bot_rate_limit_url": 211, "bot_ratelimit": 211, "cookienam": [211, 314, 413, 442], "countrycod": 211, "af": 211, "ax": 211, "al": 211, "dz": 211, "ao": 211, "ai": 211, "aq": 211, "am": [211, 222], "au": 211, "AT": 211, "az": 211, "b": [211, 289, 582, 615, 651], "bh": 211, "bd": 211, "bb": 211, "BY": 211, "BE": 211, "bz": 211, "bj": 211, "bm": 211, "bt": 211, "bo": 211, "bq": 211, "ba": 211, "bw": [211, 641], "br": [211, 497, 498, 499], "bn": 211, "bg": 211, "bf": 211, "bi": 211, "kh": 211, "cm": [211, 482], "cv": 211, "ky": 211, "cl": 211, "cx": 211, "cc": 211, "co": [211, 442], "cg": [211, 238], "cd": 211, "ck": 211, "hr": 211, "cu": 211, "cw": 211, "cy": 211, "cz": 211, "dk": 211, "dj": 211, "dm": 211, "ec": [211, 335, 340, 345, 375], "sv": 211, "gq": 211, "er": 211, "ee": 211, "et": [211, 726, 754], "fk": 211, "fo": 211, "fj": 211, "fr": [211, 546], "gf": 211, "pf": [211, 398, 399, 641], "tf": 211, "ga": 211, "gm": 211, "ge": [211, 568], "de": [211, 528, 529, 650, 672, 683, 693], "gh": 211, "gi": 211, "gr": 211, "gl": 211, "gd": 211, "gp": 211, "gu": 211, "gt": [211, 568], "gg": 211, "gn": 211, "gw": 211, "gy": 211, "ht": 211, "hm": 211, "va": 211, "hn": 211, "hk": 211, "hu": 211, "IN": [211, 641], "ir": 211, "iq": 211, "im": 211, "il": 211, "IT": 211, "jm": 211, "je": 211, "jo": 211, "kz": 211, "ke": 211, "ki": 211, "xk": 211, "kw": 211, "kg": 211, "la": [211, 233, 234, 409, 417], "lv": 211, "l": [211, 392, 456, 523], "lr": [211, 233, 234, 525], "ly": 211, "li": 211, "lt": [211, 568], "lu": 211, "mo": 211, "mk": 211, "mg": 211, "mw": 211, "mv": 211, "ml": 211, "mt": 211, "mh": 211, "mq": 211, "mr": 211, "mu": 211, "yt": 211, "fm": 211, "md": 211, "mc": 211, "mn": 211, "me": [211, 442], "m": [211, 442, 525, 542, 582, 615, 760, 761], "ma": 211, "mz": 211, "mm": 211, "na": [211, 417, 459], "nr": 211, "np": 211, "nl": 211, "nc": 211, "nz": 211, "ni": 211, "ne": [211, 568], "nu": 211, "nf": [211, 568], "kp": 211, "mp": [211, 564], "om": 211, "pk": 211, "pw": 211, "p": [211, 582, 583, 760, 761], "pa": [211, 424], "pg": 211, "py": 211, "pe": [211, 406, 523, 547, 568, 574, 725, 726], "ph": 211, "pn": 211, "pl": 211, "pt": 211, "pr": 211, "qa": 211, "ro": 211, "ru": 211, "rw": 211, "bl": 211, "sh": 211, "kn": 211, "lc": 211, "mf": 211, "pm": [211, 222], "vc": 211, "sm": [211, 833], "st": [211, 689, 706], "sa": [211, 398, 399], "sn": 211, "sl": 211, "sg": 211, "sx": 211, "sk": 211, "si": 211, "sb": 211, "sza": 211, "ss": 211, "lk": 211, "sd": [211, 588], "sr": 211, "sj": 211, "sz": 211, "se": 211, "sy": [211, 528, 532, 573], "tw": 211, "tj": 211, "tz": 211, "th": 211, "tg": 211, "tk": 211, "TO": 211, "tt": 211, "tn": 211, "tr": 211, "tc": 211, "tv": 211, "ug": 211, "ua": 211, "ae": [211, 398, 399, 528, 650, 672, 683, 693], "gb": 211, "um": 211, "uz": 211, "vu": 211, "ve": 211, "vn": 211, "vg": 211, "vi": 211, "wf": 211, "eh": 211, "zm": 211, "zw": 211, "timeslic": [211, 542], "thei": [211, 222, 325, 331, 369, 379, 405, 459, 535, 542, 637, 755, 756, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "1000": [211, 234, 405, 535, 542, 563, 564, 781, 888], "bot_tp": 212, "bot_tps_act": 212, "mitigi": 212, "bot_tps_en": 212, "bot_tps_typ": 212, "request_url": 212, "bot_trap_url": 213, "bot_trap_url_insertion_en": 213, "bot_whitelist": 214, "bot_whitelist_en": 214, "bot_whitelist_typ": 214, "bot_whitelist_valu": 214, "defaultnonintrusiveprofil": 215, "nonintrus": 215, "iprep": 215, "cronjob": 215, "24": [215, 442, 528, 568, 667, 736, 742, 746], "hour": [215, 330, 539, 641, 667, 726, 736, 742, 746, 772], "bot_bypass": 215, "bot_stat": 215, "bot_log": 215, "javascriptnam": 215, "nsbotsignatur": 215, "botsignaturemap": 215, "trapurlautogener": 215, "trapurlinterv": 215, "trapurllength": 215, "dynamicrout": [217, 407, 537, 538, 789, 890], "ipv6dynamicrout": [217, 407, 789, 890], "work": [217, 288, 332, 347, 452, 453, 482, 523, 568, 789, 827, 833, 890], "vtysh": [217, 789, 890], "ownergroup": [218, 219, 394, 403, 621, 622, 623, 629, 630, 786, 787, 788, 790, 791], "default_ng": [218, 219, 247, 394, 403, 621, 622, 623, 629, 630, 786, 787, 788, 790, 791], "bridgeag": 221, "devicevlan": 221, "multicast": [221, 505], "muticast": 221, "vni": [221, 890, 891, 892, 893], "ethernet": [221, 234, 403, 406, 789, 890], "resid": [221, 246, 379, 523], "absexpiri": 222, "00": [222, 884, 885, 886, 887], "contentgroup": [222, 227], "23": [222, 336], "18": 222, "absexpirygmt": 222, "gmt": 222, "alwaysevalpolici": 222, "prefetch": [222, 226], "cachecontrol": 222, "expireatlastbyt": 222, "receipt": [222, 264, 563, 564], "flashcach": 222, "flash": [222, 641], "poll": [222, 241, 578, 716], "pet": 222, "heurexpiryparam": 222, "heurist": [222, 264, 776], "hitparam": 222, "parameter": 222, "hitselector": 222, "abstract": 222, "pixl": [222, 230], "flush": [222, 314, 335, 340, 341, 345, 366, 369, 420, 442, 535, 547, 561, 563, 564, 635, 637, 717, 742, 865], "restrict": [222, 234, 667, 742, 827, 833], "ignoreparamvaluecas": 222, "compar": [222, 226, 523, 630], "ignorereloadreq": 222, "reload": 222, "guard": 222, "compliant": [222, 535], "behavior": [222, 335, 340, 403, 406, 442, 537, 538, 574, 582, 865], "ignorereqcachinghdr": 222, "pragma": 222, "insertag": 222, "calcul": [222, 234, 363, 387, 390, 416, 417, 458, 503, 535, 563, 564, 713], "insertetag": 222, "etag": [222, 535], "With": [222, 264, 314, 369, 419, 635, 637, 647, 689, 695, 696, 701, 706, 742, 825, 827, 833, 865], "repeat": [222, 419, 835], "insertvia": 222, "invalparam": 222, "invalselector": 222, "invalrestrictedtohost": 222, "lazydnsresolv": 222, "matchcooki": 222, "maxress": 222, "80": [222, 225, 288, 442, 496, 523, 547, 568, 827, 833], "memlimit": [222, 226, 351, 487, 562], "effect": [222, 288, 314, 335, 375, 413, 442, 573, 574, 615, 673, 689, 706, 882, 886], "65536": [222, 489], "minhit": 222, "minress": [222, 264], "persistha": 222, "pressur": 222, "polleverytim": 222, "That": [222, 234, 359, 389], "stale": [222, 755, 756, 758, 827, 833], "prefetchmaxpend": [222, 226], "outstand": [222, 226, 241, 563, 564, 637], "prefetchperiod": 222, "prefetchperiodmillisec": 222, "millisecond": [222, 246, 363, 375, 379, 405, 417, 427, 505, 535, 542, 552, 563, 564, 589, 600, 611, 617, 681, 682, 689, 888], "quickaborts": 222, "quick": 222, "abort": 222, "4194303": 222, "relexpiri": 222, "relexpirymillisec": 222, "removecooki": 222, "selectorvalu": 222, "tosecondari": [222, 225], "mysql": [222, 241, 297, 314, 366, 369, 375, 417, 423, 424, 442, 609, 613, 635, 637], "mssql": [222, 241, 297, 314, 366, 369, 375, 417, 423, 424, 442, 613, 635, 637], "weaknegrelexpiri": 222, "neg": [222, 227, 335, 340, 341, 716], "307": 222, "403": 222, "404": [222, 608], "410": [222, 682], "weakposrelexpiri": 222, "399": 222, "similar": [222, 234, 442, 718], "involv": [223, 442], "precededefrul": 224, "res_overrid": [224, 263, 270, 329, 353, 419, 424, 616, 753, 768, 779, 780, 815], "httpquic_res_overrid": [224, 263, 616], "httpquic_res_default": [224, 263, 616], "httpstatu": 225, "ignoremarkerobject": 225, "marker": 225, "yet": [225, 369, 564, 637], "includenotreadyobject": 225, "onto": 225, "enablebypass": 226, "nocach": [226, 227], "affect": [226, 574], "enablehaobjpersist": 226, "never": [226, 827, 833, 865], "maxpostlen": 226, "practic": [226, 528], "verifyus": 226, "unless": [226, 232, 288, 463, 464, 587, 648], "rogu": 226, "hostname_and_ip": 226, "may_cach": 227, "cachabl": 227, "may_nocach": 227, "inval": 227, "invalgroup": 227, "invalobject": 227, "storeingroup": 227, "mssql_req": 229, "mssql_re": 229, "mysql_req": 229, "mysql_r": 229, "httpquic_r": [229, 267, 619], "selectornam": [230, 542, 543, 713], "hbcustominterv": 231, "heartbeat": [231, 234, 246, 379, 539, 641], "proxyauthservic": 231, "proxymod": [231, 349], "first_boot": 232, "boot": [232, 526], "new_password": 232, "demo_netscal": [232, 463, 464], "gather_fact": [232, 463, 464], "task": [232, 463, 464, 827, 833], "v2": [232, 398, 399, 417, 463, 464, 512, 547, 642, 648, 649], "delegate_to": [232, 463, 464], "localhost": [232, 245, 463, 464], "netscaler_nsip": [232, 463, 464], "netscaler_nitro_protocol": [232, 463, 464], "netscaler_validate_cert": [232, 463, 464], "netscaler_save_config": [232, 463, 464], "nsroot": [232, 244, 463, 464, 523, 742], "strongpassword": [232, 742], "newverystrongpassword": 232, "cla": [233, 234], "redund": [233, 234], "gbp": [233, 234, 521], "svmcmd": 233, "svm": 233, "fire": 233, "bandwidthhigh": 234, "mbp": [234, 521], "greater": [234, 335, 344, 365, 366, 386, 390, 417, 419, 442, 446, 503, 532, 535, 641, 681, 742], "bandwidthnorm": 234, "normal": [234, 370, 379, 559, 587, 641, 760, 761, 827, 833], "exceed": [234, 375, 386, 442, 496, 641, 713], "conndistr": 234, "flowctl": 234, "frame": [234, 535, 599, 600], "claus": 234, "ieee": 234, "802": [234, 523, 786, 787, 788], "congest": [234, 525, 564, 600], "paus": 234, "peer": [234, 379, 398, 399, 404, 406, 409, 496, 553, 563, 564, 568, 580, 610, 689, 695, 701, 706, 754, 832, 888], "achiev": 234, "rx": [234, 568], "tx": [234, 568], "rxtx": 234, "haheartbeat": 234, "hamonitor": 234, "mon": 234, "ifalia": 234, "alia": [234, 328, 665, 666, 689, 691, 692, 697, 698, 703, 704, 709, 710, 827, 833], "readabl": 234, "lamac": 234, "don": 234, "randomli": 234, "linkredund": 234, "lag": 234, "lrminthroughput": 234, "throughput": [234, 641], "met": [234, 641, 834, 839], "subchannel": 234, "divid": [234, 563, 564, 865], "standbi": 234, "fall": [234, 370, 623, 624, 641], "below": [234, 288, 366, 375, 417, 442, 528, 563, 641, 667], "macdistr": 234, "initit": 234, "measur": [234, 417], "crc": [234, 789], "transmit": [234, 563, 568, 600, 789], "1500": 234, "lesser": 234, "jumbo": [234, 613], "9216": 234, "howev": [234, 335, 340, 379, 417, 418, 512, 635, 689, 695, 706, 713, 789], "backplan": [234, 247, 641], "78": 234, "plane": [234, 403, 717], "1578": 234, "whatev": 234, "9138": 234, "possibl": [234, 264, 288, 379, 462, 630, 632, 666, 685, 689, 695, 701, 706, 711, 724, 775, 837, 838], "speed": [234, 264, 641, 865], "25000": 234, "40000": 234, "50000": 234, "tagal": 234, "1q": [234, 523, 786, 787, 788], "nativ": 234, "trunk": 234, "deprec": [234, 337, 487, 574], "creator": 235, "rolearn": 236, "iam": 236, "role": [236, 742], "arn": 236, "applicationid": 237, "applicationsecret": 237, "tenantidentifi": 237, "allowdtls12": 238, "dtls1": [238, 695, 706], "allowedudtvers": 238, "udt": 238, "edt": [238, 387], "v4": 238, "v5": 238, "v7": 238, "blockonallowedngstktprof": 238, "createdbi": 238, "allowedngstktprofil": 238, "csvserverticketingdecoupl": 238, "decoupl": 238, "activationcod": [239, 522], "connectorresid": 239, "onprem": [239, 522], "cpx": 239, "controllerfqdn": [239, 242], "sdproxi": 239, "controllerport": 239, "stage": [239, 865], "product": [239, 417, 521], "dev": [239, 568], "instanceid": 239, "resourceloc": [239, 242], "nonftumod": 240, "ftu": 240, "azurepollperiod": 241, "azuretagnam": 241, "azuretagvalu": 241, "boundservicegroupsvctyp": 241, "ftp": [241, 297, 314, 366, 369, 375, 389, 392, 417, 442, 482, 523, 537, 538, 547, 568, 595, 635, 637, 827, 833], "ssl_bridg": [241, 366, 369, 375, 442, 568, 635, 637], "nntp": [241, 288, 366, 369, 375, 417, 442, 568, 635, 637], "rpcsvr": [241, 568, 635, 637], "adn": [241, 323, 326, 327, 328, 331, 333, 334, 340, 342, 343, 344, 347, 349, 370, 568, 635, 637], "rtsp": [241, 297, 314, 366, 369, 375, 417, 442, 479, 482, 490, 491, 535, 568, 635, 637], "dhcpra": [241, 442, 568, 635, 637], "sip_udp": [241, 297, 314, 366, 369, 375, 423, 442, 494, 568, 613, 635, 637], "sip_tcp": [241, 297, 314, 366, 369, 375, 423, 442, 494, 613, 635, 637], "sip_ssl": [241, 314, 366, 369, 375, 442, 635, 637], "dns_tcp": [241, 297, 314, 442, 635, 637], "adns_tcp": [241, 635, 637], "mongo": [241, 314, 442, 635, 637], "mongo_tl": [241, 314, 442, 635, 637], "radiuslisten": [241, 635, 637], "ssl_diamet": [241, 297, 314, 442, 635, 637, 716], "tftp": [241, 389, 442, 482, 635, 637], "syslogtcp": [241, 442, 635, 637], "syslogudp": [241, 442, 635, 637], "ssl_fix": [241, 442, 568, 635, 637], "user_tcp": [241, 442, 635, 637], "user_ssl_tcp": [241, 442, 635, 637], "logstream_ssl": [241, 635, 637], "mqtt": [241, 297, 314, 417, 419, 423, 424, 442, 613, 615, 619, 635, 637], "mqtt_tl": [241, 297, 314, 442, 635, 637], "quic_bridg": [241, 423, 442, 613, 635, 637], "grace": [241, 369, 539, 633, 635, 637], "shutdown": [241, 369, 635, 637], "servicegroupnam": [241, 367, 368, 369, 373, 375, 417, 445, 446, 636, 637, 638, 700, 701, 702, 703, 704], "ssl_push": [241, 314, 442, 889], "azuretag": 241, "vservernam": [241, 412, 452, 705, 706, 707, 708, 709, 710, 711, 837, 838], "vsvrbindsvcport": 241, "subnetresourcelocationmap": 242, "listenpolici": [243, 288, 314, 442, 865], "listenprior": [243, 288, 314, 442, 865], "101": [243, 288, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 314, 315, 316, 317, 318, 319, 442, 587, 865], "clip": [244, 370, 527, 537, 538, 574, 646, 648], "cco": [244, 641], "var": [245, 460, 461, 463, 464, 667, 678], "bookmark": [245, 378, 755, 756, 827, 833, 837, 838], "nstemplat": 245, "rc": [245, 378], "conf": [245, 378, 382, 523, 741], "inetd": 245, "httpd": 245, "sshd_config": 245, "enckei": 245, "nslw": 245, "bin": 245, "krb5": 245, "lib": 245, "likewis": 245, "wi": [245, 417], "tomcat": 245, "webapp": 245, "catalina": 245, "java_hom": 245, "jre": 245, "locdb": [245, 460, 461], "misc": [245, 378], "all_plus_misc": [245, 378], "krb": [245, 378], "app_catalog": [245, 378], "all_minus_misc": [245, 378], "backplanebasedview": 246, "bkplane": 246, "clid": 246, "clusterproxyarp": 246, "deadinterv": [246, 379, 888], "down": [246, 247, 256, 288, 314, 363, 366, 369, 370, 371, 375, 379, 417, 419, 442, 496, 527, 537, 538, 563, 564, 595, 602, 633, 635, 637, 716, 865, 882, 886, 888], "hellointerv": [246, 379, 888], "msec": [246, 417, 567], "dfdretainl2param": 246, "ext": 246, "steer": [246, 256, 359, 424, 442, 515, 516, 635], "health": [246, 288, 314, 363, 366, 369, 370, 375, 379, 417, 442, 538, 634, 635, 637, 641, 889], "inc": [246, 379], "nodegroup": [246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260], "transit": [246, 314, 366, 369, 375, 417, 442, 635, 637], "preemption": [246, 882, 886], "preempt": [246, 247], "spare": 246, "processloc": [246, 359, 424, 442, 635], "quorumtyp": 246, "quorum": [246, 641], "major": [246, 482, 539, 641, 648], "onlin": 246, "retainconnectionsonclust": [246, 442], "retain": [246, 389, 406, 419, 442], "join": [246, 442, 563, 608, 742], "passiv": [246, 247, 288, 314, 368, 442, 537, 538, 563, 634, 636, 865], "syncstatusstrictmod": [246, 379], "accordingli": [246, 314, 442], "tupl": [247, 335, 408, 419, 442, 865], "clearnodegroupconfig": 247, "prefer": [247, 262, 333, 366, 370, 375, 379, 410, 442, 578, 579, 629, 630], "goe": [247, 256, 363, 442, 527, 827, 833, 882, 886], "elect": [247, 882, 886], "tunnelmod": 247, "prempt": 256, "rejoin": 256, "ownership": [256, 349], "till": [256, 398, 535, 716], "pick": [256, 406, 654], "addvaryhead": [262, 264], "vari": [262, 264, 409, 538], "intermedi": [262, 264, 657], "cmptype": 262, "gzip": [262, 264], "nocompress": 262, "deltatyp": 262, "delta": [262, 264], "perurl": 262, "perpolici": 262, "correl": [262, 652], "varyheadervalu": [262, 264], "polic": 263, "drag": 263, "cmpbypasspct": 264, "cmplevel": 264, "best": [264, 528, 563], "bestspe": 264, "bestcompress": 264, "cmponpush": [264, 535], "quantum": [264, 682, 689], "accumul": [264, 681], "externalcach": 264, "heurexpiri": 264, "basefil": 264, "heurexpiryhistwt": 264, "weightag": 264, "histor": 264, "ratio": 264, "give": [264, 419, 424], "75": [264, 354], "heurexpirythr": 264, "multipli": [264, 419, 458, 563, 564], "125": 264, "smallest": 264, "policytyp": 264, "quantums": [264, 682, 689], "57344": 264, "servercmp": 264, "resact": 265, "icapprofilenam": 268, "ifserverdown": 268, "noinspect": [268, 271, 272], "contentisnpect": 268, "resum": [268, 396, 442, 482, 487, 682, 689], "remoteservic": 268, "1344": [268, 269], "modif": [268, 288, 335, 523, 547], "inlineinspect": [268, 275], "outgo": [268, 288, 314, 375, 406, 442, 547, 582, 583, 760, 761, 893], "intrus": [268, 442], "mirror": [268, 275, 379, 482], "clone": [268, 275], "captur": [268, 568], "Not": [269, 343, 419, 535, 586, 587, 590, 592, 593, 595, 608, 773], "sensit": [269, 586, 587, 590, 592, 593, 595, 742, 773], "xp": [269, 528, 532, 573, 586, 587, 593, 615], "reserv": [269, 351, 487, 528, 532, 538, 542, 573, 586, 587, 593, 682, 890], "enumer": [269, 586, 587, 593, 827, 833], "dataset": [269, 528, 532, 573, 584, 585, 586, 587, 590, 593, 595, 615], "stringmap": [269, 528, 532, 573, 586, 587], "resultexpr": [269, 587], "istag": 269, "returntyp": [269, 587], "treat": [269, 314, 363, 538, 566, 587, 629, 630, 719], "num": [269, 587], "bool": [269, 587], "notifi": [271, 363, 386, 398, 399, 419, 421, 611, 617, 682, 689, 695, 701, 706], "There": [272, 288, 528, 532, 574, 612, 618, 682, 689], "suspend": [273, 620], "egressinterfac": 275, "egress": 275, "egressvlan": 275, "ingressinterfac": 275, "ingress": 275, "ingressvlan": [275, 554], "targetvserv": [278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 293, 296, 313], "revers": [278, 279, 280, 281, 282, 283, 285, 286, 288, 290, 291, 292, 314, 342, 417, 442, 588, 635, 637, 827, 833], "csw": [284, 289], "backendssl": 288, "backupvserv": [288, 314, 375, 442, 889], "unavail": [288, 314, 335, 427, 442, 635, 637, 742, 889], "cachetyp": [288, 635, 637], "transpar": [288, 417, 442, 564, 635, 637, 689, 825, 827, 833], "cacheabl": [288, 314, 442, 635, 637, 889], "wherea": [288, 383], "hdx": [288, 835], "cachevserv": 288, "clttimeout": [288, 314, 366, 369, 442, 563, 635, 637, 889], "idl": [288, 314, 366, 369, 375, 442, 453, 465, 487, 490, 494, 496, 534, 535, 563, 564, 565, 600, 635, 637, 716, 717, 742, 829, 889], "destinationvserv": 288, "disableprimaryondown": [288, 314, 375, 442], "disallowserviceaccess": 288, "dnsvservernam": [288, 332, 827, 833], "downstateflush": [288, 314, 366, 369, 442, 635, 637, 865], "ghost": 288, "httpprofilenam": [288, 314, 442, 635, 637, 865], "icmpvsrrespons": [288, 314, 442, 865], "criterion": [288, 865], "asterisk": [288, 664], "wildcard": [288, 419, 462, 495, 563, 664], "l2conn": [288, 314, 408, 442, 467, 865], "obsolet": 288, "onpolicymatch": 288, "originusip": 288, "probeport": [288, 314, 442], "monitr": [288, 314, 442], "probeprotocol": [288, 314, 442], "healthcheck": [288, 314, 442, 716], "probesuccessresponsecod": [288, 314, 442], "ok": [288, 314, 335, 442, 608], "reus": [288, 467, 534, 535, 536, 573, 689, 695, 701, 706], "rhistat": [288, 314, 442, 537, 538, 865], "hostrout": [288, 314, 537, 538, 865], "sopersistencetimeout": [288, 314, 375, 442, 889], "sothreshold": [288, 314, 375, 442, 889], "dynamicconnect": [288, 314, 375, 442, 889], "kbp": [288, 314, 369, 542, 549, 635, 637, 781, 785], "srcipexpr": 288, "tcpprobeport": [288, 314, 442], "useoriginipportforcach": 288, "useportrang": 288, "dialog": [288, 336, 337, 366, 442, 512, 635, 689, 695, 706], "box": [288, 336, 337, 366, 442, 512, 602, 635, 689, 695, 706], "ut": 289, "incr": 289, "ement": 289, "targetvserverexpr": 293, "stateupd": [294, 314], "cspolicylabeltyp": 297, "subtyp": 297, "unencrypt": 297, "multimedia": [297, 602], "internet": [297, 519, 827, 833], "voip": 297, "real": [297, 314, 442, 535, 713], "deliveri": [297, 417], "audio": [297, 383, 602], "video": [297, 602, 775, 776, 777, 781, 782, 783, 785], "media": 297, "dial": 297, "mqtt_jumbo_req": [299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 374, 376, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 596], "v": [299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 315, 316, 317, 318, 319, 582, 760, 761], "cs1": [299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 312, 313, 315, 316, 317, 318, 319, 320], "pol1": [299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 315, 316, 317, 318, 319], "lb1": [299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 313, 315, 316, 317, 318, 319], "backupip": [310, 314, 371, 375], "cookiedomain": [310, 314, 413], "cookietimeout": [310, 314, 366, 371, 375], "live": [310, 314, 323, 325, 326, 327, 328, 330, 331, 333, 334, 335, 342, 343, 344, 347, 371, 372, 375, 547], "ttl": [310, 314, 323, 325, 326, 327, 328, 330, 331, 333, 334, 335, 342, 343, 344, 347, 366, 371, 372, 375, 419, 538, 547, 557, 558, 636, 637, 638, 645, 716, 761], "sitedomainttl": [310, 314, 371, 375], "gslb1": [312, 320], "vpn1": [312, 320], "authn401": [314, 442], "401": [314, 442], "authnprofil": [314, 442, 865], "backuppersistencetimeout": [314, 413, 442], "casesensit": 314, "120": [314, 330, 427, 490, 494, 496, 565, 580, 671, 706], "perist": [314, 413, 442], "dbprofilenam": [314, 442], "dnsprofilenam": [314, 325, 332, 340, 442, 635], "dnsrecordtyp": [314, 375], "aaaa": [314, 335, 341, 375, 417, 442, 615, 633], "httpsredirecturl": [314, 442], "redirectfromport": [314, 442], "insertvserveripport": [314, 442], "vip": [314, 379, 389, 406, 442, 463, 464, 537, 538, 663, 689, 882, 886], "vipaddr": [314, 442], "translat": [314, 366, 367, 368, 369, 389, 390, 405, 442, 485, 499, 502, 503, 568, 633, 742], "v6tov4map": [314, 442], "ipmask": [314, 442], "dot": [314, 350, 442, 459], "decim": [314, 442, 459, 713], "lead": [314, 335, 358, 363, 389, 403, 442, 554], "octet": [314, 442, 564], "240": [314, 442, 539], "bit": [314, 330, 335, 363, 375, 390, 405, 417, 419, 442, 498, 499, 528, 564, 573, 585, 635, 637, 654, 670, 683, 689, 693, 695, 706], "former": [314, 442], "latter": [314, 442], "ippattern": [314, 442], "198": [314, 442, 505], "51": [314, 442], "20": [314, 386, 406, 419, 442, 532, 535, 542, 567, 573, 600, 615, 742], "96": [314, 390, 405, 442, 499], "111": [314, 442, 568], "254": [314, 409, 442], "vs1": [314, 442], "vs2": [314, 442], "224": [314, 442], "extent": [314, 442, 667], "mssqlserververs": [314, 442], "70": [314, 417, 442], "2000sp1": [314, 417, 442], "2005": [314, 417, 442, 497, 498], "2008": [314, 417, 442], "2008r2": [314, 417, 442], "2012": [314, 417, 442], "2014": [314, 417, 442], "mysqlcharacterset": [314, 442], "mysqlprotocolvers": [314, 442], "mysqlservercap": [314, 442], "capabl": [314, 417, 442, 564, 639], "41613": 314, "mysqlserververs": [314, 442], "oracleserververs": [314, 442], "10g": [314, 442], "11g": [314, 442], "persistencebackup": [314, 413, 442], "sourceip": [314, 375, 397, 413, 442], "persistenceid": [314, 375], "persistencetyp": [314, 375, 413, 442], "cookieinsert": [314, 413, 442], "sslsession": [314, 442], "persistmask": [314, 375, 413, 442], "pushlabel": [314, 442], "inlin": [314, 352, 354, 417], "pushmulticli": [314, 442], "pushvserv": [314, 442, 889], "face": [314, 889], "quicprofilenam": [314, 442], "absorb": [314, 442], "redirectportrewrit": [314, 442, 689, 695, 706], "rtspnat": [314, 442], "sobackupact": [314, 375, 442], "usabl": [314, 375, 442], "somethod": [314, 375, 442, 889], "divert": 314, "sopersist": [314, 375, 442, 889], "maintain": [314, 375, 379, 442, 496, 535, 596, 657], "updateonbackendupd": 314, "targettyp": 314, "v6persistmasklen": [314, 375, 413, 442], "viphead": [314, 442], "conmultiplex": [321, 534, 535], "enablecachingconmuxoff": 321, "multiplex": [321, 535], "interpretqueri": 321, "databas": [321, 322, 417, 424, 442, 458, 460, 461, 487, 716, 717, 724, 726], "ecssubnet": [323, 326, 327, 328, 331, 333, 334, 342, 343, 344, 345, 347], "ipv6address": [323, 537, 633], "36000": [323, 326, 327, 328, 331, 333, 334, 342, 343, 344, 347], "authorit": [323, 326, 327, 328, 331, 333, 334, 335, 340, 342, 343, 344, 347, 349], "excluderul": 324, "elimin": 324, "mappedrul": 324, "synthesi": 324, "rr": [324, 442], "discard": [324, 458, 600, 713], "actiontyp": 325, "viewnam": [325, 337, 348, 364, 366], "gslbprefloc": 325, "cache_bypass": 325, "rewrite_respons": 325, "preferredloclist": [325, 337], "recordid": [327, 333, 347], "removedbi": 327, "OR": [327, 333], "issuwild": 327, "iodef": 327, "valuestr": 327, "aliasnam": [328, 570, 789], "canon": [328, 366], "canonicalnam": 328, "rsasha1": 330, "rsasha256": 330, "rsasha512": 330, "filenameprefix": 330, "signer": 330, "d": [330, 485, 492, 495, 639, 736, 742, 746], "produc": [330, 417, 528, 681], "publish": [330, 865], "keysiz": [330, 528], "512": 330, "keytyp": [330, 674, 717], "ksk": 330, "keysigningkei": 330, "zsk": 330, "zonesigningkei": 330, "notificationperiod": [330, 661], "privatekei": [330, 399], "units1": [330, 417], "units2": [330, 417], "zonenam": [330, 349], "pref": 331, "stub": 332, "udp_tcp": 332, "accur": [333, 366, 713], "regexp": 333, "substitut": 333, "nameserv": [334, 636, 637, 638], "cacheecszeroprefix": 335, "scope": [335, 419, 424, 537, 573, 667], "Such": [335, 496, 865], "ti": 335, "cachehitbypass": 335, "cachenoexpir": 335, "frozen": 335, "cacherecord": [335, 340], "dns64timeout": 335, "dnsrootreferr": 335, "root": [335, 610, 657, 797], "unrel": 335, "blank": [335, 336, 337, 531, 546, 764, 769], "dnssec": [335, 349], "edns0": 335, "opt": [335, 536, 678], "ecsmaxsubnet": 335, "edn": [335, 340, 375], "constraint": [335, 379], "maxcaches": 335, "megabyt": [335, 549, 562, 682], "maxnegativecaches": 335, "maxnegcachettl": 335, "nxdonain": 335, "nodata": [335, 341], "604800": [335, 579], "maxpipelin": 335, "clientip": [335, 419, 564], "maxttl": 335, "maxudppackets": 335, "1280": [335, 390, 503], "minttl": 335, "namelookupprior": 335, "win": [335, 827, 833, 865], "nxdomainratelimitthreshold": 335, "nxdomain": [335, 341], "breach": [335, 368, 634, 636, 713], "got": [335, 363], "resolutionord": 335, "routin": 335, "onlyaqueri": 335, "onlyaaaaqueri": 335, "athenaaaaqueri": 335, "aaaathenaqueri": 335, "splitpktqueryprocess": 335, "split": [335, 347, 496, 827, 833], "in_sub": 336, "34": 336, "dns_default_act_drop": 337, "dns_default_act_cachebypass": 337, "cachebypass": 337, "preferredloc": [337, 459], "prefloclist": 337, "dns_req": [339, 619], "dns_re": [339, 619], "cacheecsrespons": 340, "cachenegativerespons": 340, "dnsanswerseclog": 340, "dnserrorlog": 340, "encount": 340, "dnsextendedlog": 340, "dnsquerylog": 340, "dropmultiqueryrequest": 340, "nocod": 340, "negrectyp": 341, "proxyrecord": 341, "rrsig": 341, "nsec": [341, 349], "reversedomain": 342, "represent": [342, 442, 884, 885, 886, 887], "addr": [342, 563], "arpa": 342, "whom": 343, "domainadmin": 343, "week": [343, 667], "originserv": 343, "serial": [343, 519, 654, 657, 667, 678], "transfer": [343, 375, 389, 537, 538, 827, 833, 865], "convent": 344, "awar": [344, 487], "_sip": 344, "_udp": 344, "aid": 344, "six": [347, 417], "dnssecoffload": 349, "own": [349, 370, 389, 403, 405, 406, 413, 442, 488, 538, 623, 624, 657], "subset": 349, "endpointkind": 350, "endpointlabelsjson": 350, "16k": 350, "endpointmetadata": 350, "structur": [350, 667], "frontend": [350, 568, 689], "endpointnam": 350, "2mb": [351, 487], "reduc": [351, 352, 354, 487, 534, 535, 563, 681, 682, 882, 886], "cachemaxag": 352, "maxag": [352, 689, 706], "convertimporttolink": 352, "css": [352, 354, 794], "csscombin": 352, "cssimginlin": 352, "small": [352, 682, 689, 827, 833], "2kb": 352, "background": 352, "cssinlin": 352, "main": [352, 657, 664, 889], "cssminifi": 352, "whitespac": 352, "csss": 352, "cssmovetohead": 352, "move": [352, 363, 369, 637, 689, 695, 706, 713], "head": [352, 417, 664, 827], "dnsshard": 352, "domainshard": 352, "htmlminifi": 352, "imggiftopng": 352, "gif": 352, "png": 352, "imginlin": 352, "imglazyload": 352, "scroll": 352, "imgshrinktoattrib": 352, "shrink": 352, "height": 352, "img": 352, "imgtojpegxr": 352, "jpeg": [352, 354], "jxr": 352, "imgtowebp": 352, "webp": 352, "jpgoptim": 352, "jsinlin": 352, "jsminifi": 352, "jsmovetoend": 352, "pageextendcach": 352, "cssinlinethress": 354, "imginlinethress": 354, "covert": 354, "jpegqualityperc": 354, "qualiti": [354, 525], "jsinlinethress": 354, "acl6nam": [359, 472, 502, 621], "aclnam": [359, 473, 557, 558, 623, 628], "connfailov": [359, 389, 396, 442, 623], "processor": 359, "sourceroutecach": 359, "da": 359, "slave": 360, "preview": [360, 536], "output": [360, 528, 582, 583, 602, 683, 684, 760, 761], "analyz": 360, "forcesync": 360, "nowarn": 360, "suppress": [360, 523, 582], "confirm": [360, 377, 382, 405, 523, 776], "autom": 360, "interrupt": [360, 589, 611, 617], "saveconfig": [360, 523], "particip": 360, "automaticconfigsync": 363, "dropldnsreq": 363, "round": [363, 370, 375, 395, 404, 407, 419, 442, 496, 563, 595, 623, 624, 689, 695, 706], "trip": [363, 370, 375, 689, 706], "rtt": [363, 370, 375, 525, 689, 706], "gslbconfigsyncmonitor": 363, "rsync": 363, "gslbsvcstatedelaytim": 363, "mep": [363, 370, 375, 641], "gslbsyncinterv": 363, "duartion": 363, "gslbsynclocfil": 363, "gslbsyncmod": 363, "incrementalsync": 363, "fullsync": 363, "gslbsyncsaveconfigcommand": 363, "ldnsentrytimeout": 363, "ldnsmask": 363, "ldnsprobeord": 363, "mepkeepalivetimeout": 363, "rtttoler": 363, "toler": [363, 375, 535], "newli": [363, 419], "old": [363, 489, 673, 682, 741, 742], "variat": [363, 417], "neglig": 363, "svcstatelearningtim": 363, "child": [363, 370, 442], "phase": 363, "adopt": 363, "honour": 363, "learnt": [363, 512], "nolbact": [363, 410, 419, 421], "decis": [363, 366, 368, 375, 383, 410, 419, 421, 442, 446, 634, 635, 636, 637, 682], "v6ldnsmasklen": 363, "servicenam": [364, 365, 366, 372, 375, 417, 442, 445, 446, 694, 695, 696, 697, 698, 699], "viewip": [364, 366], "predetermin": [364, 366, 442], "monitor_nam": [365, 368, 634, 636], "monstat": [365, 368, 634, 636], "contribut": [365, 366, 634, 635], "cip": [366, 369, 523, 547, 635, 637], "ciphead": [366, 369, 523, 547, 635, 637], "cnameentri": 366, "hashid": [366, 367, 368, 369, 635, 636, 637, 638], "healthmonitor": [366, 369, 635, 637], "maxbandwidth": [366, 369, 542, 549, 635, 637], "consumpt": [366, 713], "maxclient": [366, 369, 523, 547, 635, 637, 641], "monitor_name_svc": [366, 369, 635, 637], "monthreshold": [366, 369, 635, 637], "sum": [366, 369, 375, 442, 635, 637], "naptrdomainttl": 366, "naptrord": 366, "naptrprefer": 366, "naptrreplac": 366, "naptrservic": 366, "publicip": [366, 367, 368, 369, 370, 389], "publicport": [366, 367, 368, 369], "gslbsvc": 366, "sitenam": [366, 369, 370], "sitepersist": [366, 369, 419, 424], "connectionproxi": [366, 369], "httpredirect": [366, 369], "siteprefix": [366, 367, 368, 369], "concaten": [366, 367, 368, 369, 442], "unset": [366, 367, 368, 369, 379, 442, 530, 615, 667], "svrtimeout": [366, 369, 419, 635, 637], "serviceitem": [367, 368, 369], "autodelayedtrof": [369, 637], "movement": [369, 637], "trof": [369, 417, 442, 637], "fresh": [369, 637, 681, 689, 695, 701, 706], "dup_weight": [369, 637], "shut": [369, 633, 635, 637], "includememb": [369, 637], "alloc": [369, 467, 482, 489, 496, 519, 549, 575, 635, 637, 641], "backupparentlist": 370, "gsb": 370, "metricexchang": 370, "robin": [370, 375, 395, 404, 407, 419, 442, 623, 624], "proxim": [370, 375, 442, 459], "least": [370, 417, 442, 537, 538, 573, 643, 647, 882, 886], "naptrreplacementsuffix": 370, "nwmetricexchang": 370, "variou": [370, 405, 657, 664], "parentsit": 370, "topologi": [370, 408], "publicclip": 370, "behind": [370, 417], "sessionexchang": 370, "five": [370, 714], "siteipaddress": 370, "mip": [370, 379, 389, 404, 417, 523, 538, 637, 648], "sitetyp": 370, "triggermonitor": 370, "mepdown": 370, "mepdown_svcdown": 370, "situat": 370, "backupipflag": 371, "cookie_domain": [371, 375], "cookie_domainflag": 371, "o": [374, 376], "bank": [374, 376, 587], "ahead": [374, 376], "backuplbmethod": [375, 442], "roundrobin": [375, 442], "leastconnect": [375, 442], "leastresponsetim": [375, 442], "sourceiphash": [375, 419, 424, 442], "leastbandwidth": [375, 442], "leastpacket": [375, 442], "staticproxim": [375, 442], "customload": [375, 442], "backupsessiontimeout": 375, "considereffectivest": 375, "state_onli": 375, "disregard": 375, "abil": 375, "dynamicweight": 375, "servicecount": 375, "serviceweight": 375, "ecsaddrvalid": 375, "unrout": 375, "edr": 375, "iptyp": 375, "lbmethod": [375, 442], "mir": 375, "orderthreshold": [375, 442], "spill": 375, "impli": [375, 442, 535, 682, 689, 865], "gslbsvc1": 375, "gslbsvc2": 375, "gslbsvc3": 375, "kilobit": [375, 442], "toggleord": [375, 442], "ascend": [375, 442], "descend": [375, 442, 713], "deviat": [375, 417], "v6netmasklen": [375, 442], "failsaf": 379, "independ": [379, 406, 467, 482, 528, 681], "haprop": 379, "3010": 379, "hastatu": 379, "staysecondari": 379, "stai": [379, 835], "upgrad": [379, 392, 535, 827, 833, 865], "few": [379, 563], "suffer": 379, "downtim": [379, 417], "thu": [379, 419], "stayprimari": 379, "healthi": 379, "older": [379, 523, 713], "duplic": [379, 405, 641], "3003": 379, "64": [379, 497, 498, 499, 505, 528, 532, 562, 564, 573, 674, 760, 761], "neither": [379, 644], "nor": [379, 587, 644], "llb": 379, "maxflip": 379, "flip": [379, 641], "maxfliptim": 379, "syncvlan": 379, "clientaudioredirect": 383, "plai": 383, "sound": 383, "clientclipboardredirect": 383, "clipboard": [383, 602], "clientcomportredirect": 383, "clientdriveredirect": 383, "clientprinterredirect": 383, "printer": [383, 602, 827, 833], "clientusbdriveredirect": 383, "usb": 383, "connectclientlptport": 383, "lpt": 383, "localremotedatashar": 383, "html5": 383, "multistream": 383, "xenapp": [383, 827, 833, 865], "xendesktop": [383, 417, 827, 833, 865], "irrespect": [383, 537, 538, 563], "accessprofilenam": 384, "latencyprofilenam": 384, "latencyprofil": [384, 386], "l7latencymaxnotifycount": 386, "upper": [386, 563, 564, 742], "center": [386, 639], "l7latencymonitor": 386, "l7latencynotifyinterv": 386, "l7latencythresholdfactor": 386, "l7latencywaittim": 386, "l7latencyprofil": 386, "edtpmtuddf": 387, "df": [387, 407], "pmtud": [387, 546], "edtpmtuddftimeout": 387, "enablesronhafailov": 387, "reliabl": 387, "hdxinsightnonnsap": 387, "nsap": 387, "l7latencyfrequ": 387, "stateless": [389, 405, 442, 600], "privateip": 389, "proxyip": 389, "anetscal": 389, "vip6": [389, 395, 537], "tcpproxi": [389, 467, 627], "useproxyport": [389, 547, 623, 635, 637], "usip": [389, 405, 407, 512, 546, 635, 637], "usnip": [389, 407, 512, 546], "nat46fraghead": 390, "fragment": [390, 395, 404, 407, 503, 547, 582, 671], "nat46ignoreto": 390, "TOS": [390, 417, 442, 503], "nat46v6mtu": 390, "icmp": [390, 407, 417, 442, 465, 467, 475, 481, 482, 495, 496, 503, 537, 538, 547, 552, 760, 761], "nat46v6prefix": 390, "emb": [390, 405], "nat46zerochecksum": 390, "checksum": [390, 503, 563], "newer": 391, "async": 392, "progress": [392, 882, 886], "job": 392, "enhancedupgrad": 392, "resizeswapvar": 392, "swap": 392, "64bit": 392, "ncore": [392, 605, 726], "mcn": 392, "vmpe": 392, "build": [392, 646], "sftp": 392, "scp": 392, "constitu": 393, "dropfrag": [395, 404], "dropfragcputhreshold": [395, 404], "dropfragparamet": [395, 404], "snip6": [395, 537, 648], "srciproundrobin": [395, 404], "useclientsourceipv6": 395, "outer": [395, 403, 404, 442], "esp": 396, "recomend": 396, "espgatetimeout": 396, "ik": [396, 398, 399], "espsessiontimeout": 396, "ikesessiontimeout": 396, "destip": [397, 417, 442, 495, 825], "destip_alg": 397, "natip": [397, 482, 492, 495, 623, 624, 628], "natip_alg": 397, "sourceip_alg": 397, "encalgo": [398, 399], "hashalgo": [398, 399], "hmac_sha1": [398, 399], "hmac_sha256": [398, 399], "hmac_sha384": [398, 399], "hmac_sha512": [398, 399], "hmac_md5": [398, 399], "ikeretryinterv": [398, 399], "bring": [398, 399, 523, 528], "ikevers": [398, 399], "lifetim": [398, 399, 580], "livenesscheckinterv": [398, 399], "liveli": [398, 399], "retransmit": [398, 399, 405, 563, 564, 716], "perfectforwardsecreci": [398, 399], "replaywindows": [398, 399], "replai": [398, 399, 681, 689, 706], "retransmissiontim": [398, 399], "peerpublickei": 399, "psk": [399, 602, 604, 689, 706], "destport": [403, 417, 557, 558, 648, 825], "genev": 403, "6081": 403, "grepayload": 403, "carri": [403, 689, 706], "ethernetwithdot1q": 403, "ipsecprofilenam": 403, "ns_ipsec_default_profil": 403, "ipip": 403, "remotesubnetmask": 403, "tosinherit": 403, "copi": [403, 417], "ToS": 403, "But": 403, "mulicast": 403, "vlantag": 403, "vnid": 403, "enablestrictrx": 404, "pbr": 404, "enablestricttx": 404, "useclientsourceip": 404, "dodad": 405, "dad": 405, "dhcpv6": 405, "natprefix": [405, 485, 497, 498], "ndbasereachtim": 405, "discoveri": [405, 458, 537], "adjac": [405, 504], "30000": 405, "ndretransmissiontim": 405, "retransmiss": [405, 505, 525, 563, 564], "solicit": [405, 505], "ralearn": 405, "ra": [405, 442, 505, 506, 579, 629], "routerredirect": 405, "usipnatprefix": 405, "nat46": 405, "bdggrpproxyarp": 406, "bdgset": 406, "c2c": [406, 568], "broadcast": 406, "bridgeagetimeout": 406, "garponvridintf": 406, "garp": 406, "messagess": 406, "garprepli": 406, "repli": [406, 442, 564], "macmodefwdmypkt": 406, "maxbridgecollis": 406, "collis": [406, 489], "loop": 406, "mbfinstlearn": 406, "instant": 406, "mbf": [406, 467, 512, 546], "mbfpeermacupd": 406, "mbf_instant_learn": 406, "10m": [406, 407, 682, 689], "tick": 406, "proxyarp": 406, "freebsd": 406, "returntoethernetsend": 406, "sender": 406, "rstintfonhafo": 406, "skipproxyingbsdtraff": 406, "stopmacmoveupd": 406, "usemymac": 406, "usenetprofilebsdtraff": 406, "earlier": 406, "acllogtim": 407, "allowclasseipv4": 407, "dropdfflag": 407, "dropipfrag": 407, "externalloopback": 407, "loopback": [407, 568, 825], "forwardicmpfrag": 407, "icmpgenratethreshold": 407, "pkt": [407, 641], "implicitaclallow": 407, "miproundrobin": 407, "overridernat": 407, "srcnat": 407, "tnlpmtuwoconn": 407, "pmtu": [407, 547, 671], "usipserverstraypkt": 407, "strai": 407, "l2connmethod": 408, "vlanchannel": 408, "macchannel": 408, "macvlan": 408, "macvlanchannel": 408, "l4switch": 408, "sysprior": 409, "32768": 409, "selectionord": 410, "considerd": 410, "sequenc": [410, 442, 462, 564, 591, 594, 689, 695, 706], "Then": 410, "sipudp_req_overrid": [411, 609, 616], "sipudp_req_default": [411, 609, 616], "siptcp_req_overrid": [411, 609, 616], "siptcp_req_default": [411, 609, 616], "nat_req_overrid": [411, 609], "nat_req_default": [411, 609], "diameter_req_overrid": [411, 609, 616], "diameter_req_default": [411, 609, 616], "radius_req_overrid": [411, 609, 616], "radius_req_default": [411, 609, 616], "dns_req_overrid": [411, 609, 616], "dns_req_default": [411, 609, 616], "mqtt_req_overrid": [411, 609, 616], "mqtt_req_default": [411, 609, 616], "quic_overrid": [411, 609], "quic_default": [411, 609], "gslb_req_overrid": 411, "gslb_req_default": 411, "mastervserv": 413, "use_vserver_persist": 413, "usevserverpersist": 413, "compat": [413, 442], "oid": [414, 415, 417, 651], "metrict": [414, 415, 417], "snmpoid": [414, 415, 417], "metricthreshold": [416, 417], "metricweight": [416, 417], "monitornam": [416, 417, 418], "acctapplicationid": 417, "acct": 417, "avp": [417, 442, 527, 615, 716], "cer": 417, "eight": [417, 587, 608], "were": [417, 442, 527, 662, 761], "soon": 417, "alertretri": 417, "monprobefail": 417, "authapplicationid": 417, "basedn": [417, 667], "binddn": [417, 667], "customhead": 417, "dispatch": 417, "drtm": 417, "adjust": [417, 564, 615], "accommod": [417, 496], "dispatcherip": 417, "dispatcherport": 417, "desktop": [417, 602], "ddc": 417, "xd": 417, "evalrul": 417, "ecv": 417, "row": [417, 482, 595], "text_elem": 417, "failureretri": 417, "ten": [417, 419], "firmwarerevis": 417, "firmwar": [417, 673], "revis": 417, "newsgroup": 417, "grpchealthcheck": 417, "grpcservicenam": 417, "grpcstatuscod": 417, "unimpl": 417, "hostipaddress": 417, "porch": 417, "car": 417, "httprequest": 417, "inbandsecurityid": 417, "inband": [417, 641], "no_inband_secur": 417, "lasvers": 417, "aac": 417, "logonpointnam": 417, "loginpag": 417, "lrtm": [417, 442], "maxforward": 417, "travers": 417, "mqttclientidentifi": 417, "mqttversion": 417, "mssqlprotocolvers": 417, "oraclesid": 417, "originhost": 417, "originrealm": 417, "pop3": 417, "xnc": 417, "xdm": 417, "conjunct": 417, "productnam": 417, "querytyp": [417, 633], "radaccountsess": 417, "radius_account": 417, "radaccounttyp": 417, "radapn": 417, "radframedip": 417, "radmsisdn": 417, "recv": 417, "respcod": 417, "resptimeout": [417, 681], "unreach": [417, 760, 761], "resptimeoutthresh": 417, "monresptimeoutabovethresh": 417, "monresptimeoutbelowthresh": 417, "rto": [417, 563, 564, 641], "satisfi": 417, "rtsprequest": 417, "scriptarg": 417, "verbatim": 417, "scriptnam": 417, "secondarypassword": 417, "securearg": 417, "sipmethod": 417, "invit": 417, "sipreguri": 417, "sipuri": 417, "sitepath": 417, "slash": [417, 585, 664], "snmpthreshold": 417, "snmpversion": 417, "sqlqueri": 417, "storedb": 417, "popul": [417, 465], "storefrontacctservic": 417, "tenanc": 417, "storefrontcheckbackendservic": 417, "expos": 417, "storenam": 417, "successretri": 417, "supportedvendorid": 417, "tos": 417, "tosid": [417, 442], "trofscod": 417, "mainten": 417, "trofsstr": 417, "appc": 417, "sta": [417, 814, 869], "nhop": 417, "http2": [417, 535, 689], "units3": 417, "units4": 417, "validatecr": 417, "xen": 417, "vendorid": [417, 716], "vendorspecificacctapplicationid": 417, "vendorspecificvendorid": 417, "vendorspecificauthapplicationid": 417, "crlcheck": [418, 656, 696, 702, 707, 813], "nextupd": [418, 681], "incomplet": [418, 535], "revok": [418, 667, 696], "ocspcheck": [418, 656, 696, 702, 707, 813], "allowboundsvcremov": 419, "svc": [419, 535], "svcgroup": 419, "thrown": 419, "tri": [419, 442, 602, 689, 695, 706, 792], "computedadccookieattribut": [419, 424], "understand": [419, 424, 482], "man": [419, 424], "literaladccookieattribut": [419, 424], "lbvar": [419, 424], "lbassign": [419, 424], "lbpol": [419, 424], "consolidatedlconn": 419, "find": [419, 442, 523, 615], "fewest": [419, 442], "consolid": 419, "consider": 419, "cookiepassphras": [419, 424], "dbsttl": [419, 636, 637, 638], "dropmqttjumbomessag": 419, "64k": 419, "httponlycookieflag": [419, 424], "risk": [419, 424], "lbhashalgorithm": [419, 424], "dictat": [419, 424], "urlhash": [419, 424, 442], "domainhash": [419, 424, 442], "destinationiphash": [419, 424, 442], "srcipdestiphash": [419, 424, 442], "srcipsrcporthash": [419, 424, 442], "user_token": [419, 424, 442], "callidhash": [419, 424, 442], "prac": [419, 424], "jarh": [419, 424], "lbhashfing": [419, 424], "finger": [419, 424], "expens": [419, 424, 689, 706], "256": [419, 424, 482, 528, 682, 683], "maxpipelinenat": 419, "monitorconnectionclos": 419, "fin": [419, 465, 496, 563, 635, 637], "monitorskipmaxcli": 419, "preferdirectrout": 419, "intermediari": 419, "directli": [419, 458, 591, 594, 654, 760, 761, 827, 833], "retainservicest": 419, "startuprrfactor": 419, "ramp": 419, "gradual": 419, "said": [419, 792], "slow": [419, 442, 563, 564], "startup": [419, 442], "storemqttclientidandusernam": [419, 424], "useencryptedpersistencecooki": [419, 424], "sha2": [419, 424], "useportforhashlb": 419, "usesecuredpersistencecooki": [419, 424], "vserverspecificmac": 419, "farm": 419, "branch": [419, 651], "persistenceparamet": 420, "lbprof": 424, "dbslb": [424, 442], "lbprofilenam": [424, 442], "cket": 424, "upstream": [424, 442, 635], "proper": [424, 442, 496, 635, 657, 695, 706], "gatewaynam": [425, 426], "addrportvip": 427, "rport": [427, 494], "retrydur": 427, "503": 427, "rnatdstport": 427, "rnatsecuredstport": 427, "rnatsecuresrcport": 427, "rnatsrcport": 427, "sip503ratethreshold": 427, "adfsproxyprofil": 442, "adfspip": 442, "thod": 442, "bypassaaaa": 442, "runtim": [442, 568, 587, 608, 773], "overhead": 442, "datalength": 442, "dataoffset": 442, "offset": 442, "hashlength": 442, "healththreshold": 442, "bracket": [442, 664], "rotat": [442, 599], "previou": [442, 528, 566, 682, 689], "leastrequest": 442, "auditloghash": 442, "dst": 442, "in_subnet": 442, "mostli": [442, 602], "encapsul": [442, 536, 890], "dsr": 442, "macmoderetainvlan": 442, "macmod": 442, "maxautoscalememb": 442, "minautoscalememb": 442, "conform": 442, "newservicerequest": 442, "newservicerequestincrementinterv": 442, "newservicerequestunit": 442, "per_second": 442, "persistavpno": 442, "3588": 442, "z": [442, 467, 528, 532, 573, 615], "customserverid": [442, 635, 636, 637, 638], "urlpass": 442, "hexadecim": [442, 591, 594, 643, 674, 884, 885, 886, 887], "srcipdestip": 442, "callid": [442, 493], "rtspsid": 442, "fixsess": 442, "sendercompid": 442, "targetcompid": 442, "usersess": 442, "quicbridgeprofilenam": 442, "roll": 442, "my_vserv": 442, "recursionavail": 442, "thatsupport": 442, "redirurl": 442, "redirurlflag": 442, "resrul": 442, "setcooki": 442, "typecast_nvlist_t": 442, "server1": 442, "rhi": [442, 523, 537, 538], "netsal": 442, "vsvr_cntrld": [442, 537, 538], "unnecessari": 442, "skippersist": 442, "incas": 442, "relb": 442, "svc1": 442, "svc2": 442, "svc3": 442, "trofspersist": 442, "honor": [442, 755, 756, 827, 833], "wlm": [452, 453], "wlmname": [452, 453], "katimeout": 453, "lbuid": 453, "holdtimetxmult": 458, "holdtim": 458, "transmitt": 458, "transceiv": [458, 639], "lldpdu": 458, "ipfrom": 459, "ipto": 459, "latitud": 459, "degre": 459, "geograph": [459, 462], "longitud": 459, "contin": [459, 462], "region": [459, 461, 462], "citi": [459, 461, 462, 664], "isp": [459, 461, 462], "organ": [459, 462, 664, 689, 695, 701, 706, 827, 833], "san": [459, 657, 664, 682], "jose": 459, "att": 459, "netscaler6": 460, "geoip": [460, 461], "country6": 460, "matchwildcardtoani": 462, "q1label": 462, "q2label": 462, "q3label": 462, "q4label": 462, "fourth": 462, "q5label": 462, "fifth": 462, "q6label": 462, "sixth": 462, "login_result": [463, 464], "verysecretpassword": [463, 464], "print": [463, 464, 535, 582, 583, 760, 761], "sessionid": [463, 464, 491, 519, 654], "netscaler_nitro_auth_token": [463, 464], "1234567890": 463, "profile1": [465, 466, 467, 468, 485, 496], "lowport": 465, "highport": 465, "40": [465, 468, 542, 563, 742], "90": [465, 468, 535, 825], "rst": [465, 496, 535, 552, 563, 564], "transportprotocol": [465, 467, 495, 496], "appsattributesnam": 466, "appsprofil": 466, "appsattribut": 466, "appsprofilenam": [466, 467, 468, 475], "suffici": 467, "anyport": 467, "ippool": 467, "random": [467, 482, 489, 528, 532, 547, 577, 670, 785], "l2info": 467, "natpcb": [467, 565, 742], "still": [467, 564, 716], "outbound": 467, "4095": [467, 538], "lsnport": 468, "clientnam": [469, 470, 471, 472, 473, 482, 492], "client1": [469, 470, 471, 472, 473], "group1": [474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "creation": [475, 481, 482, 494, 657, 722], "httphdrlogprofilenam": [476, 484], "logprofilenam": [477, 486], "poolnam": [478, 488, 489], "determinist": [478, 482, 489, 496], "rtspalgprofilenam": [479, 490], "sipalgprofilenam": [480, 494], "transportprofilenam": [481, 496], "allocpolici": 482, "sequenti": [482, 489], "exhaust": [482, 542], "ipaddr": 482, "dimension": 482, "column": [482, 713], "pb1": 482, "pb2": 482, "pb3": 482, "pbn": 482, "69": 482, "ftpcm": 482, "ip6profil": 482, "framework": 482, "sylog": 482, "stamp": [482, 681, 865], "nattyp": [482, 489, 492, 495], "enough": [482, 489], "now": [482, 489, 527, 528, 667, 758], "million": 482, "portblocks": 482, "sessionlog": 482, "sessionsync": [482, 487], "snmptraplimit": 482, "loghost": 484, "logmethod": 484, "logurl": 484, "logvers": 484, "aftr": 485, "lite": [485, 492, 495], "logcompact": 486, "compact": [486, 641, 827, 833], "logipfix": 486, "logsessdelet": 486, "logsubscrinfo": 486, "subscrsessionremov": 487, "ever": [487, 560], "102": [488, 568], "29": 488, "189": 488, "pool1": [488, 489], "maxportrealloctmq": 489, "realloc": 489, "dealloc": [489, 520], "portblockalloc": 489, "portrealloctimeout": 489, "broken": 489, "rtspidletimeout": 490, "rtspportrang": 490, "rtsptransportprotocol": 490, "natport2": 492, "nat44": [492, 495], "b4": [492, 495], "datasessionidletimeout": 494, "opencontactpinhol": 494, "contactpinhol": 494, "openrecordroutepinhol": 494, "recordroutepinhol": 494, "openregisterpinhol": 494, "registerpinhol": 494, "openroutepinhol": 494, "routepinhol": 494, "openviapinhol": 494, "viapinhol": 494, "registrationtimeout": 494, "sipdstportrang": 494, "sipsessiontimeout": 494, "sipsrcportrang": 494, "siptransportprotocol": 494, "dsttd": 495, "static1": 495, "natport": 495, "subscrip": 495, "subscrport": 495, "finrsttimeout": 496, "ack": [496, 563, 564, 600, 713], "properli": 496, "groupsessionlimit": 496, "portpreservepar": 496, "pariti": [496, 528], "odd": [496, 564], "rtp": 496, "rtcp": 496, "portpreserverang": 496, "portquota": [496, 641], "sessionquota": [496, 641], "stuntimeout": 496, "stun": 496, "syncheck": 496, "syn": [496, 552, 563, 564], "synidletimeout": 496, "bmr1": [497, 498], "eabitlength": [497, 498], "psidoffset": [497, 498], "portsharingratio": [497, 498], "ce": [497, 498, 499], "edg": [497, 498, 546], "ea": 498, "psidlength": 498, "identifierport": 498, "psid": 498, "ruleipv6prefix": 498, "bripv6prefix": 499, "border": 499, "dmr": 499, "long": [499, 827, 833], "NOT": 499, "map1": [499, 500, 501], "2003": 499, "term": [499, 539], "mapbmrnam": 500, "mapdmrnam": 501, "nat64fraghead": 503, "nat64ignoreto": 503, "nat64v6mtu": 503, "nat64zerochecksum": 503, "ceaserouteradv": 505, "ceas": 505, "currhoplimit": 505, "defaultlifetim": 505, "1800": 505, "linkmtu": 505, "managedaddrconfig": 505, "place": [505, 564, 713, 827, 833], "maxrtadvinterv": 505, "unsolicit": 505, "minrtadvinterv": 505, "onlyunicastrtadvrespons": 505, "unicast": [505, 582], "otheraddrconfig": 505, "reachabletim": 505, "retranstim": 505, "sendrouteradv": 505, "srclinklayeraddropt": 505, "ipv6prefix": [506, 579], "onlink": [506, 579], "inherit": [512, 633, 635, 716], "overridelsn": 512, "proxyprotocol": [512, 547], "proxyprotocolaftertlshandshak": 512, "doesnt": 512, "look": [512, 535], "handshak": [512, 564, 664, 689, 695, 696, 701, 706, 707, 711, 827], "proxyprotocoltxvers": 512, "srcippersist": [512, 621, 623, 627], "rewriteip": 513, "srcportrang": 514, "dfd": [515, 516], "hashmethod": [515, 516], "4739": 517, "bindtyp": 519, "countavail": 519, "licensedir": 519, "serialno": 519, "lac": 519, "useproxi": 519, "hand": 520, "left": [520, 585, 615], "subtract": [520, 537, 538], "assig": 520, "singleton": [520, 573], "platinum": 521, "vs10": 521, "ve10": 521, "vp10": 521, "vs25": 521, "ve25": 521, "vp25": 521, "vs50": 521, "ve50": 521, "vp50": 521, "vs200": 521, "ve200": 521, "vp200": 521, "vs1000": 521, "ve1000": 521, "vp1000": 521, "vs3000": 521, "ve3000": 521, "vp3000": 521, "vs5000": 521, "ve5000": 521, "vp5000": 521, "vs8000": 521, "ve8000": 521, "vp8000": 521, "vs10000": 521, "ve10000": 521, "vp10000": 521, "vs15000": 521, "ve15000": 521, "vp15000": 521, "vs25000": 521, "ve25000": 521, "vp25000": 521, "vs40000": 521, "ve40000": 521, "vp40000": 521, "vs100000": 521, "ve100000": 521, "vp100000": 521, "cp1000": 521, "vcpu": [521, 541, 574], "adcpassword": 522, "adcusernam": 522, "deviceprofilenam": 522, "premis": [522, 895], "centralmgmtserv": 522, "validatecert": [522, 553], "changedpassword": 523, "downgrad": 523, "releas": [523, 534, 741], "minor": [523, 547, 641, 648], "weak": 523, "config1": 523, "config2": 523, "cookievers": [523, 547], "crportrang": [523, 547], "exclusivequotamaxcli": [523, 547], "exclusivequotaspillov": [523, 547], "ftpportrang": [523, 547], "grantquotamaxcli": [523, 547], "quota": [523, 542, 547], "grantquotaspillov": [523, 547], "httpport": [523, 547, 827, 833], "nsvlan": 523, "ignoredevicespecif": 523, "commonli": [523, 827, 833], "dg": 523, "standalon": [523, 573, 827, 833], "maxreq": [523, 535, 547, 635, 637], "outtyp": 523, "pmtumin": [523, 547], "576": [523, 547], "pmtutimeout": [523, 547], "rbaconfig": 523, "securecooki": [523, 547], "coordinateduniversaltim": [523, 547], "weakpassword": 523, "adher": 523, "strong": [523, 742], "promptstr": [524, 736, 742, 746], "harqretxdelai": 525, "harq": 525, "lr1coeflist": 525, "coeffici": 525, "label1": 525, "lr1probthresh": 525, "probabl": 525, "model": 525, "differenti": 525, "net1": 525, "net2": 525, "net3": 525, "lr2coeflist": 525, "lr2probthresh": 525, "minrttnet1": 525, "minrttnet2": 525, "minrttnet3": 525, "net1cclscal": 525, "net1csqscal": 525, "signal": [525, 742], "excel": [525, 827, 833], "fair": 525, "net1label": 525, "net1logcoef": 525, "net2cclscal": 525, "net2csqscal": 525, "net2label": 525, "net2logcoef": 525, "connnect": [525, 563], "net3cclscal": 525, "net3csqscal": 525, "net3label": 525, "net3logcoef": 525, "dhcpclient": 526, "saverout": 526, "diameterident": [527, 716], "rfc3588": 527, "serverclosepropag": 527, "pend": [527, 563], "iv": [528, 674], "init": [528, 573, 641], "voector": 528, "iv_data": 528, "keyid_iv_data": 528, "rc4": [528, 529, 654], "keyvalu": [528, 529, 532], "hex": [528, 532], "insecur": 528, "applciat": 528, "56": [528, 583], "applicast": 528, "equival": [528, 530, 610], "cbc": [528, 529, 683], "tripl": [528, 672, 683, 693], "vector": [528, 674, 676], "xore": 528, "ciphertext": 528, "pad": [528, 532], "cfb": [528, 529], "ofb": [528, 529], "keystream": 528, "ecb": [528, 529], "electron": 528, "codebook": 528, "alpha": [528, 532, 573], "xpath": [528, 532, 573, 615], "pkcs5": 528, "lnegth": 528, "alraadi": 528, "block_length": 528, "10126": 528, "ansi_x923": 528, "cbd": 528, "multitpl": 528, "base64": [529, 728], "brief": 530, "plu": [530, 608], "syslogparam": 530, "tracefunct": 530, "tracevari": 530, "md2": 532, "md4": 532, "sha224": [532, 654, 682], "sha384": [532, 654, 682], "sha512": [532, 654, 682], "impos": 532, "28": 532, "48": 532, "dropinvalreq": [534, 535], "http2serversid": 534, "ignoreconnectcodingschem": 534, "insnssrvrhdr": 534, "logerrresp": 534, "markconnreqinv": [534, 535], "markhttp09inv": [534, 535], "maxreusepool": [534, 535], "peak": [534, 535], "nssrvrhdr": 534, "nsbuild": 534, "adpttimeout": 535, "adapt": [535, 564, 825, 827, 833], "decreas": 535, "allowonlywordcharactersandhyphen": 535, "za": [535, 615], "z0": 535, "9_": 535, "visibl": [535, 573, 827, 833], "21": 535, "7e": 535, "altsvc": 535, "altsvcvalu": 535, "apdexcltresptimethreshold": 535, "satisfactori": 535, "apdex": 535, "frustrat": 535, "transcat": [535, 713], "And": [535, 563, 716], "clientiphdrexpr": 535, "dropextracrlf": 535, "extra": [535, 865], "lf": 535, "dropextradata": 535, "grpcholdlimit": 535, "trailer": 535, "131072": 535, "grpcholdtimeout": 535, "grpclengthdelimit": 535, "http2altsvcfram": 535, "alt": 535, "http2direct": 535, "http2headertables": 535, "http2initialconnwindows": 535, "http2initialwindows": 535, "http2maxconcurrentstream": 535, "http2maxemptyframespermin": 535, "http2maxframes": 535, "willing": [535, 600], "16384": [535, 563, 682, 689], "http2maxheaderlists": 535, "plain": [535, 650], "24576": 535, "http2maxpingframespermin": 535, "http2maxresetframespermin": 535, "http2maxsettingsframespermin": 535, "http2minseverconn": 535, "http2strictciph": 535, "http3": 535, "http3maxheaderblockedstream": 535, "http3maxheaderfieldsections": 535, "http3maxheadertables": 535, "qpack": 535, "httppipelinebuffs": 535, "pipelin": [535, 568], "incomphdrdelai": 535, "7000": [535, 563], "markhttpheaderextrawserror": 535, "markrfc7230noncompliantinv": 535, "rfc7230": 535, "marktracereqinv": 535, "maxheaderfieldlen": 535, "beyond": [535, 635, 637, 682, 742], "24820": 535, "mani": [535, 538, 761, 882, 886], "minreusepool": 535, "passprotocolupgrad": 535, "persistentetag": 535, "reqtimeout": [535, 536], "reqtimeoutact": [535, 536], "reusepooltimeout": 535, "rtsptunnel": 535, "websocket": 535, "socket": [535, 582], "allow204": 536, "204": 536, "connectionkeepal": 536, "aliv": [536, 564, 635, 637], "hosthead": 536, "inserthttprequest": 536, "inserticaphead": 536, "nx": 536, "emit": 536, "icapprofil": 536, "reqmod": 536, "respmod": 536, "earli": [536, 682, 689, 706], "remaind": 536, "previewlength": 536, "queryparam": 536, "arg": 536, "arg1": 536, "val1": 536, "arg2": 536, "val2": 536, "userag": 536, "advertiseondefaultpartit": [537, 538], "decrementhoplimit": 537, "decrement": [537, 538], "graphic": [537, 538], "secureonli": [537, 538], "zebo": [537, 538], "kernel": [537, 538, 582, 722], "redistribut": [537, 538], "ip6hostrtgw": 537, "cost": [537, 538, 629, 630], "mgmtaccess": [537, 538], "mptcpadvertis": [537, 538], "mptcp": [537, 538, 563, 564, 568], "add_addr": [537, 538], "ndowner": 537, "stripe": [537, 538, 629, 630, 648], "networkrout": [537, 538], "ospf6lsatyp": 537, "lsa": [537, 538], "intra_area": 537, "ospfarea": [537, 538], "area": [537, 538, 602, 615, 827, 833], "intra": 537, "ownerdownrespons": [537, 538], "restrictaccess": [537, 538], "nonmanag": [537, 538], "formip6": 537, "underli": [537, 538, 605], "free": [537, 538, 568, 865], "bsd": [537, 538], "telnet": [537, 538], "gslbsiteip": [537, 538], "adnssvcip": 537, "radiuslistenersvcip": 537, "vmac": [537, 538, 570, 882, 884, 885, 886, 887], "vrrp": [537, 538, 882, 886, 888], "vserverrhilevel": [537, 538], "ONE": [537, 538, 882, 886], "one_vserv": [537, 538], "all_vserv": [537, 538], "arpown": 538, "arprespons": 538, "decrementttl": 538, "hostrtgw": 538, "icmprespons": 538, "type1": 538, "ospflsatyp": 538, "type5": 538, "wide": [538, 563, 574], "gslbip": 538, "hostip": 538, "alert1gracetimeout": 539, "rais": [539, 589, 611, 617, 716], "alert2gracetimeout": 539, "heartbeatinterv": 539, "280": 539, "inventoryrefreshinterv": 539, "inventori": 539, "360": 539, "licenseexpiryalerttim": 539, "nearer": 539, "forceupdateip": 541, "overwritten": [541, 755, 827, 833], "licensemod": 541, "interest": 541, "cico": 541, "selfmanagedpool": 541, "selfmanagedvcpu": 541, "licenseserverip": 541, "limitidentifi": [542, 544], "limittyp": 542, "smooth": 542, "bursti": 542, "permit": [542, 552, 827, 833], "spread": 542, "evenli": 542, "anytim": [542, 689, 706], "request_r": 542, "limit_req": 542, "trapsintimeslic": 542, "5000": [542, 568], "130": 542, "null": [542, 573, 629, 630], "dumpsess": 545, "fastramp": 546, "l2mode": 546, "l3mode": 546, "usesourceip": 546, "cka": [546, 635, 637], "clientkeepal": 546, "tcpb": [546, 635, 637], "tcpbuffer": 546, "macbasedforward": 546, "sradv": 546, "dradv": 546, "iradv": 546, "sradv6": 546, "dradv6": 546, "rise_apbr": 546, "rise_rhi": 546, "bridgebpdu": 546, "advancedanalyticsstat": 547, "advanac": 547, "aftpallowrandomsourceport": 547, "icaport": 547, "internaluserlogin": 547, "ns_comm_kei": 547, "ipttl": 547, "mgmthttpport": 547, "mgmthttpsport": 547, "443": [547, 568, 826], "secureicaport": 547, "servicepathingressvlan": 547, "tcpcip": 547, "use_proxy_port": 547, "partitionnam": [548, 549, 550, 551, 737, 747], "unrestrict": 549, "10240": 549, "maxmemlimit": 549, "minbandwidth": 549, "partitionmac": 549, "icmpthreshold": 552, "tcprstthreshold": 552, "milli": 552, "0xffffffff": 552, "thing": 552, "tcpthreshold": 552, "udpthreshold": 552, "talk": 553, "servicefunctionnam": 554, "servicepathnam": [555, 556], "serviceindex": 556, "servicefunct": 556, "constitut": [556, 591, 594], "aclact": [557, 558], "estsess": [557, 558], "srcipv6": [557, 568], "basethreshold": 559, "throttl": 559, "aggress": 559, "cleanuplevel": 560, "surgeq": 561, "kilobyt": 562, "ackonpush": [563, 564], "acknowledg": [563, 564, 600], "autosyncookietimeout": 563, "syncooki": [563, 564], "synattack": 563, "compacttcpoptionnoop": 563, "nop": 563, "connflushifnomem": 563, "half_closed_and_idl": 563, "fifo": 563, "oldest": 563, "connflushthr": 563, "halfclosed_and_idl": 563, "whole": [563, 564], "delayedack": [563, 564], "delinkclientserveronrst": 563, "delink": 563, "downstaterst": 563, "initialcwnd": [563, 564], "kaprobeupdatelastact": [563, 564], "ka": [563, 564], "learnvsvrmss": 563, "mss": [563, 564], "limitedpersist": 563, "maxburst": [563, 564], "maxdynserverprob": 563, "maxpktpermss": [563, 564], "maxsynackretx": 563, "maxsynhold": 563, "maxsynholdperprob": 563, "maxtimewaitconn": 563, "time_wait": 563, "proactiv": 563, "clean": [563, 565, 827, 833], "minrto": [563, 564], "mptcpchecksum": 563, "dss": [563, 564], "mptcpclosemptcpsessiononlastsfclos": 563, "fast": 563, "subflow": [563, 564], "mptcpconcloseonpassivesf": 563, "data_fin": 563, "fast_clos": 563, "mptcpfastcloseopt": 563, "abruptli": [563, 565], "mptcpimmediatesfcloseonfin": 563, "mptcpmaxpendingsf": 563, "mptcpmaxsf": 563, "mptcppendingjointhreshold": 563, "mptcpreliableaddaddr": 563, "echo": [563, 564, 760], "mptcprtostoswitchsf": 563, "mpctp": 563, "mptcpsendsfresetopt": 563, "mp_tcprst": 563, "mptcpsfreplacetimeout": 563, "sublow": 563, "mptcpsftimeout": 563, "mptcpusebackupondss": 563, "tunabl": 563, "msslearndelai": 563, "msslearninterv": 563, "nagl": [563, 564], "oooqsiz": [563, 564], "pktperretx": [563, 564], "recvbuffs": 563, "8190": [563, 564], "sack": [563, 564], "slowstartincr": [563, 564], "synattackdetect": 563, "synholdfastgiveup": 563, "tcpfastopencookietimeout": 563, "tfo": 563, "120second": 563, "tcpfintimeout": 563, "tcpmaxretri": 563, "freed": 563, "wsval": [563, 564], "ackaggreg": 564, "applyadaptivetcp": 564, "buffers": 564, "burstratecontrol": 564, "clientiptcpopt": 564, "clientiptcpoptionnumb": 564, "dropestconnontimeout": 564, "drophalfclosedconnontimeout": 564, "dsack": 564, "dupackthresh": 564, "dupack": 564, "dynamicreceivebuff": 564, "ecn": 564, "establishclientconn": 564, "conn_establish": 564, "on_first_data": 564, "fack": 564, "flavor": 564, "westwood": 564, "bic": 564, "cubic": [564, 600], "nile": 564, "frto": 564, "recoveri": [564, 641, 865], "hystart": 564, "kaconnidletim": 564, "kamaxprob": 564, "kaprobeinterv": 564, "maxcwnd": 564, "524288": 564, "mpcapablecbit": 564, "multipath": 564, "mptcpdropdataonpreestsf": 564, "mptcpfastopen": 564, "fastopen": 564, "mptcpsessiontimeout": 564, "rateqmax": 564, "rstmaxack": 564, "rstwindowattenu": 564, "attenu": 564, "correct": [564, 825], "sendbuffs": 564, "sendclientportintcpopt": 564, "slowstartthreshold": 564, "threhsold": 564, "spoofsyndrop": 564, "taillossprob": 564, "tail": 564, "loss": 564, "tcpfastopen": 564, "tcpfastopencookies": 564, "trim": 564, "nearest": [564, 595], "tcpmode": 564, "tcprate": 564, "tcpsegoffload": 564, "nic": [564, 568], "1323": 564, "anycli": 565, "ridden": 565, "anyserv": 565, "anytcpcli": 565, "anytcpserv": 565, "halfclos": 565, "httpclient": 565, "httpserver": 565, "newconnidletimeout": 565, "nontcpzombi": 565, "reducedfintimeout": 565, "reducedrsttimeout": 565, "tcpclient": 565, "tcpserver": 565, "samples": 566, "denot": 566, "Its": [566, 574], "20940": 567, "349": 567, "capdroppkt": 568, "capsslkei": 568, "doruntimecleanup": 568, "temp": 568, "fileid": 568, "files": 568, "mb": [568, 575, 682], "treshold": 568, "rollov": 568, "2gb": 568, "relop": 568, "dstip": 568, "2001": 568, "db8": 568, "dstipv6": 568, "srcport": [568, 825], "le": 568, "dstport": 568, "vlanid": 568, "connid": 568, "pcb": 568, "ppeid": 568, "svcname": 568, "startswith": 568, "endswith": 568, "lb_vserver": 568, "cs_vserver": 568, "intf": 568, "service_typ": 568, "svc_http": 568, "rpcclnt": 568, "svc_dn": 568, "monitor_udp": 568, "monitor_p": 568, "svc_mysql": 568, "svc_mssql": 568, "pktsteer": 568, "svc_aaa": 568, "service_unknown": 568, "traffic_domain_id": 568, "s1": 568, "44": [568, 760, 761], "service1": 568, "vserver1": 568, "inmemorytrac": 568, "dump": 568, "onstop": 568, "onthefli": 568, "nomerg": 568, "new_rx": 568, "txb": 568, "ns_fr_tx": 568, "policybas": 568, "cycl": 568, "pernic": 568, "cap": 568, "164": 568, "skiplocalssh": 568, "skiprpc": 568, "tracebuff": 568, "16kb": 568, "traceformat": 568, "nscap": 568, "pcap": 568, "As": [570, 574, 827, 833], "segreg": 570, "easili": 570, "referenc": 573, "ifful": 573, "lru": [573, 682], "recent": [573, 713], "ifnovalu": 573, "uniniti": 573, "ifvaluetoobig": 573, "truncat": 573, "proce": [573, 695, 706], "ulong": [573, 584], "theoret": 573, "much": [573, 634, 635], "cpuyield": 574, "relinquish": 574, "hypervis": 574, "granular": 574, "masterclockcpu1": 574, "buffersizemb": 575, "customreqhdr": 575, "customrsphdr": 575, "fact": 577, "autokeylogsec": 577, "autokei": [577, 578], "regener": [577, 689, 695, 706], "power": [577, 578, 641], "revokelogsec": 577, "seed": [577, 772], "trustedkei": 577, "symmetr": [577, 578, 632, 682], "cryptographi": 577, "cryptograph": 578, "keygen": 578, "maxpol": 578, "minpol": 578, "preferredntpserv": 578, "correctli": 578, "autonomusprefix": 579, "autonomu": 579, "decrementprefixlifetim": 579, "depricateprefix": 579, "depric": 579, "onlinkprefix": 579, "prefixpreferredlifetim": 579, "prefixvalidelifetim": 579, "2592000": 579, "announcemulticount": 580, "announc": 580, "opcod": 580, "maxmaplif": 580, "86400": [580, 736, 742, 746], "24hour": 580, "minmaplif": 580, "thirdparti": 580, "5351": 581, "roughli": 582, "datalen": 582, "8192": [582, 682, 689], "infinit": [582, 583, 695, 706], "defalut": [582, 583, 760, 761], "fit": 582, "diagnos": [582, 583], "problem": [582, 583], "q": [582, 583, 716, 717, 760, 761], "quiet": [582, 583], "summari": [582, 583, 761], "noth": [583, 760, 761], "patsetfil": [584, 590, 592], "endrang": 585, "end_rang": 585, "inclus": 585, "clientsecuritymessag": [586, 827, 833], "bodyexpr": 587, "deriv": [587, 654], "cacheforsec": 587, "calloutcontentgroup": 587, "stem": 587, "expr": [587, 608], "hostexpr": 587, "urlstemexpr": 587, "mysit": 587, "mappolicynam": 588, "publicli": 588, "su": 588, "tu": 588, "3900": [589, 611, 617], "charset": [591, 592], "xnn": [591, 594], "xc3": [591, 594], "xbc": [591, 594], "utf_8": [591, 592], "replace_al": [591, 615], "delete_al": [591, 615], "insert_after_al": [591, 615], "insert_before_al": [591, 615], "patsetfile1": 592, "canaryurl": 595, "urlset": 595, "csv": 595, "matchedid": 595, "privateset": 595, "rowsepar": 595, "subdomainexactmatch": 595, "subdomain": [595, 689, 706], "ex": 595, "won": 595, "reqbands": 596, "99": 596, "199": 596, "299": 596, "respbands": 596, "routingalgorithm": 598, "routabl": [598, 827, 833], "serveridlength": 598, "serverid": [598, 635, 636, 637, 638], "quicsecrettimeout": 599, "new_token": [599, 600], "ackdelayexpon": 600, "expon": [600, 674, 693], "activeconnectionidlimit": 600, "activeconnectionmigr": 600, "congestionctrlalgorithm": 600, "newreno": 600, "bbr": 600, "initialmaxdata": 600, "1048576": 600, "initialmaxstreamdatabidiloc": 600, "bidirect": 600, "262144": 600, "initialmaxstreamdatabidiremot": 600, "initialmaxstreamdatauni": 600, "unidirect": 600, "initialmaxstreamsbidi": 600, "initialmaxstreamsuni": 600, "maxackdelai": 600, "maxidletimeout": 600, "pto": 600, "maxudpdatagramsperburst": 600, "datagram": [600, 671], "maxudppayloads": 600, "newtokenvalidityperiod": 600, "retrytokenvalidityperiod": 600, "statelessaddressvalid": 600, "nodeprefix": 601, "cidr": 601, "addusernameinrdpfil": 602, "audiocapturemod": 602, "tab": [602, 827, 833], "rdc": 602, "keyboardhook": 602, "onloc": 602, "onremot": 602, "infullscreenmod": 602, "multimonitorsupport": 602, "randomizerdpfilenam": 602, "Will": [602, 736, 742, 746], "everytim": 602, "rdpfilenam": 602, "pop": [602, 646], "launch": 602, "henc": [602, 689], "experi": 602, "rdpcookievalid": 602, "due": [602, 716], "disrupt": 602, "rdpcustomparam": 602, "rdphost": 602, "rdplinkattribut": 602, "rdplisten": 602, "rdpurloverrid": 602, "rdpvalidateclientip": 602, "redirectclipboard": 602, "redirectcomport": 602, "comport": 602, "redirectdr": 602, "redirectpnpdevic": 602, "pnpdevic": 602, "redirectprint": 602, "videoplaybackmod": 602, "effici": 602, "playback": 602, "rdpip": 604, "rdpport": 604, "3389": 604, "rdpredirect": 604, "presenc": 604, "broker": 604, "mst": 604, "warm": [605, 641], "restart": [605, 641, 682, 689, 695, 706, 827, 833], "entitytyp": 606, "dnsrecord": 606, "dospolici": 606, "gslbdomain": 606, "inatsess": 606, "nsmemori": 606, "nspbr": 606, "nspbr6": 606, "rnatip": 606, "tunnelip": 606, "tunnelip6": 606, "potenti": [608, 776], "htmlpage": 608, "respondwithhtmlpag": 608, "reasonphras": 608, "phrase": [608, 650, 657, 661, 663, 664, 672, 683, 693], "responsestatuscod": 608, "302": 608, "stringbuild": 608, "paragraph": 608, "backupsite2": 608, "http_url_saf": 608, "sqlresponse_ok": 608, "sqlresponse_error": 608, "mqtt_jumbo_req_overrid": 609, "mqtt_jumbo_req_default": 609, "cacertfil": [610, 667], "mqtt_jumbo": 613, "refinesearch": 615, "refin": 615, "regex_select": 615, "0x": 615, "9a": 615, "hello": [615, 671, 682, 689, 711], "exp": 615, "printabl": 615, "tild": [615, 664], "xpath_json": 615, "xpath_html": 615, "predefin": [615, 665, 666, 697, 703, 709], "patset1": 615, "datset": 615, "dataset1": 615, "999": 615, "before_str": 615, "_builder": 615, "_expr": 615, "builder": 615, "string_builder_expr": 615, "search_expr": 615, "occurr": 615, "replace_http_r": 615, "replace_sip_r": 615, "insert_http_head": 615, "header_string_builder_expr": 615, "contents_string_builder_expr": 615, "delete_http_head": 615, "corrupt_http_head": 615, "corrupt": 615, "recogn": 615, "my_head": 615, "mhey_ad": 615, "insert_befor": 615, "target_expr": 615, "insert_aft": 615, "replace_diameter_header_field": 615, "stringbuilderexpress": 615, "replace_dns_header_field": 615, "replace_dns_answer_sect": 615, "new_rrset_a": 615, "new_rrset_aaaa": 615, "replace_mqtt": 615, "insert_mqtt": 615, "appropri": [615, 639], "insert_after_mqtt": 615, "topic": 615, "unsubscrib": 615, "insert_before_mqtt": 615, "delete_mqtt": 615, "clientless_vpn_encod": 615, "clientless_vpn_encode_al": 615, "clientless_vpn_decod": 615, "clientless_vpn_decode_al": 615, "insert_sip_head": 615, "delete_sip_head": 615, "corrupt_sip_head": 615, "othertcp_res_overrid": 616, "othertcp_res_default": 616, "sipudp_res_overrid": 616, "sipudp_res_default": 616, "siptcp_res_overrid": 616, "siptcp_res_default": 616, "diameter_res_overrid": 616, "diameter_res_default": 616, "radius_res_overrid": 616, "radius_res_default": 616, "dns_res_overrid": 616, "dns_res_default": 616, "mqtt_res_overrid": 616, "mqtt_res_default": 616, "norewrit": [617, 618], "http_re": 619, "othertcp_req": 619, "othertcp_r": 619, "clientless_vpn_req": 619, "clientless_vpn_r": 619, "sipudp_req": 619, "sipudp_r": 619, "diameter_req": 619, "diameter_r": 619, "radius_req": 619, "radius_r": 619, "mqtt_req": 619, "mqtt_re": 619, "siptcp_req": 619, "siptcp_r": 619, "redirectport": [621, 623], "natip6": 622, "rnat4": 623, "retainsourceportrang": 625, "distanc": [629, 630], "msr": [629, 630], "routetyp": [629, 630], "fib6": 629, "cost1": 630, "commandstr": 631, "rsstype": 632, "asymmetr": 632, "gracefulli": [633, 635], "translationip": 633, "translationmask": 633, "toward": [634, 635], "accessdown": 635, "viabl": 635, "cleartextport": [635, 689, 706], "contentinspectionprofilenam": 635, "OF": [635, 637], "monconnectionclos": [635, 637], "pathmonitor": [635, 637], "pathmonitorindv": [635, 637], "rtspsessionidremap": [635, 637], "autodisabledelai": 637, "autodisablegrac": 637, "memberport": 637, "addrnpi": 639, "plan": 639, "landlin": 639, "wap": 639, "esm": 639, "addrrang": 639, "sme": 639, "addrton": 639, "nation": [639, 664], "clientmod": 639, "transmitteronli": 639, "receiveronli": 639, "msgqueue": 639, "msgqueuesiz": 639, "deliver_sm_resp": 639, "pdu": 639, "normalvalu": 641, "thresholdvalu": 641, "synflood": 641, "bad": [641, 671], "bkhb": 641, "1sec": 641, "3600sec": 641, "86400sec": 641, "trapnam": 641, "mgmt": 641, "reqrat": 641, "rxrate": 641, "txrate": 641, "fan": 641, "voltag": 641, "temperatur": 641, "mon_probe_fail": 641, "prop": 641, "conflict": [641, 809], "rl": 641, "pp": 641, "compil": 641, "dp": 641, "dyn": 641, "prof": 641, "gram": 641, "1024kei": 641, "2048kei": 641, "4096kei": 641, "cur": 641, "inus": 641, "ov": 641, "exec": 641, "chip": [641, 682, 689, 695, 701, 706], "reinit": 641, "portalloc": 641, "mem": 641, "kickedin": 641, "ppe": 641, "ongrac": 641, "hb": 641, "flap": 641, "maxnegcach": 641, "maxcach": 641, "sdk": 641, "checkout": 641, "ecdh": 641, "xmlpayload": 641, "kek_update_success": 641, "kek_update_failur": 641, "anomali": 641, "communitynam": [642, 648, 724], "uppercas": [642, 644, 646, 648, 650, 651], "lowercas": [642, 644, 646, 648, 650, 651], "privileg": [642, 746], "get_next": 642, "get_bulk": 642, "engineid": 643, "snmpv3": [644, 649, 650, 651], "readviewnam": 644, "subtre": [644, 651], "ones": 644, "securitylevel": [644, 649], "noauthnopriv": [644, 649], "authnopriv": [644, 649], "authpriv": [644, 649], "phone": 646, "webmast": 646, "customid": 646, "identif": 646, "physic": 646, "lab": 646, "rack": 646, "partitionnameintrap": 647, "varbind": 647, "severityinfointrap": 647, "snmpset": 647, "write": 647, "snmptraplog": 647, "snmptraplogginglevel": 647, "allpartit": 648, "162": 648, "trapclass": [648, 649], "trapdestin": [648, 649], "v3": [648, 649], "authpasswd": 650, "authtyp": 650, "sha": 650, "privpasswd": 650, "privtyp": 650, "tree": 651, "cacertgrpnam": 654, "certfingerprintdigest": 654, "certfingerprinthead": 654, "certhashhead": 654, "certhead": 654, "certissuerhead": 654, "certnotafterhead": 654, "certnotbeforehead": 654, "certserialhead": 654, "certsubjecthead": 654, "suit": [654, 666, 691, 692, 697, 698, 703, 709, 710], "strength": 654, "sslv3": [654, 689, 695, 701, 706], "cipherhead": 654, "clientauth": [654, 682, 685, 689, 695, 706, 711], "doclientauth": 654, "noclientauth": [654, 682, 685], "clientcert": [654, 689, 695, 706], "pem": [654, 657, 661, 663, 664, 667, 672, 674, 683, 684, 693, 695, 706], "clientcertfingerprint": 654, "der": [654, 657, 661, 664, 667, 672, 674, 684, 693], "clientcerthash": 654, "clientcertissu": 654, "clientcertnotaft": 654, "clientcertnotbefor": 654, "clientcertserialnumb": 654, "clientcertsubject": 654, "clientcertverif": 654, "owasupport": 654, "outlook": [654, 827, 833], "owa": 654, "sessionidhead": 654, "cacertgroupnam": [655, 656], "cacertform": 657, "cakei": 657, "cakeyform": 657, "caseri": 657, "certform": 657, "certtyp": 657, "root_cert": 657, "intm_cert": 657, "clnt_cert": 657, "srvr_cert": 657, "365": 657, "keyfil": [657, 664, 672, 683, 684, 693], "dsa": [657, 664, 682], "keyform": [657, 664, 672, 684, 693], "pempassphras": [657, 664, 683], "reqfil": [657, 664], "csr": [657, 664], "subjectaltnam": [657, 664], "rdn": [657, 664], "cert_bundle_fil": 658, "cert_fil": 659, "deletefromdevic": 661, "expirymonitor": 661, "fipskei": [661, 674], "hsmkei": 661, "privaci": [661, 667, 674], "pfx": 661, "linkcertkeynam": 661, "nodomaincheck": 661, "ocspstaplingcach": 661, "ocspstapl": [661, 689, 695, 701, 706], "passplain": [661, 663], "ocsprespond": 662, "bundlefil": 663, "certkeybundlenam": [663, 708], "cerkeybundl": 663, "challengepassword": 664, "commonnam": [664, 689, 695, 701], "compani": 664, "companynam": 664, "countrynam": 664, "fipskeynam": [664, 674], "localitynam": 664, "town": 664, "offic": [664, 673], "organizationnam": 664, "corpor": 664, "partnership": 664, "agenc": 664, "legal": 664, "abbrevi": 664, "angl": 664, "exclam": 664, "caret": 664, "squar": 664, "organizationunitnam": 664, "divis": 664, "statenam": 664, "provinc": 664, "ciphergroupnam": [665, 666], "ciphergroup": [665, 666], "ciphernam": [665, 666, 689, 691, 692, 697, 698, 703, 704, 709, 710], "cipherprior": [665, 666, 688, 689, 690, 691, 692], "ciphgrpalia": 665, "cipheroper": 666, "rem": 666, "ord": 666, "ciphgrpal": 666, "exactli": [667, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "binari": 667, "cakeyfil": 667, "crlname": 667, "crlpath": 667, "monthli": 667, "weekli": 667, "sun": 667, "sat": 667, "daili": 667, "gencrl": 667, "indexfil": 667, "crl_file": 668, "dh_file": 669, "dhfile": [670, 689, 695, 706], "gen": 670, "helloverifyrequest": 671, "maxbadmacignorecount": 671, "prior": 671, "disconnect": [671, 689, 695, 706, 755, 756, 827, 833, 865], "terminatesess": 671, "maxholdqlen": 671, "maxpackets": 671, "reassembl": 671, "maxrecords": 671, "1459": 671, "maxretrytim": 671, "pmtudiscoveri": 671, "curv": [672, 674, 688, 694, 700, 705], "p_256": [672, 674, 688, 694, 700, 705], "p_384": [672, 674, 688, 694, 700, 705], "pkc": [672, 683, 684, 693], "fipsfw": 673, "hsmlabel": 673, "inithsm": 673, "140": [673, 742], "oldsopassword": 673, "sopassword": 673, "userpassword": 673, "prime256v1": 674, "secp384r1": 674, "f4": [674, 693], "10001": 674, "modulu": 674, "wrapkeynam": [674, 712], "sourcesecret": [675, 676], "targetsecret": [675, 676], "keyvector": 676, "control_overrid": 677, "control_default": 677, "data_overrid": 677, "data_default": 677, "httpquic_control_overrid": 677, "httpquic_control_default": 677, "httpquic_data_overrid": 677, "httpquic_data_default": 677, "hsmkeynam": 678, "hsmtype": 678, "thale": 678, "safenet": 678, "nfast": 678, "kmdata": 678, "keystor": 678, "serialnum": 678, "key_fil": 679, "ssllogclauth": 680, "clauth": 680, "ssllogclauthfailur": 680, "ssllogh": 680, "h": [680, 736, 742, 746], "sslloghsfailur": 680, "batchingdelai": 681, "batch": 681, "batchingdepth": 681, "overload": [681, 865], "signifi": [681, 827, 833], "inordin": 681, "faster": 681, "cachetimeout": 681, "wil": 681, "insertclientcert": 681, "ocspurlresolvetimeout": 681, "elaps": 681, "producedattimeskew": 681, "At": 681, "respondercert": 681, "signingcert": 681, "trustrespond": 681, "repons": 681, "producedat": 681, "lastupd": 681, "usenonc": 681, "nonc": 681, "crlmemorysizemb": 682, "cryptodevdisablelimit": 682, "denysslreneg": [682, 689], "renegoti": [682, 689], "circumst": [682, 689], "frontend_cli": [682, 689], "nonsecur": [682, 689], "frontend_clientserv": [682, 689], "5746": [682, 689], "dropreqwithnohosthead": [682, 689], "sni": [682, 689, 695, 696, 701, 702, 706, 707, 708, 827], "encrypttriggerpktcount": [682, 689], "45": [682, 689], "heterogeneoussslhw": 682, "cavium": 682, "coleto": 682, "hybridfipsmod": 682, "crypto": [682, 689, 742], "acceler": [682, 689, 695, 701, 706], "insertcertspac": 682, "insertionencod": [682, 689], "ndcppcompliancecertcheck": 682, "ocspcaches": 682, "4gb": 682, "approxim": 682, "operationqueuelimit": 682, "150": 682, "pushenctriggertimeout": [682, 689], "pushflag": [682, 689], "sendclosenotifi": [682, 689, 695, 701, 706], "sigdigesttyp": 682, "mpx": 682, "nitrox": 682, "iii": 682, "doesnot": 682, "snihttphostmatch": [682, 689], "cover": [682, 689], "softwarecryptothreshold": 682, "sslierrorcach": 682, "sslimaxerrorcachemem": 682, "utilis": 682, "ssltriggertimeout": [682, 689], "strictcacheck": [682, 689], "undefactioncontrol": 682, "undefactiondata": 682, "ed": 683, "outfil": 683, "pkcs12file": 683, "pkcs8file": 684, "AND": 685, "httpquic_control": 686, "httpquic_data": 686, "ecccurvenam": [688, 694, 700, 705], "ecc": [688, 694, 700, 705], "p_224": [688, 694, 700, 705], "p_521": [688, 694, 700, 705], "allowextendedmastersecret": 689, "7627": 689, "allowunknownsni": 689, "snienabl": [689, 695, 701, 706], "unknown": 689, "dislab": 689, "alpnprotocol": 689, "http1": 689, "cipherredirect": [689, 695, 706], "meaning": [689, 695, 706], "cipherurl": [689, 695, 706], "clientauthuseboundcachain": 689, "certfic": 689, "diffi": [689, 695, 706], "hellman": [689, 695, 706], "dhcount": [689, 695, 706], "dhekeyexchangewithpsk": [689, 706], "dhe": [689, 706], "resumpt": [689, 695, 701, 706], "secreci": [689, 706], "compromis": [689, 706], "dhkeyexpsizelimit": [689, 695, 706], "nist": [689, 695, 706], "800": [689, 695, 706], "56a": [689, 695, 706], "2048bit": [689, 695, 706], "224bit": [689, 695, 706], "256bit": [689, 695, 706], "ersa": [689, 695, 706], "ephemer": [689, 695, 706], "ersacount": [689, 695, 706], "hst": [689, 706], "includesubdomain": [689, 706], "stapl": [689, 695, 701, 706], "preload": [689, 706], "consent": [689, 706], "prevsessionkeylifetim": 689, "symm": 689, "pushenctrigg": [689, 695, 706], "rewritten": [689, 695, 706, 794], "serverauth": [689, 695, 701], "sessionkeylifetim": 689, "3000": 689, "sessionticket": 689, "5077": 689, "sessionticketkeydata": 689, "enc": 689, "dec": 689, "sessionticketkeyrefresh": 689, "sessionticketlifetim": 689, "sessreus": [689, 695, 701, 706], "intens": [689, 695, 701, 706], "sesstimeout": [689, 695, 701, 706, 755, 756, 827, 833], "skipclientcertpolicycheck": 689, "sport": [689, 695, 701, 706], "ssl3": [689, 695, 701, 706], "sslimaxsessperserv": 689, "clienthello": 689, "ssliocspcheck": 689, "sslireneg": 689, "sslprofiletyp": 689, "sslredirect": [689, 695, 706], "break": [689, 695, 706], "unsecur": [689, 695, 706], "screen": [689, 695, 706], "strictsigdigestcheck": [689, 695, 701, 706], "tls1": [689, 695, 701, 706], "tls11": [689, 695, 701, 706], "tls12": [689, 695, 701, 706], "tls13": [689, 695, 701, 706], "tls13sessionticketsperauthcontext": [689, 706], "handhsak": [689, 706], "parallel": [689, 706], "zerorttearlydata": [689, 706], "significantli": [689, 706], "guarante": [689, 706], "sslicacertkei": 690, "cipheraliasnam": [691, 697, 703, 709], "cipheri": [691, 709], "explan": [695, 706], "dtlsv1": [695, 706], "dtls12": [695, 706], "dtlsprofilenam": [695, 706], "ssl2": [695, 706], "sslv2": [695, 706], "sslv2redirect": [695, 706], "sslv2url": [695, 706], "skipcanam": [696, 707], "ca_nam": [696, 707], "snicert": [696, 702, 707], "sslvserver_appfwpolicy_bind": 706, "sslvserver_auditnslogpolicy_bind": 706, "sslvserver_auditsyslogpolicy_bind": 706, "sslvserver_authorizationpolicy_bind": 706, "sslvserver_cachepolicy_bind": 706, "sslvserver_cmppolicy_bind": 706, "sslvserver_responderpolicy_bind": 706, "sslvserver_rewritepolicy_bind": 706, "certkeybundl": 708, "snicertkeybundl": 708, "intercept_req": 711, "clienthello_req": 711, "appplic": 711, "pickcacertgrp": 711, "salt": 712, "acceptancethreshold": 713, "breachthreshold": 713, "maxtransactionthreshold": 713, "tracktransact": 713, "mintransactionthreshold": 713, "samplecount": 713, "sort": 713, "is_top": 713, "resptim": 713, "resptime_breach": 713, "trackackonlypacket": 713, "responsetim": 713, "7499": 714, "characterist": 714, "cerrequesttimeout": 716, "cca": 716, "ccr": [716, 717], "pcrf": [716, 717, 718], "dwr": 716, "healthcheckttl": 716, "rar": 716, "rra": 716, "holdonsubscriberabs": 716, "pakcet": 716, "idlettl": [716, 717], "negativettl": 716, "constantli": 716, "stick": 716, "un": 716, "meanwhil": 716, "netcal": 716, "Or": 716, "configu": 716, "negativettllimitedsuccess": 716, "diameter_limited_success": 716, "2002": 716, "pcrfrealm": 716, "purgesdbongxfailur": 716, "requestretryattempt": 716, "requesttimeout": 716, "reuqest": 716, "revalidationtimeout": 716, "revalid": 716, "servicepathavp": 716, "servicepathvendorid": 716, "idleact": 717, "exprir": 717, "ccrtermin": 717, "ccrupdat": 717, "arguement": 717, "idletimeout": 717, "interfacetyp": 717, "radiusonli": 717, "radiusandgx": 717, "gxonli": 717, "ipv6prefixlookuplist": 717, "ue": 717, "ipandvlan": 717, "servicepath": 718, "subscriberrul": 718, "subscriptionidtyp": 718, "subscript": 718, "e164": 718, "imsi": 718, "sip_uri": 718, "nai": 718, "subscriptionidvalu": 718, "listeningservic": 719, "radiusinterimasstart": 719, "interim": 719, "tgz": 722, "includekernel": 722, "skipbackup": 722, "uselocaltimezon": 722, "cmdspec": 723, "snmpv1": 724, "datapath": 724, "debug1": 724, "debug2": 724, "pemod": 725, "cpubound": 725, "alldelet": 726, "allinact": 726, "datasourc": 726, "endtim": 726, "mmddyyyyhhmm": 726, "upto": 726, "moment": 726, "cetera": 726, "starttim": 726, "filecont": 728, "fileencod": 728, "fileloc": 728, "filepath": 728, "allowedmanagementinterfac": [736, 746], "63": [736, 742, 746], "restrictedtimeout": [736, 742, 746], "100000000": [736, 742, 746], "diskcheck": 740, "kek": 741, "nscfg": 741, "shall": 741, "basicauth": 742, "cliloglevel": 742, "doppler": 742, "fipsusermod": 742, "land": 742, "certifi": 742, "wherein": 742, "forcepasswordchang": 742, "googleanalyt": 742, "localauth": 742, "maxsessionperus": 742, "minpasswordlen": 742, "mininum": 742, "natpcbforceflushlimit": 742, "natpcbrstontimeout": 742, "buildup": 742, "rbaonrespons": 742, "reauthonauthparamchang": 742, "reauthent": [742, 755, 756], "removesensitivefil": 742, "authoris": 742, "rm": 742, "enableal": 742, "enableloc": 742, "ns_fip": 742, "ns_crl": 742, "ns_rsakei": 742, "ns_pkcs12": 742, "ns_pkcs8": 742, "ns_ldap": 742, "ns_tacac": 742, "ns_tacacsact": 742, "ns_radiu": 742, "ns_radiusact": 742, "ns_encryption_param": 742, "objecttyp": 742, "totalauthtimeout": 742, "sid": 744, "sshkeytyp": 745, "externalauth": 746, "maxsess": 746, "actionurl": [749, 797], "submit": [749, 797], "namevaluepair": [749, 797], "ampersand": [749, 797], "name1": [749, 797], "value1": [749, 797], "value2": [749, 797], "nvtype": [749, 797], "passwdfield": [749, 797], "responses": [749, 797], "8096": [749, 797], "ssosuccessrul": [749, 797], "submitmethod": [749, 797], "userfield": [749, 797], "tmsession": [750, 751, 753], "targ": 754, "recev": [754, 832], "defaultauthorizationact": [755, 756, 827, 833], "homepag": [755, 756, 827, 833], "home": [755, 756, 827, 833, 865], "persistentcooki": [755, 756, 758], "persistentcookievalid": [755, 756], "ntlm2": [755, 756, 827, 833], "trafficact": [755, 756, 827, 833], "ssodomain": [755, 756], "apptimeout": [758, 835], "forcedtimeout": [758, 827, 833], "forcedtimeoutv": 758, "formssoact": [758, 835], "initiatelogout": 758, "samlssoprofil": [758, 835, 837, 838], "rather": 760, "33434": [760, 761], "packetlen": [760, 761], "time_exceed": [760, 761], "cookiedomainfrom": 762, "cookiedomaininto": 762, "requrlfrom": 762, "requrlinto": 762, "resurlfrom": 762, "resurlinto": 762, "onlytransformabsurlinbodi": 767, "qual": [769, 835], "loggerip": 770, "cloudhost": 772, "hoursbetweendbupd": 772, "localdatabasethread": 772, "thread": 772, "seeddbpath": 772, "timeofdaytoupdatedb": 772, "defaultlb": 774, "uesd": 774, "clear_text_pd": 775, "cleartext": [775, 776], "pd": [775, 776], "clear_text_abr": 775, "abr": [775, 776, 781], "encrypted_abr": 775, "trigger_enc_abr": 775, "trigger_body_detect": 775, "detect_cleartext_pd": 776, "detect_cleartext_abr": 776, "detect_encrypted_abr": 776, "trigger_enc_abr_detect": 776, "trigger_ct_abr_body_detect": 776, "videoopt_req": [777, 783], "videoopt_r": [777, 783], "quicpacingr": 785, "randomsamplingpercentag": 785, "lan": [786, 787, 788, 790, 791, 827, 833], "clientcontrol": 792, "locationbasedvpn": 792, "everywher": 792, "alwayson": [792, 827, 833], "networkaccessonvpnfailur": 792, "onlytogatewai": 792, "fullaccess": 792, "clientconsumedcooki": 794, "behalf": 794, "javascriptrewritepolicylabel": 794, "java": [794, 825, 827, 833], "regexforfindingcustomurl": 794, "xcomp": 794, "ns_cvpn_custom_content_typ": 794, "regexforfindingurlincss": 794, "regexforfindingurlinjavascript": 794, "regexforfindingurlinxcompon": 794, "compon": 794, "regexforfindingurlinxml": 794, "reqhdrrewritepolicylabel": 794, "requirepersistentcooki": 794, "msoffic": 794, "reshdrrewritepolicylabel": 794, "urlrewritepolicylabel": 794, "deviceprofil": 795, "intranetdomain": 809, "sharefil": [812, 865, 868], "userdataencryptionkei": 813, "staaddresstyp": [814, 869], "nexthopserv": [818, 826, 874], "icaconnect": 824, "transproto": 824, "conenct": 824, "clientappl": 825, "putti": 825, "xshell": 825, "95": 825, "plug": [825, 827, 833, 835, 865], "iprang": 825, "spoofiip": [825, 827, 833], "dmz": [826, 865], "nexthopfqdn": 826, "nexthopip": 826, "nexthopport": 826, "resaddresstyp": 826, "advancedclientlessvpnmod": [827, 833], "clientlessvpnmod": [827, 833], "additionali": [827, 833], "advancedclientlessmod": [827, 833], "allowedlogingroup": [827, 833], "allprotocolproxi": [827, 833], "alwaysonprofilenam": [827, 833], "apptokentimeout": 827, "xenmobil": [827, 842, 868], "authorizationgroup": [827, 833], "autoproxyurl": [827, 833], "backendcertvalid": 827, "backendserversni": 827, "citrixreceiverhom": [827, 833], "clientchoic": [827, 833], "icon": [827, 833, 837, 838], "clientcleanupprompt": [827, 833], "clientconfigur": [827, 833], "clientdebug": [827, 833], "technic": [827, 833], "technician": [827, 833], "troubleshoot": [827, 833], "written": [827, 833], "clientidletimeout": [827, 833], "clientlessmodeurlencod": [827, 833], "leav": [827, 833], "opaqu": [827, 833], "unclear": [827, 833], "clientlesspersistentcooki": [827, 833], "sharepoint": [827, 833], "powerpoint": [827, 833], "fileshar": [827, 833], "clientopt": [827, 833], "menu": [827, 833], "trai": [827, 833], "filetransf": [827, 833], "clientsecur": [827, 833], "clientsecuritygroup": [827, 833], "clientsecuritylog": [827, 833], "clientvers": 827, "checkvers": 827, "improv": [827, 833], "emailhom": [827, 833], "encryptcsecexp": 827, "epaclienttyp": [827, 833], "bar": [827, 833], "activex": [827, 833], "explor": [827, 833], "forcecleanup": [827, 833], "addressbar": [827, 833], "filesystemappl": [827, 833], "applicationdata": [827, 833], "clientcertif": [827, 833], "autocomplet": [827, 833], "forcedtimeoutwarn": [827, 833], "fqdnspoofedip": [827, 833], "ftpproxi": [827, 833], "gopherproxi": [827, 833], "gopher": [827, 833], "httpproxi": [827, 833], "icaproxi": [827, 833], "icasessiontimeout": 827, "icauseraccount": 827, "radiuspolici": [827, 833], "iconwithreceiv": [827, 833], "iipdnssuffix": [827, 833], "easier": [827, 833], "rememb": [827, 833], "killconnect": [827, 833], "preexist": [827, 833], "linuxpluginupgrad": [827, 833], "linux": [827, 833, 865], "essenti": [827, 833, 865], "locallanaccess": [827, 833], "loginscript": [827, 833], "logoutscript": [827, 833], "macpluginupgrad": [827, 833], "mdxtokentimeout": 827, "mdx": 827, "ntdomain": [827, 833], "pcoipprofilenam": [827, 833], "firefox": [827, 833], "proxyexcept": [827, 833], "proxylocalbypass": [827, 833], "rdpclientprofilenam": [827, 833], "rfc1918": [827, 833], "172": [827, 833], "securebrows": [827, 833], "smartgroup": [827, 833], "socksproxi": [827, 833], "sock": [827, 833], "splitdn": [827, 833], "splittunnel": [827, 833], "sslproxi": [827, 833], "storefronturl": [827, 833], "transparentintercept": [827, 833], "uithem": [827, 831], "green": 827, "bubbl": 827, "caxton": 827, "greenbubbl": [827, 831], "useiip": [827, 833], "nospillov": [827, 833], "usemip": [827, 833], "userdomain": [827, 865], "seper": [827, 865], "wihom": [827, 833, 865], "fullclient": [827, 833], "wihomeaddresstyp": [827, 833], "windowsautologon": [827, 833], "windowsclienttyp": [827, 833], "windowspluginupgrad": [827, 833], "winsip": [827, 833], "wiportalmod": [827, 833], "layout": [827, 833], "conserverurl": 829, "icvverif": 829, "icv": 829, "sessionidletimeout": 829, "logindomain": 830, "udpport": 830, "4172": 830, "basethem": 831, "x1": 831, "rfwebui": 831, "sfgatewayauthtyp": 833, "domainandrsa": 833, "sfauth": 833, "sfauthandrsa": 833, "useraccount": 833, "fta": 835, "wanscal": 835, "actualurl": [837, 838], "appjson": 837, "applicationtyp": [837, 838], "cvpn": [837, 838, 865], "clientlessaccess": [837, 838], "iconurl": [837, 838], "linknam": [837, 838], "ssotyp": [837, 838], "unifi": [837, 838], "unifiedgatewai": [837, 838], "selfauth": [837, 838], "samlauth": [837, 838], "urlact": 838, "urlpolici": 839, "advancedepa": 865, "tell": 865, "netflow": 865, "cginfrahomepageredirect": 865, "deploymenttyp": 865, "ica_webinterfac": 865, "ica_storefront": 865, "devicecert": 865, "doublehop": 865, "nshttp_default_strict_valid": 865, "icaonli": 865, "smart": 865, "ccu": 865, "icaproxysessionmigr": 865, "coexist": 865, "linuxepapluginupgrad": 865, "loginonc": 865, "seamless": 865, "logoutonsmartcardremov": 865, "reader": 865, "macepapluginupgrad": 865, "pcoipvserverprofilenam": 865, "rdpserverprofilenam": 865, "vserverfqdn": 865, "windowsepapluginupgrad": 865, "epaprofil": 871, "epaprofileopt": 871, "vmac6": [880, 881, 882, 883], "ow": 882, "ner": 882, "emption": [882, 886], "preemptiondelaytim": [882, 886], "bp": [882, 886], "ordinarili": [882, 886], "trackifnumprior": [882, 886], "ep": [882, 886], "k": [882, 886], "trackifnum": [883, 887], "5e": [884, 885, 886, 887], "01": [884, 885, 886, 887], "3c": [884, 885, 886, 887], "sendtomast": 888, "spillver": 889, "innervlantag": 890, "inner": 890, "4789": 890, "gpe": 890, "nsh": 890, "vxlangp": 890, "docsit": 897, "modul": 897}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"index": [0, 1, 2, 391, 897], "all": [0, 2], "collect": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897], "environ": 0, "variabl": [0, 505, 573], "modul": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "netscal": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896], "adc": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "aaacertparam": 3, "configur": [3, 12, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 35, 42, 44, 45, 46, 47, 49, 50, 52, 53, 55, 56, 57, 58, 59, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 74, 97, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 186, 191, 192, 193, 195, 196, 197, 198, 199, 200, 202, 204, 210, 215, 216, 217, 221, 222, 223, 225, 226, 227, 229, 230, 231, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 256, 261, 262, 264, 265, 267, 268, 269, 271, 272, 274, 275, 276, 288, 293, 294, 295, 297, 314, 321, 322, 323, 324, 325, 326, 327, 328, 330, 331, 332, 333, 334, 335, 336, 337, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 354, 355, 358, 359, 360, 361, 362, 363, 366, 369, 370, 375, 377, 378, 379, 382, 383, 384, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 403, 404, 405, 406, 407, 408, 409, 410, 413, 415, 417, 419, 420, 421, 423, 424, 425, 426, 427, 442, 453, 456, 457, 458, 459, 460, 461, 462, 465, 467, 469, 482, 484, 485, 486, 487, 489, 490, 491, 492, 493, 494, 495, 496, 498, 499, 501, 502, 503, 504, 505, 508, 512, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 549, 552, 553, 554, 555, 557, 558, 559, 560, 561, 562, 563, 564, 565, 567, 568, 570, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 610, 611, 612, 613, 615, 617, 618, 619, 621, 623, 627, 628, 629, 630, 631, 632, 633, 635, 637, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 663, 664, 665, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 678, 679, 680, 681, 682, 683, 684, 685, 686, 689, 693, 695, 701, 706, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 736, 740, 741, 742, 743, 744, 745, 746, 749, 754, 755, 756, 757, 758, 759, 760, 761, 762, 764, 765, 767, 769, 770, 771, 772, 773, 774, 775, 776, 777, 781, 782, 783, 785, 789, 792, 793, 794, 795, 796, 797, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 865, 882, 886, 888, 889, 890, 894], "certif": [3, 655, 660, 661, 664, 667], "paramet": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "resourc": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "synopsi": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "note": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "exampl": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "return": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "valu": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "author": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "link": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "aaaglobal_aaapreauthenticationpolicy_bind": 4, "bind": [4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 48, 51, 54, 60, 61, 62, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 218, 219, 220, 224, 228, 233, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 263, 266, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 329, 338, 353, 356, 357, 364, 365, 367, 368, 371, 372, 373, 374, 376, 380, 381, 385, 401, 402, 411, 412, 414, 416, 418, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 497, 500, 506, 507, 509, 510, 511, 513, 514, 548, 550, 551, 556, 566, 569, 571, 572, 585, 591, 594, 609, 614, 616, 620, 622, 624, 625, 626, 634, 636, 638, 649, 656, 662, 666, 677, 687, 688, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 786, 787, 788, 790, 791, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 887, 891, 892, 893, 895], "definit": [4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 48, 51, 54, 60, 61, 62, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 218, 219, 220, 224, 228, 233, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 263, 266, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 329, 338, 353, 356, 357, 364, 365, 367, 368, 371, 372, 373, 374, 376, 380, 381, 385, 401, 402, 411, 412, 414, 416, 418, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 497, 500, 506, 507, 509, 510, 511, 513, 514, 548, 550, 551, 556, 566, 569, 571, 572, 585, 591, 594, 609, 614, 616, 620, 622, 624, 625, 626, 634, 636, 638, 649, 656, 662, 666, 677, 687, 688, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 786, 787, 788, 790, 791, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 887, 891, 892, 893, 895], "describ": [4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 48, 51, 54, 60, 61, 62, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 218, 219, 220, 224, 228, 233, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 263, 266, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 329, 338, 353, 356, 357, 364, 365, 367, 368, 371, 372, 373, 374, 376, 380, 381, 385, 401, 402, 411, 412, 414, 416, 418, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 497, 500, 506, 507, 509, 510, 511, 513, 514, 548, 550, 551, 556, 566, 569, 571, 572, 585, 591, 594, 609, 614, 616, 620, 622, 624, 625, 626, 634, 636, 638, 649, 656, 662, 666, 677, 687, 688, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 786, 787, 788, 790, 791, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 887, 891, 892, 893, 895], "associ": [4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 48, 51, 54, 60, 61, 62, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 218, 219, 220, 224, 228, 233, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 263, 266, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 329, 338, 353, 356, 357, 364, 365, 367, 368, 371, 372, 373, 374, 376, 380, 381, 385, 401, 402, 411, 412, 414, 416, 418, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 497, 500, 506, 507, 509, 510, 511, 513, 514, 548, 550, 551, 556, 566, 569, 571, 572, 585, 591, 594, 609, 614, 616, 620, 622, 624, 625, 626, 634, 636, 638, 649, 656, 662, 666, 677, 687, 688, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 786, 787, 788, 790, 791, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 887, 891, 892, 893, 895], "between": [4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 48, 51, 54, 60, 61, 62, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 218, 219, 220, 224, 228, 233, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 263, 266, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 329, 338, 353, 356, 357, 364, 365, 367, 368, 371, 372, 373, 374, 376, 380, 381, 385, 401, 402, 411, 412, 414, 416, 418, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 497, 500, 506, 507, 509, 510, 511, 513, 514, 548, 550, 551, 556, 566, 569, 571, 572, 585, 591, 594, 609, 614, 616, 620, 622, 624, 625, 626, 634, 636, 638, 649, 656, 662, 666, 677, 687, 688, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 786, 787, 788, 790, 791, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 887, 891, 892, 893, 895], "aaaglob": [4, 5], "aaapreauthenticationpolici": [4, 25, 840], "aaaglobal_authenticationnegotiateaction_bind": 5, "authenticationnegotiateact": [5, 148], "aaagroup_aaauser_bind": 6, "aaagroup": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "aaauser": [6, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "aaagroup_auditnslogpolicy_bind": 7, "auditnslogpolici": [7, 30, 61, 125, 127, 169, 302, 432, 729, 750, 799, 844], "aaagroup_auditsyslogpolicy_bind": 8, "auditsyslogpolici": [8, 31, 62, 129, 131, 170, 303, 433, 626, 730, 751, 800, 845], "aaagroup_authorizationpolicy_bind": 9, "authorizationpolici": [9, 32, 193, 194, 304, 434], "aaagroup_intranetip6_bind": 10, "intranetip6": [10, 33, 810, 863], "aaagroup_intranetip_bind": 11, "intranetip": [11, 34, 811, 864], "aaa": [12, 21, 22, 28, 35, 152, 160, 161, 162, 163], "group": [12, 217, 222, 256, 369, 413, 482, 637, 644, 655, 701, 736], "aaagroup_tmsessionpolicy_bind": 13, "tmsessionpolici": [13, 36, 189, 752, 757], "aaagroup_vpnintranetapplication_bind": 14, "vpnintranetappl": [14, 37, 817, 825, 873], "aaagroup_vpnsessionpolicy_bind": 15, "vpnsessionpolici": [15, 38, 820, 834, 876], "aaagroup_vpntrafficpolicy_bind": 16, "vpntrafficpolici": [16, 39, 821, 836, 877], "aaagroup_vpnurl_bind": 17, "vpnurl": [17, 40, 822, 837, 878], "aaagroup_vpnurlpolicy_bind": 18, "vpnurlpolici": [18, 41, 823, 839, 879], "aaakcdaccount": 19, "kerbero": 19, "constrain": 19, "deleg": 19, "account": 19, "aaaldapparam": 20, "ldap": [20, 143, 144], "aaaotpparamet": 21, "otpparamet": 21, "aaaparamet": 22, "aaapreauthenticationact": 23, "pre": [23, 24, 25], "authent": [23, 24, 25, 133, 138, 139, 140, 150, 151, 154, 156, 166, 186, 191, 192], "action": [23, 49, 117, 123, 124, 128, 135, 136, 138, 139, 142, 143, 148, 150, 151, 158, 160, 166, 167, 191, 196, 262, 268, 293, 324, 325, 352, 384, 410, 608, 615, 652, 654, 749, 754, 755, 758, 762, 797, 832, 833, 835, 838], "aaapreauthenticationparamet": 24, "polici": [25, 53, 55, 72, 74, 120, 127, 131, 137, 140, 144, 145, 149, 152, 154, 156, 159, 161, 163, 164, 168, 192, 193, 195, 197, 202, 204, 227, 229, 265, 267, 272, 274, 276, 295, 297, 336, 337, 339, 355, 388, 421, 423, 588, 589, 612, 613, 618, 619, 653, 685, 686, 723, 757, 759, 764, 765, 769, 777, 783, 793, 834, 836, 839], "aaaradiusparam": 26, "radiu": [26, 158, 159, 601, 719], "aaasess": 27, "activ": [27, 603, 715, 824], "connect": [27, 603, 715, 824, 828], "aaassoprofil": 28, "sso": [28, 749, 754, 797, 832], "profil": [28, 44, 97, 132, 133, 153, 162, 165, 198, 210, 235, 241, 275, 321, 340, 386, 396, 399, 424, 467, 484, 485, 486, 490, 494, 496, 512, 535, 536, 564, 580, 598, 600, 671, 680, 689, 718, 767, 792, 794, 795, 829, 830], "aaatacacsparam": 29, "tacac": [29, 167, 168], "aaauser_auditnslogpolicy_bind": 30, "aaauser_auditsyslogpolicy_bind": 31, "aaauser_authorizationpolicy_bind": 32, "aaauser_intranetip6_bind": 33, "aaauser_intranetip_bind": 34, "user": [35, 232, 322, 640, 650, 746, 773], "aaauser_tmsessionpolicy_bind": 36, "aaauser_vpnintranetapplication_bind": 37, "aaauser_vpnsessionpolicy_bind": 38, "aaauser_vpntrafficpolicy_bind": 39, "aaauser_vpnurl_bind": 40, "aaauser_vpnurlpolicy_bind": 41, "admparamet": 42, "adm": 42, "analyticsglobal_analyticsprofile_bind": 43, "analyticsglob": 43, "analyticsprofil": [43, 44, 48, 277, 298, 428, 841], "analyt": 44, "apispec": 45, "api": [45, 46], "specif": 45, "apispecfil": 46, "specificationfil": 46, "appalgparam": 47, "appalg": 47, "param": [47, 458, 717], "appflowaction_analyticsprofile_bind": 48, "appflowact": [48, 49], "appflow": [49, 50, 52, 53, 55], "appflowcollector": [50, 517], "collector": 50, "appflowglobal_appflowpolicy_bind": 51, "appflowglob": 51, "appflowpolici": [51, 53, 54, 278, 299, 429, 843], "appflowparam": [52, 518], "appflowpolicylabel_appflowpolicy_bind": 54, "appflowpolicylabel": [54, 55], "label": [55, 74, 156, 195, 204, 229, 267, 274, 297, 339, 423, 613, 619, 686, 765, 777, 783], "appfwarch": 56, "archiv": 56, "appfwconfidfield": [57, 75], "confidenti": 57, "form": [57, 59, 71, 111, 749, 797], "field": [57, 59], "appfwcustomset": 58, "applic": [58, 59, 72, 74, 97, 110, 116, 199, 465, 467, 825], "firewal": [58, 59, 72, 74, 97, 110], "custom": [58, 118], "set": [58, 70, 109, 215, 456, 584, 590, 595, 607, 743], "xml": [58, 110, 113, 114, 115, 576], "appfwfieldtyp": 59, "type": [59, 63, 64, 65, 67, 71, 111, 113, 256, 323, 326, 584, 632], "appfwglobal_appfwpolicy_bind": 60, "appfwglob": [60, 61, 62], "appfwpolici": [60, 72, 73, 279, 300, 430], "appfwglobal_auditnslogpolicy_bind": 61, "appfwglobal_auditsyslogpolicy_bind": 62, "appfwgrpccontenttyp": 63, "grrpc": [63, 64, 65], "content": [63, 64, 65, 67, 71, 111, 113, 222, 268, 269, 293, 295], "appfwgrpcwebjsoncontenttyp": 64, "web": [64, 65, 191, 192, 453, 575], "json": [64, 67, 68], "appfwgrpcwebtextcontenttyp": 65, "text": 65, "appfwhtmlerrorpag": 66, "html": [66, 610], "error": [66, 68, 114, 740], "page": [66, 68, 114, 118, 610], "appfwjsoncontenttyp": 67, "appfwjsonerrorpag": 68, "appfwlearningdata": 69, "learn": [69, 70], "data": [69, 722, 726], "appfwlearningset": 70, "appfwmultipartformcontenttyp": 71, "multipart": 71, "appfwpolicylabel_appfwpolicy_bind": 73, "appfwpolicylabel": [73, 74], "appfwprofile_appfwconfidfield_bind": 75, "appfwprofil": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "appfwprofile_blockkeyword_bind": 76, "blockkeyword": 76, "appfwprofile_bypasslist_bind": 77, "bypasslist": 77, "appfwprofile_cmdinjection_bind": 78, "cmdinject": 78, "appfwprofile_contenttype_bind": 79, "contenttyp": 79, "appfwprofile_cookieconsistency_bind": 80, "cookieconsist": 80, "appfwprofile_creditcardnumber_bind": 81, "creditcardnumb": 81, "appfwprofile_crosssitescripting_bind": 82, "crosssitescript": 82, "appfwprofile_csrftag_bind": 83, "csrftag": 83, "appfwprofile_denylist_bind": 84, "denylist": 84, "appfwprofile_denyurl_bind": 85, "denyurl": 85, "appfwprofile_excluderescontenttype_bind": 86, "excluderescontenttyp": 86, "appfwprofile_fakeaccount_bind": 87, "fakeaccount": 87, "appfwprofile_fieldconsistency_bind": 88, "fieldconsist": 88, "appfwprofile_fieldformat_bind": 89, "fieldformat": 89, "appfwprofile_fileuploadtype_bind": 90, "fileuploadtyp": 90, "appfwprofile_jsonblockkeyword_bind": 91, "jsonblockkeyword": 91, "appfwprofile_jsoncmdurl_bind": 92, "jsoncmdurl": 92, "appfwprofile_jsondosurl_bind": 93, "jsondosurl": 93, "appfwprofile_jsonsqlurl_bind": 94, "jsonsqlurl": 94, "appfwprofile_jsonxssurl_bind": 95, "jsonxssurl": 95, "appfwprofile_logexpression_bind": 96, "logexpress": [96, 209], "appfwprofile_safeobject_bind": 98, "safeobject": 98, "appfwprofile_sqlinjection_bind": 99, "sqlinject": 99, "appfwprofile_starturl_bind": 100, "starturl": 100, "appfwprofile_trustedlearningclients_bind": 101, "trustedlearningcli": 101, "appfwprofile_xmlattachmenturl_bind": 102, "xmlattachmenturl": 102, "appfwprofile_xmldosurl_bind": 103, "xmldosurl": 103, "appfwprofile_xmlsqlinjection_bind": 104, "xmlsqlinject": 104, "appfwprofile_xmlvalidationurl_bind": 105, "xmlvalidationurl": 105, "appfwprofile_xmlwsiurl_bind": 106, "xmlwsiurl": 106, "appfwprofile_xmlxss_bind": 107, "xmlxss": 107, "appfwprotofil": 108, "grpc": 108, "protofil": 108, "appfwset": 109, "AS": 109, "appfwsignatur": 110, "signatur": [110, 216], "appfwurlencodedformcontenttyp": 111, "urlencod": 111, "appfwwsdl": 112, "wsdl": 112, "file": [112, 245, 378, 461, 592, 668, 669, 679, 728], "appfwxmlcontenttyp": 113, "appfwxmlerrorpag": 114, "appfwxmlschema": 115, "schema": 115, "appqoeact": 117, "appqo": [117, 118, 120], "appqoecustomresp": 118, "respons": [118, 596, 611, 681], "appqoeparamet": 119, "qo": 119, "appqoepolici": [120, 280, 301, 431], "arp": [121, 122], "arpparam": 122, "global": [122, 375, 579], "auditmessageact": 123, "messag": 123, "auditnslogact": 124, "n": [124, 126, 127, 387, 546, 722], "log": [124, 126, 127, 128, 130, 131, 453, 484, 486, 575, 680], "auditnslogglobal_auditnslogpolicy_bind": 125, "auditnslogglob": 125, "auditnslogparam": 126, "auditsyslogact": 128, "system": [128, 130, 131, 523, 736, 742, 744, 746], "auditsyslogglobal_auditsyslogpolicy_bind": 129, "auditsyslogglob": 129, "auditsyslogparam": 130, "authenticationadfsproxyprofil": 132, "adfsproxi": 132, "authenticationauthnprofil": 133, "authenticationazurekeyvault": 134, "azur": [134, 199, 200], "kei": [134, 200, 330, 528, 532, 632, 655, 661, 672, 674, 678, 679, 693, 712, 741], "vault": [134, 200], "entiti": [134, 141, 200, 726], "authenticationcaptchaact": 135, "captcha": [135, 206], "authenticationcertact": 136, "cert": [136, 137], "authenticationcertpolici": [137, 171, 801, 846], "authenticationcitrixauthact": 138, "citrix": [138, 547, 599], "authenticationdfaact": 139, "dfa": [139, 140], "authenticationdfapolici": [140, 847], "authenticationemailact": 141, "email": 141, "authenticationepaact": 142, "epa": [142, 795], "authenticationldapact": 143, "authenticationldappolici": [144, 172, 731, 802, 848], "authenticationlocalpolici": [145, 173, 732, 803, 849], "local": 145, "authenticationloginschema": 146, "0": [146, 147, 244, 261, 392, 582, 583, 605, 721, 725, 727, 745, 760, 761], "authenticationloginschemapolici": [147, 174, 850], "negoti": [148, 149], "authenticationnegotiatepolici": [149, 175, 804, 851], "authenticationnoauthact": 150, "authenticationoauthact": 151, "oauth": [151, 152, 153], "authenticationoauthidppolici": [152, 176, 852], "identityprovid": [152, 161, 162], "idp": [152, 153, 161, 162], "authenticationoauthidpprofil": 153, "ident": 153, "provid": 153, "authenticationpolici": [154, 155, 177, 733, 805, 853], "authenticationpolicylabel_authenticationpolicy_bind": 155, "authenticationpolicylabel": [155, 156], "authenticationpushservic": 157, "servic": [157, 258, 366, 369, 445, 554, 555, 607, 634, 635, 637, 695, 701], "detail": 157, "send": 157, "push": 157, "notif": 157, "authenticationradiusact": 158, "authenticationradiuspolici": [159, 178, 734, 806, 854], "authenticationsamlact": 160, "saml": [160, 161, 162, 163, 754, 832], "authenticationsamlidppolici": [161, 179, 855], "authenticationsamlidpprofil": 162, "authenticationsamlpolici": [163, 180, 807, 856], "authenticationsmartaccesspolici": [164, 181], "smartaccess": [164, 165], "authenticationsmartaccessprofil": 165, "authenticationstorefrontauthact": 166, "storefront": 166, "authenticationtacacsact": 167, "authenticationtacacspolici": [168, 182, 735, 808, 857], "authenticationvserver_auditnslogpolicy_bind": 169, "authenticationvserv": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 249], "authenticationvserver_auditsyslogpolicy_bind": 170, "authenticationvserver_authenticationcertpolicy_bind": 171, "authenticationvserver_authenticationldappolicy_bind": 172, "authenticationvserver_authenticationlocalpolicy_bind": 173, "authenticationvserver_authenticationloginschemapolicy_bind": 174, "authenticationvserver_authenticationnegotiatepolicy_bind": 175, "authenticationvserver_authenticationoauthidppolicy_bind": 176, "authenticationvserver_authenticationpolicy_bind": 177, "authenticationvserver_authenticationradiuspolicy_bind": 178, "authenticationvserver_authenticationsamlidppolicy_bind": 179, "authenticationvserver_authenticationsamlpolicy_bind": 180, "authenticationvserver_authenticationsmartaccesspolicy_bind": 181, "authenticationvserver_authenticationtacacspolicy_bind": 182, "authenticationvserver_authenticationwebauthpolicy_bind": 183, "authenticationwebauthpolici": [183, 192, 858], "authenticationvserver_cachepolicy_bind": 184, "cachepolici": [184, 224, 227, 228, 281, 306, 436, 859], "authenticationvserver_cspolicy_bind": 185, "cspolici": [185, 284, 295, 296, 309, 860], "virtual": [186, 243, 288, 314, 375, 442, 706, 774, 865, 882, 886, 889], "server": [186, 243, 288, 314, 332, 334, 344, 375, 442, 578, 581, 633, 706, 770, 774, 826, 865, 889], "authenticationvserver_responderpolicy_bind": 187, "responderpolici": [187, 290, 315, 443, 609, 612, 614, 866], "authenticationvserver_rewritepolicy_bind": 188, "rewritepolici": [188, 291, 316, 444, 616, 618, 620, 867], "authenticationvserver_tmsessionpolicy_bind": 189, "authenticationvserver_vpnportaltheme_bind": 190, "vpnportalthem": [190, 819, 831, 875], "authenticationwebauthact": 191, "authorizationpolicylabel_authorizationpolicy_bind": 194, "authorizationpolicylabel": [194, 195], "autoscaleact": 196, "autoscal": [196, 197, 198], "autoscalepolici": [197, 566], "autoscaleprofil": 198, "azureappl": 199, "azurekeyvault": 200, "botglobal_botpolicy_bind": 201, "botglob": 201, "botpolici": [201, 202, 203, 305, 435], "bot": [202, 204, 210, 215, 216], "botpolicylabel_botpolicy_bind": 203, "botpolicylabel": [203, 204], "botprofile_blacklist_bind": 205, "botprofil": [205, 206, 207, 208, 209, 210, 211, 212, 213, 214], "blacklist": 205, "botprofile_captcha_bind": 206, "botprofile_ipreputation_bind": 207, "ipreput": 207, "botprofile_kmdetectionexpr_bind": 208, "kmdetectionexpr": 208, "botprofile_logexpression_bind": 209, "botprofile_ratelimit_bind": 211, "ratelimit": 211, "botprofile_tps_bind": 212, "tp": 212, "botprofile_trapinsertionurl_bind": 213, "trapinsertionurl": 213, "botprofile_whitelist_bind": 214, "whitelist": 214, "botset": 215, "engin": [215, 643], "botsignatur": 216, "bridgegroup": [217, 218, 219, 220, 548, 569], "bridg": [217, 221, 508, 598], "bridgegroup_nsip6_bind": 218, "nsip6": [218, 401, 509, 537, 622, 790, 891], "bridgegroup_nsip_bind": 219, "nsip": [219, 402, 510, 538, 624, 791, 892], "bridgegroup_vlan_bind": 220, "vlan": [220, 511, 550, 571, 786, 787, 788, 789, 790, 791, 894], "bridget": 221, "tabl": [221, 415], "entri": [221, 361, 362, 515, 516], "cachecontentgroup": 222, "integr": [222, 227], "cach": [222, 225, 226, 227, 229, 230, 276, 345], "cacheforwardproxi": 223, "forward": [223, 359], "proxi": [223, 341], "cacheglobal_cachepolicy_bind": 224, "cacheglob": 224, "cacheobject": 225, "object": [225, 256], "cacheparamet": 226, "cachepolicylabel_cachepolicy_bind": 228, "cachepolicylabel": [228, 229], "cacheselector": 230, "selector": [230, 543, 714], "callhom": 231, "change_password": 232, "chang": 232, "password": 232, "node": [232, 247, 256, 379, 463, 464, 553, 601], "channel_interface_bind": 233, "channel": [233, 234, 356, 454, 786, 880, 884], "interfac": [233, 357, 393, 455, 716, 719, 787, 881, 885], "cloudallowedngsticketprofil": 235, "allow": 235, "ticket": 235, "ng": 235, "cloudawsparam": 236, "cloud": [236, 237, 238, 239, 240, 241, 243], "awsparam": 236, "cloudcredenti": 237, "credenti": 237, "cloudngsparamet": 238, "ngsparamet": 238, "cloudparamet": 239, "cloudparamintern": 240, "paramintern": 240, "cloudprofil": 241, "cloudtunnelparamet": 242, "cloudtunnel": 242, "cloudtunnelvserv": 243, "tunnel": [243, 394, 395, 403, 404, 769], "cluster": [244, 246, 247], "clusterfil": 245, "clusterinst": 246, "instanc": 246, "clusternod": [247, 248, 250], "clusternode_routemonitor_bind": 248, "routemonitor": [248, 381], "clusternodegroup_authenticationvserver_bind": 249, "clusternodegroup": [249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260], "clusternodegroup_clusternode_bind": 250, "clusternodegroup_crvserver_bind": 251, "crvserver": [251, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292], "clusternodegroup_csvserver_bind": 252, "csvserver": [252, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320], "clusternodegroup_gslbsite_bind": 253, "gslbsite": [253, 370], "clusternodegroup_gslbvserver_bind": 254, "gslbvserver": [254, 312, 371, 372, 373, 374, 375, 376], "clusternodegroup_lbvserver_bind": 255, "lbvserver": [255, 287, 313, 412, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452], "clusternodegroup_nslimitidentifier_bind": 257, "nslimitidentifi": [257, 542], "clusternodegroup_service_bind": 258, "clusternodegroup_streamidentifier_bind": 259, "streamidentifi": [259, 713], "clusternodegroup_vpnvserver_bind": 260, "vpnvserver": [260, 320, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879], "clusterpropstatu": 261, "cmpaction": 262, "compress": [262, 265, 267], "cmpglobal_cmppolicy_bind": 263, "cmpglobal": 263, "cmppolici": [263, 265, 266, 282, 307, 437], "cmpparamet": 264, "cmp": 264, "cmppolicylabel_cmppolicy_bind": 266, "cmppolicylabel": [266, 267], "contentinspectionact": 268, "inspect": [268, 269], "contentinspectioncallout": 269, "callout": [269, 587], "contentinspectionglobal_contentinspectionpolicy_bind": 270, "contentinspectionglob": 270, "contentinspectionpolici": [270, 272, 273, 308, 438], "contentinspectionparamet": 271, "contentinspect": [271, 272, 274, 275], "contentinspectionpolicylabel_contentinspectionpolicy_bind": 273, "contentinspectionpolicylabel": [273, 274], "contentinspectionprofil": 275, "crpolici": [276, 283], "redirect": 276, "crvserver_analyticsprofile_bind": 277, "crvserver_appflowpolicy_bind": 278, "crvserver_appfwpolicy_bind": 279, "crvserver_appqoepolicy_bind": 280, "crvserver_cachepolicy_bind": 281, "crvserver_cmppolicy_bind": 282, "crvserver_crpolicy_bind": 283, "crvserver_cspolicy_bind": 284, "crvserver_feopolicy_bind": 285, "feopolici": [285, 311, 353, 355, 440, 861], "crvserver_icapolicy_bind": 286, "icapolici": [286, 385, 388, 862], "crvserver_lbvserver_bind": 287, "cr": 288, "crvserver_policymap_bind": 289, "policymap": [289, 588], "crvserver_responderpolicy_bind": 290, "crvserver_rewritepolicy_bind": 291, "crvserver_spilloverpolicy_bind": 292, "spilloverpolici": [292, 317, 376, 447, 653], "csaction": 293, "switch": [293, 295], "csparamet": 294, "c": [294, 297, 314], "cspolicylabel_cspolicy_bind": 296, "cspolicylabel": [296, 297], "csvserver_analyticsprofile_bind": 298, "csvserver_appflowpolicy_bind": 299, "csvserver_appfwpolicy_bind": 300, "csvserver_appqoepolicy_bind": 301, "csvserver_auditnslogpolicy_bind": 302, "csvserver_auditsyslogpolicy_bind": 303, "csvserver_authorizationpolicy_bind": 304, "csvserver_botpolicy_bind": 305, "csvserver_cachepolicy_bind": 306, "csvserver_cmppolicy_bind": 307, "csvserver_contentinspectionpolicy_bind": 308, "csvserver_cspolicy_bind": 309, "csvserver_domain_bind": 310, "domain": [310, 371, 501, 570, 809], "csvserver_feopolicy_bind": 311, "csvserver_gslbvserver_bind": 312, "csvserver_lbvserver_bind": 313, "csvserver_responderpolicy_bind": 315, "csvserver_rewritepolicy_bind": 316, "csvserver_spilloverpolicy_bind": 317, "csvserver_tmtrafficpolicy_bind": 318, "tmtrafficpolici": [318, 448, 753, 759], "csvserver_transformpolicy_bind": 319, "transformpolici": [319, 449, 763, 764, 766], "csvserver_vpnvserver_bind": 320, "dbdbprofil": 321, "db": [321, 322], "dbuser": 322, "dnsaaaarec": 323, "ipv6": [323, 405, 579, 621, 882], "address": [323, 326], "record": [323, 326, 327, 328, 331, 333, 334, 341, 342, 343, 344, 347], "dnsaction64": 324, "dns64": [324, 336], "dnsaction": 325, "dn": [325, 330, 335, 337, 339, 340, 346, 348, 349], "dnsaddrec": 326, "dnscaarec": 327, "caa": 327, "dnscnamerec": 328, "cname": 328, "dnsglobal_dnspolicy_bind": 329, "dnsglobal": 329, "dnspolici": [329, 337, 338], "dnskei": 330, "dnsmxrec": 331, "mx": 331, "dnsnameserv": 332, "name": [332, 334, 533], "dnsnaptrrec": 333, "naptr": 333, "dnsnsrec": 334, "dnsparamet": 335, "dnspolicy64": [336, 439], "dnspolicylabel_dnspolicy_bind": 338, "dnspolicylabel": [338, 339], "dnsprofil": 340, "dnsproxyrecord": 341, "dnsptrrec": 342, "ptr": 342, "dnssoarec": 343, "soa": 343, "dnssrvrec": 344, "dnssubnetcach": 345, "subnet": 345, "dnssuffix": 346, "suffix": 346, "dnstxtrec": 347, "txt": 347, "dnsview": [348, 364], "view": [348, 651], "dnszone": 349, "zone": 349, "endpointinfo": 350, "inform": 350, "extendedmemoryparam": 351, "extend": 351, "memori": 351, "us": 351, "lsn": [351, 465, 467, 469, 482, 484, 485, 486, 487, 489, 490, 491, 492, 493, 494, 496], "subscrib": [351, 717, 718, 720], "store": 351, "feoaction": 352, "front": [352, 355], "end": [352, 355], "optim": [352, 355], "feoglobal_feopolicy_bind": 353, "feoglob": 353, "feoparamet": 354, "feo": 354, "fis_channel_bind": 356, "fi": [356, 357, 358], "fis_interface_bind": 357, "forwardingsess": 359, "session": [359, 397, 420, 491, 492, 544, 628, 744, 755, 756, 757, 829, 833, 834], "gslbconfig": 360, "gslb": [360, 363, 366, 369, 370], "config": [360, 387, 502, 523, 606, 631], "gslbldnsentri": [361, 362], "ldn": [361, 362], "gslbparamet": 363, "gslbservice_dnsview_bind": 364, "gslbservic": [364, 365, 366, 372], "gslbservice_lbmonitor_bind": 365, "lbmonitor": [365, 368, 416, 417, 418, 634, 636], "gslbservicegroup_gslbservicegroupmember_bind": 367, "gslbservicegroup": [367, 368, 369, 373], "gslbservicegroupmemb": 367, "gslbservicegroup_lbmonitor_bind": 368, "site": 370, "gslbvserver_domain_bind": 371, "gslbvserver_gslbservice_bind": 372, "gslbvserver_gslbservicegroup_bind": 373, "gslbvserver_lbpolicy_bind": 374, "lbpolici": [374, 411, 421, 422, 441], "load": [375, 442], "balanc": [375, 442], "gslbvserver_spilloverpolicy_bind": 376, "hafailov": 377, "failov": 377, "hafil": 378, "hanod": [379, 380, 381], "hanode_routemonitor6_bind": 380, "routemonitor6": 380, "hanode_routemonitor_bind": 381, "hasync": 382, "sync": 382, "icaaccessprofil": 383, "ica": [383, 384, 387, 388, 824], "accessprofil": 383, "icaact": 384, "icaglobal_icapolicy_bind": 385, "icaglob": 385, "icalatencyprofil": 386, "latenc": 386, "monitor": [386, 417], "icaparamet": 387, "inat": [389, 390], "inbound": 389, "nat": 389, "inatparam": 390, "descript": 391, "plugin": [391, 897], "instal": 392, "interfacepair": 393, "pair": [393, 655], "ip6tunnel": 394, "ip6": [394, 395, 485, 537], "ip6tunnelparam": 395, "ipsecalgprofil": [396, 474], "ipsec": [396, 397, 398, 399], "alg": [396, 397], "ipsecalgsess": 397, "ipsecparamet": 398, "paramt": [398, 772], "ipsecprofil": 399, "ipset": [400, 401, 402], "network": [400, 471, 508, 512], "ipset_nsip6_bind": 401, "ipset_nsip_bind": 402, "iptunnel": [403, 507], "ip": [403, 404, 405, 538], "iptunnelparam": 404, "v6": 405, "l2param": 406, "layer": [406, 407, 408], "2": 406, "relat": [406, 407, 408], "l3param": 407, "3": 407, "l4param": 408, "4": 408, "lacp": 409, "aggreg": 409, "control": [409, 552], "protocol": [409, 597, 773], "lbaction": 410, "lb": [410, 413, 419, 421, 423, 424, 425, 426], "lbglobal_lbpolicy_bind": 411, "lbglobal": 411, "lbgroup_lbvserver_bind": 412, "lbgroup": [412, 413], "lbmetrictable_metric_bind": 414, "lbmetrict": [414, 415], "metric": [414, 415, 416], "lbmonitor_metric_bind": 416, "lbmonitor_sslcertkey_bind": 418, "sslcertkei": [418, 656, 661, 662, 690, 696, 702, 707, 813], "lbparamet": 419, "lbpersistentsess": 420, "persist": 420, "lbpolicylabel_lbpolicy_bind": 422, "lbpolicylabel": [422, 423], "lbprofil": 424, "lbroute6": 425, "route6": [425, 629], "lbrout": 426, "rout": [426, 621, 623, 629, 630, 631], "lbsipparamet": 427, "sip": 427, "lbvserver_analyticsprofile_bind": 428, "lbvserver_appflowpolicy_bind": 429, "lbvserver_appfwpolicy_bind": 430, "lbvserver_appqoepolicy_bind": 431, "lbvserver_auditnslogpolicy_bind": 432, "lbvserver_auditsyslogpolicy_bind": 433, "lbvserver_authorizationpolicy_bind": 434, "lbvserver_botpolicy_bind": 435, "lbvserver_cachepolicy_bind": 436, "lbvserver_cmppolicy_bind": 437, "lbvserver_contentinspectionpolicy_bind": 438, "lbvserver_dnspolicy64_bind": 439, "lbvserver_feopolicy_bind": 440, "lbvserver_lbpolicy_bind": 441, "lbvserver_responderpolicy_bind": 443, "lbvserver_rewritepolicy_bind": 444, "lbvserver_service_bind": 445, "lbvserver_servicegroup_bind": 446, "servicegroup": [446, 636, 637, 638], "lbvserver_spilloverpolicy_bind": 447, "lbvserver_tmtrafficpolicy_bind": 448, "lbvserver_transformpolicy_bind": 449, "lbvserver_videooptimizationdetectionpolicy_bind": 450, "videooptimizationdetectionpolici": [450, 776, 778, 779], "lbvserver_videooptimizationpacingpolicy_bind": 451, "videooptimizationpacingpolici": [451, 780, 782, 784], "lbwlm_lbvserver_bind": 452, "lbwlm": [452, 453], "manag": [453, 645], "linkset_channel_bind": 454, "linkset": [454, 455, 456, 788], "linkset_interface_bind": 455, "lldpneighbor": 457, "lldp": [457, 458], "neighbor": 457, "lldpparam": 458, "locat": [459, 460, 461, 462], "locationfile6": 460, "file6": 460, "locationfil": 461, "locationparamet": 462, "login": 463, "logout": 464, "from": 464, "lsnappsattribut": [465, 466], "attribut": 465, "lsnappsprofile_lsnappsattributes_bind": 466, "lsnappsprofil": [466, 467, 468, 475], "lsnappsprofile_port_bind": 468, "port": 468, "lsnclient": [469, 470, 471, 472, 473], "client": 469, "lsnclient_network6_bind": 470, "network6": 470, "lsnclient_network_bind": 471, "lsnclient_nsacl6_bind": 472, "nsacl6": 472, "lsnclient_nsacl_bind": 473, "nsacl": [473, 516], "lsngroup_ipsecalgprofile_bind": 474, "lsngroup": [474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "lsngroup_lsnappsprofile_bind": 475, "lsngroup_lsnhttphdrlogprofile_bind": 476, "lsnhttphdrlogprofil": [476, 484], "lsngroup_lsnlogprofile_bind": 477, "lsnlogprofil": [477, 486], "lsngroup_lsnpool_bind": 478, "lsnpool": [478, 488, 489], "lsngroup_lsnrtspalgprofile_bind": 479, "lsnrtspalgprofil": [479, 490], "lsngroup_lsnsipalgprofile_bind": 480, "lsnsipalgprofil": [480, 494], "lsngroup_lsntransportprofile_bind": 481, "lsntransportprofil": [481, 496], "lsngroup_pcpserver_bind": 483, "pcpserver": [483, 581], "http": [484, 534, 535, 587, 596], "header": 484, "lsnip6profil": 485, "lsnparamet": 487, "lsnpool_lsnip_bind": 488, "lsnip": 488, "pool": 489, "rtspalg": [490, 491], "lsnrtspalgsess": 491, "lsnsession": 492, "lsnsipalgcal": 493, "sipalg": [493, 494], "call": 493, "lsnstatic": 495, "static": 495, "map": [495, 498, 499, 501, 588, 593, 894], "transport": 496, "mapbmr_bmrv4network_bind": 497, "mapbmr": [497, 498, 500], "bmrv4network": 497, "t": [498, 499, 501], "basic": 498, "rule": [498, 499], "mapdmr": 499, "default": [499, 529], "mapdomain_mapbmr_bind": 500, "mapdomain": [500, 501], "nat64": [502, 503], "nat64param": 503, "nd6": [504, 505], "nd6ravari": [505, 506], "router": [505, 579, 882, 886], "advertis": [505, 579], "nd6ravariables_onlinkipv6prefix_bind": 506, "onlinkipv6prefix": [506, 579], "netbridge_iptunnel_bind": 507, "netbridg": [507, 508, 509, 510, 511], "netbridge_nsip6_bind": 509, "netbridge_nsip_bind": 510, "netbridge_vlan_bind": 511, "netprofil": [512, 513, 514], "netprofile_natrule_bind": 513, "natrul": 513, "netprofile_srcportset_bind": 514, "srcportset": 514, "nsacls6": 515, "acl6": [515, 557], "acl": [516, 558], "nsappflowcollector": 517, "nsappflowparam": 518, "nsaptlicens": 519, "aptlicens": 519, "nsassign": 520, "assign": 520, "nscapac": 521, "capac": 521, "nscentralmanagementserv": 522, "centralmanagementserv": 522, "nsconfig": 523, "nsconsoleloginprompt": 524, "consol": 524, "prompt": 524, "nscqaparam": 525, "cqaparam": 525, "nsdhcpparam": 526, "dhcp": 526, "nsdiamet": 527, "diamet": 527, "nsencryptionkei": 528, "encrypt": [528, 529, 741], "nsencryptionparam": 529, "nsextens": 530, "extens": 530, "nsfeatur": 531, "featur": 531, "nshmackei": 532, "hmac": 532, "nshostnam": 533, "host": 533, "nshttpparam": 534, "nshttpprofil": 535, "nsicapprofil": 536, "icap": 536, "nslicenseparamet": 539, "licenseparamet": 539, "nslicenseproxyserv": 540, "licenseproxyserv": 540, "nslicenseserv": 541, "licenseserv": 541, "limit": [542, 543, 544], "indetifi": 542, "nslimitselector": 543, "nslimitsess": 544, "nsmigrat": 545, "migrat": 545, "oper": [545, 568], "nsmode": 546, "mode": 546, "nsparam": 547, "nspartition_bridgegroup_bind": 548, "nspartit": [548, 549, 550, 551, 737, 747], "admin": 549, "partit": 549, "nspartition_vlan_bind": 550, "nspartition_vxlan_bind": 551, "vxlan": [551, 572, 890, 891, 892, 893, 894, 895], "nsratecontrol": 552, "rate": 552, "nsrpcnode": 553, "rpc": 553, "nsservicefunct": [554, 556], "function": 554, "nsservicepath": [555, 556], "chain": 555, "nsservicepath_nsservicefunction_bind": 556, "nssimpleacl6": 557, "simpl": [557, 558], "nssimpleacl": 558, "nsspparam": 559, "surg": [559, 561], "protect": 559, "nsstat": 560, "stat": 560, "nssurgeq": 561, "queue": 561, "nstcpbufparam": 562, "tcp": [562, 563, 564], "buffer": 562, "nstcpparam": 563, "nstcpprofil": 564, "nstimeout": 565, "timeout": 565, "nstimer_autoscalepolicy_bind": 566, "nstimer": [566, 567], "timer": 567, "nstrace": 568, "nstrafficdomain_bridgegroup_bind": 569, "nstrafficdomain": [569, 570, 571, 572], "traffic": [570, 758, 759, 835, 836], "nstrafficdomain_vlan_bind": 571, "nstrafficdomain_vxlan_bind": 572, "nsvariabl": 573, "nsvpxparam": 574, "vpx": 574, "nsweblogparam": 575, "nsxmlnamespac": 576, "namespac": [576, 896], "ntpparam": 577, "ntp": [577, 578], "ntpserver": 578, "prefix": 579, "pcpprofil": 580, "pcp": 580, "ping6": 582, "ping": 583, "policydataset": [584, 585], "policydataset_value_bind": 585, "policyexpress": 586, "express": 586, "policyhttpcallout": 587, "policyparam": 589, "policypatset": [590, 591], "pat": 590, "policypatset_pattern_bind": 591, "pattern": [591, 594], "policypatsetfil": 592, "patset": 592, "policystringmap": [593, 594], "string": 593, "policystringmap_pattern_bind": 594, "policyurlset": 595, "url": [595, 764, 767, 837, 838, 839], "protocolhttpband": 596, "request": [596, 664], "band": 596, "ptp": 597, "precis": 597, "time": 597, "quicbridgeprofil": 598, "quic": [598, 599, 600], "quicparam": 599, "quicprofil": 600, "radiusnod": 601, "rdpclientprofil": 602, "rdp": [602, 603, 604], "clientprofil": 602, "rdpconnect": 603, "rdpserverprofil": 604, "serverprofil": 604, "reboot": 605, "reportingconfig": 606, "report": 606, "reputationset": 607, "reput": 607, "responderact": 608, "respond": [608, 610, 612, 613], "responderglobal_responderpolicy_bind": 609, "responderglob": 609, "responderhtmlpag": 610, "responderparam": 611, "responderpolicylabel": [613, 614], "responderpolicylabel_responderpolicy_bind": 614, "rewriteact": 615, "rewrit": [615, 617, 618, 619, 793, 794], "rewriteglobal_rewritepolicy_bind": 616, "rewriteglob": 616, "rewriteparam": 617, "rewritepolicylabel": [619, 620], "rewritepolicylabel_rewritepolicy_bind": 620, "rnat6": [621, 622], "rnat": [621, 623, 624, 625, 627, 628], "rnat6_nsip6_bind": 622, "rnat_nsip_bind": 624, "rnat_retainsourceportset_bind": 625, "retainsourceportset": 625, "rnatglobal_auditsyslogpolicy_bind": 626, "rnatglob": 626, "rnatparam": 627, "rnatsess": 628, "6": 629, "routerdynamicrout": 631, "dynam": 631, "rsskeytyp": 632, "rss": 632, "service_lbmonitor_bind": 634, "servicegroup_lbmonitor_bind": 636, "servicegroup_servicegroupmember_bind": 638, "servicegroupmemb": 638, "smppparam": 639, "smpp": [639, 640], "smppuser": 640, "snmpalarm": 641, "alarm": 641, "snmpcommun": 642, "commun": 642, "snmpengineid": 643, "snmp": [643, 644, 646, 647, 648, 650], "id": [643, 882, 886, 888], "snmpgroup": 644, "snmpmanag": 645, "snmpmib": 646, "mib": 646, "snmpoption": 647, "option": 647, "snmptrap": [648, 649], "trap": 648, "snmptrap_snmpuser_bind": 649, "snmpuser": [649, 650], "snmpview": 651, "spilloveract": 652, "spillov": [652, 653], "sslaction": 654, "ssl": [654, 679, 680, 682, 685, 686, 689, 695, 701, 706], "sslcacertgroup": [655, 656], "ca": 655, "sslcacertgroup_sslcertkey_bind": 656, "sslcert": 657, "cerif": 657, "sslcertbundl": 658, "import": [658, 659, 668, 669, 679], "certbundl": 658, "sslcertfil": 659, "certfil": 659, "sslcertificatechain": 660, "sslcertkey_sslocspresponder_bind": 662, "sslocsprespond": [662, 681], "sslcertkeybundl": [663, 708], "certkei": 663, "bundl": 663, "sslcertreq": 664, "sslcipher": [665, 666, 691, 697, 703, 709], "cipher": 665, "sslcipher_sslciphersuite_bind": 666, "sslciphersuit": [666, 692, 698, 704, 710], "sslcrl": 667, "revoc": 667, "list": 667, "sslcrlfile": 668, "crl": 668, "ssldhfile": 669, "dh": [669, 670], "ssldhparam": 670, "ssldtlsprofil": 671, "dtl": 671, "sslecdsakei": 672, "ecdsa": 672, "sslfip": 673, "fip": [673, 674, 676], "sslfipskei": 674, "sslfipssimsourc": 675, "fipssim": 675, "sourc": 675, "sslfipssimtarget": 676, "sim": 676, "target": 676, "sslglobal_sslpolicy_bind": 677, "sslglobal": 677, "sslpolici": [677, 685, 687, 699, 711], "sslhsmkei": 678, "hsm": 678, "sslkeyfil": 679, "ssllogprofil": 680, "ocsp": 681, "sslparamet": 682, "sslpkcs12": 683, "pkcs12": 683, "sslpkcs8": 684, "pkcs8": 684, "sslpolicylabel": [686, 687], "sslpolicylabel_sslpolicy_bind": 687, "sslprofile_ecccurve_bind": 688, "sslprofil": [688, 689, 690, 691, 692], "ecccurv": [688, 694, 700, 705], "sslprofile_sslcertkey_bind": 690, "sslprofile_sslcipher_bind": 691, "sslprofile_sslciphersuite_bind": 692, "sslrsakei": 693, "rsa": 693, "sslservice_ecccurve_bind": 694, "sslservic": [694, 695, 696, 697, 698, 699], "sslservice_sslcertkey_bind": 696, "sslservice_sslcipher_bind": 697, "sslservice_sslciphersuite_bind": 698, "sslservice_sslpolicy_bind": 699, "sslservicegroup_ecccurve_bind": 700, "sslservicegroup": [700, 701, 702, 703, 704], "sslservicegroup_sslcertkey_bind": 702, "sslservicegroup_sslcipher_bind": 703, "sslservicegroup_sslciphersuite_bind": 704, "sslvserver_ecccurve_bind": 705, "sslvserver": [705, 706, 707, 708, 709, 710, 711], "sslvserver_sslcertkey_bind": 707, "sslvserver_sslcertkeybundle_bind": 708, "sslvserver_sslcipher_bind": 709, "sslvserver_sslciphersuite_bind": 710, "sslvserver_sslpolicy_bind": 711, "sslwrapkei": 712, "wrap": 712, "identifi": 713, "streamselector": 714, "streamsess": 715, "subscribergxinterfac": 716, "gx": 716, "subscriberparam": 717, "subscriberprofil": 718, "subscriberradiusinterfac": 719, "subscribersess": 720, "sesion": 720, "systemadmuserinfo": 721, "systembackup": 722, "backup": 722, "restor": [722, 743], "systemcmdpolici": [723, 738, 748], "command": 723, "systemcollectionparam": 724, "systemcpuparam": 725, "systementitydata": 726, "systemextramgmtcpu": 727, "systemfil": 728, "systemglobal_auditnslogpolicy_bind": 729, "systemglob": [729, 730, 731, 732, 733, 734, 735], "systemglobal_auditsyslogpolicy_bind": 730, "systemglobal_authenticationldappolicy_bind": 731, "systemglobal_authenticationlocalpolicy_bind": 732, "systemglobal_authenticationpolicy_bind": 733, "systemglobal_authenticationradiuspolicy_bind": 734, "systemglobal_authenticationtacacspolicy_bind": 735, "systemgroup": [736, 737, 738, 739], "systemgroup_nspartition_bind": 737, "systemgroup_systemcmdpolicy_bind": 738, "systemgroup_systemuser_bind": 739, "systemus": [739, 746, 747, 748], "systemhwerror": 740, "hardwar": 740, "systemkek": 741, "systemparamet": 742, "systemrestorepoint": 743, "restorepoint": 743, "auto": 743, "systemsess": 744, "systemsshkei": 745, "systemuser_nspartition_bind": 747, "systemuser_systemcmdpolicy_bind": 748, "tmformssoact": 749, "tmglobal_auditnslogpolicy_bind": 750, "tmglobal": [750, 751, 752, 753], "tmglobal_auditsyslogpolicy_bind": 751, "tmglobal_tmsessionpolicy_bind": 752, "tmglobal_tmtrafficpolicy_bind": 753, "tmsamlssoprofil": 754, "tmsessionact": 755, "tm": [755, 757, 758, 759], "tmsessionparamet": 756, "tmtrafficact": 758, "traceroute6": 760, "tracerout": 761, "transformact": 762, "transform": [762, 764, 765, 767], "transformglobal_transformpolicy_bind": 763, "transformglob": 763, "transformpolicylabel": [765, 766], "transformpolicylabel_transformpolicy_bind": 766, "transformprofil": 767, "tunnelglobal_tunneltrafficpolicy_bind": 768, "tunnelglob": 768, "tunneltrafficpolici": [768, 769], "ulfdserv": 770, "ulfd": 770, "urlfilteringcategor": 771, "categor": 771, "urlfilteringparamet": 772, "urlfilt": 772, "userprotocol": 773, "uservserv": 774, "videooptimizationdetectionact": 775, "videooptim": [775, 776, 777, 781, 782, 783, 785], "detectionact": 775, "detectionpolici": 776, "videooptimizationdetectionpolicylabel": [777, 778], "detect": 777, "videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_bind": 778, "videooptimizationglobaldetection_videooptimizationdetectionpolicy_bind": 779, "videooptimizationglobaldetect": 779, "videooptimizationglobalpacing_videooptimizationpacingpolicy_bind": 780, "videooptimizationglobalpac": 780, "videooptimizationpacingact": 781, "pacingact": 781, "pacingpolici": 782, "videooptimizationpacingpolicylabel": [783, 784], "pace": 783, "videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_bind": 784, "videooptimizationparamet": 785, "vlan_channel_bind": 786, "vlan_interface_bind": 787, "vlan_linkset_bind": 788, "vlan_nsip6_bind": 790, "vlan_nsip_bind": 791, "vpnalwaysonprofil": 792, "alwyason": 792, "vpnclientlessaccesspolici": [793, 815, 870], "clientless": [793, 794], "vpn": [793, 794, 827, 833, 834, 835, 836, 837, 838, 839, 865], "vpnclientlessaccessprofil": 794, "vpnepaprofil": [795, 871], "vpneula": [796, 816, 872], "eula": 796, "vserver": [796, 830, 889], "vpnformssoact": 797, "vpnglobal_appcontroller_bind": 798, "vpnglobal": [798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823], "appcontrol": [798, 842], "vpnglobal_auditnslogpolicy_bind": 799, "vpnglobal_auditsyslogpolicy_bind": 800, "vpnglobal_authenticationcertpolicy_bind": 801, "vpnglobal_authenticationldappolicy_bind": 802, "vpnglobal_authenticationlocalpolicy_bind": 803, "vpnglobal_authenticationnegotiatepolicy_bind": 804, "vpnglobal_authenticationpolicy_bind": 805, "vpnglobal_authenticationradiuspolicy_bind": 806, "vpnglobal_authenticationsamlpolicy_bind": 807, "vpnglobal_authenticationtacacspolicy_bind": 808, "vpnglobal_domain_bind": 809, "vpnglobal_intranetip6_bind": 810, "vpnglobal_intranetip_bind": 811, "vpnglobal_sharefileserver_bind": 812, "sharefileserv": [812, 868], "vpnglobal_sslcertkey_bind": 813, "vpnglobal_staserver_bind": 814, "staserv": [814, 869], "vpnglobal_vpnclientlessaccesspolicy_bind": 815, "vpnglobal_vpneula_bind": 816, "vpnglobal_vpnintranetapplication_bind": 817, "vpnglobal_vpnnexthopserver_bind": 818, "vpnnexthopserv": [818, 826, 874], "vpnglobal_vpnportaltheme_bind": 819, "vpnglobal_vpnsessionpolicy_bind": 820, "vpnglobal_vpntrafficpolicy_bind": 821, "vpnglobal_vpnurl_bind": 822, "vpnglobal_vpnurlpolicy_bind": 823, "vpnicaconnect": 824, "sslvpn": 825, "intranet": 825, "next": 826, "hop": 826, "vpnparamet": 827, "vpnpcoipconnect": 828, "pcoip": [828, 829, 830], "vpnpcoipprofil": 829, "vpnpcoipvserverprofil": 830, "portalthem": 831, "vpnsamlssoprofil": 832, "vpnsessionact": 833, "vpntrafficact": 835, "vpnurlact": 838, "vpnvserver_aaapreauthenticationpolicy_bind": 840, "vpnvserver_analyticsprofile_bind": 841, "vpnvserver_appcontroller_bind": 842, "vpnvserver_appflowpolicy_bind": 843, "vpnvserver_auditnslogpolicy_bind": 844, "vpnvserver_auditsyslogpolicy_bind": 845, "vpnvserver_authenticationcertpolicy_bind": 846, "vpnvserver_authenticationdfapolicy_bind": 847, "vpnvserver_authenticationldappolicy_bind": 848, "vpnvserver_authenticationlocalpolicy_bind": 849, "vpnvserver_authenticationloginschemapolicy_bind": 850, "vpnvserver_authenticationnegotiatepolicy_bind": 851, "vpnvserver_authenticationoauthidppolicy_bind": 852, "vpnvserver_authenticationpolicy_bind": 853, "vpnvserver_authenticationradiuspolicy_bind": 854, "vpnvserver_authenticationsamlidppolicy_bind": 855, "vpnvserver_authenticationsamlpolicy_bind": 856, "vpnvserver_authenticationtacacspolicy_bind": 857, "vpnvserver_authenticationwebauthpolicy_bind": 858, "vpnvserver_cachepolicy_bind": 859, "vpnvserver_cspolicy_bind": 860, "vpnvserver_feopolicy_bind": 861, "vpnvserver_icapolicy_bind": 862, "vpnvserver_intranetip6_bind": 863, "vpnvserver_intranetip_bind": 864, "vpnvserver_responderpolicy_bind": 866, "vpnvserver_rewritepolicy_bind": 867, "vpnvserver_sharefileserver_bind": 868, "vpnvserver_staserver_bind": 869, "vpnvserver_vpnclientlessaccesspolicy_bind": 870, "vpnvserver_vpnepaprofile_bind": 871, "vpnvserver_vpneula_bind": 872, "vpnvserver_vpnintranetapplication_bind": 873, "vpnvserver_vpnnexthopserver_bind": 874, "vpnvserver_vpnportaltheme_bind": 875, "vpnvserver_vpnsessionpolicy_bind": 876, "vpnvserver_vpntrafficpolicy_bind": 877, "vpnvserver_vpnurl_bind": 878, "vpnvserver_vpnurlpolicy_bind": 879, "vrid6_channel_bind": 880, "vrid6": [880, 881, 882, 883], "vrid6_interface_bind": 881, "vrid6_trackinterface_bind": 883, "trackinterfac": [883, 887], "vrid_channel_bind": 884, "vrid": [884, 885, 886, 887], "vrid_interface_bind": 885, "vrid_trackinterface_bind": 887, "vridparam": 888, "vr": 888, "vxlan_nsip6_bind": 891, "vxlan_nsip_bind": 892, "vxlan_srcip_bind": 893, "srcip": 893, "vxlanvlanmap": [894, 895], "vxlanvlanmap_vxlan_bind": 895, "welcom": 897, "my": 897, "ansibl": 897, "document": 897, "refer": 897}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"Index of all Collection Environment Variables": [[0, "index-of-all-collection-environment-variables"]], "Collection Index": [[1, "collection-index"]], "Index of all Modules": [[2, "index-of-all-modules"]], "netscaler.adc": [[2, "netscaler-adc"]], "netscaler.adc.aaacertparams module \u2013 Configuration for certificate parameter resource.": [[3, "netscaler-adc-aaacertparams-module-configuration-for-certificate-parameter-resource"]], "Synopsis": [[3, "synopsis"], [4, "synopsis"], [5, "synopsis"], [6, "synopsis"], [7, "synopsis"], [8, "synopsis"], [9, "synopsis"], [10, "synopsis"], [11, "synopsis"], [12, "synopsis"], [13, "synopsis"], [14, "synopsis"], [15, "synopsis"], [16, "synopsis"], [17, "synopsis"], [18, "synopsis"], [19, "synopsis"], [20, "synopsis"], [21, "synopsis"], [22, "synopsis"], [23, "synopsis"], [24, "synopsis"], [25, "synopsis"], [26, "synopsis"], [27, "synopsis"], [28, "synopsis"], [29, "synopsis"], [30, "synopsis"], [31, "synopsis"], [32, "synopsis"], [33, "synopsis"], [34, "synopsis"], [35, "synopsis"], [36, "synopsis"], [37, "synopsis"], [38, "synopsis"], [39, "synopsis"], [40, "synopsis"], [41, "synopsis"], [42, "synopsis"], [43, "synopsis"], [44, "synopsis"], [45, "synopsis"], [46, "synopsis"], [47, "synopsis"], [48, "synopsis"], [49, "synopsis"], [50, "synopsis"], [51, "synopsis"], [52, "synopsis"], [53, "synopsis"], [54, "synopsis"], [55, "synopsis"], [56, "synopsis"], [57, "synopsis"], [58, "synopsis"], [59, "synopsis"], [60, "synopsis"], [61, "synopsis"], [62, "synopsis"], [63, "synopsis"], [64, "synopsis"], [65, "synopsis"], [66, "synopsis"], [67, "synopsis"], [68, "synopsis"], [69, "synopsis"], [70, "synopsis"], [71, "synopsis"], [72, "synopsis"], [73, "synopsis"], [74, "synopsis"], [75, "synopsis"], [76, "synopsis"], [77, "synopsis"], [78, "synopsis"], [79, "synopsis"], [80, "synopsis"], [81, "synopsis"], [82, "synopsis"], [83, "synopsis"], [84, "synopsis"], [85, "synopsis"], [86, "synopsis"], [87, "synopsis"], [88, "synopsis"], [89, "synopsis"], [90, "synopsis"], [91, "synopsis"], [92, "synopsis"], [93, "synopsis"], [94, "synopsis"], [95, "synopsis"], [96, "synopsis"], [97, "synopsis"], [98, "synopsis"], [99, "synopsis"], [100, "synopsis"], [101, "synopsis"], [102, "synopsis"], [103, "synopsis"], [104, "synopsis"], [105, "synopsis"], [106, "synopsis"], [107, "synopsis"], [108, "synopsis"], [109, "synopsis"], [110, "synopsis"], [111, "synopsis"], [112, "synopsis"], [113, "synopsis"], [114, "synopsis"], [115, "synopsis"], [116, "synopsis"], [117, "synopsis"], [118, "synopsis"], [119, "synopsis"], [120, "synopsis"], [121, "synopsis"], [122, "synopsis"], [123, "synopsis"], [124, "synopsis"], [125, "synopsis"], [126, "synopsis"], [127, "synopsis"], [128, "synopsis"], [129, "synopsis"], [130, "synopsis"], [131, "synopsis"], [132, "synopsis"], [133, "synopsis"], [134, "synopsis"], [135, "synopsis"], [136, "synopsis"], [137, "synopsis"], [138, "synopsis"], [139, "synopsis"], [140, "synopsis"], [141, "synopsis"], [142, "synopsis"], [143, "synopsis"], [144, "synopsis"], [145, "synopsis"], [146, "synopsis"], [147, "synopsis"], [148, "synopsis"], [149, "synopsis"], [150, "synopsis"], [151, "synopsis"], [152, "synopsis"], [153, "synopsis"], [154, "synopsis"], [155, "synopsis"], [156, "synopsis"], [157, "synopsis"], [158, "synopsis"], [159, "synopsis"], [160, "synopsis"], [161, "synopsis"], [162, "synopsis"], [163, "synopsis"], [164, "synopsis"], [165, "synopsis"], [166, "synopsis"], [167, "synopsis"], [168, "synopsis"], [169, "synopsis"], [170, "synopsis"], [171, "synopsis"], [172, "synopsis"], [173, "synopsis"], [174, "synopsis"], [175, "synopsis"], [176, "synopsis"], [177, "synopsis"], [178, "synopsis"], [179, "synopsis"], [180, "synopsis"], [181, "synopsis"], [182, "synopsis"], [183, "synopsis"], [184, "synopsis"], [185, "synopsis"], [186, "synopsis"], [187, "synopsis"], [188, "synopsis"], [189, "synopsis"], [190, "synopsis"], [191, "synopsis"], [192, "synopsis"], [193, "synopsis"], [194, "synopsis"], [195, "synopsis"], [196, "synopsis"], [197, "synopsis"], [198, "synopsis"], [199, "synopsis"], [200, "synopsis"], [201, "synopsis"], [202, "synopsis"], [203, "synopsis"], [204, "synopsis"], [205, "synopsis"], [206, "synopsis"], [207, "synopsis"], [208, "synopsis"], [209, "synopsis"], [210, "synopsis"], [211, "synopsis"], [212, "synopsis"], [213, "synopsis"], [214, "synopsis"], [215, "synopsis"], [216, "synopsis"], [217, "synopsis"], [218, "synopsis"], [219, "synopsis"], [220, "synopsis"], [221, "synopsis"], [222, "synopsis"], [223, "synopsis"], [224, "synopsis"], [225, "synopsis"], [226, "synopsis"], [227, "synopsis"], [228, "synopsis"], [229, "synopsis"], [230, "synopsis"], [231, "synopsis"], [232, "synopsis"], [233, "synopsis"], [234, "synopsis"], [235, "synopsis"], [236, "synopsis"], [237, "synopsis"], [238, "synopsis"], [239, "synopsis"], [240, "synopsis"], [241, "synopsis"], [242, "synopsis"], [243, "synopsis"], [244, "synopsis"], [245, "synopsis"], [246, "synopsis"], [247, "synopsis"], [248, "synopsis"], [249, "synopsis"], [250, "synopsis"], [251, "synopsis"], [252, "synopsis"], [253, "synopsis"], [254, "synopsis"], [255, "synopsis"], [256, "synopsis"], [257, "synopsis"], [258, "synopsis"], [259, "synopsis"], [260, "synopsis"], [261, "synopsis"], [262, "synopsis"], [263, "synopsis"], [264, "synopsis"], [265, "synopsis"], [266, "synopsis"], [267, "synopsis"], [268, "synopsis"], [269, "synopsis"], [270, "synopsis"], [271, "synopsis"], [272, "synopsis"], [273, "synopsis"], [274, "synopsis"], [275, "synopsis"], [276, "synopsis"], [277, "synopsis"], [278, "synopsis"], [279, "synopsis"], [280, "synopsis"], [281, "synopsis"], [282, "synopsis"], [283, "synopsis"], [284, "synopsis"], [285, "synopsis"], [286, "synopsis"], [287, "synopsis"], [288, "synopsis"], [289, "synopsis"], [290, "synopsis"], [291, "synopsis"], [292, "synopsis"], [293, "synopsis"], [294, "synopsis"], [295, "synopsis"], [296, "synopsis"], [297, "synopsis"], [298, "synopsis"], [299, "synopsis"], [300, "synopsis"], [301, "synopsis"], [302, "synopsis"], [303, "synopsis"], [304, "synopsis"], [305, "synopsis"], [306, "synopsis"], [307, "synopsis"], [308, "synopsis"], [309, "synopsis"], [310, "synopsis"], [311, "synopsis"], [312, "synopsis"], [313, "synopsis"], [314, "synopsis"], [315, "synopsis"], [316, "synopsis"], [317, "synopsis"], [318, "synopsis"], [319, "synopsis"], [320, "synopsis"], [321, "synopsis"], [322, "synopsis"], [323, "synopsis"], [324, "synopsis"], [325, "synopsis"], [326, "synopsis"], [327, "synopsis"], [328, "synopsis"], [329, "synopsis"], [330, "synopsis"], [331, "synopsis"], [332, "synopsis"], [333, "synopsis"], [334, "synopsis"], [335, "synopsis"], [336, "synopsis"], [337, "synopsis"], [338, "synopsis"], [339, "synopsis"], [340, "synopsis"], [341, "synopsis"], [342, "synopsis"], [343, "synopsis"], [344, "synopsis"], [345, "synopsis"], [346, "synopsis"], [347, "synopsis"], [348, "synopsis"], [349, "synopsis"], [350, "synopsis"], [351, "synopsis"], [352, "synopsis"], [353, "synopsis"], [354, "synopsis"], [355, "synopsis"], [356, "synopsis"], [357, "synopsis"], [358, "synopsis"], [359, "synopsis"], [360, "synopsis"], [361, "synopsis"], [362, "synopsis"], [363, "synopsis"], [364, "synopsis"], [365, "synopsis"], [366, "synopsis"], [367, "synopsis"], [368, "synopsis"], [369, "synopsis"], [370, "synopsis"], [371, "synopsis"], [372, "synopsis"], [373, "synopsis"], [374, "synopsis"], [375, "synopsis"], [376, "synopsis"], [377, "synopsis"], [378, "synopsis"], [379, "synopsis"], [380, "synopsis"], [381, "synopsis"], [382, "synopsis"], [383, "synopsis"], [384, "synopsis"], [385, "synopsis"], [386, "synopsis"], [387, "synopsis"], [388, "synopsis"], [389, "synopsis"], [390, "synopsis"], [392, "synopsis"], [393, "synopsis"], [394, "synopsis"], [395, "synopsis"], [396, "synopsis"], [397, "synopsis"], [398, "synopsis"], [399, "synopsis"], [400, "synopsis"], [401, "synopsis"], [402, "synopsis"], [403, "synopsis"], [404, "synopsis"], [405, "synopsis"], [406, "synopsis"], [407, "synopsis"], [408, "synopsis"], [409, "synopsis"], [410, "synopsis"], [411, "synopsis"], [412, "synopsis"], [413, "synopsis"], [414, "synopsis"], [415, "synopsis"], [416, "synopsis"], [417, "synopsis"], [418, "synopsis"], [419, "synopsis"], [420, "synopsis"], [421, "synopsis"], [422, "synopsis"], [423, "synopsis"], [424, "synopsis"], [425, "synopsis"], [426, "synopsis"], [427, "synopsis"], [428, "synopsis"], [429, "synopsis"], [430, "synopsis"], [431, "synopsis"], [432, "synopsis"], [433, "synopsis"], [434, "synopsis"], [435, "synopsis"], [436, "synopsis"], [437, "synopsis"], [438, "synopsis"], [439, "synopsis"], [440, "synopsis"], [441, "synopsis"], [442, "synopsis"], [443, "synopsis"], [444, "synopsis"], [445, "synopsis"], [446, "synopsis"], [447, "synopsis"], [448, "synopsis"], [449, "synopsis"], [450, "synopsis"], [451, "synopsis"], [452, "synopsis"], [453, "synopsis"], [454, "synopsis"], [455, "synopsis"], [456, "synopsis"], [457, "synopsis"], [458, "synopsis"], [459, "synopsis"], [460, "synopsis"], [461, "synopsis"], [462, "synopsis"], [463, "synopsis"], [464, "synopsis"], [465, "synopsis"], [466, "synopsis"], [467, "synopsis"], [468, "synopsis"], [469, "synopsis"], [470, "synopsis"], [471, "synopsis"], [472, "synopsis"], [473, "synopsis"], [474, "synopsis"], [475, "synopsis"], [476, "synopsis"], [477, "synopsis"], [478, "synopsis"], [479, "synopsis"], [480, "synopsis"], [481, "synopsis"], [482, "synopsis"], [483, "synopsis"], [484, "synopsis"], [485, "synopsis"], [486, "synopsis"], [487, "synopsis"], [488, "synopsis"], [489, "synopsis"], [490, "synopsis"], [491, "synopsis"], [492, "synopsis"], [493, "synopsis"], [494, "synopsis"], [495, "synopsis"], [496, "synopsis"], [497, "synopsis"], [498, "synopsis"], [499, "synopsis"], [500, "synopsis"], [501, "synopsis"], [502, "synopsis"], [503, "synopsis"], [504, "synopsis"], [505, "synopsis"], [506, "synopsis"], [507, "synopsis"], [508, "synopsis"], [509, "synopsis"], [510, "synopsis"], [511, "synopsis"], [512, "synopsis"], [513, "synopsis"], [514, "synopsis"], [515, "synopsis"], [516, "synopsis"], [517, "synopsis"], [518, "synopsis"], [519, "synopsis"], [520, "synopsis"], [521, "synopsis"], [522, "synopsis"], [523, "synopsis"], [524, "synopsis"], [525, "synopsis"], [526, "synopsis"], [527, "synopsis"], [528, "synopsis"], [529, "synopsis"], [530, "synopsis"], [531, "synopsis"], [532, "synopsis"], [533, "synopsis"], [534, "synopsis"], [535, "synopsis"], [536, "synopsis"], [537, "synopsis"], [538, "synopsis"], [539, "synopsis"], [540, "synopsis"], [541, "synopsis"], [542, "synopsis"], [543, "synopsis"], [544, "synopsis"], [545, "synopsis"], [546, "synopsis"], [547, "synopsis"], [548, "synopsis"], [549, "synopsis"], [550, "synopsis"], [551, "synopsis"], [552, "synopsis"], [553, "synopsis"], [554, "synopsis"], [555, "synopsis"], [556, "synopsis"], [557, "synopsis"], [558, "synopsis"], [559, "synopsis"], [560, "synopsis"], [561, "synopsis"], [562, "synopsis"], [563, "synopsis"], [564, "synopsis"], [565, "synopsis"], [566, "synopsis"], [567, "synopsis"], [568, "synopsis"], [569, "synopsis"], [570, "synopsis"], [571, "synopsis"], [572, "synopsis"], [573, "synopsis"], [574, "synopsis"], [575, "synopsis"], [576, "synopsis"], [577, "synopsis"], [578, "synopsis"], [579, "synopsis"], [580, "synopsis"], [581, "synopsis"], [582, "synopsis"], [583, "synopsis"], [584, "synopsis"], [585, "synopsis"], [586, "synopsis"], [587, "synopsis"], [588, "synopsis"], [589, "synopsis"], [590, "synopsis"], [591, "synopsis"], [592, "synopsis"], [593, "synopsis"], [594, "synopsis"], [595, "synopsis"], [596, "synopsis"], [597, "synopsis"], [598, "synopsis"], [599, "synopsis"], [600, "synopsis"], [601, "synopsis"], [602, "synopsis"], [603, "synopsis"], [604, "synopsis"], [605, "synopsis"], [606, "synopsis"], [607, "synopsis"], [608, "synopsis"], [609, "synopsis"], [610, "synopsis"], [611, "synopsis"], [612, "synopsis"], [613, "synopsis"], [614, "synopsis"], [615, "synopsis"], [616, "synopsis"], [617, "synopsis"], [618, "synopsis"], [619, "synopsis"], [620, "synopsis"], [621, "synopsis"], [622, "synopsis"], [623, "synopsis"], [624, "synopsis"], [625, "synopsis"], [626, "synopsis"], [627, "synopsis"], [628, "synopsis"], [629, "synopsis"], [630, "synopsis"], [631, "synopsis"], [632, "synopsis"], [633, "synopsis"], [634, "synopsis"], [635, "synopsis"], [636, "synopsis"], [637, "synopsis"], [638, "synopsis"], [639, "synopsis"], [640, "synopsis"], [641, "synopsis"], [642, "synopsis"], [643, "synopsis"], [644, "synopsis"], [645, "synopsis"], [646, "synopsis"], [647, "synopsis"], [648, "synopsis"], [649, "synopsis"], [650, "synopsis"], [651, "synopsis"], [652, "synopsis"], [653, "synopsis"], [654, "synopsis"], [655, "synopsis"], [656, "synopsis"], [657, "synopsis"], [658, "synopsis"], [659, "synopsis"], [660, "synopsis"], [661, "synopsis"], [662, "synopsis"], [663, "synopsis"], [664, "synopsis"], [665, "synopsis"], [666, "synopsis"], [667, "synopsis"], [668, "synopsis"], [669, "synopsis"], [670, "synopsis"], [671, "synopsis"], [672, "synopsis"], [673, "synopsis"], [674, "synopsis"], [675, "synopsis"], [676, "synopsis"], [677, "synopsis"], [678, "synopsis"], [679, "synopsis"], [680, "synopsis"], [681, "synopsis"], [682, "synopsis"], [683, "synopsis"], [684, "synopsis"], [685, "synopsis"], [686, "synopsis"], [687, "synopsis"], [688, "synopsis"], [689, "synopsis"], [690, "synopsis"], [691, "synopsis"], [692, "synopsis"], [693, "synopsis"], [694, "synopsis"], [695, "synopsis"], [696, "synopsis"], [697, "synopsis"], [698, "synopsis"], [699, "synopsis"], [700, "synopsis"], [701, "synopsis"], [702, "synopsis"], [703, "synopsis"], [704, "synopsis"], [705, "synopsis"], [706, "synopsis"], [707, "synopsis"], [708, "synopsis"], [709, "synopsis"], [710, "synopsis"], [711, "synopsis"], [712, "synopsis"], [713, "synopsis"], [714, "synopsis"], [715, "synopsis"], [716, "synopsis"], [717, "synopsis"], [718, "synopsis"], [719, "synopsis"], [720, "synopsis"], [721, "synopsis"], [722, "synopsis"], [723, "synopsis"], [724, "synopsis"], [725, "synopsis"], [726, "synopsis"], [727, "synopsis"], [728, "synopsis"], [729, "synopsis"], [730, "synopsis"], [731, "synopsis"], [732, "synopsis"], [733, "synopsis"], [734, "synopsis"], [735, "synopsis"], [736, "synopsis"], [737, "synopsis"], [738, "synopsis"], [739, "synopsis"], [740, "synopsis"], [741, "synopsis"], [742, "synopsis"], [743, "synopsis"], [744, "synopsis"], [745, "synopsis"], [746, "synopsis"], [747, "synopsis"], [748, "synopsis"], [749, "synopsis"], [750, "synopsis"], [751, "synopsis"], [752, "synopsis"], [753, "synopsis"], [754, "synopsis"], [755, "synopsis"], [756, "synopsis"], [757, "synopsis"], [758, "synopsis"], [759, "synopsis"], [760, "synopsis"], [761, "synopsis"], [762, "synopsis"], [763, "synopsis"], [764, "synopsis"], [765, "synopsis"], [766, "synopsis"], [767, "synopsis"], [768, "synopsis"], [769, "synopsis"], [770, "synopsis"], [771, "synopsis"], [772, "synopsis"], [773, "synopsis"], [774, "synopsis"], [775, "synopsis"], [776, "synopsis"], [777, "synopsis"], [778, "synopsis"], [779, "synopsis"], [780, "synopsis"], [781, "synopsis"], [782, "synopsis"], [783, "synopsis"], [784, "synopsis"], [785, "synopsis"], [786, "synopsis"], [787, "synopsis"], [788, "synopsis"], [789, "synopsis"], [790, "synopsis"], [791, "synopsis"], [792, "synopsis"], [793, "synopsis"], [794, "synopsis"], [795, "synopsis"], [796, "synopsis"], [797, "synopsis"], [798, "synopsis"], [799, "synopsis"], [800, "synopsis"], [801, "synopsis"], [802, "synopsis"], [803, "synopsis"], [804, "synopsis"], [805, "synopsis"], [806, "synopsis"], [807, "synopsis"], [808, "synopsis"], [809, "synopsis"], [810, "synopsis"], [811, "synopsis"], [812, "synopsis"], [813, "synopsis"], [814, "synopsis"], [815, "synopsis"], [816, "synopsis"], [817, "synopsis"], [818, "synopsis"], [819, "synopsis"], [820, "synopsis"], [821, "synopsis"], [822, "synopsis"], [823, "synopsis"], [824, "synopsis"], [825, "synopsis"], [826, "synopsis"], [827, "synopsis"], [828, "synopsis"], [829, "synopsis"], [830, "synopsis"], [831, "synopsis"], [832, "synopsis"], [833, "synopsis"], [834, "synopsis"], [835, "synopsis"], [836, "synopsis"], [837, "synopsis"], [838, "synopsis"], [839, "synopsis"], [840, "synopsis"], [841, "synopsis"], [842, "synopsis"], [843, "synopsis"], [844, "synopsis"], [845, "synopsis"], [846, "synopsis"], [847, "synopsis"], [848, "synopsis"], [849, "synopsis"], [850, "synopsis"], [851, "synopsis"], [852, "synopsis"], [853, "synopsis"], [854, "synopsis"], [855, "synopsis"], [856, "synopsis"], [857, "synopsis"], [858, "synopsis"], [859, "synopsis"], [860, "synopsis"], [861, "synopsis"], [862, "synopsis"], [863, "synopsis"], [864, "synopsis"], [865, "synopsis"], [866, "synopsis"], [867, "synopsis"], [868, "synopsis"], [869, "synopsis"], [870, "synopsis"], [871, "synopsis"], [872, "synopsis"], [873, "synopsis"], [874, "synopsis"], [875, "synopsis"], [876, "synopsis"], [877, "synopsis"], [878, "synopsis"], [879, "synopsis"], [880, "synopsis"], [881, "synopsis"], [882, "synopsis"], [883, "synopsis"], [884, "synopsis"], [885, "synopsis"], [886, "synopsis"], [887, "synopsis"], [888, "synopsis"], [889, "synopsis"], [890, "synopsis"], [891, "synopsis"], [892, "synopsis"], [893, "synopsis"], [894, "synopsis"], [895, "synopsis"]], "Parameters": [[3, "parameters"], [4, "parameters"], [5, "parameters"], [6, "parameters"], [7, "parameters"], [8, "parameters"], [9, "parameters"], [10, "parameters"], [11, "parameters"], [12, "parameters"], [13, "parameters"], [14, "parameters"], [15, "parameters"], [16, "parameters"], [17, "parameters"], [18, "parameters"], [19, "parameters"], [20, "parameters"], [21, "parameters"], [22, "parameters"], [23, "parameters"], [24, "parameters"], [25, "parameters"], [26, "parameters"], [27, "parameters"], [28, "parameters"], [29, "parameters"], [30, "parameters"], [31, "parameters"], [32, "parameters"], [33, "parameters"], [34, "parameters"], [35, "parameters"], [36, "parameters"], [37, "parameters"], [38, "parameters"], [39, "parameters"], [40, "parameters"], [41, "parameters"], [42, "parameters"], [43, "parameters"], [44, "parameters"], [45, "parameters"], [46, "parameters"], [47, "parameters"], [48, "parameters"], [49, "parameters"], [50, "parameters"], [51, "parameters"], [52, "parameters"], [53, "parameters"], [54, "parameters"], [55, "parameters"], [56, "parameters"], [57, "parameters"], [58, "parameters"], [59, "parameters"], [60, "parameters"], [61, "parameters"], [62, "parameters"], [63, "parameters"], [64, "parameters"], [65, "parameters"], [66, "parameters"], [67, "parameters"], [68, "parameters"], [69, "parameters"], [70, "parameters"], [71, "parameters"], [72, "parameters"], [73, "parameters"], [74, "parameters"], [75, "parameters"], [76, "parameters"], [77, "parameters"], [78, "parameters"], [79, "parameters"], [80, "parameters"], [81, "parameters"], [82, "parameters"], [83, "parameters"], [84, "parameters"], [85, "parameters"], [86, "parameters"], [87, "parameters"], [88, "parameters"], [89, "parameters"], [90, "parameters"], [91, "parameters"], [92, "parameters"], [93, "parameters"], [94, "parameters"], [95, "parameters"], [96, "parameters"], [97, "parameters"], [98, "parameters"], [99, "parameters"], [100, "parameters"], [101, "parameters"], [102, "parameters"], [103, "parameters"], [104, "parameters"], [105, "parameters"], [106, "parameters"], [107, "parameters"], [108, "parameters"], [109, "parameters"], [110, "parameters"], [111, "parameters"], [112, "parameters"], [113, "parameters"], [114, "parameters"], [115, "parameters"], [116, "parameters"], [117, "parameters"], [118, "parameters"], [119, "parameters"], [120, "parameters"], [121, "parameters"], [122, "parameters"], [123, "parameters"], [124, "parameters"], [125, "parameters"], [126, "parameters"], [127, "parameters"], [128, "parameters"], [129, "parameters"], [130, "parameters"], [131, "parameters"], [132, "parameters"], [133, "parameters"], [134, "parameters"], [135, "parameters"], [136, "parameters"], [137, "parameters"], [138, "parameters"], [139, "parameters"], [140, "parameters"], [141, "parameters"], [142, "parameters"], [143, "parameters"], [144, "parameters"], [145, "parameters"], [146, "parameters"], [147, "parameters"], [148, "parameters"], [149, "parameters"], [150, "parameters"], [151, "parameters"], [152, "parameters"], [153, "parameters"], [154, "parameters"], [155, "parameters"], [156, "parameters"], [157, "parameters"], [158, "parameters"], [159, "parameters"], [160, "parameters"], [161, "parameters"], [162, "parameters"], [163, "parameters"], [164, "parameters"], [165, "parameters"], [166, "parameters"], [167, "parameters"], [168, "parameters"], [169, "parameters"], [170, "parameters"], [171, "parameters"], [172, "parameters"], [173, "parameters"], [174, "parameters"], [175, "parameters"], [176, "parameters"], [177, "parameters"], [178, "parameters"], [179, "parameters"], [180, "parameters"], [181, "parameters"], [182, "parameters"], [183, "parameters"], [184, "parameters"], [185, "parameters"], [186, "parameters"], [187, "parameters"], [188, "parameters"], [189, "parameters"], [190, "parameters"], [191, "parameters"], [192, "parameters"], [193, "parameters"], [194, "parameters"], [195, "parameters"], [196, "parameters"], [197, "parameters"], [198, "parameters"], [199, "parameters"], [200, "parameters"], [201, "parameters"], [202, "parameters"], [203, "parameters"], [204, "parameters"], [205, "parameters"], [206, "parameters"], [207, "parameters"], [208, "parameters"], [209, "parameters"], [210, "parameters"], [211, "parameters"], [212, "parameters"], [213, "parameters"], [214, "parameters"], [215, "parameters"], [216, "parameters"], [217, "parameters"], [218, "parameters"], [219, "parameters"], [220, "parameters"], [221, "parameters"], [222, "parameters"], [223, "parameters"], [224, "parameters"], [225, "parameters"], [226, "parameters"], [227, "parameters"], [228, "parameters"], [229, "parameters"], [230, "parameters"], [231, "parameters"], [232, "parameters"], [233, "parameters"], [234, "parameters"], [235, "parameters"], [236, "parameters"], [237, "parameters"], [238, "parameters"], [239, "parameters"], [240, "parameters"], [241, "parameters"], [242, "parameters"], [243, "parameters"], [244, "parameters"], [245, "parameters"], [246, "parameters"], [247, "parameters"], [248, "parameters"], [249, "parameters"], [250, "parameters"], [251, "parameters"], [252, "parameters"], [253, "parameters"], [254, "parameters"], [255, "parameters"], [256, "parameters"], [257, "parameters"], [258, "parameters"], [259, "parameters"], [260, "parameters"], [261, "parameters"], [262, "parameters"], [263, "parameters"], [264, "parameters"], [265, "parameters"], [266, "parameters"], [267, "parameters"], [268, "parameters"], [269, "parameters"], [270, "parameters"], [271, "parameters"], [272, "parameters"], [273, "parameters"], [274, "parameters"], [275, "parameters"], [276, "parameters"], [277, "parameters"], [278, "parameters"], [279, "parameters"], [280, "parameters"], [281, "parameters"], [282, "parameters"], [283, "parameters"], [284, "parameters"], [285, "parameters"], [286, "parameters"], [287, "parameters"], [288, "parameters"], [289, "parameters"], [290, "parameters"], [291, "parameters"], [292, "parameters"], [293, "parameters"], [294, "parameters"], [295, "parameters"], [296, "parameters"], [297, "parameters"], [298, "parameters"], [299, "parameters"], [300, "parameters"], [301, "parameters"], [302, "parameters"], [303, "parameters"], [304, "parameters"], [305, "parameters"], [306, "parameters"], [307, "parameters"], [308, "parameters"], [309, "parameters"], [310, "parameters"], [311, "parameters"], [312, "parameters"], [313, "parameters"], [314, "parameters"], [315, "parameters"], [316, "parameters"], [317, "parameters"], [318, "parameters"], [319, "parameters"], [320, "parameters"], [321, "parameters"], [322, "parameters"], [323, "parameters"], [324, "parameters"], [325, "parameters"], [326, "parameters"], [327, "parameters"], [328, "parameters"], [329, "parameters"], [330, "parameters"], [331, "parameters"], [332, "parameters"], [333, "parameters"], [334, "parameters"], [335, "parameters"], [336, "parameters"], [337, "parameters"], [338, "parameters"], [339, "parameters"], [340, "parameters"], [341, "parameters"], [342, "parameters"], [343, "parameters"], [344, "parameters"], [345, "parameters"], [346, "parameters"], [347, "parameters"], [348, "parameters"], [349, "parameters"], [350, "parameters"], [351, "parameters"], [352, "parameters"], [353, "parameters"], [354, "parameters"], [355, "parameters"], [356, "parameters"], [357, "parameters"], [358, "parameters"], [359, "parameters"], [360, "parameters"], [361, "parameters"], [362, "parameters"], [363, "parameters"], [364, "parameters"], [365, "parameters"], [366, "parameters"], [367, "parameters"], [368, "parameters"], [369, "parameters"], [370, "parameters"], [371, "parameters"], [372, "parameters"], [373, "parameters"], [374, "parameters"], [375, "parameters"], [376, "parameters"], [377, "parameters"], [378, "parameters"], [379, "parameters"], [380, "parameters"], [381, "parameters"], [382, "parameters"], [383, "parameters"], [384, "parameters"], [385, "parameters"], [386, "parameters"], [387, "parameters"], [388, "parameters"], [389, "parameters"], [390, "parameters"], [392, "parameters"], [393, "parameters"], [394, "parameters"], [395, "parameters"], [396, "parameters"], [397, "parameters"], [398, "parameters"], [399, "parameters"], [400, "parameters"], [401, "parameters"], [402, "parameters"], [403, "parameters"], [404, "parameters"], [405, "parameters"], [406, "parameters"], [407, "parameters"], [408, "parameters"], [409, "parameters"], [410, "parameters"], [411, "parameters"], [412, "parameters"], [413, "parameters"], [414, "parameters"], [415, "parameters"], [416, "parameters"], [417, "parameters"], [418, "parameters"], [419, "parameters"], [420, "parameters"], [421, "parameters"], [422, "parameters"], [423, "parameters"], [424, "parameters"], [425, "parameters"], [426, "parameters"], [427, "parameters"], [428, "parameters"], [429, "parameters"], [430, "parameters"], [431, "parameters"], [432, "parameters"], [433, "parameters"], [434, "parameters"], [435, "parameters"], [436, "parameters"], [437, "parameters"], [438, "parameters"], [439, "parameters"], [440, "parameters"], [441, "parameters"], [442, "parameters"], [443, "parameters"], [444, "parameters"], [445, "parameters"], [446, "parameters"], [447, "parameters"], [448, "parameters"], [449, "parameters"], [450, "parameters"], [451, "parameters"], [452, "parameters"], [453, "parameters"], [454, "parameters"], [455, "parameters"], [456, "parameters"], [457, "parameters"], [458, "parameters"], [459, "parameters"], [460, "parameters"], [461, "parameters"], [462, "parameters"], [463, "parameters"], [464, "parameters"], [465, "parameters"], [466, "parameters"], [467, "parameters"], [468, "parameters"], [469, "parameters"], [470, "parameters"], [471, "parameters"], [472, "parameters"], [473, "parameters"], [474, "parameters"], [475, "parameters"], [476, "parameters"], [477, "parameters"], [478, "parameters"], [479, "parameters"], [480, "parameters"], [481, "parameters"], [482, "parameters"], [483, "parameters"], [484, "parameters"], [485, "parameters"], [486, "parameters"], [487, "parameters"], [488, "parameters"], [489, "parameters"], [490, "parameters"], [491, "parameters"], [492, "parameters"], [493, "parameters"], [494, "parameters"], [495, "parameters"], [496, "parameters"], [497, "parameters"], [498, "parameters"], [499, "parameters"], [500, "parameters"], [501, "parameters"], [502, "parameters"], [503, "parameters"], [504, "parameters"], [505, "parameters"], [506, "parameters"], [507, "parameters"], [508, "parameters"], [509, "parameters"], [510, "parameters"], [511, "parameters"], [512, "parameters"], [513, "parameters"], [514, "parameters"], [515, "parameters"], [516, "parameters"], [517, "parameters"], [518, "parameters"], [519, "parameters"], [520, "parameters"], [521, "parameters"], [522, "parameters"], [523, "parameters"], [524, "parameters"], [525, "parameters"], [526, "parameters"], [527, "parameters"], [528, "parameters"], [529, "parameters"], [530, "parameters"], [531, "parameters"], [532, "parameters"], [533, "parameters"], [534, "parameters"], [535, "parameters"], [536, "parameters"], [537, "parameters"], [538, "parameters"], [539, "parameters"], [540, "parameters"], [541, "parameters"], [542, "parameters"], [543, "parameters"], [544, "parameters"], [545, "parameters"], [546, "parameters"], [547, "parameters"], [548, "parameters"], [549, "parameters"], [550, "parameters"], [551, "parameters"], [552, "parameters"], [553, "parameters"], [554, "parameters"], [555, "parameters"], [556, "parameters"], [557, "parameters"], [558, "parameters"], [559, "parameters"], [560, "parameters"], [561, "parameters"], [562, "parameters"], [563, "parameters"], [564, "parameters"], [565, "parameters"], [566, "parameters"], [567, "parameters"], [568, "parameters"], [569, "parameters"], [570, "parameters"], [571, "parameters"], [572, "parameters"], [573, "parameters"], [574, "parameters"], [575, "parameters"], [576, "parameters"], [577, "parameters"], [578, "parameters"], [579, "parameters"], [580, "parameters"], [581, "parameters"], [582, "parameters"], [583, "parameters"], [584, "parameters"], [585, "parameters"], [586, "parameters"], [587, "parameters"], [588, "parameters"], [589, "parameters"], [590, "parameters"], [591, "parameters"], [592, "parameters"], [593, "parameters"], [594, "parameters"], [595, "parameters"], [596, "parameters"], [597, "parameters"], [598, "parameters"], [599, "parameters"], [600, "parameters"], [601, "parameters"], [602, "parameters"], [603, "parameters"], [604, "parameters"], [605, "parameters"], [606, "parameters"], [607, "parameters"], [608, "parameters"], [609, "parameters"], [610, "parameters"], [611, "parameters"], [612, "parameters"], [613, "parameters"], [614, "parameters"], [615, "parameters"], [616, "parameters"], [617, "parameters"], [618, "parameters"], [619, "parameters"], [620, "parameters"], [621, "parameters"], [622, "parameters"], [623, "parameters"], [624, "parameters"], [625, "parameters"], [626, "parameters"], [627, "parameters"], [628, "parameters"], [629, "parameters"], [630, "parameters"], [631, "parameters"], [632, "parameters"], [633, "parameters"], [634, "parameters"], [635, "parameters"], [636, "parameters"], [637, "parameters"], [638, "parameters"], [639, "parameters"], [640, "parameters"], [641, "parameters"], [642, "parameters"], [643, "parameters"], [644, "parameters"], [645, "parameters"], [646, "parameters"], [647, "parameters"], [648, "parameters"], [649, "parameters"], [650, "parameters"], [651, "parameters"], [652, "parameters"], [653, "parameters"], [654, "parameters"], [655, "parameters"], [656, "parameters"], [657, "parameters"], [658, "parameters"], [659, "parameters"], [660, "parameters"], [661, "parameters"], [662, "parameters"], [663, "parameters"], [664, "parameters"], [665, "parameters"], [666, "parameters"], [667, "parameters"], [668, "parameters"], [669, "parameters"], [670, "parameters"], [671, "parameters"], [672, "parameters"], [673, "parameters"], [674, "parameters"], [675, "parameters"], [676, "parameters"], [677, "parameters"], [678, "parameters"], [679, "parameters"], [680, "parameters"], [681, "parameters"], [682, "parameters"], [683, "parameters"], [684, "parameters"], [685, "parameters"], [686, "parameters"], [687, "parameters"], [688, "parameters"], [689, "parameters"], [690, "parameters"], [691, "parameters"], [692, "parameters"], [693, "parameters"], [694, "parameters"], [695, "parameters"], [696, "parameters"], [697, "parameters"], [698, "parameters"], [699, "parameters"], [700, "parameters"], [701, "parameters"], [702, "parameters"], [703, "parameters"], [704, "parameters"], [705, "parameters"], [706, "parameters"], [707, "parameters"], [708, "parameters"], [709, "parameters"], [710, "parameters"], [711, "parameters"], [712, "parameters"], [713, "parameters"], [714, "parameters"], [715, "parameters"], [716, "parameters"], [717, "parameters"], [718, "parameters"], [719, "parameters"], [720, "parameters"], [721, "parameters"], [722, "parameters"], [723, "parameters"], [724, "parameters"], [725, "parameters"], [726, "parameters"], [727, "parameters"], [728, "parameters"], [729, "parameters"], [730, "parameters"], [731, "parameters"], [732, "parameters"], [733, "parameters"], [734, "parameters"], [735, "parameters"], [736, "parameters"], [737, "parameters"], [738, "parameters"], [739, "parameters"], [740, "parameters"], [741, "parameters"], [742, "parameters"], [743, "parameters"], [744, "parameters"], [745, "parameters"], [746, "parameters"], [747, "parameters"], [748, "parameters"], [749, "parameters"], [750, "parameters"], [751, "parameters"], [752, "parameters"], [753, "parameters"], [754, "parameters"], [755, "parameters"], [756, "parameters"], [757, "parameters"], [758, "parameters"], [759, "parameters"], [760, "parameters"], [761, "parameters"], [762, "parameters"], [763, "parameters"], [764, "parameters"], [765, "parameters"], [766, "parameters"], [767, "parameters"], [768, "parameters"], [769, "parameters"], [770, "parameters"], [771, "parameters"], [772, "parameters"], [773, "parameters"], [774, "parameters"], [775, "parameters"], [776, "parameters"], [777, "parameters"], [778, "parameters"], [779, "parameters"], [780, "parameters"], [781, "parameters"], [782, "parameters"], [783, "parameters"], [784, "parameters"], [785, "parameters"], [786, "parameters"], [787, "parameters"], [788, "parameters"], [789, "parameters"], [790, "parameters"], [791, "parameters"], [792, "parameters"], [793, "parameters"], [794, "parameters"], [795, "parameters"], [796, "parameters"], [797, "parameters"], [798, "parameters"], [799, "parameters"], [800, "parameters"], [801, "parameters"], [802, "parameters"], [803, "parameters"], [804, "parameters"], [805, "parameters"], [806, "parameters"], [807, "parameters"], [808, "parameters"], [809, "parameters"], [810, "parameters"], [811, "parameters"], [812, "parameters"], [813, "parameters"], [814, "parameters"], [815, "parameters"], [816, "parameters"], [817, "parameters"], [818, "parameters"], [819, "parameters"], [820, "parameters"], [821, "parameters"], [822, "parameters"], [823, "parameters"], [824, "parameters"], [825, "parameters"], [826, "parameters"], [827, "parameters"], [828, "parameters"], [829, "parameters"], [830, "parameters"], [831, "parameters"], [832, "parameters"], [833, "parameters"], [834, "parameters"], [835, "parameters"], [836, "parameters"], [837, "parameters"], [838, "parameters"], [839, "parameters"], [840, "parameters"], [841, "parameters"], [842, "parameters"], [843, "parameters"], [844, "parameters"], [845, "parameters"], [846, "parameters"], [847, "parameters"], [848, "parameters"], [849, "parameters"], [850, "parameters"], [851, "parameters"], [852, "parameters"], [853, "parameters"], [854, "parameters"], [855, "parameters"], [856, "parameters"], [857, "parameters"], [858, "parameters"], [859, "parameters"], [860, "parameters"], [861, "parameters"], [862, "parameters"], [863, "parameters"], [864, "parameters"], [865, "parameters"], [866, "parameters"], [867, "parameters"], [868, "parameters"], [869, "parameters"], [870, "parameters"], [871, "parameters"], [872, "parameters"], [873, "parameters"], [874, "parameters"], [875, "parameters"], [876, "parameters"], [877, "parameters"], [878, "parameters"], [879, "parameters"], [880, "parameters"], [881, "parameters"], [882, "parameters"], [883, "parameters"], [884, "parameters"], [885, "parameters"], [886, "parameters"], [887, "parameters"], [888, "parameters"], [889, "parameters"], [890, "parameters"], [891, "parameters"], [892, "parameters"], [893, "parameters"], [894, "parameters"], [895, "parameters"]], "Notes": [[3, "notes"], [4, "notes"], [5, "notes"], [6, "notes"], [7, "notes"], [8, "notes"], [9, "notes"], [10, "notes"], [11, "notes"], [12, "notes"], [13, "notes"], [14, "notes"], [15, "notes"], [16, "notes"], [17, "notes"], [18, "notes"], [19, "notes"], [20, "notes"], [21, "notes"], [22, "notes"], [23, "notes"], [24, "notes"], [25, "notes"], [26, "notes"], [27, "notes"], [28, "notes"], [29, "notes"], [30, "notes"], [31, "notes"], [32, "notes"], [33, "notes"], [34, "notes"], [35, "notes"], [36, "notes"], [37, "notes"], [38, "notes"], [39, "notes"], [40, "notes"], [41, "notes"], [42, "notes"], [43, "notes"], [44, "notes"], [45, "notes"], [46, "notes"], [47, "notes"], [48, "notes"], [49, "notes"], [50, "notes"], [51, "notes"], [52, "notes"], [53, "notes"], [54, "notes"], [55, "notes"], [56, "notes"], [57, "notes"], [58, "notes"], [59, "notes"], [60, "notes"], [61, "notes"], [62, "notes"], [63, "notes"], [64, "notes"], [65, "notes"], [66, "notes"], [67, "notes"], [68, "notes"], [69, "notes"], [70, "notes"], [71, "notes"], [72, "notes"], [73, "notes"], [74, "notes"], [75, "notes"], [76, "notes"], [77, "notes"], [78, "notes"], [79, "notes"], [80, "notes"], [81, "notes"], [82, "notes"], [83, "notes"], [84, "notes"], [85, "notes"], [86, "notes"], [87, "notes"], [88, "notes"], [89, "notes"], [90, "notes"], [91, "notes"], [92, "notes"], [93, "notes"], [94, "notes"], [95, "notes"], [96, "notes"], [97, "notes"], [98, "notes"], [99, "notes"], [100, "notes"], [101, "notes"], [102, "notes"], [103, "notes"], [104, "notes"], [105, "notes"], [106, "notes"], [107, "notes"], [108, "notes"], [109, "notes"], [110, "notes"], [111, "notes"], [112, "notes"], [113, "notes"], [114, "notes"], [115, "notes"], [116, "notes"], [117, "notes"], [118, "notes"], [119, "notes"], [120, "notes"], [121, "notes"], [122, "notes"], [123, "notes"], [124, "notes"], [125, "notes"], [126, "notes"], [127, "notes"], [128, "notes"], [129, "notes"], [130, "notes"], [131, "notes"], [132, "notes"], [133, "notes"], [134, "notes"], [135, "notes"], [136, "notes"], [137, "notes"], [138, "notes"], [139, "notes"], [140, "notes"], [141, "notes"], [142, "notes"], [143, "notes"], [144, "notes"], [145, "notes"], [146, "notes"], [147, "notes"], [148, "notes"], [149, "notes"], [150, "notes"], [151, "notes"], [152, "notes"], [153, "notes"], [154, "notes"], [155, "notes"], [156, "notes"], [157, "notes"], [158, "notes"], [159, "notes"], [160, "notes"], [161, "notes"], [162, "notes"], [163, "notes"], [164, "notes"], [165, "notes"], [166, "notes"], [167, "notes"], [168, "notes"], [169, "notes"], [170, "notes"], [171, "notes"], [172, "notes"], [173, "notes"], [174, "notes"], [175, "notes"], [176, "notes"], [177, "notes"], [178, "notes"], [179, "notes"], [180, "notes"], [181, "notes"], [182, "notes"], [183, "notes"], [184, "notes"], [185, "notes"], [186, "notes"], [187, "notes"], [188, "notes"], [189, "notes"], [190, "notes"], [191, "notes"], [192, "notes"], [193, "notes"], [194, "notes"], [195, "notes"], [196, "notes"], [197, "notes"], [198, "notes"], [199, "notes"], [200, "notes"], [201, "notes"], [202, "notes"], [203, "notes"], [204, "notes"], [205, "notes"], [206, "notes"], [207, "notes"], [208, "notes"], [209, "notes"], [210, "notes"], [211, "notes"], [212, "notes"], [213, "notes"], [214, "notes"], [215, "notes"], [216, "notes"], [217, "notes"], [218, "notes"], [219, "notes"], [220, "notes"], [221, "notes"], [222, "notes"], [223, "notes"], [224, "notes"], [225, "notes"], [226, "notes"], [227, "notes"], [228, "notes"], [229, "notes"], [230, "notes"], [231, "notes"], [232, "notes"], [233, "notes"], [234, "notes"], [235, "notes"], [236, "notes"], [237, "notes"], [238, "notes"], [239, "notes"], [240, "notes"], [241, "notes"], [242, "notes"], [243, "notes"], [244, "notes"], [245, "notes"], [246, "notes"], [247, "notes"], [248, "notes"], [249, "notes"], [250, "notes"], [251, "notes"], [252, "notes"], [253, "notes"], [254, "notes"], [255, "notes"], [256, "notes"], [257, "notes"], [258, "notes"], [259, "notes"], [260, "notes"], [261, "notes"], [262, "notes"], [263, "notes"], [264, "notes"], [265, "notes"], [266, "notes"], [267, "notes"], [268, "notes"], [269, "notes"], [270, "notes"], [271, "notes"], [272, "notes"], [273, "notes"], [274, "notes"], [275, "notes"], [276, "notes"], [277, "notes"], [278, "notes"], [279, "notes"], [280, "notes"], [281, "notes"], [282, "notes"], [283, "notes"], [284, "notes"], [285, "notes"], [286, "notes"], [287, "notes"], [288, "notes"], [289, "notes"], [290, "notes"], [291, "notes"], [292, "notes"], [293, "notes"], [294, "notes"], [295, "notes"], [296, "notes"], [297, "notes"], [298, "notes"], [299, "notes"], [300, "notes"], [301, "notes"], [302, "notes"], [303, "notes"], [304, "notes"], [305, "notes"], [306, "notes"], [307, "notes"], [308, "notes"], [309, "notes"], [310, "notes"], [311, "notes"], [312, "notes"], [313, "notes"], [314, "notes"], [315, "notes"], [316, "notes"], [317, "notes"], [318, "notes"], [319, "notes"], [320, "notes"], [321, "notes"], [322, "notes"], [323, "notes"], [324, "notes"], [325, "notes"], [326, "notes"], [327, "notes"], [328, "notes"], [329, "notes"], [330, "notes"], [331, "notes"], [332, "notes"], [333, "notes"], [334, "notes"], [335, "notes"], [336, "notes"], [337, "notes"], [338, "notes"], [339, "notes"], [340, "notes"], [341, "notes"], [342, "notes"], [343, "notes"], [344, "notes"], [345, "notes"], [346, "notes"], [347, "notes"], [348, "notes"], [349, "notes"], [350, "notes"], [351, "notes"], [352, "notes"], [353, "notes"], [354, "notes"], [355, "notes"], [356, "notes"], [357, "notes"], [358, "notes"], [359, "notes"], [360, "notes"], [361, "notes"], [362, "notes"], [363, "notes"], [364, "notes"], [365, "notes"], [366, "notes"], [367, "notes"], [368, "notes"], [369, "notes"], [370, "notes"], [371, "notes"], [372, "notes"], [373, "notes"], [374, "notes"], [375, "notes"], [376, "notes"], [377, "notes"], [378, "notes"], [379, "notes"], [380, "notes"], [381, "notes"], [382, "notes"], [383, "notes"], [384, "notes"], [385, "notes"], [386, "notes"], [387, "notes"], [388, "notes"], [389, "notes"], [390, "notes"], [392, "notes"], [393, "notes"], [394, "notes"], [395, "notes"], [396, "notes"], [397, "notes"], [398, "notes"], [399, "notes"], [400, "notes"], [401, "notes"], [402, "notes"], [403, "notes"], [404, "notes"], [405, "notes"], [406, "notes"], [407, "notes"], [408, "notes"], [409, "notes"], [410, "notes"], [411, "notes"], [412, "notes"], [413, "notes"], [414, "notes"], [415, "notes"], [416, "notes"], [417, "notes"], [418, "notes"], [419, "notes"], [420, "notes"], [421, "notes"], [422, "notes"], [423, "notes"], [424, "notes"], [425, "notes"], [426, "notes"], [427, "notes"], [428, "notes"], [429, "notes"], [430, "notes"], [431, "notes"], [432, "notes"], [433, "notes"], [434, "notes"], [435, "notes"], [436, "notes"], [437, "notes"], [438, "notes"], [439, "notes"], [440, "notes"], [441, "notes"], [442, "notes"], [443, "notes"], [444, "notes"], [445, "notes"], [446, "notes"], [447, "notes"], [448, "notes"], [449, "notes"], [450, "notes"], [451, "notes"], [452, "notes"], [453, "notes"], [454, "notes"], [455, "notes"], [456, "notes"], [457, "notes"], [458, "notes"], [459, "notes"], [460, "notes"], [461, "notes"], [462, "notes"], [463, "notes"], [464, "notes"], [465, "notes"], [466, "notes"], [467, "notes"], [468, "notes"], [469, "notes"], [470, "notes"], [471, "notes"], [472, "notes"], [473, "notes"], [474, "notes"], [475, "notes"], [476, "notes"], [477, "notes"], [478, "notes"], [479, "notes"], [480, "notes"], [481, "notes"], [482, "notes"], [483, "notes"], [484, "notes"], [485, "notes"], [486, "notes"], [487, "notes"], [488, "notes"], [489, "notes"], [490, "notes"], [491, "notes"], [492, "notes"], [493, "notes"], [494, "notes"], [495, "notes"], [496, "notes"], [497, "notes"], [498, "notes"], [499, "notes"], [500, "notes"], [501, "notes"], [502, "notes"], [503, "notes"], [504, "notes"], [505, "notes"], [506, "notes"], [507, "notes"], [508, "notes"], [509, "notes"], [510, "notes"], [511, "notes"], [512, "notes"], [513, "notes"], [514, "notes"], [515, "notes"], [516, "notes"], [517, "notes"], [518, "notes"], [519, "notes"], [520, "notes"], [521, "notes"], [522, "notes"], [523, "notes"], [524, "notes"], [525, "notes"], [526, "notes"], [527, "notes"], [528, "notes"], [529, "notes"], [530, "notes"], [531, "notes"], [532, "notes"], [533, "notes"], [534, "notes"], [535, "notes"], [536, "notes"], [537, "notes"], [538, "notes"], [539, "notes"], [540, "notes"], [541, "notes"], [542, "notes"], [543, "notes"], [544, "notes"], [545, "notes"], [546, "notes"], [547, "notes"], [548, "notes"], [549, "notes"], [550, "notes"], [551, "notes"], [552, "notes"], [553, "notes"], [554, "notes"], [555, "notes"], [556, "notes"], [557, "notes"], [558, "notes"], [559, "notes"], [560, "notes"], [561, "notes"], [562, "notes"], [563, "notes"], [564, "notes"], [565, "notes"], [566, "notes"], [567, "notes"], [568, "notes"], [569, "notes"], [570, "notes"], [571, "notes"], [572, "notes"], [573, "notes"], [574, "notes"], [575, "notes"], [576, "notes"], [577, "notes"], [578, "notes"], [579, "notes"], [580, "notes"], [581, "notes"], [582, "notes"], [583, "notes"], [584, "notes"], [585, "notes"], [586, "notes"], [587, "notes"], [588, "notes"], [589, "notes"], [590, "notes"], [591, "notes"], [592, "notes"], [593, "notes"], [594, "notes"], [595, "notes"], [596, "notes"], [597, "notes"], [598, "notes"], [599, "notes"], [600, "notes"], [601, "notes"], [602, "notes"], [603, "notes"], [604, "notes"], [605, "notes"], [606, "notes"], [607, "notes"], [608, "notes"], [609, "notes"], [610, "notes"], [611, "notes"], [612, "notes"], [613, "notes"], [614, "notes"], [615, "notes"], [616, "notes"], [617, "notes"], [618, "notes"], [619, "notes"], [620, "notes"], [621, "notes"], [622, "notes"], [623, "notes"], [624, "notes"], [625, "notes"], [626, "notes"], [627, "notes"], [628, "notes"], [629, "notes"], [630, "notes"], [631, "notes"], [632, "notes"], [633, "notes"], [634, "notes"], [635, "notes"], [636, "notes"], [637, "notes"], [638, "notes"], [639, "notes"], [640, "notes"], [641, "notes"], [642, "notes"], [643, "notes"], [644, "notes"], [645, "notes"], [646, "notes"], [647, "notes"], [648, "notes"], [649, "notes"], [650, "notes"], [651, "notes"], [652, "notes"], [653, "notes"], [654, "notes"], [655, "notes"], [656, "notes"], [657, "notes"], [658, "notes"], [659, "notes"], [660, "notes"], [661, "notes"], [662, "notes"], [663, "notes"], [664, "notes"], [665, "notes"], [666, "notes"], [667, "notes"], [668, "notes"], [669, "notes"], [670, "notes"], [671, "notes"], [672, "notes"], [673, "notes"], [674, "notes"], [675, "notes"], [676, "notes"], [677, "notes"], [678, "notes"], [679, "notes"], [680, "notes"], [681, "notes"], [682, "notes"], [683, "notes"], [684, "notes"], [685, "notes"], [686, "notes"], [687, "notes"], [688, "notes"], [689, "notes"], [690, "notes"], [691, "notes"], [692, "notes"], [693, "notes"], [694, "notes"], [695, "notes"], [696, "notes"], [697, "notes"], [698, "notes"], [699, "notes"], [700, "notes"], [701, "notes"], [702, "notes"], [703, "notes"], [704, "notes"], [705, "notes"], [706, "notes"], [707, "notes"], [708, "notes"], [709, "notes"], [710, "notes"], [711, "notes"], [712, "notes"], [713, "notes"], [714, "notes"], [715, "notes"], [716, "notes"], [717, "notes"], [718, "notes"], [719, "notes"], [720, "notes"], [721, "notes"], [722, "notes"], [723, "notes"], [724, "notes"], [725, "notes"], [726, "notes"], [727, "notes"], [728, "notes"], [729, "notes"], [730, "notes"], [731, "notes"], [732, "notes"], [733, "notes"], [734, "notes"], [735, "notes"], [736, "notes"], [737, "notes"], [738, "notes"], [739, "notes"], [740, "notes"], [741, "notes"], [742, "notes"], [743, "notes"], [744, "notes"], [745, "notes"], [746, "notes"], [747, "notes"], [748, "notes"], [749, "notes"], [750, "notes"], [751, "notes"], [752, "notes"], [753, "notes"], [754, "notes"], [755, "notes"], [756, "notes"], [757, "notes"], [758, "notes"], [759, "notes"], [760, "notes"], [761, "notes"], [762, "notes"], [763, "notes"], [764, "notes"], [765, "notes"], [766, "notes"], [767, "notes"], [768, "notes"], [769, "notes"], [770, "notes"], [771, "notes"], [772, "notes"], [773, "notes"], [774, "notes"], [775, "notes"], [776, "notes"], [777, "notes"], [778, "notes"], [779, "notes"], [780, "notes"], [781, "notes"], [782, "notes"], [783, "notes"], [784, "notes"], [785, "notes"], [786, "notes"], [787, "notes"], [788, "notes"], [789, "notes"], [790, "notes"], [791, "notes"], [792, "notes"], [793, "notes"], [794, "notes"], [795, "notes"], [796, "notes"], [797, "notes"], [798, "notes"], [799, "notes"], [800, "notes"], [801, "notes"], [802, "notes"], [803, "notes"], [804, "notes"], [805, "notes"], [806, "notes"], [807, "notes"], [808, "notes"], [809, "notes"], [810, "notes"], [811, "notes"], [812, "notes"], [813, "notes"], [814, "notes"], [815, "notes"], [816, "notes"], [817, "notes"], [818, "notes"], [819, "notes"], [820, "notes"], [821, "notes"], [822, "notes"], [823, "notes"], [824, "notes"], [825, "notes"], [826, "notes"], [827, "notes"], [828, "notes"], [829, "notes"], [830, "notes"], [831, "notes"], [832, "notes"], [833, "notes"], [834, "notes"], [835, "notes"], [836, "notes"], [837, "notes"], [838, "notes"], [839, "notes"], [840, "notes"], [841, "notes"], [842, "notes"], [843, "notes"], [844, "notes"], [845, "notes"], [846, "notes"], [847, "notes"], [848, "notes"], [849, "notes"], [850, "notes"], [851, "notes"], [852, "notes"], [853, "notes"], [854, "notes"], [855, "notes"], [856, "notes"], [857, "notes"], [858, "notes"], [859, "notes"], [860, "notes"], [861, "notes"], [862, "notes"], [863, "notes"], [864, "notes"], [865, "notes"], [866, "notes"], [867, "notes"], [868, "notes"], [869, "notes"], [870, "notes"], [871, "notes"], [872, "notes"], [873, "notes"], [874, "notes"], [875, "notes"], [876, "notes"], [877, "notes"], [878, "notes"], [879, "notes"], [880, "notes"], [881, "notes"], [882, "notes"], [883, "notes"], [884, "notes"], [885, "notes"], [886, "notes"], [887, "notes"], [888, "notes"], [889, "notes"], [890, "notes"], [891, "notes"], [892, "notes"], [893, "notes"], [894, "notes"], [895, "notes"]], "Examples": [[3, "examples"], [4, "examples"], [5, "examples"], [6, "examples"], [7, "examples"], [8, "examples"], [9, "examples"], [10, "examples"], [11, "examples"], [12, "examples"], [13, "examples"], [14, "examples"], [15, "examples"], [16, "examples"], [17, "examples"], [18, "examples"], [19, "examples"], [20, "examples"], [21, "examples"], [22, "examples"], [23, "examples"], [24, "examples"], [25, "examples"], [26, "examples"], [27, "examples"], [28, "examples"], [29, "examples"], [30, "examples"], [31, "examples"], [32, "examples"], [33, "examples"], [34, "examples"], [35, "examples"], [36, "examples"], [37, "examples"], [38, "examples"], [39, "examples"], [40, "examples"], [41, "examples"], [42, "examples"], [43, "examples"], [44, "examples"], [45, "examples"], [46, "examples"], [47, "examples"], [48, "examples"], [49, "examples"], [50, "examples"], [51, "examples"], [52, "examples"], [53, "examples"], [54, "examples"], [55, "examples"], [56, "examples"], [57, "examples"], [58, "examples"], [59, "examples"], [60, "examples"], [61, "examples"], [62, "examples"], [63, "examples"], [64, "examples"], [65, "examples"], [66, "examples"], [67, "examples"], [68, "examples"], [69, "examples"], [70, "examples"], [71, "examples"], [72, "examples"], [73, "examples"], [74, "examples"], [75, "examples"], [76, "examples"], [77, "examples"], [78, "examples"], [79, "examples"], [80, "examples"], [81, "examples"], [82, "examples"], [83, "examples"], [84, "examples"], [85, "examples"], [86, "examples"], [87, "examples"], [88, "examples"], [89, "examples"], [90, "examples"], [91, "examples"], [92, "examples"], [93, "examples"], [94, "examples"], [95, "examples"], [96, "examples"], [97, "examples"], [98, "examples"], [99, "examples"], [100, "examples"], [101, "examples"], [102, "examples"], [103, "examples"], [104, "examples"], [105, "examples"], [106, "examples"], [107, "examples"], [108, "examples"], [109, "examples"], [110, "examples"], [111, "examples"], [112, "examples"], [113, "examples"], [114, "examples"], [115, "examples"], [116, "examples"], [117, "examples"], [118, "examples"], [119, "examples"], [120, "examples"], [121, "examples"], [122, "examples"], [123, "examples"], [124, "examples"], [125, "examples"], [126, "examples"], [127, "examples"], [128, "examples"], [129, "examples"], [130, "examples"], [131, "examples"], [132, "examples"], [133, "examples"], [134, "examples"], [135, "examples"], [136, "examples"], [137, "examples"], [138, "examples"], [139, "examples"], [140, "examples"], [141, "examples"], [142, "examples"], [143, "examples"], [144, "examples"], [145, "examples"], [146, "examples"], [147, "examples"], [148, "examples"], [149, "examples"], [150, "examples"], [151, "examples"], [152, "examples"], [153, "examples"], [154, "examples"], [155, "examples"], [156, "examples"], [157, "examples"], [158, "examples"], [159, "examples"], [160, "examples"], [161, "examples"], [162, "examples"], [163, "examples"], [164, "examples"], [165, "examples"], [166, "examples"], [167, "examples"], [168, "examples"], [169, "examples"], [170, "examples"], [171, "examples"], [172, "examples"], [173, "examples"], [174, "examples"], [175, "examples"], [176, "examples"], [177, "examples"], [178, "examples"], [179, "examples"], [180, "examples"], [181, "examples"], [182, "examples"], [183, "examples"], [184, "examples"], [185, "examples"], [186, "examples"], [187, "examples"], [188, "examples"], [189, "examples"], [190, "examples"], [191, "examples"], [192, "examples"], [193, "examples"], [194, "examples"], [195, "examples"], [196, "examples"], [197, "examples"], [198, "examples"], [199, "examples"], [200, "examples"], [201, "examples"], [202, "examples"], [203, "examples"], [204, "examples"], [205, "examples"], [206, "examples"], [207, "examples"], [208, "examples"], [209, "examples"], [210, "examples"], [211, "examples"], [212, "examples"], [213, "examples"], [214, "examples"], [215, "examples"], [216, "examples"], [217, "examples"], [218, "examples"], [219, "examples"], [220, "examples"], [221, "examples"], [222, "examples"], [223, "examples"], [224, "examples"], [225, "examples"], [226, "examples"], [227, "examples"], [228, "examples"], [229, "examples"], [230, "examples"], [231, "examples"], [232, "examples"], [233, "examples"], [234, "examples"], [235, "examples"], [236, "examples"], [237, "examples"], [238, "examples"], [239, "examples"], [240, "examples"], [241, "examples"], [242, "examples"], [243, "examples"], [244, "examples"], [245, "examples"], [246, "examples"], [247, "examples"], [248, "examples"], [249, "examples"], [250, "examples"], [251, "examples"], [252, "examples"], [253, "examples"], [254, "examples"], [255, "examples"], [256, "examples"], [257, "examples"], [258, "examples"], [259, "examples"], [260, "examples"], [261, "examples"], [262, "examples"], [263, "examples"], [264, "examples"], [265, "examples"], [266, "examples"], [267, "examples"], [268, "examples"], [269, "examples"], [270, "examples"], [271, "examples"], [272, "examples"], [273, "examples"], [274, "examples"], [275, "examples"], [276, "examples"], [277, "examples"], [278, "examples"], [279, "examples"], [280, "examples"], [281, "examples"], [282, "examples"], [283, "examples"], [284, "examples"], [285, "examples"], [286, "examples"], [287, "examples"], [288, "examples"], [289, "examples"], [290, "examples"], [291, "examples"], [292, "examples"], [293, "examples"], [294, "examples"], [295, "examples"], [296, "examples"], [297, "examples"], [298, "examples"], [299, "examples"], [300, "examples"], [301, "examples"], [302, "examples"], [303, "examples"], [304, "examples"], [305, "examples"], [306, "examples"], [307, "examples"], [308, "examples"], [309, "examples"], [310, "examples"], [311, "examples"], [312, "examples"], [313, "examples"], [314, "examples"], [315, "examples"], [316, "examples"], [317, "examples"], [318, "examples"], [319, "examples"], [320, "examples"], [321, "examples"], [322, "examples"], [323, "examples"], [324, "examples"], [325, "examples"], [326, "examples"], [327, "examples"], [328, "examples"], [329, "examples"], [330, "examples"], [331, "examples"], [332, "examples"], [333, "examples"], [334, "examples"], [335, "examples"], [336, "examples"], [337, "examples"], [338, "examples"], [339, "examples"], [340, "examples"], [341, "examples"], [342, "examples"], [343, "examples"], [344, "examples"], [345, "examples"], [346, "examples"], [347, "examples"], [348, "examples"], [349, "examples"], [350, "examples"], [351, "examples"], [352, "examples"], [353, "examples"], [354, "examples"], [355, "examples"], [356, "examples"], [357, "examples"], [358, "examples"], [359, "examples"], [360, "examples"], [361, "examples"], [362, "examples"], [363, "examples"], [364, "examples"], [365, "examples"], [366, "examples"], [367, "examples"], [368, "examples"], [369, "examples"], [370, "examples"], [371, "examples"], [372, "examples"], [373, "examples"], [374, "examples"], [375, "examples"], [376, "examples"], [377, "examples"], [378, "examples"], [379, "examples"], [380, "examples"], [381, "examples"], [382, "examples"], [383, "examples"], [384, "examples"], [385, "examples"], [386, "examples"], [387, "examples"], [388, "examples"], [389, "examples"], [390, "examples"], [392, "examples"], [393, "examples"], [394, "examples"], [395, "examples"], [396, "examples"], [397, "examples"], [398, "examples"], [399, "examples"], [400, "examples"], [401, "examples"], [402, "examples"], [403, "examples"], [404, "examples"], [405, "examples"], [406, "examples"], [407, "examples"], [408, "examples"], [409, "examples"], [410, "examples"], [411, "examples"], [412, "examples"], [413, "examples"], [414, "examples"], [415, "examples"], [416, "examples"], [417, "examples"], [418, "examples"], [419, "examples"], [420, "examples"], [421, "examples"], [422, "examples"], [423, "examples"], [424, "examples"], [425, "examples"], [426, "examples"], [427, "examples"], [428, "examples"], [429, "examples"], [430, "examples"], [431, "examples"], [432, "examples"], [433, "examples"], [434, "examples"], [435, "examples"], [436, "examples"], [437, "examples"], [438, "examples"], [439, "examples"], [440, "examples"], [441, "examples"], [442, "examples"], [443, "examples"], [444, "examples"], [445, "examples"], [446, "examples"], [447, "examples"], [448, "examples"], [449, "examples"], [450, "examples"], [451, "examples"], [452, "examples"], [453, "examples"], [454, "examples"], [455, "examples"], [456, "examples"], [457, "examples"], [458, "examples"], [459, "examples"], [460, "examples"], [461, "examples"], [462, "examples"], [463, "examples"], [464, "examples"], [465, "examples"], [466, "examples"], [467, "examples"], [468, "examples"], [469, "examples"], [470, "examples"], [471, "examples"], [472, "examples"], [473, "examples"], [474, "examples"], [475, "examples"], [476, "examples"], [477, "examples"], [478, "examples"], [479, "examples"], [480, "examples"], [481, "examples"], [482, "examples"], [483, "examples"], [484, "examples"], [485, "examples"], [486, "examples"], [487, "examples"], [488, "examples"], [489, "examples"], [490, "examples"], [491, "examples"], [492, "examples"], [493, "examples"], [494, "examples"], [495, "examples"], [496, "examples"], [497, "examples"], [498, "examples"], [499, "examples"], [500, "examples"], [501, "examples"], [502, "examples"], [503, "examples"], [504, "examples"], [505, "examples"], [506, "examples"], [507, "examples"], [508, "examples"], [509, "examples"], [510, "examples"], [511, "examples"], [512, "examples"], [513, "examples"], [514, "examples"], [515, "examples"], [516, "examples"], [517, "examples"], [518, "examples"], [519, "examples"], [520, "examples"], [521, "examples"], [522, "examples"], [523, "examples"], [524, "examples"], [525, "examples"], [526, "examples"], [527, "examples"], [528, "examples"], [529, "examples"], [530, "examples"], [531, "examples"], [532, "examples"], [533, "examples"], [534, "examples"], [535, "examples"], [536, "examples"], [537, "examples"], [538, "examples"], [539, "examples"], [540, "examples"], [541, "examples"], [542, "examples"], [543, "examples"], [544, "examples"], [545, "examples"], [546, "examples"], [547, "examples"], [548, "examples"], [549, "examples"], [550, "examples"], [551, "examples"], [552, "examples"], [553, "examples"], [554, "examples"], [555, "examples"], [556, "examples"], [557, "examples"], [558, "examples"], [559, "examples"], [560, "examples"], [561, "examples"], [562, "examples"], [563, "examples"], [564, "examples"], [565, "examples"], [566, "examples"], [567, "examples"], [568, "examples"], [569, "examples"], [570, "examples"], [571, "examples"], [572, "examples"], [573, "examples"], [574, "examples"], [575, "examples"], [576, "examples"], [577, "examples"], [578, "examples"], [579, "examples"], [580, "examples"], [581, "examples"], [582, "examples"], [583, "examples"], [584, "examples"], [585, "examples"], [586, "examples"], [587, "examples"], [588, "examples"], [589, "examples"], [590, "examples"], [591, "examples"], [592, "examples"], [593, "examples"], [594, "examples"], [595, "examples"], [596, "examples"], [597, "examples"], [598, "examples"], [599, "examples"], [600, "examples"], [601, "examples"], [602, "examples"], [603, "examples"], [604, "examples"], [605, "examples"], [606, "examples"], [607, "examples"], [608, "examples"], [609, "examples"], [610, "examples"], [611, "examples"], [612, "examples"], [613, "examples"], [614, "examples"], [615, "examples"], [616, "examples"], [617, "examples"], [618, "examples"], [619, "examples"], [620, "examples"], [621, "examples"], [622, "examples"], [623, "examples"], [624, "examples"], [625, "examples"], [626, "examples"], [627, "examples"], [628, "examples"], [629, "examples"], [630, "examples"], [631, "examples"], [632, "examples"], [633, "examples"], [634, "examples"], [635, "examples"], [636, "examples"], [637, "examples"], [638, "examples"], [639, "examples"], [640, "examples"], [641, "examples"], [642, "examples"], [643, "examples"], [644, "examples"], [645, "examples"], [646, "examples"], [647, "examples"], [648, "examples"], [649, "examples"], [650, "examples"], [651, "examples"], [652, "examples"], [653, "examples"], [654, "examples"], [655, "examples"], [656, "examples"], [657, "examples"], [658, "examples"], [659, "examples"], [660, "examples"], [661, "examples"], [662, "examples"], [663, "examples"], [664, "examples"], [665, "examples"], [666, "examples"], [667, "examples"], [668, "examples"], [669, "examples"], [670, "examples"], [671, "examples"], [672, "examples"], [673, "examples"], [674, "examples"], [675, "examples"], [676, "examples"], [677, "examples"], [678, "examples"], [679, "examples"], [680, "examples"], [681, "examples"], [682, "examples"], [683, "examples"], [684, "examples"], [685, "examples"], [686, "examples"], [687, "examples"], [688, "examples"], [689, "examples"], [690, "examples"], [691, "examples"], [692, "examples"], [693, "examples"], [694, "examples"], [695, "examples"], [696, "examples"], [697, "examples"], [698, "examples"], [699, "examples"], [700, "examples"], [701, "examples"], [702, "examples"], [703, "examples"], [704, "examples"], [705, "examples"], [706, "examples"], [707, "examples"], [708, "examples"], [709, "examples"], [710, "examples"], [711, "examples"], [712, "examples"], [713, "examples"], [714, "examples"], [715, "examples"], [716, "examples"], [717, "examples"], [718, "examples"], [719, "examples"], [720, "examples"], [721, "examples"], [722, "examples"], [723, "examples"], [724, "examples"], [725, "examples"], [726, "examples"], [727, "examples"], [728, "examples"], [729, "examples"], [730, "examples"], [731, "examples"], [732, "examples"], [733, "examples"], [734, "examples"], [735, "examples"], [736, "examples"], [737, "examples"], [738, "examples"], [739, "examples"], [740, "examples"], [741, "examples"], [742, "examples"], [743, "examples"], [744, "examples"], [745, "examples"], [746, "examples"], [747, "examples"], [748, "examples"], [749, "examples"], [750, "examples"], [751, "examples"], [752, "examples"], [753, "examples"], [754, "examples"], [755, "examples"], [756, "examples"], [757, "examples"], [758, "examples"], [759, "examples"], [760, "examples"], [761, "examples"], [762, "examples"], [763, "examples"], [764, "examples"], [765, "examples"], [766, "examples"], [767, "examples"], [768, "examples"], [769, "examples"], [770, "examples"], [771, "examples"], [772, "examples"], [773, "examples"], [774, "examples"], [775, "examples"], [776, "examples"], [777, "examples"], [778, "examples"], [779, "examples"], [780, "examples"], [781, "examples"], [782, "examples"], [783, "examples"], [784, "examples"], [785, "examples"], [786, "examples"], [787, "examples"], [788, "examples"], [789, "examples"], [790, "examples"], [791, "examples"], [792, "examples"], [793, "examples"], [794, "examples"], [795, "examples"], [796, "examples"], [797, "examples"], [798, "examples"], [799, "examples"], [800, "examples"], [801, "examples"], [802, "examples"], [803, "examples"], [804, "examples"], [805, "examples"], [806, "examples"], [807, "examples"], [808, "examples"], [809, "examples"], [810, "examples"], [811, "examples"], [812, "examples"], [813, "examples"], [814, "examples"], [815, "examples"], [816, "examples"], [817, "examples"], [818, "examples"], [819, "examples"], [820, "examples"], [821, "examples"], [822, "examples"], [823, "examples"], [824, "examples"], [825, "examples"], [826, "examples"], [827, "examples"], [828, "examples"], [829, "examples"], [830, "examples"], [831, "examples"], [832, "examples"], [833, "examples"], [834, "examples"], [835, "examples"], [836, "examples"], [837, "examples"], [838, "examples"], [839, "examples"], [840, "examples"], [841, "examples"], [842, "examples"], [843, "examples"], [844, "examples"], [845, "examples"], [846, "examples"], [847, "examples"], [848, "examples"], [849, "examples"], [850, "examples"], [851, "examples"], [852, "examples"], [853, "examples"], [854, "examples"], [855, "examples"], [856, "examples"], [857, "examples"], [858, "examples"], [859, "examples"], [860, "examples"], [861, "examples"], [862, "examples"], [863, "examples"], [864, "examples"], [865, "examples"], [866, "examples"], [867, "examples"], [868, "examples"], [869, "examples"], [870, "examples"], [871, "examples"], [872, "examples"], [873, "examples"], [874, "examples"], [875, "examples"], [876, "examples"], [877, "examples"], [878, "examples"], [879, "examples"], [880, "examples"], [881, "examples"], [882, "examples"], [883, "examples"], [884, "examples"], [885, "examples"], [886, "examples"], [887, "examples"], [888, "examples"], [889, "examples"], [890, "examples"], [891, "examples"], [892, "examples"], [893, "examples"], [894, "examples"], [895, "examples"]], "Return Values": [[3, "return-values"], [4, "return-values"], [5, "return-values"], [6, "return-values"], [7, "return-values"], [8, "return-values"], [9, "return-values"], [10, "return-values"], [11, "return-values"], [12, "return-values"], [13, "return-values"], [14, "return-values"], [15, "return-values"], [16, "return-values"], [17, "return-values"], [18, "return-values"], [19, "return-values"], [20, "return-values"], [21, "return-values"], [22, "return-values"], [23, "return-values"], [24, "return-values"], [25, "return-values"], [26, "return-values"], [27, "return-values"], [28, "return-values"], [29, "return-values"], [30, "return-values"], [31, "return-values"], [32, "return-values"], [33, "return-values"], [34, "return-values"], [35, "return-values"], [36, "return-values"], [37, "return-values"], [38, "return-values"], [39, "return-values"], [40, "return-values"], [41, "return-values"], [42, "return-values"], [43, "return-values"], [44, "return-values"], [45, "return-values"], [46, "return-values"], [47, "return-values"], [48, "return-values"], [49, "return-values"], [50, "return-values"], [51, "return-values"], [52, "return-values"], [53, "return-values"], [54, "return-values"], [55, "return-values"], [56, "return-values"], [57, "return-values"], [58, "return-values"], [59, "return-values"], [60, "return-values"], [61, "return-values"], [62, "return-values"], [63, "return-values"], [64, "return-values"], [65, "return-values"], [66, "return-values"], [67, "return-values"], [68, "return-values"], [69, "return-values"], [70, "return-values"], [71, "return-values"], [72, "return-values"], [73, "return-values"], [74, "return-values"], [75, "return-values"], [76, "return-values"], [77, "return-values"], [78, "return-values"], [79, "return-values"], [80, "return-values"], [81, "return-values"], [82, "return-values"], [83, "return-values"], [84, "return-values"], [85, "return-values"], [86, "return-values"], [87, "return-values"], [88, "return-values"], [89, "return-values"], [90, "return-values"], [91, "return-values"], [92, "return-values"], [93, "return-values"], [94, "return-values"], [95, "return-values"], [96, "return-values"], [97, "return-values"], [98, "return-values"], [99, "return-values"], [100, "return-values"], [101, "return-values"], [102, "return-values"], [103, "return-values"], [104, "return-values"], [105, "return-values"], [106, "return-values"], [107, "return-values"], [108, "return-values"], [109, "return-values"], [110, "return-values"], [111, "return-values"], [112, "return-values"], [113, "return-values"], [114, "return-values"], [115, "return-values"], [116, "return-values"], [117, "return-values"], [118, "return-values"], [119, "return-values"], [120, "return-values"], [121, "return-values"], [122, "return-values"], [123, "return-values"], [124, "return-values"], [125, "return-values"], [126, "return-values"], [127, "return-values"], [128, "return-values"], [129, "return-values"], [130, "return-values"], [131, "return-values"], [132, "return-values"], [133, "return-values"], [134, "return-values"], [135, "return-values"], [136, "return-values"], [137, "return-values"], [138, "return-values"], [139, "return-values"], [140, "return-values"], [141, "return-values"], [142, "return-values"], [143, "return-values"], [144, "return-values"], [145, "return-values"], [146, "return-values"], [147, "return-values"], [148, "return-values"], [149, "return-values"], [150, "return-values"], [151, "return-values"], [152, "return-values"], [153, "return-values"], [154, "return-values"], [155, "return-values"], [156, "return-values"], [157, "return-values"], [158, "return-values"], [159, "return-values"], [160, "return-values"], [161, "return-values"], [162, "return-values"], [163, "return-values"], [164, "return-values"], [165, "return-values"], [166, "return-values"], [167, "return-values"], [168, "return-values"], [169, "return-values"], [170, "return-values"], [171, "return-values"], [172, "return-values"], [173, "return-values"], [174, "return-values"], [175, "return-values"], [176, "return-values"], [177, "return-values"], [178, "return-values"], [179, "return-values"], [180, "return-values"], [181, "return-values"], [182, "return-values"], [183, "return-values"], [184, "return-values"], [185, "return-values"], [186, "return-values"], [187, "return-values"], [188, "return-values"], [189, "return-values"], [190, "return-values"], [191, "return-values"], [192, "return-values"], [193, "return-values"], [194, "return-values"], [195, "return-values"], [196, "return-values"], [197, "return-values"], [198, "return-values"], [199, "return-values"], [200, "return-values"], [201, "return-values"], [202, "return-values"], [203, "return-values"], [204, "return-values"], [205, "return-values"], [206, "return-values"], [207, "return-values"], [208, "return-values"], [209, "return-values"], [210, "return-values"], [211, "return-values"], [212, "return-values"], [213, "return-values"], [214, "return-values"], [215, "return-values"], [216, "return-values"], [217, "return-values"], [218, "return-values"], [219, "return-values"], [220, "return-values"], [221, "return-values"], [222, "return-values"], [223, "return-values"], [224, "return-values"], [225, "return-values"], [226, "return-values"], [227, "return-values"], [228, "return-values"], [229, "return-values"], [230, "return-values"], [231, "return-values"], [232, "return-values"], [233, "return-values"], [234, "return-values"], [235, "return-values"], [236, "return-values"], [237, "return-values"], [238, "return-values"], [239, "return-values"], [240, "return-values"], [241, "return-values"], [242, "return-values"], [243, "return-values"], [244, "return-values"], [245, "return-values"], [246, "return-values"], [247, "return-values"], [248, "return-values"], [249, "return-values"], [250, "return-values"], [251, "return-values"], [252, "return-values"], [253, "return-values"], [254, "return-values"], [255, "return-values"], [256, "return-values"], [257, "return-values"], [258, "return-values"], [259, "return-values"], [260, "return-values"], [261, "return-values"], [262, "return-values"], [263, "return-values"], [264, "return-values"], [265, "return-values"], [266, "return-values"], [267, "return-values"], [268, "return-values"], [269, "return-values"], [270, "return-values"], [271, "return-values"], [272, "return-values"], [273, "return-values"], [274, "return-values"], [275, "return-values"], [276, "return-values"], [277, "return-values"], [278, "return-values"], [279, "return-values"], [280, "return-values"], [281, "return-values"], [282, "return-values"], [283, "return-values"], [284, "return-values"], [285, "return-values"], [286, "return-values"], [287, "return-values"], [288, "return-values"], [289, "return-values"], [290, "return-values"], [291, "return-values"], [292, "return-values"], [293, "return-values"], [294, "return-values"], [295, "return-values"], [296, "return-values"], [297, "return-values"], [298, "return-values"], [299, "return-values"], [300, "return-values"], [301, "return-values"], [302, "return-values"], [303, "return-values"], [304, "return-values"], [305, "return-values"], [306, "return-values"], [307, "return-values"], [308, "return-values"], [309, "return-values"], [310, "return-values"], [311, "return-values"], [312, "return-values"], [313, "return-values"], [314, "return-values"], [315, "return-values"], [316, "return-values"], [317, "return-values"], [318, "return-values"], [319, "return-values"], [320, "return-values"], [321, "return-values"], [322, "return-values"], [323, "return-values"], [324, "return-values"], [325, "return-values"], [326, "return-values"], [327, "return-values"], [328, "return-values"], [329, "return-values"], [330, "return-values"], [331, "return-values"], [332, "return-values"], [333, "return-values"], [334, "return-values"], [335, "return-values"], [336, "return-values"], [337, "return-values"], [338, "return-values"], [339, "return-values"], [340, "return-values"], [341, "return-values"], [342, "return-values"], [343, "return-values"], [344, "return-values"], [345, "return-values"], [346, "return-values"], [347, "return-values"], [348, "return-values"], [349, "return-values"], [350, "return-values"], [351, "return-values"], [352, "return-values"], [353, "return-values"], [354, "return-values"], [355, "return-values"], [356, "return-values"], [357, "return-values"], [358, "return-values"], [359, "return-values"], [360, "return-values"], [361, "return-values"], [362, "return-values"], [363, "return-values"], [364, "return-values"], [365, "return-values"], [366, "return-values"], [367, "return-values"], [368, "return-values"], [369, "return-values"], [370, "return-values"], [371, "return-values"], [372, "return-values"], [373, "return-values"], [374, "return-values"], [375, "return-values"], [376, "return-values"], [377, "return-values"], [378, "return-values"], [379, "return-values"], [380, "return-values"], [381, "return-values"], [382, "return-values"], [383, "return-values"], [384, "return-values"], [385, "return-values"], [386, "return-values"], [387, "return-values"], [388, "return-values"], [389, "return-values"], [390, "return-values"], [392, "return-values"], [393, "return-values"], [394, "return-values"], [395, "return-values"], [396, "return-values"], [397, "return-values"], [398, "return-values"], [399, "return-values"], [400, "return-values"], [401, "return-values"], [402, "return-values"], [403, "return-values"], [404, "return-values"], [405, "return-values"], [406, "return-values"], [407, "return-values"], [408, "return-values"], [409, "return-values"], [410, "return-values"], [411, "return-values"], [412, "return-values"], [413, "return-values"], [414, "return-values"], [415, "return-values"], [416, "return-values"], [417, "return-values"], [418, "return-values"], [419, "return-values"], [420, "return-values"], [421, "return-values"], [422, "return-values"], [423, "return-values"], [424, "return-values"], [425, "return-values"], [426, "return-values"], [427, "return-values"], [428, "return-values"], [429, "return-values"], [430, "return-values"], [431, "return-values"], [432, "return-values"], [433, "return-values"], [434, "return-values"], [435, "return-values"], [436, "return-values"], [437, "return-values"], [438, "return-values"], [439, "return-values"], [440, "return-values"], [441, "return-values"], [442, "return-values"], [443, "return-values"], [444, "return-values"], [445, "return-values"], [446, "return-values"], [447, "return-values"], [448, "return-values"], [449, "return-values"], [450, "return-values"], [451, "return-values"], [452, "return-values"], [453, "return-values"], [454, "return-values"], [455, "return-values"], [456, "return-values"], [457, "return-values"], [458, "return-values"], [459, "return-values"], [460, "return-values"], [461, "return-values"], [462, "return-values"], [463, "return-values"], [464, "return-values"], [465, "return-values"], [466, "return-values"], [467, "return-values"], [468, "return-values"], [469, "return-values"], [470, "return-values"], [471, "return-values"], [472, "return-values"], [473, "return-values"], [474, "return-values"], [475, "return-values"], [476, "return-values"], [477, "return-values"], [478, "return-values"], [479, "return-values"], [480, "return-values"], [481, "return-values"], [482, "return-values"], [483, "return-values"], [484, "return-values"], [485, "return-values"], [486, "return-values"], [487, "return-values"], [488, "return-values"], [489, "return-values"], [490, "return-values"], [491, "return-values"], [492, "return-values"], [493, "return-values"], [494, "return-values"], [495, "return-values"], [496, "return-values"], [497, "return-values"], [498, "return-values"], [499, "return-values"], [500, "return-values"], [501, "return-values"], [502, "return-values"], [503, "return-values"], [504, "return-values"], [505, "return-values"], [506, "return-values"], [507, "return-values"], [508, "return-values"], [509, "return-values"], [510, "return-values"], [511, "return-values"], [512, "return-values"], [513, "return-values"], [514, "return-values"], [515, "return-values"], [516, "return-values"], [517, "return-values"], [518, "return-values"], [519, "return-values"], [520, "return-values"], [521, "return-values"], [522, "return-values"], [523, "return-values"], [524, "return-values"], [525, "return-values"], [526, "return-values"], [527, "return-values"], [528, "return-values"], [529, "return-values"], [530, "return-values"], [531, "return-values"], [532, "return-values"], [533, "return-values"], [534, "return-values"], [535, "return-values"], [536, "return-values"], [537, "return-values"], [538, "return-values"], [539, "return-values"], [540, "return-values"], [541, "return-values"], [542, "return-values"], [543, "return-values"], [544, "return-values"], [545, "return-values"], [546, "return-values"], [547, "return-values"], [548, "return-values"], [549, "return-values"], [550, "return-values"], [551, "return-values"], [552, "return-values"], [553, "return-values"], [554, "return-values"], [555, "return-values"], [556, "return-values"], [557, "return-values"], [558, "return-values"], [559, "return-values"], [560, "return-values"], [561, "return-values"], [562, "return-values"], [563, "return-values"], [564, "return-values"], [565, "return-values"], [566, "return-values"], [567, "return-values"], [568, "return-values"], [569, "return-values"], [570, "return-values"], [571, "return-values"], [572, "return-values"], [573, "return-values"], [574, "return-values"], [575, "return-values"], [576, "return-values"], [577, "return-values"], [578, "return-values"], [579, "return-values"], [580, "return-values"], [581, "return-values"], [582, "return-values"], [583, "return-values"], [584, "return-values"], [585, "return-values"], [586, "return-values"], [587, "return-values"], [588, "return-values"], [589, "return-values"], [590, "return-values"], [591, "return-values"], [592, "return-values"], [593, "return-values"], [594, "return-values"], [595, "return-values"], [596, "return-values"], [597, "return-values"], [598, "return-values"], [599, "return-values"], [600, "return-values"], [601, "return-values"], [602, "return-values"], [603, "return-values"], [604, "return-values"], [605, "return-values"], [606, "return-values"], [607, "return-values"], [608, "return-values"], [609, "return-values"], [610, "return-values"], [611, "return-values"], [612, "return-values"], [613, "return-values"], [614, "return-values"], [615, "return-values"], [616, "return-values"], [617, "return-values"], [618, "return-values"], [619, "return-values"], [620, "return-values"], [621, "return-values"], [622, "return-values"], [623, "return-values"], [624, "return-values"], [625, "return-values"], [626, "return-values"], [627, "return-values"], [628, "return-values"], [629, "return-values"], [630, "return-values"], [631, "return-values"], [632, "return-values"], [633, "return-values"], [634, "return-values"], [635, "return-values"], [636, "return-values"], [637, "return-values"], [638, "return-values"], [639, "return-values"], [640, "return-values"], [641, "return-values"], [642, "return-values"], [643, "return-values"], [644, "return-values"], [645, "return-values"], [646, "return-values"], [647, "return-values"], [648, "return-values"], [649, "return-values"], [650, "return-values"], [651, "return-values"], [652, "return-values"], [653, "return-values"], [654, "return-values"], [655, "return-values"], [656, "return-values"], [657, "return-values"], [658, "return-values"], [659, "return-values"], [660, "return-values"], [661, "return-values"], [662, "return-values"], [663, "return-values"], [664, "return-values"], [665, "return-values"], [666, "return-values"], [667, "return-values"], [668, "return-values"], [669, "return-values"], [670, "return-values"], [671, "return-values"], [672, "return-values"], [673, "return-values"], [674, "return-values"], [675, "return-values"], [676, "return-values"], [677, "return-values"], [678, "return-values"], [679, "return-values"], [680, "return-values"], [681, "return-values"], [682, "return-values"], [683, "return-values"], [684, "return-values"], [685, "return-values"], [686, "return-values"], [687, "return-values"], [688, "return-values"], [689, "return-values"], [690, "return-values"], [691, "return-values"], [692, "return-values"], [693, "return-values"], [694, "return-values"], [695, "return-values"], [696, "return-values"], [697, "return-values"], [698, "return-values"], [699, "return-values"], [700, "return-values"], [701, "return-values"], [702, "return-values"], [703, "return-values"], [704, "return-values"], [705, "return-values"], [706, "return-values"], [707, "return-values"], [708, "return-values"], [709, "return-values"], [710, "return-values"], [711, "return-values"], [712, "return-values"], [713, "return-values"], [714, "return-values"], [715, "return-values"], [716, "return-values"], [717, "return-values"], [718, "return-values"], [719, "return-values"], [720, "return-values"], [721, "return-values"], [722, "return-values"], [723, "return-values"], [724, "return-values"], [725, "return-values"], [726, "return-values"], [727, "return-values"], [728, "return-values"], [729, "return-values"], [730, "return-values"], [731, "return-values"], [732, "return-values"], [733, "return-values"], [734, "return-values"], [735, "return-values"], [736, "return-values"], [737, "return-values"], [738, "return-values"], [739, "return-values"], [740, "return-values"], [741, "return-values"], [742, "return-values"], [743, "return-values"], [744, "return-values"], [745, "return-values"], [746, "return-values"], [747, "return-values"], [748, "return-values"], [749, "return-values"], [750, "return-values"], [751, "return-values"], [752, "return-values"], [753, "return-values"], [754, "return-values"], [755, "return-values"], [756, "return-values"], [757, "return-values"], [758, "return-values"], [759, "return-values"], [760, "return-values"], [761, "return-values"], [762, "return-values"], [763, "return-values"], [764, "return-values"], [765, "return-values"], [766, "return-values"], [767, "return-values"], [768, "return-values"], [769, "return-values"], [770, "return-values"], [771, "return-values"], [772, "return-values"], [773, "return-values"], [774, "return-values"], [775, "return-values"], [776, "return-values"], [777, "return-values"], [778, "return-values"], [779, "return-values"], [780, "return-values"], [781, "return-values"], [782, "return-values"], [783, "return-values"], [784, "return-values"], [785, "return-values"], [786, "return-values"], [787, "return-values"], [788, "return-values"], [789, "return-values"], [790, "return-values"], [791, "return-values"], [792, "return-values"], [793, "return-values"], [794, "return-values"], [795, "return-values"], [796, "return-values"], [797, "return-values"], [798, "return-values"], [799, "return-values"], [800, "return-values"], [801, "return-values"], [802, "return-values"], [803, "return-values"], [804, "return-values"], [805, "return-values"], [806, "return-values"], [807, "return-values"], [808, "return-values"], [809, "return-values"], [810, "return-values"], [811, "return-values"], [812, "return-values"], [813, "return-values"], [814, "return-values"], [815, "return-values"], [816, "return-values"], [817, "return-values"], [818, "return-values"], [819, "return-values"], [820, "return-values"], [821, "return-values"], [822, "return-values"], [823, "return-values"], [824, "return-values"], [825, "return-values"], [826, "return-values"], [827, "return-values"], [828, "return-values"], [829, "return-values"], [830, "return-values"], [831, "return-values"], [832, "return-values"], [833, "return-values"], [834, "return-values"], [835, "return-values"], [836, "return-values"], [837, "return-values"], [838, "return-values"], [839, "return-values"], [840, "return-values"], [841, "return-values"], [842, "return-values"], [843, "return-values"], [844, "return-values"], [845, "return-values"], [846, "return-values"], [847, "return-values"], [848, "return-values"], [849, "return-values"], [850, "return-values"], [851, "return-values"], [852, "return-values"], [853, "return-values"], [854, "return-values"], [855, "return-values"], [856, "return-values"], [857, "return-values"], [858, "return-values"], [859, "return-values"], [860, "return-values"], [861, "return-values"], [862, "return-values"], [863, "return-values"], [864, "return-values"], [865, "return-values"], [866, "return-values"], [867, "return-values"], [868, "return-values"], [869, "return-values"], [870, "return-values"], [871, "return-values"], [872, "return-values"], [873, "return-values"], [874, "return-values"], [875, "return-values"], [876, "return-values"], [877, "return-values"], [878, "return-values"], [879, "return-values"], [880, "return-values"], [881, "return-values"], [882, "return-values"], [883, "return-values"], [884, "return-values"], [885, "return-values"], [886, "return-values"], [887, "return-values"], [888, "return-values"], [889, "return-values"], [890, "return-values"], [891, "return-values"], [892, "return-values"], [893, "return-values"], [894, "return-values"], [895, "return-values"]], "Authors": [[3, "authors"], [4, "authors"], [5, "authors"], [6, "authors"], [7, "authors"], [8, "authors"], [9, "authors"], [10, "authors"], [11, "authors"], [12, "authors"], [13, "authors"], [14, "authors"], [15, "authors"], [16, "authors"], [17, "authors"], [18, "authors"], [19, "authors"], [20, "authors"], [21, "authors"], [22, "authors"], [23, "authors"], [24, "authors"], [25, "authors"], [26, "authors"], [27, "authors"], [28, "authors"], [29, "authors"], [30, "authors"], [31, "authors"], [32, "authors"], [33, "authors"], [34, "authors"], [35, "authors"], [36, "authors"], [37, "authors"], [38, "authors"], [39, "authors"], [40, "authors"], [41, "authors"], [42, "authors"], [43, "authors"], [44, "authors"], [45, "authors"], [46, "authors"], [47, "authors"], [48, "authors"], [49, "authors"], [50, "authors"], [51, "authors"], [52, "authors"], [53, "authors"], [54, "authors"], [55, "authors"], [56, "authors"], [57, "authors"], [58, "authors"], [59, "authors"], [60, "authors"], [61, "authors"], [62, "authors"], [63, "authors"], [64, "authors"], [65, "authors"], [66, "authors"], [67, "authors"], [68, "authors"], [69, "authors"], [70, "authors"], [71, "authors"], [72, "authors"], [73, "authors"], [74, "authors"], [75, "authors"], [76, "authors"], [77, "authors"], [78, "authors"], [79, "authors"], [80, "authors"], [81, "authors"], [82, "authors"], [83, "authors"], [84, "authors"], [85, "authors"], [86, "authors"], [87, "authors"], [88, "authors"], [89, "authors"], [90, "authors"], [91, "authors"], [92, "authors"], [93, "authors"], [94, "authors"], [95, "authors"], [96, "authors"], [97, "authors"], [98, "authors"], [99, "authors"], [100, "authors"], [101, "authors"], [102, "authors"], [103, "authors"], [104, "authors"], [105, "authors"], [106, "authors"], [107, "authors"], [108, "authors"], [109, "authors"], [110, "authors"], [111, "authors"], [112, "authors"], [113, "authors"], [114, "authors"], [115, "authors"], [116, "authors"], [117, "authors"], [118, "authors"], [119, "authors"], [120, "authors"], [121, "authors"], [122, "authors"], [123, "authors"], [124, "authors"], [125, "authors"], [126, "authors"], [127, "authors"], [128, "authors"], [129, "authors"], [130, "authors"], [131, "authors"], [132, "authors"], [133, "authors"], [134, "authors"], [135, "authors"], [136, "authors"], [137, "authors"], [138, "authors"], [139, "authors"], [140, "authors"], [141, "authors"], [142, "authors"], [143, "authors"], [144, "authors"], [145, "authors"], [146, "authors"], [147, "authors"], [148, "authors"], [149, "authors"], [150, "authors"], [151, "authors"], [152, "authors"], [153, "authors"], [154, "authors"], [155, "authors"], [156, "authors"], [157, "authors"], [158, "authors"], [159, "authors"], [160, "authors"], [161, "authors"], [162, "authors"], [163, "authors"], [164, "authors"], [165, "authors"], [166, "authors"], [167, "authors"], [168, "authors"], [169, "authors"], [170, "authors"], [171, "authors"], [172, "authors"], [173, "authors"], [174, "authors"], [175, "authors"], [176, "authors"], [177, "authors"], [178, "authors"], [179, "authors"], [180, "authors"], [181, "authors"], [182, "authors"], [183, "authors"], [184, "authors"], [185, "authors"], [186, "authors"], [187, "authors"], [188, "authors"], [189, "authors"], [190, "authors"], [191, "authors"], [192, "authors"], [193, "authors"], [194, "authors"], [195, "authors"], [196, "authors"], [197, "authors"], [198, "authors"], [199, "authors"], [200, "authors"], [201, "authors"], [202, "authors"], [203, "authors"], [204, "authors"], [205, "authors"], [206, "authors"], [207, "authors"], [208, "authors"], [209, "authors"], [210, "authors"], [211, "authors"], [212, "authors"], [213, "authors"], [214, "authors"], [215, "authors"], [216, "authors"], [217, "authors"], [218, "authors"], [219, "authors"], [220, "authors"], [221, "authors"], [222, "authors"], [223, "authors"], [224, "authors"], [225, "authors"], [226, "authors"], [227, "authors"], [228, "authors"], [229, "authors"], [230, "authors"], [231, "authors"], [232, "authors"], [233, "authors"], [234, "authors"], [235, "authors"], [236, "authors"], [237, "authors"], [238, "authors"], [239, "authors"], [240, "authors"], [241, "authors"], [242, "authors"], [243, "authors"], [244, "authors"], [245, "authors"], [246, "authors"], [247, "authors"], [248, "authors"], [249, "authors"], [250, "authors"], [251, "authors"], [252, "authors"], [253, "authors"], [254, "authors"], [255, "authors"], [256, "authors"], [257, "authors"], [258, "authors"], [259, "authors"], [260, "authors"], [261, "authors"], [262, "authors"], [263, "authors"], [264, "authors"], [265, "authors"], [266, "authors"], [267, "authors"], [268, "authors"], [269, "authors"], [270, "authors"], [271, "authors"], [272, "authors"], [273, "authors"], [274, "authors"], [275, "authors"], [276, "authors"], [277, "authors"], [278, "authors"], [279, "authors"], [280, "authors"], [281, "authors"], [282, "authors"], [283, "authors"], [284, "authors"], [285, "authors"], [286, "authors"], [287, "authors"], [288, "authors"], [289, "authors"], [290, "authors"], [291, "authors"], [292, "authors"], [293, "authors"], [294, "authors"], [295, "authors"], [296, "authors"], [297, "authors"], [298, "authors"], [299, "authors"], [300, "authors"], [301, "authors"], [302, "authors"], [303, "authors"], [304, "authors"], [305, "authors"], [306, "authors"], [307, "authors"], [308, "authors"], [309, "authors"], [310, "authors"], [311, "authors"], [312, "authors"], [313, "authors"], [314, "authors"], [315, "authors"], [316, "authors"], [317, "authors"], [318, "authors"], [319, "authors"], [320, "authors"], [321, "authors"], [322, "authors"], [323, "authors"], [324, "authors"], [325, "authors"], [326, "authors"], [327, "authors"], [328, "authors"], [329, "authors"], [330, "authors"], [331, "authors"], [332, "authors"], [333, "authors"], [334, "authors"], [335, "authors"], [336, "authors"], [337, "authors"], [338, "authors"], [339, "authors"], [340, "authors"], [341, "authors"], [342, "authors"], [343, "authors"], [344, "authors"], [345, "authors"], [346, "authors"], [347, "authors"], [348, "authors"], [349, "authors"], [350, "authors"], [351, "authors"], [352, "authors"], [353, "authors"], [354, "authors"], [355, "authors"], [356, "authors"], [357, "authors"], [358, "authors"], [359, "authors"], [360, "authors"], [361, "authors"], [362, "authors"], [363, "authors"], [364, "authors"], [365, "authors"], [366, "authors"], [367, "authors"], [368, "authors"], [369, "authors"], [370, "authors"], [371, "authors"], [372, "authors"], [373, "authors"], [374, "authors"], [375, "authors"], [376, "authors"], [377, "authors"], [378, "authors"], [379, "authors"], [380, "authors"], [381, "authors"], [382, "authors"], [383, "authors"], [384, "authors"], [385, "authors"], [386, "authors"], [387, "authors"], [388, "authors"], [389, "authors"], [390, "authors"], [392, "authors"], [393, "authors"], [394, "authors"], [395, "authors"], [396, "authors"], [397, "authors"], [398, "authors"], [399, "authors"], [400, "authors"], [401, "authors"], [402, "authors"], [403, "authors"], [404, "authors"], [405, "authors"], [406, "authors"], [407, "authors"], [408, "authors"], [409, "authors"], [410, "authors"], [411, "authors"], [412, "authors"], [413, "authors"], [414, "authors"], [415, "authors"], [416, "authors"], [417, "authors"], [418, "authors"], [419, "authors"], [420, "authors"], [421, "authors"], [422, "authors"], [423, "authors"], [424, "authors"], [425, "authors"], [426, "authors"], [427, "authors"], [428, "authors"], [429, "authors"], [430, "authors"], [431, "authors"], [432, "authors"], [433, "authors"], [434, "authors"], [435, "authors"], [436, "authors"], [437, "authors"], [438, "authors"], [439, "authors"], [440, "authors"], [441, "authors"], [442, "authors"], [443, "authors"], [444, "authors"], [445, "authors"], [446, "authors"], [447, "authors"], [448, "authors"], [449, "authors"], [450, "authors"], [451, "authors"], [452, "authors"], [453, "authors"], [454, "authors"], [455, "authors"], [456, "authors"], [457, "authors"], [458, "authors"], [459, "authors"], [460, "authors"], [461, "authors"], [462, "authors"], [463, "authors"], [464, "authors"], [465, "authors"], [466, "authors"], [467, "authors"], [468, "authors"], [469, "authors"], [470, "authors"], [471, "authors"], [472, "authors"], [473, "authors"], [474, "authors"], [475, "authors"], [476, "authors"], [477, "authors"], [478, "authors"], [479, "authors"], [480, "authors"], [481, "authors"], [482, "authors"], [483, "authors"], [484, "authors"], [485, "authors"], [486, "authors"], [487, "authors"], [488, "authors"], [489, "authors"], [490, "authors"], [491, "authors"], [492, "authors"], [493, "authors"], [494, "authors"], [495, "authors"], [496, "authors"], [497, "authors"], [498, "authors"], [499, "authors"], [500, "authors"], [501, "authors"], [502, "authors"], [503, "authors"], [504, "authors"], [505, "authors"], [506, "authors"], [507, "authors"], [508, "authors"], [509, "authors"], [510, "authors"], [511, "authors"], [512, "authors"], [513, "authors"], [514, "authors"], [515, "authors"], [516, "authors"], [517, "authors"], [518, "authors"], [519, "authors"], [520, "authors"], [521, "authors"], [522, "authors"], [523, "authors"], [524, "authors"], [525, "authors"], [526, "authors"], [527, "authors"], [528, "authors"], [529, "authors"], [530, "authors"], [531, "authors"], [532, "authors"], [533, "authors"], [534, "authors"], [535, "authors"], [536, "authors"], [537, "authors"], [538, "authors"], [539, "authors"], [540, "authors"], [541, "authors"], [542, "authors"], [543, "authors"], [544, "authors"], [545, "authors"], [546, "authors"], [547, "authors"], [548, "authors"], [549, "authors"], [550, "authors"], [551, "authors"], [552, "authors"], [553, "authors"], [554, "authors"], [555, "authors"], [556, "authors"], [557, "authors"], [558, "authors"], [559, "authors"], [560, "authors"], [561, "authors"], [562, "authors"], [563, "authors"], [564, "authors"], [565, "authors"], [566, "authors"], [567, "authors"], [568, "authors"], [569, "authors"], [570, "authors"], [571, "authors"], [572, "authors"], [573, "authors"], [574, "authors"], [575, "authors"], [576, "authors"], [577, "authors"], [578, "authors"], [579, "authors"], [580, "authors"], [581, "authors"], [582, "authors"], [583, "authors"], [584, "authors"], [585, "authors"], [586, "authors"], [587, "authors"], [588, "authors"], [589, "authors"], [590, "authors"], [591, "authors"], [592, "authors"], [593, "authors"], [594, "authors"], [595, "authors"], [596, "authors"], [597, "authors"], [598, "authors"], [599, "authors"], [600, "authors"], [601, "authors"], [602, "authors"], [603, "authors"], [604, "authors"], [605, "authors"], [606, "authors"], [607, "authors"], [608, "authors"], [609, "authors"], [610, "authors"], [611, "authors"], [612, "authors"], [613, "authors"], [614, "authors"], [615, "authors"], [616, "authors"], [617, "authors"], [618, "authors"], [619, "authors"], [620, "authors"], [621, "authors"], [622, "authors"], [623, "authors"], [624, "authors"], [625, "authors"], [626, "authors"], [627, "authors"], [628, "authors"], [629, "authors"], [630, "authors"], [631, "authors"], [632, "authors"], [633, "authors"], [634, "authors"], [635, "authors"], [636, "authors"], [637, "authors"], [638, "authors"], [639, "authors"], [640, "authors"], [641, "authors"], [642, "authors"], [643, "authors"], [644, "authors"], [645, "authors"], [646, "authors"], [647, "authors"], [648, "authors"], [649, "authors"], [650, "authors"], [651, "authors"], [652, "authors"], [653, "authors"], [654, "authors"], [655, "authors"], [656, "authors"], [657, "authors"], [658, "authors"], [659, "authors"], [660, "authors"], [661, "authors"], [662, "authors"], [663, "authors"], [664, "authors"], [665, "authors"], [666, "authors"], [667, "authors"], [668, "authors"], [669, "authors"], [670, "authors"], [671, "authors"], [672, "authors"], [673, "authors"], [674, "authors"], [675, "authors"], [676, "authors"], [677, "authors"], [678, "authors"], [679, "authors"], [680, "authors"], [681, "authors"], [682, "authors"], [683, "authors"], [684, "authors"], [685, "authors"], [686, "authors"], [687, "authors"], [688, "authors"], [689, "authors"], [690, "authors"], [691, "authors"], [692, "authors"], [693, "authors"], [694, "authors"], [695, "authors"], [696, "authors"], [697, "authors"], [698, "authors"], [699, "authors"], [700, "authors"], [701, "authors"], [702, "authors"], [703, "authors"], [704, "authors"], [705, "authors"], [706, "authors"], [707, "authors"], [708, "authors"], [709, "authors"], [710, "authors"], [711, "authors"], [712, "authors"], [713, "authors"], [714, "authors"], [715, "authors"], [716, "authors"], [717, "authors"], [718, "authors"], [719, "authors"], [720, "authors"], [721, "authors"], [722, "authors"], [723, "authors"], [724, "authors"], [725, "authors"], [726, "authors"], [727, "authors"], [728, "authors"], [729, "authors"], [730, "authors"], [731, "authors"], [732, "authors"], [733, "authors"], [734, "authors"], [735, "authors"], [736, "authors"], [737, "authors"], [738, "authors"], [739, "authors"], [740, "authors"], [741, "authors"], [742, "authors"], [743, "authors"], [744, "authors"], [745, "authors"], [746, "authors"], [747, "authors"], [748, "authors"], [749, "authors"], [750, "authors"], [751, "authors"], [752, "authors"], [753, "authors"], [754, "authors"], [755, "authors"], [756, "authors"], [757, "authors"], [758, "authors"], [759, "authors"], [760, "authors"], [761, "authors"], [762, "authors"], [763, "authors"], [764, "authors"], [765, "authors"], [766, "authors"], [767, "authors"], [768, "authors"], [769, "authors"], [770, "authors"], [771, "authors"], [772, "authors"], [773, "authors"], [774, "authors"], [775, "authors"], [776, "authors"], [777, "authors"], [778, "authors"], [779, "authors"], [780, "authors"], [781, "authors"], [782, "authors"], [783, "authors"], [784, "authors"], [785, "authors"], [786, "authors"], [787, "authors"], [788, "authors"], [789, "authors"], [790, "authors"], [791, "authors"], [792, "authors"], [793, "authors"], [794, "authors"], [795, "authors"], [796, "authors"], [797, "authors"], [798, "authors"], [799, "authors"], [800, "authors"], [801, "authors"], [802, "authors"], [803, "authors"], [804, "authors"], [805, "authors"], [806, "authors"], [807, "authors"], [808, "authors"], [809, "authors"], [810, "authors"], [811, "authors"], [812, "authors"], [813, "authors"], [814, "authors"], [815, "authors"], [816, "authors"], [817, "authors"], [818, "authors"], [819, "authors"], [820, "authors"], [821, "authors"], [822, "authors"], [823, "authors"], [824, "authors"], [825, "authors"], [826, "authors"], [827, "authors"], [828, "authors"], [829, "authors"], [830, "authors"], [831, "authors"], [832, "authors"], [833, "authors"], [834, "authors"], [835, "authors"], [836, "authors"], [837, "authors"], [838, "authors"], [839, "authors"], [840, "authors"], [841, "authors"], [842, "authors"], [843, "authors"], [844, "authors"], [845, "authors"], [846, "authors"], [847, "authors"], [848, "authors"], [849, "authors"], [850, "authors"], [851, "authors"], [852, "authors"], [853, "authors"], [854, "authors"], [855, "authors"], [856, "authors"], [857, "authors"], [858, "authors"], [859, "authors"], [860, "authors"], [861, "authors"], [862, "authors"], [863, "authors"], [864, "authors"], [865, "authors"], [866, "authors"], [867, "authors"], [868, "authors"], [869, "authors"], [870, "authors"], [871, "authors"], [872, "authors"], [873, "authors"], [874, "authors"], [875, "authors"], [876, "authors"], [877, "authors"], [878, "authors"], [879, "authors"], [880, "authors"], [881, "authors"], [882, "authors"], [883, "authors"], [884, "authors"], [885, "authors"], [886, "authors"], [887, "authors"], [888, "authors"], [889, "authors"], [890, "authors"], [891, "authors"], [892, "authors"], [893, "authors"], [894, "authors"], [895, "authors"]], "Collection links": [[3, "collection-links"], [4, "collection-links"], [5, "collection-links"], [6, "collection-links"], [7, "collection-links"], [8, "collection-links"], [9, "collection-links"], [10, "collection-links"], [11, "collection-links"], [12, "collection-links"], [13, "collection-links"], [14, "collection-links"], [15, "collection-links"], [16, "collection-links"], [17, "collection-links"], [18, "collection-links"], [19, "collection-links"], [20, "collection-links"], [21, "collection-links"], [22, "collection-links"], [23, "collection-links"], [24, "collection-links"], [25, "collection-links"], [26, "collection-links"], [27, "collection-links"], [28, "collection-links"], [29, "collection-links"], [30, "collection-links"], [31, "collection-links"], [32, "collection-links"], [33, "collection-links"], [34, "collection-links"], [35, "collection-links"], [36, "collection-links"], [37, "collection-links"], [38, "collection-links"], [39, "collection-links"], [40, "collection-links"], [41, "collection-links"], [42, "collection-links"], [43, "collection-links"], [44, "collection-links"], [45, "collection-links"], [46, "collection-links"], [47, "collection-links"], [48, "collection-links"], [49, "collection-links"], [50, "collection-links"], [51, "collection-links"], [52, "collection-links"], [53, "collection-links"], [54, "collection-links"], [55, "collection-links"], [56, "collection-links"], [57, "collection-links"], [58, "collection-links"], [59, "collection-links"], [60, "collection-links"], [61, "collection-links"], [62, "collection-links"], [63, "collection-links"], [64, "collection-links"], [65, "collection-links"], [66, "collection-links"], [67, "collection-links"], [68, "collection-links"], [69, "collection-links"], [70, "collection-links"], [71, "collection-links"], [72, "collection-links"], [73, "collection-links"], [74, "collection-links"], [75, "collection-links"], [76, "collection-links"], [77, "collection-links"], [78, "collection-links"], [79, "collection-links"], [80, "collection-links"], [81, "collection-links"], [82, "collection-links"], [83, "collection-links"], [84, "collection-links"], [85, "collection-links"], [86, "collection-links"], [87, "collection-links"], [88, "collection-links"], [89, "collection-links"], [90, "collection-links"], [91, "collection-links"], [92, "collection-links"], [93, "collection-links"], [94, "collection-links"], [95, "collection-links"], [96, "collection-links"], [97, "collection-links"], [98, "collection-links"], [99, "collection-links"], [100, "collection-links"], [101, "collection-links"], [102, "collection-links"], [103, "collection-links"], [104, "collection-links"], [105, "collection-links"], [106, "collection-links"], [107, "collection-links"], [108, "collection-links"], [109, "collection-links"], [110, "collection-links"], [111, "collection-links"], [112, "collection-links"], [113, "collection-links"], [114, "collection-links"], [115, "collection-links"], [116, "collection-links"], [117, "collection-links"], [118, "collection-links"], [119, "collection-links"], [120, "collection-links"], [121, "collection-links"], [122, "collection-links"], [123, "collection-links"], [124, "collection-links"], [125, "collection-links"], [126, "collection-links"], [127, "collection-links"], [128, "collection-links"], [129, "collection-links"], [130, "collection-links"], [131, "collection-links"], [132, "collection-links"], [133, "collection-links"], [134, "collection-links"], [135, "collection-links"], [136, "collection-links"], [137, "collection-links"], [138, "collection-links"], [139, "collection-links"], [140, "collection-links"], [141, "collection-links"], [142, "collection-links"], [143, "collection-links"], [144, "collection-links"], [145, "collection-links"], [146, "collection-links"], [147, "collection-links"], [148, "collection-links"], [149, "collection-links"], [150, "collection-links"], [151, "collection-links"], [152, "collection-links"], [153, "collection-links"], [154, "collection-links"], [155, "collection-links"], [156, "collection-links"], [157, "collection-links"], [158, "collection-links"], [159, "collection-links"], [160, "collection-links"], [161, "collection-links"], [162, "collection-links"], [163, "collection-links"], [164, "collection-links"], [165, "collection-links"], [166, "collection-links"], [167, "collection-links"], [168, "collection-links"], [169, "collection-links"], [170, "collection-links"], [171, "collection-links"], [172, "collection-links"], [173, "collection-links"], [174, "collection-links"], [175, "collection-links"], [176, "collection-links"], [177, "collection-links"], [178, "collection-links"], [179, "collection-links"], [180, "collection-links"], [181, "collection-links"], [182, "collection-links"], [183, "collection-links"], [184, "collection-links"], [185, "collection-links"], [186, "collection-links"], [187, "collection-links"], [188, "collection-links"], [189, "collection-links"], [190, "collection-links"], [191, "collection-links"], [192, "collection-links"], [193, "collection-links"], [194, "collection-links"], [195, "collection-links"], [196, "collection-links"], [197, "collection-links"], [198, "collection-links"], [199, "collection-links"], [200, "collection-links"], [201, "collection-links"], [202, "collection-links"], [203, "collection-links"], [204, "collection-links"], [205, "collection-links"], [206, "collection-links"], [207, "collection-links"], [208, "collection-links"], [209, "collection-links"], [210, "collection-links"], [211, "collection-links"], [212, "collection-links"], [213, "collection-links"], [214, "collection-links"], [215, "collection-links"], [216, "collection-links"], [217, "collection-links"], [218, "collection-links"], [219, "collection-links"], [220, "collection-links"], [221, "collection-links"], [222, "collection-links"], [223, "collection-links"], [224, "collection-links"], [225, "collection-links"], [226, "collection-links"], [227, "collection-links"], [228, "collection-links"], [229, "collection-links"], [230, "collection-links"], [231, "collection-links"], [232, "collection-links"], [233, "collection-links"], [234, "collection-links"], [235, "collection-links"], [236, "collection-links"], [237, "collection-links"], [238, "collection-links"], [239, "collection-links"], [240, "collection-links"], [241, "collection-links"], [242, "collection-links"], [243, "collection-links"], [244, "collection-links"], [245, "collection-links"], [246, "collection-links"], [247, "collection-links"], [248, "collection-links"], [249, "collection-links"], [250, "collection-links"], [251, "collection-links"], [252, "collection-links"], [253, "collection-links"], [254, "collection-links"], [255, "collection-links"], [256, "collection-links"], [257, "collection-links"], [258, "collection-links"], [259, "collection-links"], [260, "collection-links"], [261, "collection-links"], [262, "collection-links"], [263, "collection-links"], [264, "collection-links"], [265, "collection-links"], [266, "collection-links"], [267, "collection-links"], [268, "collection-links"], [269, "collection-links"], [270, "collection-links"], [271, "collection-links"], [272, "collection-links"], [273, "collection-links"], [274, "collection-links"], [275, "collection-links"], [276, "collection-links"], [277, "collection-links"], [278, "collection-links"], [279, "collection-links"], [280, "collection-links"], [281, "collection-links"], [282, "collection-links"], [283, "collection-links"], [284, "collection-links"], [285, "collection-links"], [286, "collection-links"], [287, "collection-links"], [288, "collection-links"], [289, "collection-links"], [290, "collection-links"], [291, "collection-links"], [292, "collection-links"], [293, "collection-links"], [294, "collection-links"], [295, "collection-links"], [296, "collection-links"], [297, "collection-links"], [298, "collection-links"], [299, "collection-links"], [300, "collection-links"], [301, "collection-links"], [302, "collection-links"], [303, "collection-links"], [304, "collection-links"], [305, "collection-links"], [306, "collection-links"], [307, "collection-links"], [308, "collection-links"], [309, "collection-links"], [310, "collection-links"], [311, "collection-links"], [312, "collection-links"], [313, "collection-links"], [314, "collection-links"], [315, "collection-links"], [316, "collection-links"], [317, "collection-links"], [318, "collection-links"], [319, "collection-links"], [320, "collection-links"], [321, "collection-links"], [322, "collection-links"], [323, "collection-links"], [324, "collection-links"], [325, "collection-links"], [326, "collection-links"], [327, "collection-links"], [328, "collection-links"], [329, "collection-links"], [330, "collection-links"], [331, "collection-links"], [332, "collection-links"], [333, "collection-links"], [334, "collection-links"], [335, "collection-links"], [336, "collection-links"], [337, "collection-links"], [338, "collection-links"], [339, "collection-links"], [340, "collection-links"], [341, "collection-links"], [342, "collection-links"], [343, "collection-links"], [344, "collection-links"], [345, "collection-links"], [346, "collection-links"], [347, "collection-links"], [348, "collection-links"], [349, "collection-links"], [350, "collection-links"], [351, "collection-links"], [352, "collection-links"], [353, "collection-links"], [354, "collection-links"], [355, "collection-links"], [356, "collection-links"], [357, "collection-links"], [358, "collection-links"], [359, "collection-links"], [360, "collection-links"], [361, "collection-links"], [362, "collection-links"], [363, "collection-links"], [364, "collection-links"], [365, "collection-links"], [366, "collection-links"], [367, "collection-links"], [368, "collection-links"], [369, "collection-links"], [370, "collection-links"], [371, "collection-links"], [372, "collection-links"], [373, "collection-links"], [374, "collection-links"], [375, "collection-links"], [376, "collection-links"], [377, "collection-links"], [378, "collection-links"], [379, "collection-links"], [380, "collection-links"], [381, "collection-links"], [382, "collection-links"], [383, "collection-links"], [384, "collection-links"], [385, "collection-links"], [386, "collection-links"], [387, "collection-links"], [388, "collection-links"], [389, "collection-links"], [390, "collection-links"], [392, "collection-links"], [393, "collection-links"], [394, "collection-links"], [395, "collection-links"], [396, "collection-links"], [397, "collection-links"], [398, "collection-links"], [399, "collection-links"], [400, "collection-links"], [401, "collection-links"], [402, "collection-links"], [403, "collection-links"], [404, "collection-links"], [405, "collection-links"], [406, "collection-links"], [407, "collection-links"], [408, "collection-links"], [409, "collection-links"], [410, "collection-links"], [411, "collection-links"], [412, "collection-links"], [413, "collection-links"], [414, "collection-links"], [415, "collection-links"], [416, "collection-links"], [417, "collection-links"], [418, "collection-links"], [419, "collection-links"], [420, "collection-links"], [421, "collection-links"], [422, "collection-links"], [423, "collection-links"], [424, "collection-links"], [425, "collection-links"], [426, "collection-links"], [427, "collection-links"], [428, "collection-links"], [429, "collection-links"], [430, "collection-links"], [431, "collection-links"], [432, "collection-links"], [433, "collection-links"], [434, "collection-links"], [435, "collection-links"], [436, "collection-links"], [437, "collection-links"], [438, "collection-links"], [439, "collection-links"], [440, "collection-links"], [441, "collection-links"], [442, "collection-links"], [443, "collection-links"], [444, "collection-links"], [445, "collection-links"], [446, "collection-links"], [447, "collection-links"], [448, "collection-links"], [449, "collection-links"], [450, "collection-links"], [451, "collection-links"], [452, "collection-links"], [453, "collection-links"], [454, "collection-links"], [455, "collection-links"], [456, "collection-links"], [457, "collection-links"], [458, "collection-links"], [459, "collection-links"], [460, "collection-links"], [461, "collection-links"], [462, "collection-links"], [463, "collection-links"], [464, "collection-links"], [465, "collection-links"], [466, "collection-links"], [467, "collection-links"], [468, "collection-links"], [469, "collection-links"], [470, "collection-links"], [471, "collection-links"], [472, "collection-links"], [473, "collection-links"], [474, "collection-links"], [475, "collection-links"], [476, "collection-links"], [477, "collection-links"], [478, "collection-links"], [479, "collection-links"], [480, "collection-links"], [481, "collection-links"], [482, "collection-links"], [483, "collection-links"], [484, "collection-links"], [485, "collection-links"], [486, "collection-links"], [487, "collection-links"], [488, "collection-links"], [489, "collection-links"], [490, "collection-links"], [491, "collection-links"], [492, "collection-links"], [493, "collection-links"], [494, "collection-links"], [495, "collection-links"], [496, "collection-links"], [497, "collection-links"], [498, "collection-links"], [499, "collection-links"], [500, "collection-links"], [501, "collection-links"], [502, "collection-links"], [503, "collection-links"], [504, "collection-links"], [505, "collection-links"], [506, "collection-links"], [507, "collection-links"], [508, "collection-links"], [509, "collection-links"], [510, "collection-links"], [511, "collection-links"], [512, "collection-links"], [513, "collection-links"], [514, "collection-links"], [515, "collection-links"], [516, "collection-links"], [517, "collection-links"], [518, "collection-links"], [519, "collection-links"], [520, "collection-links"], [521, "collection-links"], [522, "collection-links"], [523, "collection-links"], [524, "collection-links"], [525, "collection-links"], [526, "collection-links"], [527, "collection-links"], [528, "collection-links"], [529, "collection-links"], [530, "collection-links"], [531, "collection-links"], [532, "collection-links"], [533, "collection-links"], [534, "collection-links"], [535, "collection-links"], [536, "collection-links"], [537, "collection-links"], [538, "collection-links"], [539, "collection-links"], [540, "collection-links"], [541, "collection-links"], [542, "collection-links"], [543, "collection-links"], [544, "collection-links"], [545, "collection-links"], [546, "collection-links"], [547, "collection-links"], [548, "collection-links"], [549, "collection-links"], [550, "collection-links"], [551, "collection-links"], [552, "collection-links"], [553, "collection-links"], [554, "collection-links"], [555, "collection-links"], [556, "collection-links"], [557, "collection-links"], [558, "collection-links"], [559, "collection-links"], [560, "collection-links"], [561, "collection-links"], [562, "collection-links"], [563, "collection-links"], [564, "collection-links"], [565, "collection-links"], [566, "collection-links"], [567, "collection-links"], [568, "collection-links"], [569, "collection-links"], [570, "collection-links"], [571, "collection-links"], [572, "collection-links"], [573, "collection-links"], [574, "collection-links"], [575, "collection-links"], [576, "collection-links"], [577, "collection-links"], [578, "collection-links"], [579, "collection-links"], [580, "collection-links"], [581, "collection-links"], [582, "collection-links"], [583, "collection-links"], [584, "collection-links"], [585, "collection-links"], [586, "collection-links"], [587, "collection-links"], [588, "collection-links"], [589, "collection-links"], [590, "collection-links"], [591, "collection-links"], [592, "collection-links"], [593, "collection-links"], [594, "collection-links"], [595, "collection-links"], [596, "collection-links"], [597, "collection-links"], [598, "collection-links"], [599, "collection-links"], [600, "collection-links"], [601, "collection-links"], [602, "collection-links"], [603, "collection-links"], [604, "collection-links"], [605, "collection-links"], [606, "collection-links"], [607, "collection-links"], [608, "collection-links"], [609, "collection-links"], [610, "collection-links"], [611, "collection-links"], [612, "collection-links"], [613, "collection-links"], [614, "collection-links"], [615, "collection-links"], [616, "collection-links"], [617, "collection-links"], [618, "collection-links"], [619, "collection-links"], [620, "collection-links"], [621, "collection-links"], [622, "collection-links"], [623, "collection-links"], [624, "collection-links"], [625, "collection-links"], [626, "collection-links"], [627, "collection-links"], [628, "collection-links"], [629, "collection-links"], [630, "collection-links"], [631, "collection-links"], [632, "collection-links"], [633, "collection-links"], [634, "collection-links"], [635, "collection-links"], [636, "collection-links"], [637, "collection-links"], [638, "collection-links"], [639, "collection-links"], [640, "collection-links"], [641, "collection-links"], [642, "collection-links"], [643, "collection-links"], [644, "collection-links"], [645, "collection-links"], [646, "collection-links"], [647, "collection-links"], [648, "collection-links"], [649, "collection-links"], [650, "collection-links"], [651, "collection-links"], [652, "collection-links"], [653, "collection-links"], [654, "collection-links"], [655, "collection-links"], [656, "collection-links"], [657, "collection-links"], [658, "collection-links"], [659, "collection-links"], [660, "collection-links"], [661, "collection-links"], [662, "collection-links"], [663, "collection-links"], [664, "collection-links"], [665, "collection-links"], [666, "collection-links"], [667, "collection-links"], [668, "collection-links"], [669, "collection-links"], [670, "collection-links"], [671, "collection-links"], [672, "collection-links"], [673, "collection-links"], [674, "collection-links"], [675, "collection-links"], [676, "collection-links"], [677, "collection-links"], [678, "collection-links"], [679, "collection-links"], [680, "collection-links"], [681, "collection-links"], [682, "collection-links"], [683, "collection-links"], [684, "collection-links"], [685, "collection-links"], [686, "collection-links"], [687, "collection-links"], [688, "collection-links"], [689, "collection-links"], [690, "collection-links"], [691, "collection-links"], [692, "collection-links"], [693, "collection-links"], [694, "collection-links"], [695, "collection-links"], [696, "collection-links"], [697, "collection-links"], [698, "collection-links"], [699, "collection-links"], [700, "collection-links"], [701, "collection-links"], [702, "collection-links"], [703, "collection-links"], [704, "collection-links"], [705, "collection-links"], [706, "collection-links"], [707, "collection-links"], [708, "collection-links"], [709, "collection-links"], [710, "collection-links"], [711, "collection-links"], [712, "collection-links"], [713, "collection-links"], [714, "collection-links"], [715, "collection-links"], [716, "collection-links"], [717, "collection-links"], [718, "collection-links"], [719, "collection-links"], [720, "collection-links"], [721, "collection-links"], [722, "collection-links"], [723, "collection-links"], [724, "collection-links"], [725, "collection-links"], [726, "collection-links"], [727, "collection-links"], [728, "collection-links"], [729, "collection-links"], [730, "collection-links"], [731, "collection-links"], [732, "collection-links"], [733, "collection-links"], [734, "collection-links"], [735, "collection-links"], [736, "collection-links"], [737, "collection-links"], [738, "collection-links"], [739, "collection-links"], [740, "collection-links"], [741, "collection-links"], [742, "collection-links"], [743, "collection-links"], [744, "collection-links"], [745, "collection-links"], [746, "collection-links"], [747, "collection-links"], [748, "collection-links"], [749, "collection-links"], [750, "collection-links"], [751, "collection-links"], [752, "collection-links"], [753, "collection-links"], [754, "collection-links"], [755, "collection-links"], [756, "collection-links"], [757, "collection-links"], [758, "collection-links"], [759, "collection-links"], [760, "collection-links"], [761, "collection-links"], [762, "collection-links"], [763, "collection-links"], [764, "collection-links"], [765, "collection-links"], [766, "collection-links"], [767, "collection-links"], [768, "collection-links"], [769, "collection-links"], [770, "collection-links"], [771, "collection-links"], [772, "collection-links"], [773, "collection-links"], [774, "collection-links"], [775, "collection-links"], [776, "collection-links"], [777, "collection-links"], [778, "collection-links"], [779, "collection-links"], [780, "collection-links"], [781, "collection-links"], [782, "collection-links"], [783, "collection-links"], [784, "collection-links"], [785, "collection-links"], [786, "collection-links"], [787, "collection-links"], [788, "collection-links"], [789, "collection-links"], [790, "collection-links"], [791, "collection-links"], [792, "collection-links"], [793, "collection-links"], [794, "collection-links"], [795, "collection-links"], [796, "collection-links"], [797, "collection-links"], [798, "collection-links"], [799, "collection-links"], [800, "collection-links"], [801, "collection-links"], [802, "collection-links"], [803, "collection-links"], [804, "collection-links"], [805, "collection-links"], [806, "collection-links"], [807, "collection-links"], [808, "collection-links"], [809, "collection-links"], [810, "collection-links"], [811, "collection-links"], [812, "collection-links"], [813, "collection-links"], [814, "collection-links"], [815, "collection-links"], [816, "collection-links"], [817, "collection-links"], [818, "collection-links"], [819, "collection-links"], [820, "collection-links"], [821, "collection-links"], [822, "collection-links"], [823, "collection-links"], [824, "collection-links"], [825, "collection-links"], [826, "collection-links"], [827, "collection-links"], [828, "collection-links"], [829, "collection-links"], [830, "collection-links"], [831, "collection-links"], [832, "collection-links"], [833, "collection-links"], [834, "collection-links"], [835, "collection-links"], [836, "collection-links"], [837, "collection-links"], [838, "collection-links"], [839, "collection-links"], [840, "collection-links"], [841, "collection-links"], [842, "collection-links"], [843, "collection-links"], [844, "collection-links"], [845, "collection-links"], [846, "collection-links"], [847, "collection-links"], [848, "collection-links"], [849, "collection-links"], [850, "collection-links"], [851, "collection-links"], [852, "collection-links"], [853, "collection-links"], [854, "collection-links"], [855, "collection-links"], [856, "collection-links"], [857, "collection-links"], [858, "collection-links"], [859, "collection-links"], [860, "collection-links"], [861, "collection-links"], [862, "collection-links"], [863, "collection-links"], [864, "collection-links"], [865, "collection-links"], [866, "collection-links"], [867, "collection-links"], [868, "collection-links"], [869, "collection-links"], [870, "collection-links"], [871, "collection-links"], [872, "collection-links"], [873, "collection-links"], [874, "collection-links"], [875, "collection-links"], [876, "collection-links"], [877, "collection-links"], [878, "collection-links"], [879, "collection-links"], [880, "collection-links"], [881, "collection-links"], [882, "collection-links"], [883, "collection-links"], [884, "collection-links"], [885, "collection-links"], [886, "collection-links"], [887, "collection-links"], [888, "collection-links"], [889, "collection-links"], [890, "collection-links"], [891, "collection-links"], [892, "collection-links"], [893, "collection-links"], [894, "collection-links"], [895, "collection-links"]], "netscaler.adc.aaaglobal_aaapreauthenticationpolicy_binding module \u2013 Binding Resource definition for describing association between aaaglobal and aaapreauthenticationpolicy resources": [[4, "netscaler-adc-aaaglobal-aaapreauthenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaaglobal-and-aaapreauthenticationpolicy-resources"]], "netscaler.adc.aaaglobal_authenticationnegotiateaction_binding module \u2013 Binding Resource definition for describing association between aaaglobal and authenticationnegotiateaction resources": [[5, "netscaler-adc-aaaglobal-authenticationnegotiateaction-binding-module-binding-resource-definition-for-describing-association-between-aaaglobal-and-authenticationnegotiateaction-resources"]], "netscaler.adc.aaagroup_aaauser_binding module \u2013 Binding Resource definition for describing association between aaagroup and aaauser resources": [[6, "netscaler-adc-aaagroup-aaauser-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-aaauser-resources"]], "netscaler.adc.aaagroup_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and auditnslogpolicy resources": [[7, "netscaler-adc-aaagroup-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-auditnslogpolicy-resources"]], "netscaler.adc.aaagroup_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and auditsyslogpolicy resources": [[8, "netscaler-adc-aaagroup-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-auditsyslogpolicy-resources"]], "netscaler.adc.aaagroup_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and authorizationpolicy resources": [[9, "netscaler-adc-aaagroup-authorizationpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-authorizationpolicy-resources"]], "netscaler.adc.aaagroup_intranetip6_binding module \u2013 Binding Resource definition for describing association between aaagroup and intranetip6 resources": [[10, "netscaler-adc-aaagroup-intranetip6-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-intranetip6-resources"]], "netscaler.adc.aaagroup_intranetip_binding module \u2013 Binding Resource definition for describing association between aaagroup and intranetip resources": [[11, "netscaler-adc-aaagroup-intranetip-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-intranetip-resources"]], "netscaler.adc.aaagroup module \u2013 Configuration for AAA group resource.": [[12, "netscaler-adc-aaagroup-module-configuration-for-aaa-group-resource"]], "netscaler.adc.aaagroup_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and tmsessionpolicy resources": [[13, "netscaler-adc-aaagroup-tmsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-tmsessionpolicy-resources"]], "netscaler.adc.aaagroup_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnintranetapplication resources": [[14, "netscaler-adc-aaagroup-vpnintranetapplication-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-vpnintranetapplication-resources"]], "netscaler.adc.aaagroup_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnsessionpolicy resources": [[15, "netscaler-adc-aaagroup-vpnsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-vpnsessionpolicy-resources"]], "netscaler.adc.aaagroup_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpntrafficpolicy resources": [[16, "netscaler-adc-aaagroup-vpntrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-vpntrafficpolicy-resources"]], "netscaler.adc.aaagroup_vpnurl_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnurl resources": [[17, "netscaler-adc-aaagroup-vpnurl-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-vpnurl-resources"]], "netscaler.adc.aaagroup_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnurlpolicy resources": [[18, "netscaler-adc-aaagroup-vpnurlpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-vpnurlpolicy-resources"]], "netscaler.adc.aaakcdaccount module \u2013 Configuration for Kerberos constrained delegation account resource.": [[19, "netscaler-adc-aaakcdaccount-module-configuration-for-kerberos-constrained-delegation-account-resource"]], "netscaler.adc.aaaldapparams module \u2013 Configuration for LDAP parameter resource.": [[20, "netscaler-adc-aaaldapparams-module-configuration-for-ldap-parameter-resource"]], "netscaler.adc.aaaotpparameter module \u2013 Configuration for AAA otpparameter resource.": [[21, "netscaler-adc-aaaotpparameter-module-configuration-for-aaa-otpparameter-resource"]], "netscaler.adc.aaaparameter module \u2013 Configuration for AAA parameter resource.": [[22, "netscaler-adc-aaaparameter-module-configuration-for-aaa-parameter-resource"]], "netscaler.adc.aaapreauthenticationaction module \u2013 Configuration for pre authentication action resource.": [[23, "netscaler-adc-aaapreauthenticationaction-module-configuration-for-pre-authentication-action-resource"]], "netscaler.adc.aaapreauthenticationparameter module \u2013 Configuration for pre authentication parameter resource.": [[24, "netscaler-adc-aaapreauthenticationparameter-module-configuration-for-pre-authentication-parameter-resource"]], "netscaler.adc.aaapreauthenticationpolicy module \u2013 Configuration for pre authentication policy resource.": [[25, "netscaler-adc-aaapreauthenticationpolicy-module-configuration-for-pre-authentication-policy-resource"]], "netscaler.adc.aaaradiusparams module \u2013 Configuration for RADIUS parameter resource.": [[26, "netscaler-adc-aaaradiusparams-module-configuration-for-radius-parameter-resource"]], "netscaler.adc.aaasession module \u2013 Configuration for active connection resource.": [[27, "netscaler-adc-aaasession-module-configuration-for-active-connection-resource"]], "netscaler.adc.aaassoprofile module \u2013 Configuration for aaa sso profile resource.": [[28, "netscaler-adc-aaassoprofile-module-configuration-for-aaa-sso-profile-resource"]], "netscaler.adc.aaatacacsparams module \u2013 Configuration for tacacs parameters resource.": [[29, "netscaler-adc-aaatacacsparams-module-configuration-for-tacacs-parameters-resource"]], "netscaler.adc.aaauser_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and auditnslogpolicy resources": [[30, "netscaler-adc-aaauser-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-auditnslogpolicy-resources"]], "netscaler.adc.aaauser_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and auditsyslogpolicy resources": [[31, "netscaler-adc-aaauser-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-auditsyslogpolicy-resources"]], "netscaler.adc.aaauser_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and authorizationpolicy resources": [[32, "netscaler-adc-aaauser-authorizationpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-authorizationpolicy-resources"]], "netscaler.adc.aaauser_intranetip6_binding module \u2013 Binding Resource definition for describing association between aaauser and intranetip6 resources": [[33, "netscaler-adc-aaauser-intranetip6-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-intranetip6-resources"]], "netscaler.adc.aaauser_intranetip_binding module \u2013 Binding Resource definition for describing association between aaauser and intranetip resources": [[34, "netscaler-adc-aaauser-intranetip-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-intranetip-resources"]], "netscaler.adc.aaauser module \u2013 Configuration for AAA user resource.": [[35, "netscaler-adc-aaauser-module-configuration-for-aaa-user-resource"]], "netscaler.adc.aaauser_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and tmsessionpolicy resources": [[36, "netscaler-adc-aaauser-tmsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-tmsessionpolicy-resources"]], "netscaler.adc.aaauser_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnintranetapplication resources": [[37, "netscaler-adc-aaauser-vpnintranetapplication-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-vpnintranetapplication-resources"]], "netscaler.adc.aaauser_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnsessionpolicy resources": [[38, "netscaler-adc-aaauser-vpnsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-vpnsessionpolicy-resources"]], "netscaler.adc.aaauser_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and vpntrafficpolicy resources": [[39, "netscaler-adc-aaauser-vpntrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-vpntrafficpolicy-resources"]], "netscaler.adc.aaauser_vpnurl_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnurl resources": [[40, "netscaler-adc-aaauser-vpnurl-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-vpnurl-resources"]], "netscaler.adc.aaauser_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnurlpolicy resources": [[41, "netscaler-adc-aaauser-vpnurlpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-vpnurlpolicy-resources"]], "netscaler.adc.admparameter module \u2013 Configuration for ADM parameter resource.": [[42, "netscaler-adc-admparameter-module-configuration-for-adm-parameter-resource"]], "netscaler.adc.analyticsglobal_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between analyticsglobal and analyticsprofile resources": [[43, "netscaler-adc-analyticsglobal-analyticsprofile-binding-module-binding-resource-definition-for-describing-association-between-analyticsglobal-and-analyticsprofile-resources"]], "netscaler.adc.analyticsprofile module \u2013 Configuration for Analytics profile resource.": [[44, "netscaler-adc-analyticsprofile-module-configuration-for-analytics-profile-resource"]], "netscaler.adc.apispec module \u2013 Configuration for API specification resource.": [[45, "netscaler-adc-apispec-module-configuration-for-api-specification-resource"]], "netscaler.adc.apispecfile module \u2013 Configuration for API specificationfile resource.": [[46, "netscaler-adc-apispecfile-module-configuration-for-api-specificationfile-resource"]], "netscaler.adc.appalgparam module \u2013 Configuration for AppAlg Param resource.": [[47, "netscaler-adc-appalgparam-module-configuration-for-appalg-param-resource"]], "netscaler.adc.appflowaction_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between appflowaction and analyticsprofile resources": [[48, "netscaler-adc-appflowaction-analyticsprofile-binding-module-binding-resource-definition-for-describing-association-between-appflowaction-and-analyticsprofile-resources"]], "netscaler.adc.appflowaction module \u2013 Configuration for AppFlow action resource.": [[49, "netscaler-adc-appflowaction-module-configuration-for-appflow-action-resource"]], "netscaler.adc.appflowcollector module \u2013 Configuration for AppFlow collector resource.": [[50, "netscaler-adc-appflowcollector-module-configuration-for-appflow-collector-resource"]], "netscaler.adc.appflowglobal_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between appflowglobal and appflowpolicy resources": [[51, "netscaler-adc-appflowglobal-appflowpolicy-binding-module-binding-resource-definition-for-describing-association-between-appflowglobal-and-appflowpolicy-resources"]], "netscaler.adc.appflowparam module \u2013 Configuration for AppFlow parameter resource.": [[52, "netscaler-adc-appflowparam-module-configuration-for-appflow-parameter-resource"]], "netscaler.adc.appflowpolicy module \u2013 Configuration for AppFlow policy resource.": [[53, "netscaler-adc-appflowpolicy-module-configuration-for-appflow-policy-resource"]], "netscaler.adc.appflowpolicylabel_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between appflowpolicylabel and appflowpolicy resources": [[54, "netscaler-adc-appflowpolicylabel-appflowpolicy-binding-module-binding-resource-definition-for-describing-association-between-appflowpolicylabel-and-appflowpolicy-resources"]], "netscaler.adc.appflowpolicylabel module \u2013 Configuration for AppFlow policy label resource.": [[55, "netscaler-adc-appflowpolicylabel-module-configuration-for-appflow-policy-label-resource"]], "netscaler.adc.appfwarchive module \u2013 Configuration for archive resource.": [[56, "netscaler-adc-appfwarchive-module-configuration-for-archive-resource"]], "netscaler.adc.appfwconfidfield module \u2013 Configuration for configured confidential form fields resource.": [[57, "netscaler-adc-appfwconfidfield-module-configuration-for-configured-confidential-form-fields-resource"]], "netscaler.adc.appfwcustomsettings module \u2013 Configuration for application firewall custom settings XML configuration resource.": [[58, "netscaler-adc-appfwcustomsettings-module-configuration-for-application-firewall-custom-settings-xml-configuration-resource"]], "netscaler.adc.appfwfieldtype module \u2013 Configuration for application firewall form field type resource.": [[59, "netscaler-adc-appfwfieldtype-module-configuration-for-application-firewall-form-field-type-resource"]], "netscaler.adc.appfwglobal_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between appfwglobal and appfwpolicy resources": [[60, "netscaler-adc-appfwglobal-appfwpolicy-binding-module-binding-resource-definition-for-describing-association-between-appfwglobal-and-appfwpolicy-resources"]], "netscaler.adc.appfwglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between appfwglobal and auditnslogpolicy resources": [[61, "netscaler-adc-appfwglobal-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-appfwglobal-and-auditnslogpolicy-resources"]], "netscaler.adc.appfwglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between appfwglobal and auditsyslogpolicy resources": [[62, "netscaler-adc-appfwglobal-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-appfwglobal-and-auditsyslogpolicy-resources"]], "netscaler.adc.appfwgrpccontenttype module \u2013 Configuration for gRRPC content type resource.": [[63, "netscaler-adc-appfwgrpccontenttype-module-configuration-for-grrpc-content-type-resource"]], "netscaler.adc.appfwgrpcwebjsoncontenttype module \u2013 Configuration for gRRPC-Web-json content type resource.": [[64, "netscaler-adc-appfwgrpcwebjsoncontenttype-module-configuration-for-grrpc-web-json-content-type-resource"]], "netscaler.adc.appfwgrpcwebtextcontenttype module \u2013 Configuration for gRRPC-Web-text content type resource.": [[65, "netscaler-adc-appfwgrpcwebtextcontenttype-module-configuration-for-grrpc-web-text-content-type-resource"]], "netscaler.adc.appfwhtmlerrorpage module \u2013 Configuration for HTML error page resource.": [[66, "netscaler-adc-appfwhtmlerrorpage-module-configuration-for-html-error-page-resource"]], "netscaler.adc.appfwjsoncontenttype module \u2013 Configuration for JSON content type resource.": [[67, "netscaler-adc-appfwjsoncontenttype-module-configuration-for-json-content-type-resource"]], "netscaler.adc.appfwjsonerrorpage module \u2013 Configuration for JSON error page resource.": [[68, "netscaler-adc-appfwjsonerrorpage-module-configuration-for-json-error-page-resource"]], "netscaler.adc.appfwlearningdata module \u2013 Configuration for learning data resource.": [[69, "netscaler-adc-appfwlearningdata-module-configuration-for-learning-data-resource"]], "netscaler.adc.appfwlearningsettings module \u2013 Configuration for learning settings resource.": [[70, "netscaler-adc-appfwlearningsettings-module-configuration-for-learning-settings-resource"]], "netscaler.adc.appfwmultipartformcontenttype module \u2013 Configuration for Multipart form content type resource.": [[71, "netscaler-adc-appfwmultipartformcontenttype-module-configuration-for-multipart-form-content-type-resource"]], "netscaler.adc.appfwpolicy module \u2013 Configuration for application firewall policy resource.": [[72, "netscaler-adc-appfwpolicy-module-configuration-for-application-firewall-policy-resource"]], "netscaler.adc.appfwpolicylabel_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between appfwpolicylabel and appfwpolicy resources": [[73, "netscaler-adc-appfwpolicylabel-appfwpolicy-binding-module-binding-resource-definition-for-describing-association-between-appfwpolicylabel-and-appfwpolicy-resources"]], "netscaler.adc.appfwpolicylabel module \u2013 Configuration for application firewall policy label resource.": [[74, "netscaler-adc-appfwpolicylabel-module-configuration-for-application-firewall-policy-label-resource"]], "netscaler.adc.appfwprofile_appfwconfidfield_binding module \u2013 Binding Resource definition for describing association between appfwprofile and appfwconfidfield resources": [[75, "netscaler-adc-appfwprofile-appfwconfidfield-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-appfwconfidfield-resources"]], "netscaler.adc.appfwprofile_blockkeyword_binding module \u2013 Binding Resource definition for describing association between appfwprofile and blockkeyword resources": [[76, "netscaler-adc-appfwprofile-blockkeyword-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-blockkeyword-resources"]], "netscaler.adc.appfwprofile_bypasslist_binding module \u2013 Binding Resource definition for describing association between appfwprofile and bypasslist resources": [[77, "netscaler-adc-appfwprofile-bypasslist-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-bypasslist-resources"]], "netscaler.adc.appfwprofile_cmdinjection_binding module \u2013 Binding Resource definition for describing association between appfwprofile and cmdinjection resources": [[78, "netscaler-adc-appfwprofile-cmdinjection-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-cmdinjection-resources"]], "netscaler.adc.appfwprofile_contenttype_binding module \u2013 Binding Resource definition for describing association between appfwprofile and contenttype resources": [[79, "netscaler-adc-appfwprofile-contenttype-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-contenttype-resources"]], "netscaler.adc.appfwprofile_cookieconsistency_binding module \u2013 Binding Resource definition for describing association between appfwprofile and cookieconsistency resources": [[80, "netscaler-adc-appfwprofile-cookieconsistency-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-cookieconsistency-resources"]], "netscaler.adc.appfwprofile_creditcardnumber_binding module \u2013 Binding Resource definition for describing association between appfwprofile and creditcardnumber resources": [[81, "netscaler-adc-appfwprofile-creditcardnumber-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-creditcardnumber-resources"]], "netscaler.adc.appfwprofile_crosssitescripting_binding module \u2013 Binding Resource definition for describing association between appfwprofile and crosssitescripting resources": [[82, "netscaler-adc-appfwprofile-crosssitescripting-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-crosssitescripting-resources"]], "netscaler.adc.appfwprofile_csrftag_binding module \u2013 Binding Resource definition for describing association between appfwprofile and csrftag resources": [[83, "netscaler-adc-appfwprofile-csrftag-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-csrftag-resources"]], "netscaler.adc.appfwprofile_denylist_binding module \u2013 Binding Resource definition for describing association between appfwprofile and denylist resources": [[84, "netscaler-adc-appfwprofile-denylist-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-denylist-resources"]], "netscaler.adc.appfwprofile_denyurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and denyurl resources": [[85, "netscaler-adc-appfwprofile-denyurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-denyurl-resources"]], "netscaler.adc.appfwprofile_excluderescontenttype_binding module \u2013 Binding Resource definition for describing association between appfwprofile and excluderescontenttype resources": [[86, "netscaler-adc-appfwprofile-excluderescontenttype-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-excluderescontenttype-resources"]], "netscaler.adc.appfwprofile_fakeaccount_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fakeaccount resources": [[87, "netscaler-adc-appfwprofile-fakeaccount-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-fakeaccount-resources"]], "netscaler.adc.appfwprofile_fieldconsistency_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fieldconsistency resources": [[88, "netscaler-adc-appfwprofile-fieldconsistency-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-fieldconsistency-resources"]], "netscaler.adc.appfwprofile_fieldformat_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fieldformat resources": [[89, "netscaler-adc-appfwprofile-fieldformat-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-fieldformat-resources"]], "netscaler.adc.appfwprofile_fileuploadtype_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fileuploadtype resources": [[90, "netscaler-adc-appfwprofile-fileuploadtype-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-fileuploadtype-resources"]], "netscaler.adc.appfwprofile_jsonblockkeyword_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsonblockkeyword resources": [[91, "netscaler-adc-appfwprofile-jsonblockkeyword-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-jsonblockkeyword-resources"]], "netscaler.adc.appfwprofile_jsoncmdurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsoncmdurl resources": [[92, "netscaler-adc-appfwprofile-jsoncmdurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-jsoncmdurl-resources"]], "netscaler.adc.appfwprofile_jsondosurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsondosurl resources": [[93, "netscaler-adc-appfwprofile-jsondosurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-jsondosurl-resources"]], "netscaler.adc.appfwprofile_jsonsqlurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsonsqlurl resources": [[94, "netscaler-adc-appfwprofile-jsonsqlurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-jsonsqlurl-resources"]], "netscaler.adc.appfwprofile_jsonxssurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsonxssurl resources": [[95, "netscaler-adc-appfwprofile-jsonxssurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-jsonxssurl-resources"]], "netscaler.adc.appfwprofile_logexpression_binding module \u2013 Binding Resource definition for describing association between appfwprofile and logexpression resources": [[96, "netscaler-adc-appfwprofile-logexpression-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-logexpression-resources"]], "netscaler.adc.appfwprofile module \u2013 Configuration for application firewall profile resource.": [[97, "netscaler-adc-appfwprofile-module-configuration-for-application-firewall-profile-resource"]], "netscaler.adc.appfwprofile_safeobject_binding module \u2013 Binding Resource definition for describing association between appfwprofile and safeobject resources": [[98, "netscaler-adc-appfwprofile-safeobject-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-safeobject-resources"]], "netscaler.adc.appfwprofile_sqlinjection_binding module \u2013 Binding Resource definition for describing association between appfwprofile and sqlinjection resources": [[99, "netscaler-adc-appfwprofile-sqlinjection-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-sqlinjection-resources"]], "netscaler.adc.appfwprofile_starturl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and starturl resources": [[100, "netscaler-adc-appfwprofile-starturl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-starturl-resources"]], "netscaler.adc.appfwprofile_trustedlearningclients_binding module \u2013 Binding Resource definition for describing association between appfwprofile and trustedlearningclients resources": [[101, "netscaler-adc-appfwprofile-trustedlearningclients-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-trustedlearningclients-resources"]], "netscaler.adc.appfwprofile_xmlattachmenturl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlattachmenturl resources": [[102, "netscaler-adc-appfwprofile-xmlattachmenturl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-xmlattachmenturl-resources"]], "netscaler.adc.appfwprofile_xmldosurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmldosurl resources": [[103, "netscaler-adc-appfwprofile-xmldosurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-xmldosurl-resources"]], "netscaler.adc.appfwprofile_xmlsqlinjection_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlsqlinjection resources": [[104, "netscaler-adc-appfwprofile-xmlsqlinjection-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-xmlsqlinjection-resources"]], "netscaler.adc.appfwprofile_xmlvalidationurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlvalidationurl resources": [[105, "netscaler-adc-appfwprofile-xmlvalidationurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-xmlvalidationurl-resources"]], "netscaler.adc.appfwprofile_xmlwsiurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlwsiurl resources": [[106, "netscaler-adc-appfwprofile-xmlwsiurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-xmlwsiurl-resources"]], "netscaler.adc.appfwprofile_xmlxss_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlxss resources": [[107, "netscaler-adc-appfwprofile-xmlxss-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-xmlxss-resources"]], "netscaler.adc.appfwprotofile module \u2013 Configuration for gRPC protofile resource.": [[108, "netscaler-adc-appfwprotofile-module-configuration-for-grpc-protofile-resource"]], "netscaler.adc.appfwsettings module \u2013 Configuration for AS settings resource.": [[109, "netscaler-adc-appfwsettings-module-configuration-for-as-settings-resource"]], "netscaler.adc.appfwsignatures module \u2013 Configuration for application firewall signatures XML configuration resource.": [[110, "netscaler-adc-appfwsignatures-module-configuration-for-application-firewall-signatures-xml-configuration-resource"]], "netscaler.adc.appfwurlencodedformcontenttype module \u2013 Configuration for Urlencoded form content type resource.": [[111, "netscaler-adc-appfwurlencodedformcontenttype-module-configuration-for-urlencoded-form-content-type-resource"]], "netscaler.adc.appfwwsdl module \u2013 Configuration for WSDL file resource.": [[112, "netscaler-adc-appfwwsdl-module-configuration-for-wsdl-file-resource"]], "netscaler.adc.appfwxmlcontenttype module \u2013 Configuration for XML Content type resource.": [[113, "netscaler-adc-appfwxmlcontenttype-module-configuration-for-xml-content-type-resource"]], "netscaler.adc.appfwxmlerrorpage module \u2013 Configuration for xml error page resource.": [[114, "netscaler-adc-appfwxmlerrorpage-module-configuration-for-xml-error-page-resource"]], "netscaler.adc.appfwxmlschema module \u2013 Configuration for XML schema resource.": [[115, "netscaler-adc-appfwxmlschema-module-configuration-for-xml-schema-resource"]], "netscaler.adc.application module \u2013 Configuration for application resource.": [[116, "netscaler-adc-application-module-configuration-for-application-resource"]], "netscaler.adc.appqoeaction module \u2013 Configuration for AppQoS action resource.": [[117, "netscaler-adc-appqoeaction-module-configuration-for-appqos-action-resource"]], "netscaler.adc.appqoecustomresp module \u2013 Configuration for AppQoE custom response page resource.": [[118, "netscaler-adc-appqoecustomresp-module-configuration-for-appqoe-custom-response-page-resource"]], "netscaler.adc.appqoeparameter module \u2013 Configuration for QOS parameter resource.": [[119, "netscaler-adc-appqoeparameter-module-configuration-for-qos-parameter-resource"]], "netscaler.adc.appqoepolicy module \u2013 Configuration for AppQoS policy resource.": [[120, "netscaler-adc-appqoepolicy-module-configuration-for-appqos-policy-resource"]], "netscaler.adc.arp module \u2013 Configuration for arp resource.": [[121, "netscaler-adc-arp-module-configuration-for-arp-resource"]], "netscaler.adc.arpparam module \u2013 Configuration for Global arp parameters resource.": [[122, "netscaler-adc-arpparam-module-configuration-for-global-arp-parameters-resource"]], "netscaler.adc.auditmessageaction module \u2013 Configuration for message action resource.": [[123, "netscaler-adc-auditmessageaction-module-configuration-for-message-action-resource"]], "netscaler.adc.auditnslogaction module \u2013 Configuration for ns log action resource.": [[124, "netscaler-adc-auditnslogaction-module-configuration-for-ns-log-action-resource"]], "netscaler.adc.auditnslogglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between auditnslogglobal and auditnslogpolicy resources": [[125, "netscaler-adc-auditnslogglobal-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-auditnslogglobal-and-auditnslogpolicy-resources"]], "netscaler.adc.auditnslogparams module \u2013 Configuration for ns log parameters resource.": [[126, "netscaler-adc-auditnslogparams-module-configuration-for-ns-log-parameters-resource"]], "netscaler.adc.auditnslogpolicy module \u2013 Configuration for ns log policy resource.": [[127, "netscaler-adc-auditnslogpolicy-module-configuration-for-ns-log-policy-resource"]], "netscaler.adc.auditsyslogaction module \u2013 Configuration for system log action resource.": [[128, "netscaler-adc-auditsyslogaction-module-configuration-for-system-log-action-resource"]], "netscaler.adc.auditsyslogglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between auditsyslogglobal and auditsyslogpolicy resources": [[129, "netscaler-adc-auditsyslogglobal-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-auditsyslogglobal-and-auditsyslogpolicy-resources"]], "netscaler.adc.auditsyslogparams module \u2013 Configuration for system log parameters resource.": [[130, "netscaler-adc-auditsyslogparams-module-configuration-for-system-log-parameters-resource"]], "netscaler.adc.auditsyslogpolicy module \u2013 Configuration for system log policy resource.": [[131, "netscaler-adc-auditsyslogpolicy-module-configuration-for-system-log-policy-resource"]], "netscaler.adc.authenticationadfsproxyprofile module \u2013 Configuration for ADFSProxy Profile resource.": [[132, "netscaler-adc-authenticationadfsproxyprofile-module-configuration-for-adfsproxy-profile-resource"]], "netscaler.adc.authenticationauthnprofile module \u2013 Configuration for Authentication profile resource.": [[133, "netscaler-adc-authenticationauthnprofile-module-configuration-for-authentication-profile-resource"]], "netscaler.adc.authenticationazurekeyvault module \u2013 Configuration for Azure Key Vault entity resource.": [[134, "netscaler-adc-authenticationazurekeyvault-module-configuration-for-azure-key-vault-entity-resource"]], "netscaler.adc.authenticationcaptchaaction module \u2013 Configuration for Captcha Action resource.": [[135, "netscaler-adc-authenticationcaptchaaction-module-configuration-for-captcha-action-resource"]], "netscaler.adc.authenticationcertaction module \u2013 Configuration for CERT action resource.": [[136, "netscaler-adc-authenticationcertaction-module-configuration-for-cert-action-resource"]], "netscaler.adc.authenticationcertpolicy module \u2013 Configuration for CERT policy resource.": [[137, "netscaler-adc-authenticationcertpolicy-module-configuration-for-cert-policy-resource"]], "netscaler.adc.authenticationcitrixauthaction module \u2013 Configuration for Citrix Authentication action resource.": [[138, "netscaler-adc-authenticationcitrixauthaction-module-configuration-for-citrix-authentication-action-resource"]], "netscaler.adc.authenticationdfaaction module \u2013 Configuration for Dfa authentication action resource.": [[139, "netscaler-adc-authenticationdfaaction-module-configuration-for-dfa-authentication-action-resource"]], "netscaler.adc.authenticationdfapolicy module \u2013 Configuration for Dfa authentication policy resource.": [[140, "netscaler-adc-authenticationdfapolicy-module-configuration-for-dfa-authentication-policy-resource"]], "netscaler.adc.authenticationemailaction module \u2013 Configuration for Email entity resource.": [[141, "netscaler-adc-authenticationemailaction-module-configuration-for-email-entity-resource"]], "netscaler.adc.authenticationepaaction module \u2013 Configuration for epa action resource.": [[142, "netscaler-adc-authenticationepaaction-module-configuration-for-epa-action-resource"]], "netscaler.adc.authenticationldapaction module \u2013 Configuration for LDAP action resource.": [[143, "netscaler-adc-authenticationldapaction-module-configuration-for-ldap-action-resource"]], "netscaler.adc.authenticationldappolicy module \u2013 Configuration for LDAP policy resource.": [[144, "netscaler-adc-authenticationldappolicy-module-configuration-for-ldap-policy-resource"]], "netscaler.adc.authenticationlocalpolicy module \u2013 Configuration for LOCAL policy resource.": [[145, "netscaler-adc-authenticationlocalpolicy-module-configuration-for-local-policy-resource"]], "netscaler.adc.authenticationloginschema module \u2013 Configuration for 0 resource.": [[146, "netscaler-adc-authenticationloginschema-module-configuration-for-0-resource"]], "netscaler.adc.authenticationloginschemapolicy module \u2013 Configuration for 0 resource.": [[147, "netscaler-adc-authenticationloginschemapolicy-module-configuration-for-0-resource"]], "netscaler.adc.authenticationnegotiateaction module \u2013 Configuration for Negotiate action resource.": [[148, "netscaler-adc-authenticationnegotiateaction-module-configuration-for-negotiate-action-resource"]], "netscaler.adc.authenticationnegotiatepolicy module \u2013 Configuration for Negotiate Policy resource.": [[149, "netscaler-adc-authenticationnegotiatepolicy-module-configuration-for-negotiate-policy-resource"]], "netscaler.adc.authenticationnoauthaction module \u2013 Configuration for no authentication action resource.": [[150, "netscaler-adc-authenticationnoauthaction-module-configuration-for-no-authentication-action-resource"]], "netscaler.adc.authenticationoauthaction module \u2013 Configuration for OAuth authentication action resource.": [[151, "netscaler-adc-authenticationoauthaction-module-configuration-for-oauth-authentication-action-resource"]], "netscaler.adc.authenticationoauthidppolicy module \u2013 Configuration for AAA OAuth IdentityProvider (IdP) policy resource.": [[152, "netscaler-adc-authenticationoauthidppolicy-module-configuration-for-aaa-oauth-identityprovider-idp-policy-resource"]], "netscaler.adc.authenticationoauthidpprofile module \u2013 Configuration for OAuth Identity Provider (IdP) profile resource.": [[153, "netscaler-adc-authenticationoauthidpprofile-module-configuration-for-oauth-identity-provider-idp-profile-resource"]], "netscaler.adc.authenticationpolicy module \u2013 Configuration for Authentication Policy resource.": [[154, "netscaler-adc-authenticationpolicy-module-configuration-for-authentication-policy-resource"]], "netscaler.adc.authenticationpolicylabel_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationpolicylabel and authenticationpolicy resources": [[155, "netscaler-adc-authenticationpolicylabel-authenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationpolicylabel-and-authenticationpolicy-resources"]], "netscaler.adc.authenticationpolicylabel module \u2013 Configuration for authentication policy label resource.": [[156, "netscaler-adc-authenticationpolicylabel-module-configuration-for-authentication-policy-label-resource"]], "netscaler.adc.authenticationpushservice module \u2013 Configuration for Service details for sending push notifications resource.": [[157, "netscaler-adc-authenticationpushservice-module-configuration-for-service-details-for-sending-push-notifications-resource"]], "netscaler.adc.authenticationradiusaction module \u2013 Configuration for RADIUS action resource.": [[158, "netscaler-adc-authenticationradiusaction-module-configuration-for-radius-action-resource"]], "netscaler.adc.authenticationradiuspolicy module \u2013 Configuration for RADIUS policy resource.": [[159, "netscaler-adc-authenticationradiuspolicy-module-configuration-for-radius-policy-resource"]], "netscaler.adc.authenticationsamlaction module \u2013 Configuration for AAA Saml action resource.": [[160, "netscaler-adc-authenticationsamlaction-module-configuration-for-aaa-saml-action-resource"]], "netscaler.adc.authenticationsamlidppolicy module \u2013 Configuration for AAA Saml IdentityProvider (IdP) policy resource.": [[161, "netscaler-adc-authenticationsamlidppolicy-module-configuration-for-aaa-saml-identityprovider-idp-policy-resource"]], "netscaler.adc.authenticationsamlidpprofile module \u2013 Configuration for AAA Saml IdentityProvider (IdP) profile resource.": [[162, "netscaler-adc-authenticationsamlidpprofile-module-configuration-for-aaa-saml-identityprovider-idp-profile-resource"]], "netscaler.adc.authenticationsamlpolicy module \u2013 Configuration for AAA Saml policy resource.": [[163, "netscaler-adc-authenticationsamlpolicy-module-configuration-for-aaa-saml-policy-resource"]], "netscaler.adc.authenticationsmartaccesspolicy module \u2013 Configuration for SmartAccess policy resource.": [[164, "netscaler-adc-authenticationsmartaccesspolicy-module-configuration-for-smartaccess-policy-resource"]], "netscaler.adc.authenticationsmartaccessprofile module \u2013 Configuration for SmartAccess profile resource.": [[165, "netscaler-adc-authenticationsmartaccessprofile-module-configuration-for-smartaccess-profile-resource"]], "netscaler.adc.authenticationstorefrontauthaction module \u2013 Configuration for Storefront authentication action resource.": [[166, "netscaler-adc-authenticationstorefrontauthaction-module-configuration-for-storefront-authentication-action-resource"]], "netscaler.adc.authenticationtacacsaction module \u2013 Configuration for TACACS action resource.": [[167, "netscaler-adc-authenticationtacacsaction-module-configuration-for-tacacs-action-resource"]], "netscaler.adc.authenticationtacacspolicy module \u2013 Configuration for TACACS policy resource.": [[168, "netscaler-adc-authenticationtacacspolicy-module-configuration-for-tacacs-policy-resource"]], "netscaler.adc.authenticationvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and auditnslogpolicy resources": [[169, "netscaler-adc-authenticationvserver-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-auditnslogpolicy-resources"]], "netscaler.adc.authenticationvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and auditsyslogpolicy resources": [[170, "netscaler-adc-authenticationvserver-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-auditsyslogpolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationcertpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationcertpolicy resources": [[171, "netscaler-adc-authenticationvserver-authenticationcertpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationcertpolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationldappolicy resources": [[172, "netscaler-adc-authenticationvserver-authenticationldappolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationldappolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationlocalpolicy resources": [[173, "netscaler-adc-authenticationvserver-authenticationlocalpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationlocalpolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationloginschemapolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationloginschemapolicy resources": [[174, "netscaler-adc-authenticationvserver-authenticationloginschemapolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationloginschemapolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationnegotiatepolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationnegotiatepolicy resources": [[175, "netscaler-adc-authenticationvserver-authenticationnegotiatepolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationnegotiatepolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationoauthidppolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationoauthidppolicy resources": [[176, "netscaler-adc-authenticationvserver-authenticationoauthidppolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationoauthidppolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationpolicy resources": [[177, "netscaler-adc-authenticationvserver-authenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationpolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationradiuspolicy resources": [[178, "netscaler-adc-authenticationvserver-authenticationradiuspolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationradiuspolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationsamlidppolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationsamlidppolicy resources": [[179, "netscaler-adc-authenticationvserver-authenticationsamlidppolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationsamlidppolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationsamlpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationsamlpolicy resources": [[180, "netscaler-adc-authenticationvserver-authenticationsamlpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationsamlpolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationsmartaccesspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationsmartaccesspolicy resources": [[181, "netscaler-adc-authenticationvserver-authenticationsmartaccesspolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationsmartaccesspolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationtacacspolicy resources": [[182, "netscaler-adc-authenticationvserver-authenticationtacacspolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationtacacspolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationwebauthpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationwebauthpolicy resources": [[183, "netscaler-adc-authenticationvserver-authenticationwebauthpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationwebauthpolicy-resources"]], "netscaler.adc.authenticationvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and cachepolicy resources": [[184, "netscaler-adc-authenticationvserver-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-cachepolicy-resources"]], "netscaler.adc.authenticationvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and cspolicy resources": [[185, "netscaler-adc-authenticationvserver-cspolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-cspolicy-resources"]], "netscaler.adc.authenticationvserver module \u2013 Configuration for authentication virtual server resource.": [[186, "netscaler-adc-authenticationvserver-module-configuration-for-authentication-virtual-server-resource"]], "netscaler.adc.authenticationvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and responderpolicy resources": [[187, "netscaler-adc-authenticationvserver-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-responderpolicy-resources"]], "netscaler.adc.authenticationvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and rewritepolicy resources": [[188, "netscaler-adc-authenticationvserver-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-rewritepolicy-resources"]], "netscaler.adc.authenticationvserver_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and tmsessionpolicy resources": [[189, "netscaler-adc-authenticationvserver-tmsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-tmsessionpolicy-resources"]], "netscaler.adc.authenticationvserver_vpnportaltheme_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and vpnportaltheme resources": [[190, "netscaler-adc-authenticationvserver-vpnportaltheme-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-vpnportaltheme-resources"]], "netscaler.adc.authenticationwebauthaction module \u2013 Configuration for Web authentication action resource.": [[191, "netscaler-adc-authenticationwebauthaction-module-configuration-for-web-authentication-action-resource"]], "netscaler.adc.authenticationwebauthpolicy module \u2013 Configuration for Web authentication policy resource.": [[192, "netscaler-adc-authenticationwebauthpolicy-module-configuration-for-web-authentication-policy-resource"]], "netscaler.adc.authorizationpolicy module \u2013 Configuration for authorization policy resource.": [[193, "netscaler-adc-authorizationpolicy-module-configuration-for-authorization-policy-resource"]], "netscaler.adc.authorizationpolicylabel_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between authorizationpolicylabel and authorizationpolicy resources": [[194, "netscaler-adc-authorizationpolicylabel-authorizationpolicy-binding-module-binding-resource-definition-for-describing-association-between-authorizationpolicylabel-and-authorizationpolicy-resources"]], "netscaler.adc.authorizationpolicylabel module \u2013 Configuration for authorization policy label resource.": [[195, "netscaler-adc-authorizationpolicylabel-module-configuration-for-authorization-policy-label-resource"]], "netscaler.adc.autoscaleaction module \u2013 Configuration for autoscale action resource.": [[196, "netscaler-adc-autoscaleaction-module-configuration-for-autoscale-action-resource"]], "netscaler.adc.autoscalepolicy module \u2013 Configuration for Autoscale policy resource.": [[197, "netscaler-adc-autoscalepolicy-module-configuration-for-autoscale-policy-resource"]], "netscaler.adc.autoscaleprofile module \u2013 Configuration for autoscale profile resource.": [[198, "netscaler-adc-autoscaleprofile-module-configuration-for-autoscale-profile-resource"]], "netscaler.adc.azureapplication module \u2013 Configuration for Azure Application resource.": [[199, "netscaler-adc-azureapplication-module-configuration-for-azure-application-resource"]], "netscaler.adc.azurekeyvault module \u2013 Configuration for Azure Key Vault entity resource.": [[200, "netscaler-adc-azurekeyvault-module-configuration-for-azure-key-vault-entity-resource"]], "netscaler.adc.botglobal_botpolicy_binding module \u2013 Binding Resource definition for describing association between botglobal and botpolicy resources": [[201, "netscaler-adc-botglobal-botpolicy-binding-module-binding-resource-definition-for-describing-association-between-botglobal-and-botpolicy-resources"]], "netscaler.adc.botpolicy module \u2013 Configuration for Bot policy resource.": [[202, "netscaler-adc-botpolicy-module-configuration-for-bot-policy-resource"]], "netscaler.adc.botpolicylabel_botpolicy_binding module \u2013 Binding Resource definition for describing association between botpolicylabel and botpolicy resources": [[203, "netscaler-adc-botpolicylabel-botpolicy-binding-module-binding-resource-definition-for-describing-association-between-botpolicylabel-and-botpolicy-resources"]], "netscaler.adc.botpolicylabel module \u2013 Configuration for Bot policy label resource.": [[204, "netscaler-adc-botpolicylabel-module-configuration-for-bot-policy-label-resource"]], "netscaler.adc.botprofile_blacklist_binding module \u2013 Binding Resource definition for describing association between botprofile and blacklist resources": [[205, "netscaler-adc-botprofile-blacklist-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-blacklist-resources"]], "netscaler.adc.botprofile_captcha_binding module \u2013 Binding Resource definition for describing association between botprofile and captcha resources": [[206, "netscaler-adc-botprofile-captcha-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-captcha-resources"]], "netscaler.adc.botprofile_ipreputation_binding module \u2013 Binding Resource definition for describing association between botprofile and ipreputation resources": [[207, "netscaler-adc-botprofile-ipreputation-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-ipreputation-resources"]], "netscaler.adc.botprofile_kmdetectionexpr_binding module \u2013 Binding Resource definition for describing association between botprofile and kmdetectionexpr resources": [[208, "netscaler-adc-botprofile-kmdetectionexpr-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-kmdetectionexpr-resources"]], "netscaler.adc.botprofile_logexpression_binding module \u2013 Binding Resource definition for describing association between botprofile and logexpression resources": [[209, "netscaler-adc-botprofile-logexpression-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-logexpression-resources"]], "netscaler.adc.botprofile module \u2013 Configuration for Bot profile resource.": [[210, "netscaler-adc-botprofile-module-configuration-for-bot-profile-resource"]], "netscaler.adc.botprofile_ratelimit_binding module \u2013 Binding Resource definition for describing association between botprofile and ratelimit resources": [[211, "netscaler-adc-botprofile-ratelimit-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-ratelimit-resources"]], "netscaler.adc.botprofile_tps_binding module \u2013 Binding Resource definition for describing association between botprofile and tps resources": [[212, "netscaler-adc-botprofile-tps-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-tps-resources"]], "netscaler.adc.botprofile_trapinsertionurl_binding module \u2013 Binding Resource definition for describing association between botprofile and trapinsertionurl resources": [[213, "netscaler-adc-botprofile-trapinsertionurl-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-trapinsertionurl-resources"]], "netscaler.adc.botprofile_whitelist_binding module \u2013 Binding Resource definition for describing association between botprofile and whitelist resources": [[214, "netscaler-adc-botprofile-whitelist-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-whitelist-resources"]], "netscaler.adc.botsettings module \u2013 Configuration for Bot engine settings resource.": [[215, "netscaler-adc-botsettings-module-configuration-for-bot-engine-settings-resource"]], "netscaler.adc.botsignature module \u2013 Configuration for bot signatures resource.": [[216, "netscaler-adc-botsignature-module-configuration-for-bot-signatures-resource"]], "netscaler.adc.bridgegroup module \u2013 Configuration for bridge group resource.": [[217, "netscaler-adc-bridgegroup-module-configuration-for-bridge-group-resource"]], "netscaler.adc.bridgegroup_nsip6_binding module \u2013 Binding Resource definition for describing association between bridgegroup and nsip6 resources": [[218, "netscaler-adc-bridgegroup-nsip6-binding-module-binding-resource-definition-for-describing-association-between-bridgegroup-and-nsip6-resources"]], "netscaler.adc.bridgegroup_nsip_binding module \u2013 Binding Resource definition for describing association between bridgegroup and nsip resources": [[219, "netscaler-adc-bridgegroup-nsip-binding-module-binding-resource-definition-for-describing-association-between-bridgegroup-and-nsip-resources"]], "netscaler.adc.bridgegroup_vlan_binding module \u2013 Binding Resource definition for describing association between bridgegroup and vlan resources": [[220, "netscaler-adc-bridgegroup-vlan-binding-module-binding-resource-definition-for-describing-association-between-bridgegroup-and-vlan-resources"]], "netscaler.adc.bridgetable module \u2013 Configuration for bridge table entry resource.": [[221, "netscaler-adc-bridgetable-module-configuration-for-bridge-table-entry-resource"]], "netscaler.adc.cachecontentgroup module \u2013 Configuration for Integrated Cache content group resource.": [[222, "netscaler-adc-cachecontentgroup-module-configuration-for-integrated-cache-content-group-resource"]], "netscaler.adc.cacheforwardproxy module \u2013 Configuration for forward proxy resource.": [[223, "netscaler-adc-cacheforwardproxy-module-configuration-for-forward-proxy-resource"]], "netscaler.adc.cacheglobal_cachepolicy_binding module \u2013 Binding Resource definition for describing association between cacheglobal and cachepolicy resources": [[224, "netscaler-adc-cacheglobal-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-cacheglobal-and-cachepolicy-resources"]], "netscaler.adc.cacheobject module \u2013 Configuration for cache object resource.": [[225, "netscaler-adc-cacheobject-module-configuration-for-cache-object-resource"]], "netscaler.adc.cacheparameter module \u2013 Configuration for cache parameter resource.": [[226, "netscaler-adc-cacheparameter-module-configuration-for-cache-parameter-resource"]], "netscaler.adc.cachepolicy module \u2013 Configuration for Integrated Cache policy resource.": [[227, "netscaler-adc-cachepolicy-module-configuration-for-integrated-cache-policy-resource"]], "netscaler.adc.cachepolicylabel_cachepolicy_binding module \u2013 Binding Resource definition for describing association between cachepolicylabel and cachepolicy resources": [[228, "netscaler-adc-cachepolicylabel-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-cachepolicylabel-and-cachepolicy-resources"]], "netscaler.adc.cachepolicylabel module \u2013 Configuration for cache policy label resource.": [[229, "netscaler-adc-cachepolicylabel-module-configuration-for-cache-policy-label-resource"]], "netscaler.adc.cacheselector module \u2013 Configuration for cache selector resource.": [[230, "netscaler-adc-cacheselector-module-configuration-for-cache-selector-resource"]], "netscaler.adc.callhome module \u2013 Configuration for callhome resource.": [[231, "netscaler-adc-callhome-module-configuration-for-callhome-resource"]], "netscaler.adc.change_password module \u2013 Change password of a user on a NetScaler ADC node.": [[232, "netscaler-adc-change-password-module-change-password-of-a-user-on-a-netscaler-adc-node"]], "netscaler.adc.channel_interface_binding module \u2013 Binding Resource definition for describing association between channel and interface resources": [[233, "netscaler-adc-channel-interface-binding-module-binding-resource-definition-for-describing-association-between-channel-and-interface-resources"]], "netscaler.adc.channel module \u2013 Configuration for channel resource.": [[234, "netscaler-adc-channel-module-configuration-for-channel-resource"]], "netscaler.adc.cloudallowedngsticketprofile module \u2013 Configuration for Allowed ticket profile for NGS resource.": [[235, "netscaler-adc-cloudallowedngsticketprofile-module-configuration-for-allowed-ticket-profile-for-ngs-resource"]], "netscaler.adc.cloudawsparam module \u2013 Configuration for cloud awsParam resource.": [[236, "netscaler-adc-cloudawsparam-module-configuration-for-cloud-awsparam-resource"]], "netscaler.adc.cloudcredential module \u2013 Configuration for cloud credentials resource.": [[237, "netscaler-adc-cloudcredential-module-configuration-for-cloud-credentials-resource"]], "netscaler.adc.cloudngsparameter module \u2013 Configuration for cloud ngsparameter resource.": [[238, "netscaler-adc-cloudngsparameter-module-configuration-for-cloud-ngsparameter-resource"]], "netscaler.adc.cloudparameter module \u2013 Configuration for cloud parameter resource.": [[239, "netscaler-adc-cloudparameter-module-configuration-for-cloud-parameter-resource"]], "netscaler.adc.cloudparaminternal module \u2013 Configuration for cloud paramInternal resource.": [[240, "netscaler-adc-cloudparaminternal-module-configuration-for-cloud-paraminternal-resource"]], "netscaler.adc.cloudprofile module \u2013 Configuration for cloud profile resource.": [[241, "netscaler-adc-cloudprofile-module-configuration-for-cloud-profile-resource"]], "netscaler.adc.cloudtunnelparameter module \u2013 Configuration for Cloudtunnel parameter resource.": [[242, "netscaler-adc-cloudtunnelparameter-module-configuration-for-cloudtunnel-parameter-resource"]], "netscaler.adc.cloudtunnelvserver module \u2013 Configuration for Cloud Tunnel virtual server resource.": [[243, "netscaler-adc-cloudtunnelvserver-module-configuration-for-cloud-tunnel-virtual-server-resource"]], "netscaler.adc.cluster module \u2013 Configuration for 0 resource.": [[244, "netscaler-adc-cluster-module-configuration-for-0-resource"]], "netscaler.adc.clusterfiles module \u2013 Configuration for files resource.": [[245, "netscaler-adc-clusterfiles-module-configuration-for-files-resource"]], "netscaler.adc.clusterinstance module \u2013 Configuration for cluster instance resource.": [[246, "netscaler-adc-clusterinstance-module-configuration-for-cluster-instance-resource"]], "netscaler.adc.clusternode module \u2013 Configuration for cluster node resource.": [[247, "netscaler-adc-clusternode-module-configuration-for-cluster-node-resource"]], "netscaler.adc.clusternode_routemonitor_binding module \u2013 Binding Resource definition for describing association between clusternode and routemonitor resources": [[248, "netscaler-adc-clusternode-routemonitor-binding-module-binding-resource-definition-for-describing-association-between-clusternode-and-routemonitor-resources"]], "netscaler.adc.clusternodegroup_authenticationvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and authenticationvserver resources": [[249, "netscaler-adc-clusternodegroup-authenticationvserver-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-authenticationvserver-resources"]], "netscaler.adc.clusternodegroup_clusternode_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and clusternode resources": [[250, "netscaler-adc-clusternodegroup-clusternode-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-clusternode-resources"]], "netscaler.adc.clusternodegroup_crvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and crvserver resources": [[251, "netscaler-adc-clusternodegroup-crvserver-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-crvserver-resources"]], "netscaler.adc.clusternodegroup_csvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and csvserver resources": [[252, "netscaler-adc-clusternodegroup-csvserver-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-csvserver-resources"]], "netscaler.adc.clusternodegroup_gslbsite_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and gslbsite resources": [[253, "netscaler-adc-clusternodegroup-gslbsite-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-gslbsite-resources"]], "netscaler.adc.clusternodegroup_gslbvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and gslbvserver resources": [[254, "netscaler-adc-clusternodegroup-gslbvserver-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-gslbvserver-resources"]], "netscaler.adc.clusternodegroup_lbvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and lbvserver resources": [[255, "netscaler-adc-clusternodegroup-lbvserver-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-lbvserver-resources"]], "netscaler.adc.clusternodegroup module \u2013 Configuration for Node group object type resource.": [[256, "netscaler-adc-clusternodegroup-module-configuration-for-node-group-object-type-resource"]], "netscaler.adc.clusternodegroup_nslimitidentifier_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and nslimitidentifier resources": [[257, "netscaler-adc-clusternodegroup-nslimitidentifier-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-nslimitidentifier-resources"]], "netscaler.adc.clusternodegroup_service_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and service resources": [[258, "netscaler-adc-clusternodegroup-service-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-service-resources"]], "netscaler.adc.clusternodegroup_streamidentifier_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and streamidentifier resources": [[259, "netscaler-adc-clusternodegroup-streamidentifier-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-streamidentifier-resources"]], "netscaler.adc.clusternodegroup_vpnvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and vpnvserver resources": [[260, "netscaler-adc-clusternodegroup-vpnvserver-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-vpnvserver-resources"]], "netscaler.adc.clusterpropstatus module \u2013 Configuration for 0 resource.": [[261, "netscaler-adc-clusterpropstatus-module-configuration-for-0-resource"]], "netscaler.adc.cmpaction module \u2013 Configuration for compression action resource.": [[262, "netscaler-adc-cmpaction-module-configuration-for-compression-action-resource"]], "netscaler.adc.cmpglobal_cmppolicy_binding module \u2013 Binding Resource definition for describing association between cmpglobal and cmppolicy resources": [[263, "netscaler-adc-cmpglobal-cmppolicy-binding-module-binding-resource-definition-for-describing-association-between-cmpglobal-and-cmppolicy-resources"]], "netscaler.adc.cmpparameter module \u2013 Configuration for CMP parameter resource.": [[264, "netscaler-adc-cmpparameter-module-configuration-for-cmp-parameter-resource"]], "netscaler.adc.cmppolicy module \u2013 Configuration for compression policy resource.": [[265, "netscaler-adc-cmppolicy-module-configuration-for-compression-policy-resource"]], "netscaler.adc.cmppolicylabel_cmppolicy_binding module \u2013 Binding Resource definition for describing association between cmppolicylabel and cmppolicy resources": [[266, "netscaler-adc-cmppolicylabel-cmppolicy-binding-module-binding-resource-definition-for-describing-association-between-cmppolicylabel-and-cmppolicy-resources"]], "netscaler.adc.cmppolicylabel module \u2013 Configuration for compression policy label resource.": [[267, "netscaler-adc-cmppolicylabel-module-configuration-for-compression-policy-label-resource"]], "netscaler.adc.contentinspectionaction module \u2013 Configuration for Content Inspection action resource.": [[268, "netscaler-adc-contentinspectionaction-module-configuration-for-content-inspection-action-resource"]], "netscaler.adc.contentinspectioncallout module \u2013 Configuration for Content Inspection callout resource.": [[269, "netscaler-adc-contentinspectioncallout-module-configuration-for-content-inspection-callout-resource"]], "netscaler.adc.contentinspectionglobal_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between contentinspectionglobal and contentinspectionpolicy resources": [[270, "netscaler-adc-contentinspectionglobal-contentinspectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-contentinspectionglobal-and-contentinspectionpolicy-resources"]], "netscaler.adc.contentinspectionparameter module \u2013 Configuration for Contentinspection parameter resource.": [[271, "netscaler-adc-contentinspectionparameter-module-configuration-for-contentinspection-parameter-resource"]], "netscaler.adc.contentinspectionpolicy module \u2013 Configuration for ContentInspection policy resource.": [[272, "netscaler-adc-contentinspectionpolicy-module-configuration-for-contentinspection-policy-resource"]], "netscaler.adc.contentinspectionpolicylabel_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between contentinspectionpolicylabel and contentinspectionpolicy resources": [[273, "netscaler-adc-contentinspectionpolicylabel-contentinspectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-contentinspectionpolicylabel-and-contentinspectionpolicy-resources"]], "netscaler.adc.contentinspectionpolicylabel module \u2013 Configuration for ContentInspection policy label resource.": [[274, "netscaler-adc-contentinspectionpolicylabel-module-configuration-for-contentinspection-policy-label-resource"]], "netscaler.adc.contentinspectionprofile module \u2013 Configuration for ContentInspection profile resource.": [[275, "netscaler-adc-contentinspectionprofile-module-configuration-for-contentinspection-profile-resource"]], "netscaler.adc.crpolicy module \u2013 Configuration for cache redirection policy resource.": [[276, "netscaler-adc-crpolicy-module-configuration-for-cache-redirection-policy-resource"]], "netscaler.adc.crvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between crvserver and analyticsprofile resources": [[277, "netscaler-adc-crvserver-analyticsprofile-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-analyticsprofile-resources"]], "netscaler.adc.crvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and appflowpolicy resources": [[278, "netscaler-adc-crvserver-appflowpolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-appflowpolicy-resources"]], "netscaler.adc.crvserver_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and appfwpolicy resources": [[279, "netscaler-adc-crvserver-appfwpolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-appfwpolicy-resources"]], "netscaler.adc.crvserver_appqoepolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and appqoepolicy resources": [[280, "netscaler-adc-crvserver-appqoepolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-appqoepolicy-resources"]], "netscaler.adc.crvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and cachepolicy resources": [[281, "netscaler-adc-crvserver-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-cachepolicy-resources"]], "netscaler.adc.crvserver_cmppolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and cmppolicy resources": [[282, "netscaler-adc-crvserver-cmppolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-cmppolicy-resources"]], "netscaler.adc.crvserver_crpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and crpolicy resources": [[283, "netscaler-adc-crvserver-crpolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-crpolicy-resources"]], "netscaler.adc.crvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and cspolicy resources": [[284, "netscaler-adc-crvserver-cspolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-cspolicy-resources"]], "netscaler.adc.crvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and feopolicy resources": [[285, "netscaler-adc-crvserver-feopolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-feopolicy-resources"]], "netscaler.adc.crvserver_icapolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and icapolicy resources": [[286, "netscaler-adc-crvserver-icapolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-icapolicy-resources"]], "netscaler.adc.crvserver_lbvserver_binding module \u2013 Binding Resource definition for describing association between crvserver and lbvserver resources": [[287, "netscaler-adc-crvserver-lbvserver-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-lbvserver-resources"]], "netscaler.adc.crvserver module \u2013 Configuration for CR virtual server resource.": [[288, "netscaler-adc-crvserver-module-configuration-for-cr-virtual-server-resource"]], "netscaler.adc.crvserver_policymap_binding module \u2013 Binding Resource definition for describing association between crvserver and policymap resources": [[289, "netscaler-adc-crvserver-policymap-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-policymap-resources"]], "netscaler.adc.crvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and responderpolicy resources": [[290, "netscaler-adc-crvserver-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-responderpolicy-resources"]], "netscaler.adc.crvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and rewritepolicy resources": [[291, "netscaler-adc-crvserver-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-rewritepolicy-resources"]], "netscaler.adc.crvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and spilloverpolicy resources": [[292, "netscaler-adc-crvserver-spilloverpolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-spilloverpolicy-resources"]], "netscaler.adc.csaction module \u2013 Configuration for Content Switching action resource.": [[293, "netscaler-adc-csaction-module-configuration-for-content-switching-action-resource"]], "netscaler.adc.csparameter module \u2013 Configuration for CS parameter resource.": [[294, "netscaler-adc-csparameter-module-configuration-for-cs-parameter-resource"]], "netscaler.adc.cspolicy module \u2013 Configuration for content-switching policy resource.": [[295, "netscaler-adc-cspolicy-module-configuration-for-content-switching-policy-resource"]], "netscaler.adc.cspolicylabel_cspolicy_binding module \u2013 Binding Resource definition for describing association between cspolicylabel and cspolicy resources": [[296, "netscaler-adc-cspolicylabel-cspolicy-binding-module-binding-resource-definition-for-describing-association-between-cspolicylabel-and-cspolicy-resources"]], "netscaler.adc.cspolicylabel module \u2013 Configuration for CS policy label resource.": [[297, "netscaler-adc-cspolicylabel-module-configuration-for-cs-policy-label-resource"]], "netscaler.adc.csvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between csvserver and analyticsprofile resources": [[298, "netscaler-adc-csvserver-analyticsprofile-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-analyticsprofile-resources"]], "netscaler.adc.csvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and appflowpolicy resources": [[299, "netscaler-adc-csvserver-appflowpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-appflowpolicy-resources"]], "netscaler.adc.csvserver_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and appfwpolicy resources": [[300, "netscaler-adc-csvserver-appfwpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-appfwpolicy-resources"]], "netscaler.adc.csvserver_appqoepolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and appqoepolicy resources": [[301, "netscaler-adc-csvserver-appqoepolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-appqoepolicy-resources"]], "netscaler.adc.csvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and auditnslogpolicy resources": [[302, "netscaler-adc-csvserver-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-auditnslogpolicy-resources"]], "netscaler.adc.csvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and auditsyslogpolicy resources": [[303, "netscaler-adc-csvserver-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-auditsyslogpolicy-resources"]], "netscaler.adc.csvserver_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and authorizationpolicy resources": [[304, "netscaler-adc-csvserver-authorizationpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-authorizationpolicy-resources"]], "netscaler.adc.csvserver_botpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and botpolicy resources": [[305, "netscaler-adc-csvserver-botpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-botpolicy-resources"]], "netscaler.adc.csvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and cachepolicy resources": [[306, "netscaler-adc-csvserver-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-cachepolicy-resources"]], "netscaler.adc.csvserver_cmppolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and cmppolicy resources": [[307, "netscaler-adc-csvserver-cmppolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-cmppolicy-resources"]], "netscaler.adc.csvserver_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and contentinspectionpolicy resources": [[308, "netscaler-adc-csvserver-contentinspectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-contentinspectionpolicy-resources"]], "netscaler.adc.csvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and cspolicy resources": [[309, "netscaler-adc-csvserver-cspolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-cspolicy-resources"]], "netscaler.adc.csvserver_domain_binding module \u2013 Binding Resource definition for describing association between csvserver and domain resources": [[310, "netscaler-adc-csvserver-domain-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-domain-resources"]], "netscaler.adc.csvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and feopolicy resources": [[311, "netscaler-adc-csvserver-feopolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-feopolicy-resources"]], "netscaler.adc.csvserver_gslbvserver_binding module \u2013 Binding Resource definition for describing association between csvserver and gslbvserver resources": [[312, "netscaler-adc-csvserver-gslbvserver-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-gslbvserver-resources"]], "netscaler.adc.csvserver_lbvserver_binding module \u2013 Binding Resource definition for describing association between csvserver and lbvserver resources": [[313, "netscaler-adc-csvserver-lbvserver-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-lbvserver-resources"]], "netscaler.adc.csvserver module \u2013 Configuration for CS virtual server resource.": [[314, "netscaler-adc-csvserver-module-configuration-for-cs-virtual-server-resource"]], "netscaler.adc.csvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and responderpolicy resources": [[315, "netscaler-adc-csvserver-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-responderpolicy-resources"]], "netscaler.adc.csvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and rewritepolicy resources": [[316, "netscaler-adc-csvserver-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-rewritepolicy-resources"]], "netscaler.adc.csvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and spilloverpolicy resources": [[317, "netscaler-adc-csvserver-spilloverpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-spilloverpolicy-resources"]], "netscaler.adc.csvserver_tmtrafficpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and tmtrafficpolicy resources": [[318, "netscaler-adc-csvserver-tmtrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-tmtrafficpolicy-resources"]], "netscaler.adc.csvserver_transformpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and transformpolicy resources": [[319, "netscaler-adc-csvserver-transformpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-transformpolicy-resources"]], "netscaler.adc.csvserver_vpnvserver_binding module \u2013 Binding Resource definition for describing association between csvserver and vpnvserver resources": [[320, "netscaler-adc-csvserver-vpnvserver-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-vpnvserver-resources"]], "netscaler.adc.dbdbprofile module \u2013 Configuration for DB profile resource.": [[321, "netscaler-adc-dbdbprofile-module-configuration-for-db-profile-resource"]], "netscaler.adc.dbuser module \u2013 Configuration for DB user resource.": [[322, "netscaler-adc-dbuser-module-configuration-for-db-user-resource"]], "netscaler.adc.dnsaaaarec module \u2013 Configuration for IPv6 address type record resource.": [[323, "netscaler-adc-dnsaaaarec-module-configuration-for-ipv6-address-type-record-resource"]], "netscaler.adc.dnsaction64 module \u2013 Configuration for dns64 action resource.": [[324, "netscaler-adc-dnsaction64-module-configuration-for-dns64-action-resource"]], "netscaler.adc.dnsaction module \u2013 Configuration for DNS action resource.": [[325, "netscaler-adc-dnsaction-module-configuration-for-dns-action-resource"]], "netscaler.adc.dnsaddrec module \u2013 Configuration for address type record resource.": [[326, "netscaler-adc-dnsaddrec-module-configuration-for-address-type-record-resource"]], "netscaler.adc.dnscaarec module \u2013 Configuration for CAA record resource.": [[327, "netscaler-adc-dnscaarec-module-configuration-for-caa-record-resource"]], "netscaler.adc.dnscnamerec module \u2013 Configuration for CNAME record resource.": [[328, "netscaler-adc-dnscnamerec-module-configuration-for-cname-record-resource"]], "netscaler.adc.dnsglobal_dnspolicy_binding module \u2013 Binding Resource definition for describing association between dnsglobal and dnspolicy resources": [[329, "netscaler-adc-dnsglobal-dnspolicy-binding-module-binding-resource-definition-for-describing-association-between-dnsglobal-and-dnspolicy-resources"]], "netscaler.adc.dnskey module \u2013 Configuration for dns key resource.": [[330, "netscaler-adc-dnskey-module-configuration-for-dns-key-resource"]], "netscaler.adc.dnsmxrec module \u2013 Configuration for MX record resource.": [[331, "netscaler-adc-dnsmxrec-module-configuration-for-mx-record-resource"]], "netscaler.adc.dnsnameserver module \u2013 Configuration for name server resource.": [[332, "netscaler-adc-dnsnameserver-module-configuration-for-name-server-resource"]], "netscaler.adc.dnsnaptrrec module \u2013 Configuration for NAPTR record resource.": [[333, "netscaler-adc-dnsnaptrrec-module-configuration-for-naptr-record-resource"]], "netscaler.adc.dnsnsrec module \u2013 Configuration for name server record resource.": [[334, "netscaler-adc-dnsnsrec-module-configuration-for-name-server-record-resource"]], "netscaler.adc.dnsparameter module \u2013 Configuration for DNS parameter resource.": [[335, "netscaler-adc-dnsparameter-module-configuration-for-dns-parameter-resource"]], "netscaler.adc.dnspolicy64 module \u2013 Configuration for dns64 policy resource.": [[336, "netscaler-adc-dnspolicy64-module-configuration-for-dns64-policy-resource"]], "netscaler.adc.dnspolicy module \u2013 Configuration for DNS policy resource.": [[337, "netscaler-adc-dnspolicy-module-configuration-for-dns-policy-resource"]], "netscaler.adc.dnspolicylabel_dnspolicy_binding module \u2013 Binding Resource definition for describing association between dnspolicylabel and dnspolicy resources": [[338, "netscaler-adc-dnspolicylabel-dnspolicy-binding-module-binding-resource-definition-for-describing-association-between-dnspolicylabel-and-dnspolicy-resources"]], "netscaler.adc.dnspolicylabel module \u2013 Configuration for dns policy label resource.": [[339, "netscaler-adc-dnspolicylabel-module-configuration-for-dns-policy-label-resource"]], "netscaler.adc.dnsprofile module \u2013 Configuration for DNS profile resource.": [[340, "netscaler-adc-dnsprofile-module-configuration-for-dns-profile-resource"]], "netscaler.adc.dnsproxyrecords module \u2013 Configuration for proxy record resource.": [[341, "netscaler-adc-dnsproxyrecords-module-configuration-for-proxy-record-resource"]], "netscaler.adc.dnsptrrec module \u2013 Configuration for PTR record resource.": [[342, "netscaler-adc-dnsptrrec-module-configuration-for-ptr-record-resource"]], "netscaler.adc.dnssoarec module \u2013 Configuration for SOA record resource.": [[343, "netscaler-adc-dnssoarec-module-configuration-for-soa-record-resource"]], "netscaler.adc.dnssrvrec module \u2013 Configuration for server record resource.": [[344, "netscaler-adc-dnssrvrec-module-configuration-for-server-record-resource"]], "netscaler.adc.dnssubnetcache module \u2013 Configuration for subnet cache resource.": [[345, "netscaler-adc-dnssubnetcache-module-configuration-for-subnet-cache-resource"]], "netscaler.adc.dnssuffix module \u2013 Configuration for DNS suffix resource.": [[346, "netscaler-adc-dnssuffix-module-configuration-for-dns-suffix-resource"]], "netscaler.adc.dnstxtrec module \u2013 Configuration for TXT record resource.": [[347, "netscaler-adc-dnstxtrec-module-configuration-for-txt-record-resource"]], "netscaler.adc.dnsview module \u2013 Configuration for DNS view resource.": [[348, "netscaler-adc-dnsview-module-configuration-for-dns-view-resource"]], "netscaler.adc.dnszone module \u2013 Configuration for DNS zone resource.": [[349, "netscaler-adc-dnszone-module-configuration-for-dns-zone-resource"]], "netscaler.adc.endpointinfo module \u2013 Configuration for Information resource.": [[350, "netscaler-adc-endpointinfo-module-configuration-for-information-resource"]], "netscaler.adc.extendedmemoryparam module \u2013 Configuration for Parameter for extended memory used by LSN and Subscriber Store resource.": [[351, "netscaler-adc-extendedmemoryparam-module-configuration-for-parameter-for-extended-memory-used-by-lsn-and-subscriber-store-resource"]], "netscaler.adc.feoaction module \u2013 Configuration for Front end optimization action resource.": [[352, "netscaler-adc-feoaction-module-configuration-for-front-end-optimization-action-resource"]], "netscaler.adc.feoglobal_feopolicy_binding module \u2013 Binding Resource definition for describing association between feoglobal and feopolicy resources": [[353, "netscaler-adc-feoglobal-feopolicy-binding-module-binding-resource-definition-for-describing-association-between-feoglobal-and-feopolicy-resources"]], "netscaler.adc.feoparameter module \u2013 Configuration for FEO parameter resource.": [[354, "netscaler-adc-feoparameter-module-configuration-for-feo-parameter-resource"]], "netscaler.adc.feopolicy module \u2013 Configuration for Front end optimization policy resource.": [[355, "netscaler-adc-feopolicy-module-configuration-for-front-end-optimization-policy-resource"]], "netscaler.adc.fis_channel_binding module \u2013 Binding Resource definition for describing association between fis and channel resources": [[356, "netscaler-adc-fis-channel-binding-module-binding-resource-definition-for-describing-association-between-fis-and-channel-resources"]], "netscaler.adc.fis_interface_binding module \u2013 Binding Resource definition for describing association between fis and interface resources": [[357, "netscaler-adc-fis-interface-binding-module-binding-resource-definition-for-describing-association-between-fis-and-interface-resources"]], "netscaler.adc.fis module \u2013 Configuration for \u201cFIS\u201d resource.": [[358, "netscaler-adc-fis-module-configuration-for-fis-resource"]], "netscaler.adc.forwardingsession module \u2013 Configuration for session forward resource.": [[359, "netscaler-adc-forwardingsession-module-configuration-for-session-forward-resource"]], "netscaler.adc.gslbconfig module \u2013 Configuration for gslb config resource.": [[360, "netscaler-adc-gslbconfig-module-configuration-for-gslb-config-resource"]], "netscaler.adc.gslbldnsentries module \u2013 Configuration for LDNS entry resource.": [[361, "netscaler-adc-gslbldnsentries-module-configuration-for-ldns-entry-resource"]], "netscaler.adc.gslbldnsentry module \u2013 Configuration for LDNS entry resource.": [[362, "netscaler-adc-gslbldnsentry-module-configuration-for-ldns-entry-resource"]], "netscaler.adc.gslbparameter module \u2013 Configuration for GSLB parameter resource.": [[363, "netscaler-adc-gslbparameter-module-configuration-for-gslb-parameter-resource"]], "netscaler.adc.gslbservice_dnsview_binding module \u2013 Binding Resource definition for describing association between gslbservice and dnsview resources": [[364, "netscaler-adc-gslbservice-dnsview-binding-module-binding-resource-definition-for-describing-association-between-gslbservice-and-dnsview-resources"]], "netscaler.adc.gslbservice_lbmonitor_binding module \u2013 Binding Resource definition for describing association between gslbservice and lbmonitor resources": [[365, "netscaler-adc-gslbservice-lbmonitor-binding-module-binding-resource-definition-for-describing-association-between-gslbservice-and-lbmonitor-resources"]], "netscaler.adc.gslbservice module \u2013 Configuration for GSLB service resource.": [[366, "netscaler-adc-gslbservice-module-configuration-for-gslb-service-resource"]], "netscaler.adc.gslbservicegroup_gslbservicegroupmember_binding module \u2013 Binding Resource definition for describing association between gslbservicegroup and gslbservicegroupmember resources": [[367, "netscaler-adc-gslbservicegroup-gslbservicegroupmember-binding-module-binding-resource-definition-for-describing-association-between-gslbservicegroup-and-gslbservicegroupmember-resources"]], "netscaler.adc.gslbservicegroup_lbmonitor_binding module \u2013 Binding Resource definition for describing association between gslbservicegroup and lbmonitor resources": [[368, "netscaler-adc-gslbservicegroup-lbmonitor-binding-module-binding-resource-definition-for-describing-association-between-gslbservicegroup-and-lbmonitor-resources"]], "netscaler.adc.gslbservicegroup module \u2013 Configuration for GSLB service group resource.": [[369, "netscaler-adc-gslbservicegroup-module-configuration-for-gslb-service-group-resource"]], "netscaler.adc.gslbsite module \u2013 Configuration for GSLB site resource.": [[370, "netscaler-adc-gslbsite-module-configuration-for-gslb-site-resource"]], "netscaler.adc.gslbvserver_domain_binding module \u2013 Binding Resource definition for describing association between gslbvserver and domain resources": [[371, "netscaler-adc-gslbvserver-domain-binding-module-binding-resource-definition-for-describing-association-between-gslbvserver-and-domain-resources"]], "netscaler.adc.gslbvserver_gslbservice_binding module \u2013 Binding Resource definition for describing association between gslbvserver and gslbservice resources": [[372, "netscaler-adc-gslbvserver-gslbservice-binding-module-binding-resource-definition-for-describing-association-between-gslbvserver-and-gslbservice-resources"]], "netscaler.adc.gslbvserver_gslbservicegroup_binding module \u2013 Binding Resource definition for describing association between gslbvserver and gslbservicegroup resources": [[373, "netscaler-adc-gslbvserver-gslbservicegroup-binding-module-binding-resource-definition-for-describing-association-between-gslbvserver-and-gslbservicegroup-resources"]], "netscaler.adc.gslbvserver_lbpolicy_binding module \u2013 Binding Resource definition for describing association between gslbvserver and lbpolicy resources": [[374, "netscaler-adc-gslbvserver-lbpolicy-binding-module-binding-resource-definition-for-describing-association-between-gslbvserver-and-lbpolicy-resources"]], "netscaler.adc.gslbvserver module \u2013 Configuration for Global Server Load Balancing Virtual Server resource.": [[375, "netscaler-adc-gslbvserver-module-configuration-for-global-server-load-balancing-virtual-server-resource"]], "netscaler.adc.gslbvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between gslbvserver and spilloverpolicy resources": [[376, "netscaler-adc-gslbvserver-spilloverpolicy-binding-module-binding-resource-definition-for-describing-association-between-gslbvserver-and-spilloverpolicy-resources"]], "netscaler.adc.hafailover module \u2013 Configuration for failover resource.": [[377, "netscaler-adc-hafailover-module-configuration-for-failover-resource"]], "netscaler.adc.hafiles module \u2013 Configuration for files resource.": [[378, "netscaler-adc-hafiles-module-configuration-for-files-resource"]], "netscaler.adc.hanode module \u2013 Configuration for node resource.": [[379, "netscaler-adc-hanode-module-configuration-for-node-resource"]], "netscaler.adc.hanode_routemonitor6_binding module \u2013 Binding Resource definition for describing association between hanode and routemonitor6 resources": [[380, "netscaler-adc-hanode-routemonitor6-binding-module-binding-resource-definition-for-describing-association-between-hanode-and-routemonitor6-resources"]], "netscaler.adc.hanode_routemonitor_binding module \u2013 Binding Resource definition for describing association between hanode and routemonitor resources": [[381, "netscaler-adc-hanode-routemonitor-binding-module-binding-resource-definition-for-describing-association-between-hanode-and-routemonitor-resources"]], "netscaler.adc.hasync module \u2013 Configuration for sync resource.": [[382, "netscaler-adc-hasync-module-configuration-for-sync-resource"]], "netscaler.adc.icaaccessprofile module \u2013 Configuration for ica accessprofile resource.": [[383, "netscaler-adc-icaaccessprofile-module-configuration-for-ica-accessprofile-resource"]], "netscaler.adc.icaaction module \u2013 Configuration for ica action resource.": [[384, "netscaler-adc-icaaction-module-configuration-for-ica-action-resource"]], "netscaler.adc.icaglobal_icapolicy_binding module \u2013 Binding Resource definition for describing association between icaglobal and icapolicy resources": [[385, "netscaler-adc-icaglobal-icapolicy-binding-module-binding-resource-definition-for-describing-association-between-icaglobal-and-icapolicy-resources"]], "netscaler.adc.icalatencyprofile module \u2013 Configuration for Profile for Latency monitoring resource.": [[386, "netscaler-adc-icalatencyprofile-module-configuration-for-profile-for-latency-monitoring-resource"]], "netscaler.adc.icaparameter module \u2013 Configuration for Config Parameters for NS ICA resource.": [[387, "netscaler-adc-icaparameter-module-configuration-for-config-parameters-for-ns-ica-resource"]], "netscaler.adc.icapolicy module \u2013 Configuration for ICA policy resource.": [[388, "netscaler-adc-icapolicy-module-configuration-for-ica-policy-resource"]], "netscaler.adc.inat module \u2013 Configuration for inbound nat resource.": [[389, "netscaler-adc-inat-module-configuration-for-inbound-nat-resource"]], "netscaler.adc.inatparam module \u2013 Configuration for INAT parameter resource.": [[390, "netscaler-adc-inatparam-module-configuration-for-inat-parameter-resource"]], "Netscaler.Adc": [[391, "netscaler-adc"]], "Description": [[391, "description"]], "Plugin Index": [[391, "plugin-index"]], "Modules": [[391, "modules"]], "netscaler.adc.install module \u2013 Configuration for 0 resource.": [[392, "netscaler-adc-install-module-configuration-for-0-resource"]], "netscaler.adc.interfacepair module \u2013 Configuration for \u201cInterface Pair\u201d resource.": [[393, "netscaler-adc-interfacepair-module-configuration-for-interface-pair-resource"]], "netscaler.adc.ip6tunnel module \u2013 Configuration for ip6 Tunnel resource.": [[394, "netscaler-adc-ip6tunnel-module-configuration-for-ip6-tunnel-resource"]], "netscaler.adc.ip6tunnelparam module \u2013 Configuration for ip6 tunnel parameter resource.": [[395, "netscaler-adc-ip6tunnelparam-module-configuration-for-ip6-tunnel-parameter-resource"]], "netscaler.adc.ipsecalgprofile module \u2013 Configuration for IPSEC ALG profile resource.": [[396, "netscaler-adc-ipsecalgprofile-module-configuration-for-ipsec-alg-profile-resource"]], "netscaler.adc.ipsecalgsession module \u2013 Configuration for IPSEC ALG session resource.": [[397, "netscaler-adc-ipsecalgsession-module-configuration-for-ipsec-alg-session-resource"]], "netscaler.adc.ipsecparameter module \u2013 Configuration for IPSEC paramter resource.": [[398, "netscaler-adc-ipsecparameter-module-configuration-for-ipsec-paramter-resource"]], "netscaler.adc.ipsecprofile module \u2013 Configuration for IPSEC profile resource.": [[399, "netscaler-adc-ipsecprofile-module-configuration-for-ipsec-profile-resource"]], "netscaler.adc.ipset module \u2013 Configuration for network ipset resource.": [[400, "netscaler-adc-ipset-module-configuration-for-network-ipset-resource"]], "netscaler.adc.ipset_nsip6_binding module \u2013 Binding Resource definition for describing association between ipset and nsip6 resources": [[401, "netscaler-adc-ipset-nsip6-binding-module-binding-resource-definition-for-describing-association-between-ipset-and-nsip6-resources"]], "netscaler.adc.ipset_nsip_binding module \u2013 Binding Resource definition for describing association between ipset and nsip resources": [[402, "netscaler-adc-ipset-nsip-binding-module-binding-resource-definition-for-describing-association-between-ipset-and-nsip-resources"]], "netscaler.adc.iptunnel module \u2013 Configuration for ip Tunnel resource.": [[403, "netscaler-adc-iptunnel-module-configuration-for-ip-tunnel-resource"]], "netscaler.adc.iptunnelparam module \u2013 Configuration for ip tunnel parameter resource.": [[404, "netscaler-adc-iptunnelparam-module-configuration-for-ip-tunnel-parameter-resource"]], "netscaler.adc.ipv6 module \u2013 Configuration for ip v6 resource.": [[405, "netscaler-adc-ipv6-module-configuration-for-ip-v6-resource"]], "netscaler.adc.l2param module \u2013 Configuration for Layer 2 related parameter resource.": [[406, "netscaler-adc-l2param-module-configuration-for-layer-2-related-parameter-resource"]], "netscaler.adc.l3param module \u2013 Configuration for Layer 3 related parameter resource.": [[407, "netscaler-adc-l3param-module-configuration-for-layer-3-related-parameter-resource"]], "netscaler.adc.l4param module \u2013 Configuration for Layer 4 related parameter resource.": [[408, "netscaler-adc-l4param-module-configuration-for-layer-4-related-parameter-resource"]], "netscaler.adc.lacp module \u2013 Configuration for Link aggregation control protocol resource.": [[409, "netscaler-adc-lacp-module-configuration-for-link-aggregation-control-protocol-resource"]], "netscaler.adc.lbaction module \u2013 Configuration for lb action resource.": [[410, "netscaler-adc-lbaction-module-configuration-for-lb-action-resource"]], "netscaler.adc.lbglobal_lbpolicy_binding module \u2013 Binding Resource definition for describing association between lbglobal and lbpolicy resources": [[411, "netscaler-adc-lbglobal-lbpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbglobal-and-lbpolicy-resources"]], "netscaler.adc.lbgroup_lbvserver_binding module \u2013 Binding Resource definition for describing association between lbgroup and lbvserver resources": [[412, "netscaler-adc-lbgroup-lbvserver-binding-module-binding-resource-definition-for-describing-association-between-lbgroup-and-lbvserver-resources"]], "netscaler.adc.lbgroup module \u2013 Configuration for LB group resource.": [[413, "netscaler-adc-lbgroup-module-configuration-for-lb-group-resource"]], "netscaler.adc.lbmetrictable_metric_binding module \u2013 Binding Resource definition for describing association between lbmetrictable and metric resources": [[414, "netscaler-adc-lbmetrictable-metric-binding-module-binding-resource-definition-for-describing-association-between-lbmetrictable-and-metric-resources"]], "netscaler.adc.lbmetrictable module \u2013 Configuration for metric table resource.": [[415, "netscaler-adc-lbmetrictable-module-configuration-for-metric-table-resource"]], "netscaler.adc.lbmonitor_metric_binding module \u2013 Binding Resource definition for describing association between lbmonitor and metric resources": [[416, "netscaler-adc-lbmonitor-metric-binding-module-binding-resource-definition-for-describing-association-between-lbmonitor-and-metric-resources"]], "netscaler.adc.lbmonitor module \u2013 Configuration for monitor resource.": [[417, "netscaler-adc-lbmonitor-module-configuration-for-monitor-resource"]], "netscaler.adc.lbmonitor_sslcertkey_binding module \u2013 Binding Resource definition for describing association between lbmonitor and sslcertkey resources": [[418, "netscaler-adc-lbmonitor-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-lbmonitor-and-sslcertkey-resources"]], "netscaler.adc.lbparameter module \u2013 Configuration for LB parameter resource.": [[419, "netscaler-adc-lbparameter-module-configuration-for-lb-parameter-resource"]], "netscaler.adc.lbpersistentsessions module \u2013 Configuration for persistence session resource.": [[420, "netscaler-adc-lbpersistentsessions-module-configuration-for-persistence-session-resource"]], "netscaler.adc.lbpolicy module \u2013 Configuration for lb policy resource.": [[421, "netscaler-adc-lbpolicy-module-configuration-for-lb-policy-resource"]], "netscaler.adc.lbpolicylabel_lbpolicy_binding module \u2013 Binding Resource definition for describing association between lbpolicylabel and lbpolicy resources": [[422, "netscaler-adc-lbpolicylabel-lbpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbpolicylabel-and-lbpolicy-resources"]], "netscaler.adc.lbpolicylabel module \u2013 Configuration for lb policy label resource.": [[423, "netscaler-adc-lbpolicylabel-module-configuration-for-lb-policy-label-resource"]], "netscaler.adc.lbprofile module \u2013 Configuration for LB profile resource.": [[424, "netscaler-adc-lbprofile-module-configuration-for-lb-profile-resource"]], "netscaler.adc.lbroute6 module \u2013 Configuration for LB route6 resource.": [[425, "netscaler-adc-lbroute6-module-configuration-for-lb-route6-resource"]], "netscaler.adc.lbroute module \u2013 Configuration for LB route resource.": [[426, "netscaler-adc-lbroute-module-configuration-for-lb-route-resource"]], "netscaler.adc.lbsipparameters module \u2013 Configuration for SIP parameters resource.": [[427, "netscaler-adc-lbsipparameters-module-configuration-for-sip-parameters-resource"]], "netscaler.adc.lbvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between lbvserver and analyticsprofile resources": [[428, "netscaler-adc-lbvserver-analyticsprofile-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-analyticsprofile-resources"]], "netscaler.adc.lbvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and appflowpolicy resources": [[429, "netscaler-adc-lbvserver-appflowpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-appflowpolicy-resources"]], "netscaler.adc.lbvserver_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and appfwpolicy resources": [[430, "netscaler-adc-lbvserver-appfwpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-appfwpolicy-resources"]], "netscaler.adc.lbvserver_appqoepolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and appqoepolicy resources": [[431, "netscaler-adc-lbvserver-appqoepolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-appqoepolicy-resources"]], "netscaler.adc.lbvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and auditnslogpolicy resources": [[432, "netscaler-adc-lbvserver-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-auditnslogpolicy-resources"]], "netscaler.adc.lbvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and auditsyslogpolicy resources": [[433, "netscaler-adc-lbvserver-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-auditsyslogpolicy-resources"]], "netscaler.adc.lbvserver_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and authorizationpolicy resources": [[434, "netscaler-adc-lbvserver-authorizationpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-authorizationpolicy-resources"]], "netscaler.adc.lbvserver_botpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and botpolicy resources": [[435, "netscaler-adc-lbvserver-botpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-botpolicy-resources"]], "netscaler.adc.lbvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and cachepolicy resources": [[436, "netscaler-adc-lbvserver-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-cachepolicy-resources"]], "netscaler.adc.lbvserver_cmppolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and cmppolicy resources": [[437, "netscaler-adc-lbvserver-cmppolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-cmppolicy-resources"]], "netscaler.adc.lbvserver_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and contentinspectionpolicy resources": [[438, "netscaler-adc-lbvserver-contentinspectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-contentinspectionpolicy-resources"]], "netscaler.adc.lbvserver_dnspolicy64_binding module \u2013 Binding Resource definition for describing association between lbvserver and dnspolicy64 resources": [[439, "netscaler-adc-lbvserver-dnspolicy64-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-dnspolicy64-resources"]], "netscaler.adc.lbvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and feopolicy resources": [[440, "netscaler-adc-lbvserver-feopolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-feopolicy-resources"]], "netscaler.adc.lbvserver_lbpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and lbpolicy resources": [[441, "netscaler-adc-lbvserver-lbpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-lbpolicy-resources"]], "netscaler.adc.lbvserver module \u2013 Configuration for Load Balancing Virtual Server resource.": [[442, "netscaler-adc-lbvserver-module-configuration-for-load-balancing-virtual-server-resource"]], "netscaler.adc.lbvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and responderpolicy resources": [[443, "netscaler-adc-lbvserver-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-responderpolicy-resources"]], "netscaler.adc.lbvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and rewritepolicy resources": [[444, "netscaler-adc-lbvserver-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-rewritepolicy-resources"]], "netscaler.adc.lbvserver_service_binding module \u2013 Binding Resource definition for describing association between lbvserver and service resources": [[445, "netscaler-adc-lbvserver-service-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-service-resources"]], "netscaler.adc.lbvserver_servicegroup_binding module \u2013 Binding Resource definition for describing association between lbvserver and servicegroup resources": [[446, "netscaler-adc-lbvserver-servicegroup-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-servicegroup-resources"]], "netscaler.adc.lbvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and spilloverpolicy resources": [[447, "netscaler-adc-lbvserver-spilloverpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-spilloverpolicy-resources"]], "netscaler.adc.lbvserver_tmtrafficpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and tmtrafficpolicy resources": [[448, "netscaler-adc-lbvserver-tmtrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-tmtrafficpolicy-resources"]], "netscaler.adc.lbvserver_transformpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and transformpolicy resources": [[449, "netscaler-adc-lbvserver-transformpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-transformpolicy-resources"]], "netscaler.adc.lbvserver_videooptimizationdetectionpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and videooptimizationdetectionpolicy resources": [[450, "netscaler-adc-lbvserver-videooptimizationdetectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-videooptimizationdetectionpolicy-resources"]], "netscaler.adc.lbvserver_videooptimizationpacingpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and videooptimizationpacingpolicy resources": [[451, "netscaler-adc-lbvserver-videooptimizationpacingpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-videooptimizationpacingpolicy-resources"]], "netscaler.adc.lbwlm_lbvserver_binding module \u2013 Binding Resource definition for describing association between lbwlm and lbvserver resources": [[452, "netscaler-adc-lbwlm-lbvserver-binding-module-binding-resource-definition-for-describing-association-between-lbwlm-and-lbvserver-resources"]], "netscaler.adc.lbwlm module \u2013 Configuration for web log manager resource.": [[453, "netscaler-adc-lbwlm-module-configuration-for-web-log-manager-resource"]], "netscaler.adc.linkset_channel_binding module \u2013 Binding Resource definition for describing association between linkset and channel resources": [[454, "netscaler-adc-linkset-channel-binding-module-binding-resource-definition-for-describing-association-between-linkset-and-channel-resources"]], "netscaler.adc.linkset_interface_binding module \u2013 Binding Resource definition for describing association between linkset and interface resources": [[455, "netscaler-adc-linkset-interface-binding-module-binding-resource-definition-for-describing-association-between-linkset-and-interface-resources"]], "netscaler.adc.linkset module \u2013 Configuration for link set resource.": [[456, "netscaler-adc-linkset-module-configuration-for-link-set-resource"]], "netscaler.adc.lldpneighbors module \u2013 Configuration for lldp neighbors resource.": [[457, "netscaler-adc-lldpneighbors-module-configuration-for-lldp-neighbors-resource"]], "netscaler.adc.lldpparam module \u2013 Configuration for lldp params resource.": [[458, "netscaler-adc-lldpparam-module-configuration-for-lldp-params-resource"]], "netscaler.adc.location module \u2013 Configuration for location resource.": [[459, "netscaler-adc-location-module-configuration-for-location-resource"]], "netscaler.adc.locationfile6 module \u2013 Configuration for location file6 resource.": [[460, "netscaler-adc-locationfile6-module-configuration-for-location-file6-resource"]], "netscaler.adc.locationfile module \u2013 Configuration for location file resource.": [[461, "netscaler-adc-locationfile-module-configuration-for-location-file-resource"]], "netscaler.adc.locationparameter module \u2013 Configuration for location parameter resource.": [[462, "netscaler-adc-locationparameter-module-configuration-for-location-parameter-resource"]], "netscaler.adc.login module \u2013 Login to a NetScaler ADC node.": [[463, "netscaler-adc-login-module-login-to-a-netscaler-adc-node"]], "netscaler.adc.logout module \u2013 Logout from a NetScaler ADC node.": [[464, "netscaler-adc-logout-module-logout-from-a-netscaler-adc-node"]], "netscaler.adc.lsnappsattributes module \u2013 Configuration for LSN Application Attributes resource.": [[465, "netscaler-adc-lsnappsattributes-module-configuration-for-lsn-application-attributes-resource"]], "netscaler.adc.lsnappsprofile_lsnappsattributes_binding module \u2013 Binding Resource definition for describing association between lsnappsprofile and lsnappsattributes resources": [[466, "netscaler-adc-lsnappsprofile-lsnappsattributes-binding-module-binding-resource-definition-for-describing-association-between-lsnappsprofile-and-lsnappsattributes-resources"]], "netscaler.adc.lsnappsprofile module \u2013 Configuration for LSN Application Profile resource.": [[467, "netscaler-adc-lsnappsprofile-module-configuration-for-lsn-application-profile-resource"]], "netscaler.adc.lsnappsprofile_port_binding module \u2013 Binding Resource definition for describing association between lsnappsprofile and port resources": [[468, "netscaler-adc-lsnappsprofile-port-binding-module-binding-resource-definition-for-describing-association-between-lsnappsprofile-and-port-resources"]], "netscaler.adc.lsnclient module \u2013 Configuration for lsn client resource.": [[469, "netscaler-adc-lsnclient-module-configuration-for-lsn-client-resource"]], "netscaler.adc.lsnclient_network6_binding module \u2013 Binding Resource definition for describing association between lsnclient and network6 resources": [[470, "netscaler-adc-lsnclient-network6-binding-module-binding-resource-definition-for-describing-association-between-lsnclient-and-network6-resources"]], "netscaler.adc.lsnclient_network_binding module \u2013 Binding Resource definition for describing association between lsnclient and network resources": [[471, "netscaler-adc-lsnclient-network-binding-module-binding-resource-definition-for-describing-association-between-lsnclient-and-network-resources"]], "netscaler.adc.lsnclient_nsacl6_binding module \u2013 Binding Resource definition for describing association between lsnclient and nsacl6 resources": [[472, "netscaler-adc-lsnclient-nsacl6-binding-module-binding-resource-definition-for-describing-association-between-lsnclient-and-nsacl6-resources"]], "netscaler.adc.lsnclient_nsacl_binding module \u2013 Binding Resource definition for describing association between lsnclient and nsacl resources": [[473, "netscaler-adc-lsnclient-nsacl-binding-module-binding-resource-definition-for-describing-association-between-lsnclient-and-nsacl-resources"]], "netscaler.adc.lsngroup_ipsecalgprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and ipsecalgprofile resources": [[474, "netscaler-adc-lsngroup-ipsecalgprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-ipsecalgprofile-resources"]], "netscaler.adc.lsngroup_lsnappsprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnappsprofile resources": [[475, "netscaler-adc-lsngroup-lsnappsprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsnappsprofile-resources"]], "netscaler.adc.lsngroup_lsnhttphdrlogprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnhttphdrlogprofile resources": [[476, "netscaler-adc-lsngroup-lsnhttphdrlogprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsnhttphdrlogprofile-resources"]], "netscaler.adc.lsngroup_lsnlogprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnlogprofile resources": [[477, "netscaler-adc-lsngroup-lsnlogprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsnlogprofile-resources"]], "netscaler.adc.lsngroup_lsnpool_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnpool resources": [[478, "netscaler-adc-lsngroup-lsnpool-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsnpool-resources"]], "netscaler.adc.lsngroup_lsnrtspalgprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnrtspalgprofile resources": [[479, "netscaler-adc-lsngroup-lsnrtspalgprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsnrtspalgprofile-resources"]], "netscaler.adc.lsngroup_lsnsipalgprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnsipalgprofile resources": [[480, "netscaler-adc-lsngroup-lsnsipalgprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsnsipalgprofile-resources"]], "netscaler.adc.lsngroup_lsntransportprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsntransportprofile resources": [[481, "netscaler-adc-lsngroup-lsntransportprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsntransportprofile-resources"]], "netscaler.adc.lsngroup module \u2013 Configuration for LSN group resource.": [[482, "netscaler-adc-lsngroup-module-configuration-for-lsn-group-resource"]], "netscaler.adc.lsngroup_pcpserver_binding module \u2013 Binding Resource definition for describing association between lsngroup and pcpserver resources": [[483, "netscaler-adc-lsngroup-pcpserver-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-pcpserver-resources"]], "netscaler.adc.lsnhttphdrlogprofile module \u2013 Configuration for LSN HTTP header logging Profile resource.": [[484, "netscaler-adc-lsnhttphdrlogprofile-module-configuration-for-lsn-http-header-logging-profile-resource"]], "netscaler.adc.lsnip6profile module \u2013 Configuration for LSN ip6 Profile resource.": [[485, "netscaler-adc-lsnip6profile-module-configuration-for-lsn-ip6-profile-resource"]], "netscaler.adc.lsnlogprofile module \u2013 Configuration for LSN logging Profile resource.": [[486, "netscaler-adc-lsnlogprofile-module-configuration-for-lsn-logging-profile-resource"]], "netscaler.adc.lsnparameter module \u2013 Configuration for LSN parameter resource.": [[487, "netscaler-adc-lsnparameter-module-configuration-for-lsn-parameter-resource"]], "netscaler.adc.lsnpool_lsnip_binding module \u2013 Binding Resource definition for describing association between lsnpool and lsnip resources": [[488, "netscaler-adc-lsnpool-lsnip-binding-module-binding-resource-definition-for-describing-association-between-lsnpool-and-lsnip-resources"]], "netscaler.adc.lsnpool module \u2013 Configuration for LSN pool resource.": [[489, "netscaler-adc-lsnpool-module-configuration-for-lsn-pool-resource"]], "netscaler.adc.lsnrtspalgprofile module \u2013 Configuration for LSN RTSPALG Profile resource.": [[490, "netscaler-adc-lsnrtspalgprofile-module-configuration-for-lsn-rtspalg-profile-resource"]], "netscaler.adc.lsnrtspalgsession module \u2013 Configuration for LSN RTSPALG session resource.": [[491, "netscaler-adc-lsnrtspalgsession-module-configuration-for-lsn-rtspalg-session-resource"]], "netscaler.adc.lsnsession module \u2013 Configuration for lsn session resource.": [[492, "netscaler-adc-lsnsession-module-configuration-for-lsn-session-resource"]], "netscaler.adc.lsnsipalgcall module \u2013 Configuration for LSN SIPALG call resource.": [[493, "netscaler-adc-lsnsipalgcall-module-configuration-for-lsn-sipalg-call-resource"]], "netscaler.adc.lsnsipalgprofile module \u2013 Configuration for LSN SIPALG Profile resource.": [[494, "netscaler-adc-lsnsipalgprofile-module-configuration-for-lsn-sipalg-profile-resource"]], "netscaler.adc.lsnstatic module \u2013 Configuration for static mapping resource.": [[495, "netscaler-adc-lsnstatic-module-configuration-for-static-mapping-resource"]], "netscaler.adc.lsntransportprofile module \u2013 Configuration for LSN Transport Profile resource.": [[496, "netscaler-adc-lsntransportprofile-module-configuration-for-lsn-transport-profile-resource"]], "netscaler.adc.mapbmr_bmrv4network_binding module \u2013 Binding Resource definition for describing association between mapbmr and bmrv4network resources": [[497, "netscaler-adc-mapbmr-bmrv4network-binding-module-binding-resource-definition-for-describing-association-between-mapbmr-and-bmrv4network-resources"]], "netscaler.adc.mapbmr module \u2013 Configuration for MAP-T Basic Mapping rule resource.": [[498, "netscaler-adc-mapbmr-module-configuration-for-map-t-basic-mapping-rule-resource"]], "netscaler.adc.mapdmr module \u2013 Configuration for MAP-T Default Mapping rule resource.": [[499, "netscaler-adc-mapdmr-module-configuration-for-map-t-default-mapping-rule-resource"]], "netscaler.adc.mapdomain_mapbmr_binding module \u2013 Binding Resource definition for describing association between mapdomain and mapbmr resources": [[500, "netscaler-adc-mapdomain-mapbmr-binding-module-binding-resource-definition-for-describing-association-between-mapdomain-and-mapbmr-resources"]], "netscaler.adc.mapdomain module \u2013 Configuration for MAP-T Map Domain resource.": [[501, "netscaler-adc-mapdomain-module-configuration-for-map-t-map-domain-resource"]], "netscaler.adc.nat64 module \u2013 Configuration for nat64 config resource.": [[502, "netscaler-adc-nat64-module-configuration-for-nat64-config-resource"]], "netscaler.adc.nat64param module \u2013 Configuration for NAT64 parameter resource.": [[503, "netscaler-adc-nat64param-module-configuration-for-nat64-parameter-resource"]], "netscaler.adc.nd6 module \u2013 Configuration for nd6 resource.": [[504, "netscaler-adc-nd6-module-configuration-for-nd6-resource"]], "netscaler.adc.nd6ravariables module \u2013 Configuration for nd6 Router Advertisment configuration variables resource.": [[505, "netscaler-adc-nd6ravariables-module-configuration-for-nd6-router-advertisment-configuration-variables-resource"]], "netscaler.adc.nd6ravariables_onlinkipv6prefix_binding module \u2013 Binding Resource definition for describing association between nd6ravariables and onlinkipv6prefix resources": [[506, "netscaler-adc-nd6ravariables-onlinkipv6prefix-binding-module-binding-resource-definition-for-describing-association-between-nd6ravariables-and-onlinkipv6prefix-resources"]], "netscaler.adc.netbridge_iptunnel_binding module \u2013 Binding Resource definition for describing association between netbridge and iptunnel resources": [[507, "netscaler-adc-netbridge-iptunnel-binding-module-binding-resource-definition-for-describing-association-between-netbridge-and-iptunnel-resources"]], "netscaler.adc.netbridge module \u2013 Configuration for network bridge resource.": [[508, "netscaler-adc-netbridge-module-configuration-for-network-bridge-resource"]], "netscaler.adc.netbridge_nsip6_binding module \u2013 Binding Resource definition for describing association between netbridge and nsip6 resources": [[509, "netscaler-adc-netbridge-nsip6-binding-module-binding-resource-definition-for-describing-association-between-netbridge-and-nsip6-resources"]], "netscaler.adc.netbridge_nsip_binding module \u2013 Binding Resource definition for describing association between netbridge and nsip resources": [[510, "netscaler-adc-netbridge-nsip-binding-module-binding-resource-definition-for-describing-association-between-netbridge-and-nsip-resources"]], "netscaler.adc.netbridge_vlan_binding module \u2013 Binding Resource definition for describing association between netbridge and vlan resources": [[511, "netscaler-adc-netbridge-vlan-binding-module-binding-resource-definition-for-describing-association-between-netbridge-and-vlan-resources"]], "netscaler.adc.netprofile module \u2013 Configuration for Network profile resource.": [[512, "netscaler-adc-netprofile-module-configuration-for-network-profile-resource"]], "netscaler.adc.netprofile_natrule_binding module \u2013 Binding Resource definition for describing association between netprofile and natrule resources": [[513, "netscaler-adc-netprofile-natrule-binding-module-binding-resource-definition-for-describing-association-between-netprofile-and-natrule-resources"]], "netscaler.adc.netprofile_srcportset_binding module \u2013 Binding Resource definition for describing association between netprofile and srcportset resources": [[514, "netscaler-adc-netprofile-srcportset-binding-module-binding-resource-definition-for-describing-association-between-netprofile-and-srcportset-resources"]], "netscaler.adc.nsacls6 module \u2013 Configuration for ACL6 entry resource.": [[515, "netscaler-adc-nsacls6-module-configuration-for-acl6-entry-resource"]], "netscaler.adc.nsacls module \u2013 Configuration for ACL entry resource.": [[516, "netscaler-adc-nsacls-module-configuration-for-acl-entry-resource"]], "netscaler.adc.nsappflowcollector module \u2013 Configuration for appflowCollector resource.": [[517, "netscaler-adc-nsappflowcollector-module-configuration-for-appflowcollector-resource"]], "netscaler.adc.nsappflowparam module \u2013 Configuration for appflowParam resource.": [[518, "netscaler-adc-nsappflowparam-module-configuration-for-appflowparam-resource"]], "netscaler.adc.nsaptlicense module \u2013 Configuration for aptlicense resource.": [[519, "netscaler-adc-nsaptlicense-module-configuration-for-aptlicense-resource"]], "netscaler.adc.nsassignment module \u2013 Configuration for assignment resource.": [[520, "netscaler-adc-nsassignment-module-configuration-for-assignment-resource"]], "netscaler.adc.nscapacity module \u2013 Configuration for capacity resource.": [[521, "netscaler-adc-nscapacity-module-configuration-for-capacity-resource"]], "netscaler.adc.nscentralmanagementserver module \u2013 Configuration for centralmanagementserver resource.": [[522, "netscaler-adc-nscentralmanagementserver-module-configuration-for-centralmanagementserver-resource"]], "netscaler.adc.nsconfig module \u2013 Configuration for system config resource.": [[523, "netscaler-adc-nsconfig-module-configuration-for-system-config-resource"]], "netscaler.adc.nsconsoleloginprompt module \u2013 Configuration for console prompt resource.": [[524, "netscaler-adc-nsconsoleloginprompt-module-configuration-for-console-prompt-resource"]], "netscaler.adc.nscqaparam module \u2013 Configuration for cqaparam resource.": [[525, "netscaler-adc-nscqaparam-module-configuration-for-cqaparam-resource"]], "netscaler.adc.nsdhcpparams module \u2013 Configuration for DHCP parameters resource.": [[526, "netscaler-adc-nsdhcpparams-module-configuration-for-dhcp-parameters-resource"]], "netscaler.adc.nsdiameter module \u2013 Configuration for Diameter Parameters resource.": [[527, "netscaler-adc-nsdiameter-module-configuration-for-diameter-parameters-resource"]], "netscaler.adc.nsencryptionkey module \u2013 Configuration for encryption key resource.": [[528, "netscaler-adc-nsencryptionkey-module-configuration-for-encryption-key-resource"]], "netscaler.adc.nsencryptionparams module \u2013 Configuration for default encryption parameters resource.": [[529, "netscaler-adc-nsencryptionparams-module-configuration-for-default-encryption-parameters-resource"]], "netscaler.adc.nsextension module \u2013 Configuration for Extension resource.": [[530, "netscaler-adc-nsextension-module-configuration-for-extension-resource"]], "netscaler.adc.nsfeature module \u2013 Configuration for feature resource.": [[531, "netscaler-adc-nsfeature-module-configuration-for-feature-resource"]], "netscaler.adc.nshmackey module \u2013 Configuration for HMAC key resource.": [[532, "netscaler-adc-nshmackey-module-configuration-for-hmac-key-resource"]], "netscaler.adc.nshostname module \u2013 Configuration for host name resource.": [[533, "netscaler-adc-nshostname-module-configuration-for-host-name-resource"]], "netscaler.adc.nshttpparam module \u2013 Configuration for HTTP parameter resource.": [[534, "netscaler-adc-nshttpparam-module-configuration-for-http-parameter-resource"]], "netscaler.adc.nshttpprofile module \u2013 Configuration for HTTP profile resource.": [[535, "netscaler-adc-nshttpprofile-module-configuration-for-http-profile-resource"]], "netscaler.adc.nsicapprofile module \u2013 Configuration for ICAP profile resource.": [[536, "netscaler-adc-nsicapprofile-module-configuration-for-icap-profile-resource"]], "netscaler.adc.nsip6 module \u2013 Configuration for ip6 resource.": [[537, "netscaler-adc-nsip6-module-configuration-for-ip6-resource"]], "netscaler.adc.nsip module \u2013 Configuration for ip resource.": [[538, "netscaler-adc-nsip-module-configuration-for-ip-resource"]], "netscaler.adc.nslicenseparameters module \u2013 Configuration for licenseparameters resource.": [[539, "netscaler-adc-nslicenseparameters-module-configuration-for-licenseparameters-resource"]], "netscaler.adc.nslicenseproxyserver module \u2013 Configuration for licenseproxyserver resource.": [[540, "netscaler-adc-nslicenseproxyserver-module-configuration-for-licenseproxyserver-resource"]], "netscaler.adc.nslicenseserver module \u2013 Configuration for licenseserver resource.": [[541, "netscaler-adc-nslicenseserver-module-configuration-for-licenseserver-resource"]], "netscaler.adc.nslimitidentifier module \u2013 Configuration for limit Indetifier resource.": [[542, "netscaler-adc-nslimitidentifier-module-configuration-for-limit-indetifier-resource"]], "netscaler.adc.nslimitselector module \u2013 Configuration for limit selector resource.": [[543, "netscaler-adc-nslimitselector-module-configuration-for-limit-selector-resource"]], "netscaler.adc.nslimitsessions module \u2013 Configuration for limit sessions resource.": [[544, "netscaler-adc-nslimitsessions-module-configuration-for-limit-sessions-resource"]], "netscaler.adc.nsmigration module \u2013 Configuration for Migration operation resource.": [[545, "netscaler-adc-nsmigration-module-configuration-for-migration-operation-resource"]], "netscaler.adc.nsmode module \u2013 Configuration for ns mode resource.": [[546, "netscaler-adc-nsmode-module-configuration-for-ns-mode-resource"]], "netscaler.adc.nsparam module \u2013 Configuration for Citrix ADC parameters resource.": [[547, "netscaler-adc-nsparam-module-configuration-for-citrix-adc-parameters-resource"]], "netscaler.adc.nspartition_bridgegroup_binding module \u2013 Binding Resource definition for describing association between nspartition and bridgegroup resources": [[548, "netscaler-adc-nspartition-bridgegroup-binding-module-binding-resource-definition-for-describing-association-between-nspartition-and-bridgegroup-resources"]], "netscaler.adc.nspartition module \u2013 Configuration for admin partition resource.": [[549, "netscaler-adc-nspartition-module-configuration-for-admin-partition-resource"]], "netscaler.adc.nspartition_vlan_binding module \u2013 Binding Resource definition for describing association between nspartition and vlan resources": [[550, "netscaler-adc-nspartition-vlan-binding-module-binding-resource-definition-for-describing-association-between-nspartition-and-vlan-resources"]], "netscaler.adc.nspartition_vxlan_binding module \u2013 Binding Resource definition for describing association between nspartition and vxlan resources": [[551, "netscaler-adc-nspartition-vxlan-binding-module-binding-resource-definition-for-describing-association-between-nspartition-and-vxlan-resources"]], "netscaler.adc.nsratecontrol module \u2013 Configuration for rate control resource.": [[552, "netscaler-adc-nsratecontrol-module-configuration-for-rate-control-resource"]], "netscaler.adc.nsrpcnode module \u2013 Configuration for rpc node resource.": [[553, "netscaler-adc-nsrpcnode-module-configuration-for-rpc-node-resource"]], "netscaler.adc.nsservicefunction module \u2013 Configuration for service Function resource.": [[554, "netscaler-adc-nsservicefunction-module-configuration-for-service-function-resource"]], "netscaler.adc.nsservicepath module \u2013 Configuration for service Chain resource.": [[555, "netscaler-adc-nsservicepath-module-configuration-for-service-chain-resource"]], "netscaler.adc.nsservicepath_nsservicefunction_binding module \u2013 Binding Resource definition for describing association between nsservicepath and nsservicefunction resources": [[556, "netscaler-adc-nsservicepath-nsservicefunction-binding-module-binding-resource-definition-for-describing-association-between-nsservicepath-and-nsservicefunction-resources"]], "netscaler.adc.nssimpleacl6 module \u2013 Configuration for simple ACL6 resource.": [[557, "netscaler-adc-nssimpleacl6-module-configuration-for-simple-acl6-resource"]], "netscaler.adc.nssimpleacl module \u2013 Configuration for simple ACL resource.": [[558, "netscaler-adc-nssimpleacl-module-configuration-for-simple-acl-resource"]], "netscaler.adc.nsspparams module \u2013 Configuration for Surge Protection parameter resource.": [[559, "netscaler-adc-nsspparams-module-configuration-for-surge-protection-parameter-resource"]], "netscaler.adc.nsstats module \u2013 Configuration for stats resource.": [[560, "netscaler-adc-nsstats-module-configuration-for-stats-resource"]], "netscaler.adc.nssurgeq module \u2013 Configuration for surge queue resource.": [[561, "netscaler-adc-nssurgeq-module-configuration-for-surge-queue-resource"]], "netscaler.adc.nstcpbufparam module \u2013 Configuration for tcp buffer parameter resource.": [[562, "netscaler-adc-nstcpbufparam-module-configuration-for-tcp-buffer-parameter-resource"]], "netscaler.adc.nstcpparam module \u2013 Configuration for tcp parameters resource.": [[563, "netscaler-adc-nstcpparam-module-configuration-for-tcp-parameters-resource"]], "netscaler.adc.nstcpprofile module \u2013 Configuration for TCP profile resource.": [[564, "netscaler-adc-nstcpprofile-module-configuration-for-tcp-profile-resource"]], "netscaler.adc.nstimeout module \u2013 Configuration for timeout resource.": [[565, "netscaler-adc-nstimeout-module-configuration-for-timeout-resource"]], "netscaler.adc.nstimer_autoscalepolicy_binding module \u2013 Binding Resource definition for describing association between nstimer and autoscalepolicy resources": [[566, "netscaler-adc-nstimer-autoscalepolicy-binding-module-binding-resource-definition-for-describing-association-between-nstimer-and-autoscalepolicy-resources"]], "netscaler.adc.nstimer module \u2013 Configuration for Timer resource.": [[567, "netscaler-adc-nstimer-module-configuration-for-timer-resource"]], "netscaler.adc.nstrace module \u2013 Configuration for nstrace operations resource.": [[568, "netscaler-adc-nstrace-module-configuration-for-nstrace-operations-resource"]], "netscaler.adc.nstrafficdomain_bridgegroup_binding module \u2013 Binding Resource definition for describing association between nstrafficdomain and bridgegroup resources": [[569, "netscaler-adc-nstrafficdomain-bridgegroup-binding-module-binding-resource-definition-for-describing-association-between-nstrafficdomain-and-bridgegroup-resources"]], "netscaler.adc.nstrafficdomain module \u2013 Configuration for Traffic Domain resource.": [[570, "netscaler-adc-nstrafficdomain-module-configuration-for-traffic-domain-resource"]], "netscaler.adc.nstrafficdomain_vlan_binding module \u2013 Binding Resource definition for describing association between nstrafficdomain and vlan resources": [[571, "netscaler-adc-nstrafficdomain-vlan-binding-module-binding-resource-definition-for-describing-association-between-nstrafficdomain-and-vlan-resources"]], "netscaler.adc.nstrafficdomain_vxlan_binding module \u2013 Binding Resource definition for describing association between nstrafficdomain and vxlan resources": [[572, "netscaler-adc-nstrafficdomain-vxlan-binding-module-binding-resource-definition-for-describing-association-between-nstrafficdomain-and-vxlan-resources"]], "netscaler.adc.nsvariable module \u2013 Configuration for variable resource.": [[573, "netscaler-adc-nsvariable-module-configuration-for-variable-resource"]], "netscaler.adc.nsvpxparam module \u2013 Configuration for \u201cVPX\u201d resource.": [[574, "netscaler-adc-nsvpxparam-module-configuration-for-vpx-resource"]], "netscaler.adc.nsweblogparam module \u2013 Configuration for Web log parameters resource.": [[575, "netscaler-adc-nsweblogparam-module-configuration-for-web-log-parameters-resource"]], "netscaler.adc.nsxmlnamespace module \u2013 Configuration for XML namespace resource.": [[576, "netscaler-adc-nsxmlnamespace-module-configuration-for-xml-namespace-resource"]], "netscaler.adc.ntpparam module \u2013 Configuration for NTP parameter resource.": [[577, "netscaler-adc-ntpparam-module-configuration-for-ntp-parameter-resource"]], "netscaler.adc.ntpserver module \u2013 Configuration for NTP server resource.": [[578, "netscaler-adc-ntpserver-module-configuration-for-ntp-server-resource"]], "netscaler.adc.onlinkipv6prefix module \u2013 Configuration for on-link IPv6 global prefixes for Router Advertisment resource.": [[579, "netscaler-adc-onlinkipv6prefix-module-configuration-for-on-link-ipv6-global-prefixes-for-router-advertisment-resource"]], "netscaler.adc.pcpprofile module \u2013 Configuration for PCP Profile resource.": [[580, "netscaler-adc-pcpprofile-module-configuration-for-pcp-profile-resource"]], "netscaler.adc.pcpserver module \u2013 Configuration for server resource.": [[581, "netscaler-adc-pcpserver-module-configuration-for-server-resource"]], "netscaler.adc.ping6 module \u2013 Configuration for 0 resource.": [[582, "netscaler-adc-ping6-module-configuration-for-0-resource"]], "netscaler.adc.ping module \u2013 Configuration for 0 resource.": [[583, "netscaler-adc-ping-module-configuration-for-0-resource"]], "netscaler.adc.policydataset module \u2013 Configuration for TYPE set resource.": [[584, "netscaler-adc-policydataset-module-configuration-for-type-set-resource"]], "netscaler.adc.policydataset_value_binding module \u2013 Binding Resource definition for describing association between policydataset and value resources": [[585, "netscaler-adc-policydataset-value-binding-module-binding-resource-definition-for-describing-association-between-policydataset-and-value-resources"]], "netscaler.adc.policyexpression module \u2013 Configuration for expression resource.": [[586, "netscaler-adc-policyexpression-module-configuration-for-expression-resource"]], "netscaler.adc.policyhttpcallout module \u2013 Configuration for HTTP callout resource.": [[587, "netscaler-adc-policyhttpcallout-module-configuration-for-http-callout-resource"]], "netscaler.adc.policymap module \u2013 Configuration for map policy resource.": [[588, "netscaler-adc-policymap-module-configuration-for-map-policy-resource"]], "netscaler.adc.policyparam module \u2013 Configuration for policy parameter resource.": [[589, "netscaler-adc-policyparam-module-configuration-for-policy-parameter-resource"]], "netscaler.adc.policypatset module \u2013 Configuration for PAT set resource.": [[590, "netscaler-adc-policypatset-module-configuration-for-pat-set-resource"]], "netscaler.adc.policypatset_pattern_binding module \u2013 Binding Resource definition for describing association between policypatset and pattern resources": [[591, "netscaler-adc-policypatset-pattern-binding-module-binding-resource-definition-for-describing-association-between-policypatset-and-pattern-resources"]], "netscaler.adc.policypatsetfile module \u2013 Configuration for patset file resource.": [[592, "netscaler-adc-policypatsetfile-module-configuration-for-patset-file-resource"]], "netscaler.adc.policystringmap module \u2013 Configuration for string map resource.": [[593, "netscaler-adc-policystringmap-module-configuration-for-string-map-resource"]], "netscaler.adc.policystringmap_pattern_binding module \u2013 Binding Resource definition for describing association between policystringmap and pattern resources": [[594, "netscaler-adc-policystringmap-pattern-binding-module-binding-resource-definition-for-describing-association-between-policystringmap-and-pattern-resources"]], "netscaler.adc.policyurlset module \u2013 Configuration for URL set resource.": [[595, "netscaler-adc-policyurlset-module-configuration-for-url-set-resource"]], "netscaler.adc.protocolhttpband module \u2013 Configuration for HTTP request/response band resource.": [[596, "netscaler-adc-protocolhttpband-module-configuration-for-http-request-response-band-resource"]], "netscaler.adc.ptp module \u2013 Configuration for Precision Time Protocol resource.": [[597, "netscaler-adc-ptp-module-configuration-for-precision-time-protocol-resource"]], "netscaler.adc.quicbridgeprofile module \u2013 Configuration for QUIC BRIDGE profile resource.": [[598, "netscaler-adc-quicbridgeprofile-module-configuration-for-quic-bridge-profile-resource"]], "netscaler.adc.quicparam module \u2013 Configuration for Citrix ADC QUIC parameters resource.": [[599, "netscaler-adc-quicparam-module-configuration-for-citrix-adc-quic-parameters-resource"]], "netscaler.adc.quicprofile module \u2013 Configuration for QUIC profile resource.": [[600, "netscaler-adc-quicprofile-module-configuration-for-quic-profile-resource"]], "netscaler.adc.radiusnode module \u2013 Configuration for RADIUS Node resource.": [[601, "netscaler-adc-radiusnode-module-configuration-for-radius-node-resource"]], "netscaler.adc.rdpclientprofile module \u2013 Configuration for RDP clientprofile resource.": [[602, "netscaler-adc-rdpclientprofile-module-configuration-for-rdp-clientprofile-resource"]], "netscaler.adc.rdpconnections module \u2013 Configuration for active rdp connections resource.": [[603, "netscaler-adc-rdpconnections-module-configuration-for-active-rdp-connections-resource"]], "netscaler.adc.rdpserverprofile module \u2013 Configuration for RDP serverprofile resource.": [[604, "netscaler-adc-rdpserverprofile-module-configuration-for-rdp-serverprofile-resource"]], "netscaler.adc.reboot module \u2013 Configuration for 0 resource.": [[605, "netscaler-adc-reboot-module-configuration-for-0-resource"]], "netscaler.adc.reportingconfig module \u2013 Configuration for reporting config resource.": [[606, "netscaler-adc-reportingconfig-module-configuration-for-reporting-config-resource"]], "netscaler.adc.reputationsettings module \u2013 Configuration for Reputation service settings resource.": [[607, "netscaler-adc-reputationsettings-module-configuration-for-reputation-service-settings-resource"]], "netscaler.adc.responderaction module \u2013 Configuration for responder action resource.": [[608, "netscaler-adc-responderaction-module-configuration-for-responder-action-resource"]], "netscaler.adc.responderglobal_responderpolicy_binding module \u2013 Binding Resource definition for describing association between responderglobal and responderpolicy resources": [[609, "netscaler-adc-responderglobal-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-responderglobal-and-responderpolicy-resources"]], "netscaler.adc.responderhtmlpage module \u2013 Configuration for Responder HTML page resource.": [[610, "netscaler-adc-responderhtmlpage-module-configuration-for-responder-html-page-resource"]], "netscaler.adc.responderparam module \u2013 Configuration for responser parameter resource.": [[611, "netscaler-adc-responderparam-module-configuration-for-responser-parameter-resource"]], "netscaler.adc.responderpolicy module \u2013 Configuration for responder policy resource.": [[612, "netscaler-adc-responderpolicy-module-configuration-for-responder-policy-resource"]], "netscaler.adc.responderpolicylabel module \u2013 Configuration for responder policy label resource.": [[613, "netscaler-adc-responderpolicylabel-module-configuration-for-responder-policy-label-resource"]], "netscaler.adc.responderpolicylabel_responderpolicy_binding module \u2013 Binding Resource definition for describing association between responderpolicylabel and responderpolicy resources": [[614, "netscaler-adc-responderpolicylabel-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-responderpolicylabel-and-responderpolicy-resources"]], "netscaler.adc.rewriteaction module \u2013 Configuration for rewrite action resource.": [[615, "netscaler-adc-rewriteaction-module-configuration-for-rewrite-action-resource"]], "netscaler.adc.rewriteglobal_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between rewriteglobal and rewritepolicy resources": [[616, "netscaler-adc-rewriteglobal-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-rewriteglobal-and-rewritepolicy-resources"]], "netscaler.adc.rewriteparam module \u2013 Configuration for rewrite parameter resource.": [[617, "netscaler-adc-rewriteparam-module-configuration-for-rewrite-parameter-resource"]], "netscaler.adc.rewritepolicy module \u2013 Configuration for rewrite policy resource.": [[618, "netscaler-adc-rewritepolicy-module-configuration-for-rewrite-policy-resource"]], "netscaler.adc.rewritepolicylabel module \u2013 Configuration for rewrite policy label resource.": [[619, "netscaler-adc-rewritepolicylabel-module-configuration-for-rewrite-policy-label-resource"]], "netscaler.adc.rewritepolicylabel_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between rewritepolicylabel and rewritepolicy resources": [[620, "netscaler-adc-rewritepolicylabel-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-rewritepolicylabel-and-rewritepolicy-resources"]], "netscaler.adc.rnat6 module \u2013 Configuration for IPv6 RNAT configured route resource.": [[621, "netscaler-adc-rnat6-module-configuration-for-ipv6-rnat-configured-route-resource"]], "netscaler.adc.rnat6_nsip6_binding module \u2013 Binding Resource definition for describing association between rnat6 and nsip6 resources": [[622, "netscaler-adc-rnat6-nsip6-binding-module-binding-resource-definition-for-describing-association-between-rnat6-and-nsip6-resources"]], "netscaler.adc.rnat module \u2013 Configuration for RNAT configured route resource.": [[623, "netscaler-adc-rnat-module-configuration-for-rnat-configured-route-resource"]], "netscaler.adc.rnat_nsip_binding module \u2013 Binding Resource definition for describing association between rnat and nsip resources": [[624, "netscaler-adc-rnat-nsip-binding-module-binding-resource-definition-for-describing-association-between-rnat-and-nsip-resources"]], "netscaler.adc.rnat_retainsourceportset_binding module \u2013 Binding Resource definition for describing association between rnat and retainsourceportset resources": [[625, "netscaler-adc-rnat-retainsourceportset-binding-module-binding-resource-definition-for-describing-association-between-rnat-and-retainsourceportset-resources"]], "netscaler.adc.rnatglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between rnatglobal and auditsyslogpolicy resources": [[626, "netscaler-adc-rnatglobal-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-rnatglobal-and-auditsyslogpolicy-resources"]], "netscaler.adc.rnatparam module \u2013 Configuration for RNAT parameter resource.": [[627, "netscaler-adc-rnatparam-module-configuration-for-rnat-parameter-resource"]], "netscaler.adc.rnatsession module \u2013 Configuration for RNAT session resource.": [[628, "netscaler-adc-rnatsession-module-configuration-for-rnat-session-resource"]], "netscaler.adc.route6 module \u2013 Configuration for route 6 resource.": [[629, "netscaler-adc-route6-module-configuration-for-route-6-resource"]], "netscaler.adc.route module \u2013 Configuration for route resource.": [[630, "netscaler-adc-route-module-configuration-for-route-resource"]], "netscaler.adc.routerdynamicrouting module \u2013 Configuration for dynamic routing config resource.": [[631, "netscaler-adc-routerdynamicrouting-module-configuration-for-dynamic-routing-config-resource"]], "netscaler.adc.rsskeytype module \u2013 Configuration for RSS key type resource.": [[632, "netscaler-adc-rsskeytype-module-configuration-for-rss-key-type-resource"]], "netscaler.adc.server module \u2013 Configuration for server resource.": [[633, "netscaler-adc-server-module-configuration-for-server-resource"]], "netscaler.adc.service_lbmonitor_binding module \u2013 Binding Resource definition for describing association between service and lbmonitor resources": [[634, "netscaler-adc-service-lbmonitor-binding-module-binding-resource-definition-for-describing-association-between-service-and-lbmonitor-resources"]], "netscaler.adc.service module \u2013 Configuration for service resource.": [[635, "netscaler-adc-service-module-configuration-for-service-resource"]], "netscaler.adc.servicegroup_lbmonitor_binding module \u2013 Binding Resource definition for describing association between servicegroup and lbmonitor resources": [[636, "netscaler-adc-servicegroup-lbmonitor-binding-module-binding-resource-definition-for-describing-association-between-servicegroup-and-lbmonitor-resources"]], "netscaler.adc.servicegroup module \u2013 Configuration for service group resource.": [[637, "netscaler-adc-servicegroup-module-configuration-for-service-group-resource"]], "netscaler.adc.servicegroup_servicegroupmember_binding module \u2013 Binding Resource definition for describing association between servicegroup and servicegroupmember resources": [[638, "netscaler-adc-servicegroup-servicegroupmember-binding-module-binding-resource-definition-for-describing-association-between-servicegroup-and-servicegroupmember-resources"]], "netscaler.adc.smppparam module \u2013 Configuration for SMPP configuration parameters resource.": [[639, "netscaler-adc-smppparam-module-configuration-for-smpp-configuration-parameters-resource"]], "netscaler.adc.smppuser module \u2013 Configuration for SMPP user resource.": [[640, "netscaler-adc-smppuser-module-configuration-for-smpp-user-resource"]], "netscaler.adc.snmpalarm module \u2013 Configuration for alarm resource.": [[641, "netscaler-adc-snmpalarm-module-configuration-for-alarm-resource"]], "netscaler.adc.snmpcommunity module \u2013 Configuration for community resource.": [[642, "netscaler-adc-snmpcommunity-module-configuration-for-community-resource"]], "netscaler.adc.snmpengineid module \u2013 Configuration for SNMP engine id resource.": [[643, "netscaler-adc-snmpengineid-module-configuration-for-snmp-engine-id-resource"]], "netscaler.adc.snmpgroup module \u2013 Configuration for SNMP group resource.": [[644, "netscaler-adc-snmpgroup-module-configuration-for-snmp-group-resource"]], "netscaler.adc.snmpmanager module \u2013 Configuration for manager resource.": [[645, "netscaler-adc-snmpmanager-module-configuration-for-manager-resource"]], "netscaler.adc.snmpmib module \u2013 Configuration for SNMP mib resource.": [[646, "netscaler-adc-snmpmib-module-configuration-for-snmp-mib-resource"]], "netscaler.adc.snmpoption module \u2013 Configuration for SNMP option resource.": [[647, "netscaler-adc-snmpoption-module-configuration-for-snmp-option-resource"]], "netscaler.adc.snmptrap module \u2013 Configuration for snmp trap resource.": [[648, "netscaler-adc-snmptrap-module-configuration-for-snmp-trap-resource"]], "netscaler.adc.snmptrap_snmpuser_binding module \u2013 Binding Resource definition for describing association between snmptrap and snmpuser resources": [[649, "netscaler-adc-snmptrap-snmpuser-binding-module-binding-resource-definition-for-describing-association-between-snmptrap-and-snmpuser-resources"]], "netscaler.adc.snmpuser module \u2013 Configuration for SNMP user resource.": [[650, "netscaler-adc-snmpuser-module-configuration-for-snmp-user-resource"]], "netscaler.adc.snmpview module \u2013 Configuration for view resource.": [[651, "netscaler-adc-snmpview-module-configuration-for-view-resource"]], "netscaler.adc.spilloveraction module \u2013 Configuration for Spillover action resource.": [[652, "netscaler-adc-spilloveraction-module-configuration-for-spillover-action-resource"]], "netscaler.adc.spilloverpolicy module \u2013 Configuration for Spillover policy resource.": [[653, "netscaler-adc-spilloverpolicy-module-configuration-for-spillover-policy-resource"]], "netscaler.adc.sslaction module \u2013 Configuration for SSL action resource.": [[654, "netscaler-adc-sslaction-module-configuration-for-ssl-action-resource"]], "netscaler.adc.sslcacertgroup module \u2013 Configuration for Group of CA certificate-key pairs resource.": [[655, "netscaler-adc-sslcacertgroup-module-configuration-for-group-of-ca-certificate-key-pairs-resource"]], "netscaler.adc.sslcacertgroup_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslcacertgroup and sslcertkey resources": [[656, "netscaler-adc-sslcacertgroup-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-sslcacertgroup-and-sslcertkey-resources"]], "netscaler.adc.sslcert module \u2013 Configuration for cerificate resource.": [[657, "netscaler-adc-sslcert-module-configuration-for-cerificate-resource"]], "netscaler.adc.sslcertbundle module \u2013 Configuration for Imported Certbundle resource.": [[658, "netscaler-adc-sslcertbundle-module-configuration-for-imported-certbundle-resource"]], "netscaler.adc.sslcertfile module \u2013 Configuration for Imported Certfile resource.": [[659, "netscaler-adc-sslcertfile-module-configuration-for-imported-certfile-resource"]], "netscaler.adc.sslcertificatechain module \u2013 Configuration for linked certificate resource.": [[660, "netscaler-adc-sslcertificatechain-module-configuration-for-linked-certificate-resource"]], "netscaler.adc.sslcertkey module \u2013 Configuration for certificate key resource.": [[661, "netscaler-adc-sslcertkey-module-configuration-for-certificate-key-resource"]], "netscaler.adc.sslcertkey_sslocspresponder_binding module \u2013 Binding Resource definition for describing association between sslcertkey and sslocspresponder resources": [[662, "netscaler-adc-sslcertkey-sslocspresponder-binding-module-binding-resource-definition-for-describing-association-between-sslcertkey-and-sslocspresponder-resources"]], "netscaler.adc.sslcertkeybundle module \u2013 Configuration for certkey bundle resource.": [[663, "netscaler-adc-sslcertkeybundle-module-configuration-for-certkey-bundle-resource"]], "netscaler.adc.sslcertreq module \u2013 Configuration for certificate request resource.": [[664, "netscaler-adc-sslcertreq-module-configuration-for-certificate-request-resource"]], "netscaler.adc.sslcipher module \u2013 Configuration for cipher resource.": [[665, "netscaler-adc-sslcipher-module-configuration-for-cipher-resource"]], "netscaler.adc.sslcipher_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslcipher and sslciphersuite resources": [[666, "netscaler-adc-sslcipher-sslciphersuite-binding-module-binding-resource-definition-for-describing-association-between-sslcipher-and-sslciphersuite-resources"]], "netscaler.adc.sslcrl module \u2013 Configuration for Certificate Revocation List resource.": [[667, "netscaler-adc-sslcrl-module-configuration-for-certificate-revocation-list-resource"]], "netscaler.adc.sslcrlfile module \u2013 Configuration for Imported crl files resource.": [[668, "netscaler-adc-sslcrlfile-module-configuration-for-imported-crl-files-resource"]], "netscaler.adc.ssldhfile module \u2013 Configuration for dh imported file resource.": [[669, "netscaler-adc-ssldhfile-module-configuration-for-dh-imported-file-resource"]], "netscaler.adc.ssldhparam module \u2013 Configuration for dh Parameter resource.": [[670, "netscaler-adc-ssldhparam-module-configuration-for-dh-parameter-resource"]], "netscaler.adc.ssldtlsprofile module \u2013 Configuration for DTLS profile resource.": [[671, "netscaler-adc-ssldtlsprofile-module-configuration-for-dtls-profile-resource"]], "netscaler.adc.sslecdsakey module \u2013 Configuration for ecdsa key resource.": [[672, "netscaler-adc-sslecdsakey-module-configuration-for-ecdsa-key-resource"]], "netscaler.adc.sslfips module \u2013 Configuration for fips resource.": [[673, "netscaler-adc-sslfips-module-configuration-for-fips-resource"]], "netscaler.adc.sslfipskey module \u2013 Configuration for FIPS key resource.": [[674, "netscaler-adc-sslfipskey-module-configuration-for-fips-key-resource"]], "netscaler.adc.sslfipssimsource module \u2013 Configuration for FIPsSIM source resource.": [[675, "netscaler-adc-sslfipssimsource-module-configuration-for-fipssim-source-resource"]], "netscaler.adc.sslfipssimtarget module \u2013 Configuration for FIPS SIM Target resource.": [[676, "netscaler-adc-sslfipssimtarget-module-configuration-for-fips-sim-target-resource"]], "netscaler.adc.sslglobal_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslglobal and sslpolicy resources": [[677, "netscaler-adc-sslglobal-sslpolicy-binding-module-binding-resource-definition-for-describing-association-between-sslglobal-and-sslpolicy-resources"]], "netscaler.adc.sslhsmkey module \u2013 Configuration for HSM key resource.": [[678, "netscaler-adc-sslhsmkey-module-configuration-for-hsm-key-resource"]], "netscaler.adc.sslkeyfile module \u2013 Configuration for Imported ssl key files resource.": [[679, "netscaler-adc-sslkeyfile-module-configuration-for-imported-ssl-key-files-resource"]], "netscaler.adc.ssllogprofile module \u2013 Configuration for SSL logging Profile resource.": [[680, "netscaler-adc-ssllogprofile-module-configuration-for-ssl-logging-profile-resource"]], "netscaler.adc.sslocspresponder module \u2013 Configuration for OCSP responser resource.": [[681, "netscaler-adc-sslocspresponder-module-configuration-for-ocsp-responser-resource"]], "netscaler.adc.sslparameter module \u2013 Configuration for SSL parameter resource.": [[682, "netscaler-adc-sslparameter-module-configuration-for-ssl-parameter-resource"]], "netscaler.adc.sslpkcs12 module \u2013 Configuration for pkcs12 resource.": [[683, "netscaler-adc-sslpkcs12-module-configuration-for-pkcs12-resource"]], "netscaler.adc.sslpkcs8 module \u2013 Configuration for pkcs8 resource.": [[684, "netscaler-adc-sslpkcs8-module-configuration-for-pkcs8-resource"]], "netscaler.adc.sslpolicy module \u2013 Configuration for SSL policy resource.": [[685, "netscaler-adc-sslpolicy-module-configuration-for-ssl-policy-resource"]], "netscaler.adc.sslpolicylabel module \u2013 Configuration for SSL policy label resource.": [[686, "netscaler-adc-sslpolicylabel-module-configuration-for-ssl-policy-label-resource"]], "netscaler.adc.sslpolicylabel_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslpolicylabel and sslpolicy resources": [[687, "netscaler-adc-sslpolicylabel-sslpolicy-binding-module-binding-resource-definition-for-describing-association-between-sslpolicylabel-and-sslpolicy-resources"]], "netscaler.adc.sslprofile_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslprofile and ecccurve resources": [[688, "netscaler-adc-sslprofile-ecccurve-binding-module-binding-resource-definition-for-describing-association-between-sslprofile-and-ecccurve-resources"]], "netscaler.adc.sslprofile module \u2013 Configuration for SSL profile resource.": [[689, "netscaler-adc-sslprofile-module-configuration-for-ssl-profile-resource"]], "netscaler.adc.sslprofile_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslprofile and sslcertkey resources": [[690, "netscaler-adc-sslprofile-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-sslprofile-and-sslcertkey-resources"]], "netscaler.adc.sslprofile_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslprofile and sslcipher resources": [[691, "netscaler-adc-sslprofile-sslcipher-binding-module-binding-resource-definition-for-describing-association-between-sslprofile-and-sslcipher-resources"]], "netscaler.adc.sslprofile_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslprofile and sslciphersuite resources": [[692, "netscaler-adc-sslprofile-sslciphersuite-binding-module-binding-resource-definition-for-describing-association-between-sslprofile-and-sslciphersuite-resources"]], "netscaler.adc.sslrsakey module \u2013 Configuration for RSA key resource.": [[693, "netscaler-adc-sslrsakey-module-configuration-for-rsa-key-resource"]], "netscaler.adc.sslservice_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslservice and ecccurve resources": [[694, "netscaler-adc-sslservice-ecccurve-binding-module-binding-resource-definition-for-describing-association-between-sslservice-and-ecccurve-resources"]], "netscaler.adc.sslservice module \u2013 Configuration for SSL service resource.": [[695, "netscaler-adc-sslservice-module-configuration-for-ssl-service-resource"]], "netscaler.adc.sslservice_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslservice and sslcertkey resources": [[696, "netscaler-adc-sslservice-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-sslservice-and-sslcertkey-resources"]], "netscaler.adc.sslservice_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslservice and sslcipher resources": [[697, "netscaler-adc-sslservice-sslcipher-binding-module-binding-resource-definition-for-describing-association-between-sslservice-and-sslcipher-resources"]], "netscaler.adc.sslservice_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslservice and sslciphersuite resources": [[698, "netscaler-adc-sslservice-sslciphersuite-binding-module-binding-resource-definition-for-describing-association-between-sslservice-and-sslciphersuite-resources"]], "netscaler.adc.sslservice_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslservice and sslpolicy resources": [[699, "netscaler-adc-sslservice-sslpolicy-binding-module-binding-resource-definition-for-describing-association-between-sslservice-and-sslpolicy-resources"]], "netscaler.adc.sslservicegroup_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and ecccurve resources": [[700, "netscaler-adc-sslservicegroup-ecccurve-binding-module-binding-resource-definition-for-describing-association-between-sslservicegroup-and-ecccurve-resources"]], "netscaler.adc.sslservicegroup module \u2013 Configuration for SSL service group resource.": [[701, "netscaler-adc-sslservicegroup-module-configuration-for-ssl-service-group-resource"]], "netscaler.adc.sslservicegroup_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and sslcertkey resources": [[702, "netscaler-adc-sslservicegroup-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-sslservicegroup-and-sslcertkey-resources"]], "netscaler.adc.sslservicegroup_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and sslcipher resources": [[703, "netscaler-adc-sslservicegroup-sslcipher-binding-module-binding-resource-definition-for-describing-association-between-sslservicegroup-and-sslcipher-resources"]], "netscaler.adc.sslservicegroup_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and sslciphersuite resources": [[704, "netscaler-adc-sslservicegroup-sslciphersuite-binding-module-binding-resource-definition-for-describing-association-between-sslservicegroup-and-sslciphersuite-resources"]], "netscaler.adc.sslvserver_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslvserver and ecccurve resources": [[705, "netscaler-adc-sslvserver-ecccurve-binding-module-binding-resource-definition-for-describing-association-between-sslvserver-and-ecccurve-resources"]], "netscaler.adc.sslvserver module \u2013 Configuration for SSL virtual server resource.": [[706, "netscaler-adc-sslvserver-module-configuration-for-ssl-virtual-server-resource"]], "netscaler.adc.sslvserver_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslcertkey resources": [[707, "netscaler-adc-sslvserver-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-sslvserver-and-sslcertkey-resources"]], "netscaler.adc.sslvserver_sslcertkeybundle_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslcertkeybundle resources": [[708, "netscaler-adc-sslvserver-sslcertkeybundle-binding-module-binding-resource-definition-for-describing-association-between-sslvserver-and-sslcertkeybundle-resources"]], "netscaler.adc.sslvserver_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslcipher resources": [[709, "netscaler-adc-sslvserver-sslcipher-binding-module-binding-resource-definition-for-describing-association-between-sslvserver-and-sslcipher-resources"]], "netscaler.adc.sslvserver_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslciphersuite resources": [[710, "netscaler-adc-sslvserver-sslciphersuite-binding-module-binding-resource-definition-for-describing-association-between-sslvserver-and-sslciphersuite-resources"]], "netscaler.adc.sslvserver_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslpolicy resources": [[711, "netscaler-adc-sslvserver-sslpolicy-binding-module-binding-resource-definition-for-describing-association-between-sslvserver-and-sslpolicy-resources"]], "netscaler.adc.sslwrapkey module \u2013 Configuration for WRAP key resource.": [[712, "netscaler-adc-sslwrapkey-module-configuration-for-wrap-key-resource"]], "netscaler.adc.streamidentifier module \u2013 Configuration for identifier resource.": [[713, "netscaler-adc-streamidentifier-module-configuration-for-identifier-resource"]], "netscaler.adc.streamselector module \u2013 Configuration for selector resource.": [[714, "netscaler-adc-streamselector-module-configuration-for-selector-resource"]], "netscaler.adc.streamsession module \u2013 Configuration for active connection resource.": [[715, "netscaler-adc-streamsession-module-configuration-for-active-connection-resource"]], "netscaler.adc.subscribergxinterface module \u2013 Configuration for Gx interface Parameters resource.": [[716, "netscaler-adc-subscribergxinterface-module-configuration-for-gx-interface-parameters-resource"]], "netscaler.adc.subscriberparam module \u2013 Configuration for Subscriber Params resource.": [[717, "netscaler-adc-subscriberparam-module-configuration-for-subscriber-params-resource"]], "netscaler.adc.subscriberprofile module \u2013 Configuration for Subscriber Profile resource.": [[718, "netscaler-adc-subscriberprofile-module-configuration-for-subscriber-profile-resource"]], "netscaler.adc.subscriberradiusinterface module \u2013 Configuration for RADIUS interface Parameters resource.": [[719, "netscaler-adc-subscriberradiusinterface-module-configuration-for-radius-interface-parameters-resource"]], "netscaler.adc.subscribersessions module \u2013 Configuration for subscriber sesions resource.": [[720, "netscaler-adc-subscribersessions-module-configuration-for-subscriber-sesions-resource"]], "netscaler.adc.systemadmuserinfo module \u2013 Configuration for 0 resource.": [[721, "netscaler-adc-systemadmuserinfo-module-configuration-for-0-resource"]], "netscaler.adc.systembackup module \u2013 Configuration for Backup Data for ns backup and restore resource.": [[722, "netscaler-adc-systembackup-module-configuration-for-backup-data-for-ns-backup-and-restore-resource"]], "netscaler.adc.systemcmdpolicy module \u2013 Configuration for command policy resource.": [[723, "netscaler-adc-systemcmdpolicy-module-configuration-for-command-policy-resource"]], "netscaler.adc.systemcollectionparam module \u2013 Configuration for collection parameter resource.": [[724, "netscaler-adc-systemcollectionparam-module-configuration-for-collection-parameter-resource"]], "netscaler.adc.systemcpuparam module \u2013 Configuration for 0 resource.": [[725, "netscaler-adc-systemcpuparam-module-configuration-for-0-resource"]], "netscaler.adc.systementitydata module \u2013 Configuration for entity data resource.": [[726, "netscaler-adc-systementitydata-module-configuration-for-entity-data-resource"]], "netscaler.adc.systemextramgmtcpu module \u2013 Configuration for 0 resource.": [[727, "netscaler-adc-systemextramgmtcpu-module-configuration-for-0-resource"]], "netscaler.adc.systemfile module \u2013 Configuration for file resource.": [[728, "netscaler-adc-systemfile-module-configuration-for-file-resource"]], "netscaler.adc.systemglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and auditnslogpolicy resources": [[729, "netscaler-adc-systemglobal-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-auditnslogpolicy-resources"]], "netscaler.adc.systemglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and auditsyslogpolicy resources": [[730, "netscaler-adc-systemglobal-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-auditsyslogpolicy-resources"]], "netscaler.adc.systemglobal_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationldappolicy resources": [[731, "netscaler-adc-systemglobal-authenticationldappolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-authenticationldappolicy-resources"]], "netscaler.adc.systemglobal_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationlocalpolicy resources": [[732, "netscaler-adc-systemglobal-authenticationlocalpolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-authenticationlocalpolicy-resources"]], "netscaler.adc.systemglobal_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationpolicy resources": [[733, "netscaler-adc-systemglobal-authenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-authenticationpolicy-resources"]], "netscaler.adc.systemglobal_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationradiuspolicy resources": [[734, "netscaler-adc-systemglobal-authenticationradiuspolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-authenticationradiuspolicy-resources"]], "netscaler.adc.systemglobal_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationtacacspolicy resources": [[735, "netscaler-adc-systemglobal-authenticationtacacspolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-authenticationtacacspolicy-resources"]], "netscaler.adc.systemgroup module \u2013 Configuration for system group resource.": [[736, "netscaler-adc-systemgroup-module-configuration-for-system-group-resource"]], "netscaler.adc.systemgroup_nspartition_binding module \u2013 Binding Resource definition for describing association between systemgroup and nspartition resources": [[737, "netscaler-adc-systemgroup-nspartition-binding-module-binding-resource-definition-for-describing-association-between-systemgroup-and-nspartition-resources"]], "netscaler.adc.systemgroup_systemcmdpolicy_binding module \u2013 Binding Resource definition for describing association between systemgroup and systemcmdpolicy resources": [[738, "netscaler-adc-systemgroup-systemcmdpolicy-binding-module-binding-resource-definition-for-describing-association-between-systemgroup-and-systemcmdpolicy-resources"]], "netscaler.adc.systemgroup_systemuser_binding module \u2013 Binding Resource definition for describing association between systemgroup and systemuser resources": [[739, "netscaler-adc-systemgroup-systemuser-binding-module-binding-resource-definition-for-describing-association-between-systemgroup-and-systemuser-resources"]], "netscaler.adc.systemhwerror module \u2013 Configuration for Hardware errors resource.": [[740, "netscaler-adc-systemhwerror-module-configuration-for-hardware-errors-resource"]], "netscaler.adc.systemkek module \u2013 Configuration for Key encryption Key resource.": [[741, "netscaler-adc-systemkek-module-configuration-for-key-encryption-key-resource"]], "netscaler.adc.systemparameter module \u2013 Configuration for system parameter resource.": [[742, "netscaler-adc-systemparameter-module-configuration-for-system-parameter-resource"]], "netscaler.adc.systemrestorepoint module \u2013 Configuration for Setting restorepoints for auto restore resource.": [[743, "netscaler-adc-systemrestorepoint-module-configuration-for-setting-restorepoints-for-auto-restore-resource"]], "netscaler.adc.systemsession module \u2013 Configuration for system session resource.": [[744, "netscaler-adc-systemsession-module-configuration-for-system-session-resource"]], "netscaler.adc.systemsshkey module \u2013 Configuration for 0 resource.": [[745, "netscaler-adc-systemsshkey-module-configuration-for-0-resource"]], "netscaler.adc.systemuser module \u2013 Configuration for system user resource.": [[746, "netscaler-adc-systemuser-module-configuration-for-system-user-resource"]], "netscaler.adc.systemuser_nspartition_binding module \u2013 Binding Resource definition for describing association between systemuser and nspartition resources": [[747, "netscaler-adc-systemuser-nspartition-binding-module-binding-resource-definition-for-describing-association-between-systemuser-and-nspartition-resources"]], "netscaler.adc.systemuser_systemcmdpolicy_binding module \u2013 Binding Resource definition for describing association between systemuser and systemcmdpolicy resources": [[748, "netscaler-adc-systemuser-systemcmdpolicy-binding-module-binding-resource-definition-for-describing-association-between-systemuser-and-systemcmdpolicy-resources"]], "netscaler.adc.tmformssoaction module \u2013 Configuration for Form sso action resource.": [[749, "netscaler-adc-tmformssoaction-module-configuration-for-form-sso-action-resource"]], "netscaler.adc.tmglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and auditnslogpolicy resources": [[750, "netscaler-adc-tmglobal-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-tmglobal-and-auditnslogpolicy-resources"]], "netscaler.adc.tmglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and auditsyslogpolicy resources": [[751, "netscaler-adc-tmglobal-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-tmglobal-and-auditsyslogpolicy-resources"]], "netscaler.adc.tmglobal_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and tmsessionpolicy resources": [[752, "netscaler-adc-tmglobal-tmsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-tmglobal-and-tmsessionpolicy-resources"]], "netscaler.adc.tmglobal_tmtrafficpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and tmtrafficpolicy resources": [[753, "netscaler-adc-tmglobal-tmtrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-tmglobal-and-tmtrafficpolicy-resources"]], "netscaler.adc.tmsamlssoprofile module \u2013 Configuration for SAML sso action resource.": [[754, "netscaler-adc-tmsamlssoprofile-module-configuration-for-saml-sso-action-resource"]], "netscaler.adc.tmsessionaction module \u2013 Configuration for TM session action resource.": [[755, "netscaler-adc-tmsessionaction-module-configuration-for-tm-session-action-resource"]], "netscaler.adc.tmsessionparameter module \u2013 Configuration for session parameter resource.": [[756, "netscaler-adc-tmsessionparameter-module-configuration-for-session-parameter-resource"]], "netscaler.adc.tmsessionpolicy module \u2013 Configuration for TM session policy resource.": [[757, "netscaler-adc-tmsessionpolicy-module-configuration-for-tm-session-policy-resource"]], "netscaler.adc.tmtrafficaction module \u2013 Configuration for TM traffic action resource.": [[758, "netscaler-adc-tmtrafficaction-module-configuration-for-tm-traffic-action-resource"]], "netscaler.adc.tmtrafficpolicy module \u2013 Configuration for TM traffic policy resource.": [[759, "netscaler-adc-tmtrafficpolicy-module-configuration-for-tm-traffic-policy-resource"]], "netscaler.adc.traceroute6 module \u2013 Configuration for 0 resource.": [[760, "netscaler-adc-traceroute6-module-configuration-for-0-resource"]], "netscaler.adc.traceroute module \u2013 Configuration for 0 resource.": [[761, "netscaler-adc-traceroute-module-configuration-for-0-resource"]], "netscaler.adc.transformaction module \u2013 Configuration for transform action resource.": [[762, "netscaler-adc-transformaction-module-configuration-for-transform-action-resource"]], "netscaler.adc.transformglobal_transformpolicy_binding module \u2013 Binding Resource definition for describing association between transformglobal and transformpolicy resources": [[763, "netscaler-adc-transformglobal-transformpolicy-binding-module-binding-resource-definition-for-describing-association-between-transformglobal-and-transformpolicy-resources"]], "netscaler.adc.transformpolicy module \u2013 Configuration for URL Transformation policy resource.": [[764, "netscaler-adc-transformpolicy-module-configuration-for-url-transformation-policy-resource"]], "netscaler.adc.transformpolicylabel module \u2013 Configuration for transform policy label resource.": [[765, "netscaler-adc-transformpolicylabel-module-configuration-for-transform-policy-label-resource"]], "netscaler.adc.transformpolicylabel_transformpolicy_binding module \u2013 Binding Resource definition for describing association between transformpolicylabel and transformpolicy resources": [[766, "netscaler-adc-transformpolicylabel-transformpolicy-binding-module-binding-resource-definition-for-describing-association-between-transformpolicylabel-and-transformpolicy-resources"]], "netscaler.adc.transformprofile module \u2013 Configuration for URL Transformation profile resource.": [[767, "netscaler-adc-transformprofile-module-configuration-for-url-transformation-profile-resource"]], "netscaler.adc.tunnelglobal_tunneltrafficpolicy_binding module \u2013 Binding Resource definition for describing association between tunnelglobal and tunneltrafficpolicy resources": [[768, "netscaler-adc-tunnelglobal-tunneltrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-tunnelglobal-and-tunneltrafficpolicy-resources"]], "netscaler.adc.tunneltrafficpolicy module \u2013 Configuration for tunnel policy resource.": [[769, "netscaler-adc-tunneltrafficpolicy-module-configuration-for-tunnel-policy-resource"]], "netscaler.adc.ulfdserver module \u2013 Configuration for ulfd server resource.": [[770, "netscaler-adc-ulfdserver-module-configuration-for-ulfd-server-resource"]], "netscaler.adc.urlfilteringcategorization module \u2013 Configuration for Categorization resource.": [[771, "netscaler-adc-urlfilteringcategorization-module-configuration-for-categorization-resource"]], "netscaler.adc.urlfilteringparameter module \u2013 Configuration for URLFILTERING paramter resource.": [[772, "netscaler-adc-urlfilteringparameter-module-configuration-for-urlfiltering-paramter-resource"]], "netscaler.adc.userprotocol module \u2013 Configuration for user protocol resource.": [[773, "netscaler-adc-userprotocol-module-configuration-for-user-protocol-resource"]], "netscaler.adc.uservserver module \u2013 Configuration for virtual server resource.": [[774, "netscaler-adc-uservserver-module-configuration-for-virtual-server-resource"]], "netscaler.adc.videooptimizationdetectionaction module \u2013 Configuration for videooptimization detectionaction resource.": [[775, "netscaler-adc-videooptimizationdetectionaction-module-configuration-for-videooptimization-detectionaction-resource"]], "netscaler.adc.videooptimizationdetectionpolicy module \u2013 Configuration for videooptimization detectionpolicy resource.": [[776, "netscaler-adc-videooptimizationdetectionpolicy-module-configuration-for-videooptimization-detectionpolicy-resource"]], "netscaler.adc.videooptimizationdetectionpolicylabel module \u2013 Configuration for videooptimization detection policy label resource.": [[777, "netscaler-adc-videooptimizationdetectionpolicylabel-module-configuration-for-videooptimization-detection-policy-label-resource"]], "netscaler.adc.videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationdetectionpolicylabel and videooptimizationdetectionpolicy resources": [[778, "netscaler-adc-videooptimizationdetectionpolicylabel-videooptimizationdetectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-videooptimizationdetectionpolicylabel-and-videooptimizationdetectionpolicy-resources"]], "netscaler.adc.videooptimizationglobaldetection_videooptimizationdetectionpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationglobaldetection and videooptimizationdetectionpolicy resources": [[779, "netscaler-adc-videooptimizationglobaldetection-videooptimizationdetectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-videooptimizationglobaldetection-and-videooptimizationdetectionpolicy-resources"]], "netscaler.adc.videooptimizationglobalpacing_videooptimizationpacingpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationglobalpacing and videooptimizationpacingpolicy resources": [[780, "netscaler-adc-videooptimizationglobalpacing-videooptimizationpacingpolicy-binding-module-binding-resource-definition-for-describing-association-between-videooptimizationglobalpacing-and-videooptimizationpacingpolicy-resources"]], "netscaler.adc.videooptimizationpacingaction module \u2013 Configuration for videooptimization pacingaction resource.": [[781, "netscaler-adc-videooptimizationpacingaction-module-configuration-for-videooptimization-pacingaction-resource"]], "netscaler.adc.videooptimizationpacingpolicy module \u2013 Configuration for videooptimization pacingpolicy resource.": [[782, "netscaler-adc-videooptimizationpacingpolicy-module-configuration-for-videooptimization-pacingpolicy-resource"]], "netscaler.adc.videooptimizationpacingpolicylabel module \u2013 Configuration for videooptimization pacing policy label resource.": [[783, "netscaler-adc-videooptimizationpacingpolicylabel-module-configuration-for-videooptimization-pacing-policy-label-resource"]], "netscaler.adc.videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationpacingpolicylabel and videooptimizationpacingpolicy resources": [[784, "netscaler-adc-videooptimizationpacingpolicylabel-videooptimizationpacingpolicy-binding-module-binding-resource-definition-for-describing-association-between-videooptimizationpacingpolicylabel-and-videooptimizationpacingpolicy-resources"]], "netscaler.adc.videooptimizationparameter module \u2013 Configuration for VideoOptimization parameter resource.": [[785, "netscaler-adc-videooptimizationparameter-module-configuration-for-videooptimization-parameter-resource"]], "netscaler.adc.vlan_channel_binding module \u2013 Binding Resource definition for describing association between vlan and channel resources": [[786, "netscaler-adc-vlan-channel-binding-module-binding-resource-definition-for-describing-association-between-vlan-and-channel-resources"]], "netscaler.adc.vlan_interface_binding module \u2013 Binding Resource definition for describing association between vlan and interface resources": [[787, "netscaler-adc-vlan-interface-binding-module-binding-resource-definition-for-describing-association-between-vlan-and-interface-resources"]], "netscaler.adc.vlan_linkset_binding module \u2013 Binding Resource definition for describing association between vlan and linkset resources": [[788, "netscaler-adc-vlan-linkset-binding-module-binding-resource-definition-for-describing-association-between-vlan-and-linkset-resources"]], "netscaler.adc.vlan module \u2013 Configuration for \u201cVLAN\u201d resource.": [[789, "netscaler-adc-vlan-module-configuration-for-vlan-resource"]], "netscaler.adc.vlan_nsip6_binding module \u2013 Binding Resource definition for describing association between vlan and nsip6 resources": [[790, "netscaler-adc-vlan-nsip6-binding-module-binding-resource-definition-for-describing-association-between-vlan-and-nsip6-resources"]], "netscaler.adc.vlan_nsip_binding module \u2013 Binding Resource definition for describing association between vlan and nsip resources": [[791, "netscaler-adc-vlan-nsip-binding-module-binding-resource-definition-for-describing-association-between-vlan-and-nsip-resources"]], "netscaler.adc.vpnalwaysonprofile module \u2013 Configuration for AlwyasON profile resource.": [[792, "netscaler-adc-vpnalwaysonprofile-module-configuration-for-alwyason-profile-resource"]], "netscaler.adc.vpnclientlessaccesspolicy module \u2013 Configuration for Clientless VPN rewrite policy resource.": [[793, "netscaler-adc-vpnclientlessaccesspolicy-module-configuration-for-clientless-vpn-rewrite-policy-resource"]], "netscaler.adc.vpnclientlessaccessprofile module \u2013 Configuration for Clientless VPN rewrite profile resource.": [[794, "netscaler-adc-vpnclientlessaccessprofile-module-configuration-for-clientless-vpn-rewrite-profile-resource"]], "netscaler.adc.vpnepaprofile module \u2013 Configuration for Epa profile resource.": [[795, "netscaler-adc-vpnepaprofile-module-configuration-for-epa-profile-resource"]], "netscaler.adc.vpneula module \u2013 Configuration for EULA for vservers resource.": [[796, "netscaler-adc-vpneula-module-configuration-for-eula-for-vservers-resource"]], "netscaler.adc.vpnformssoaction module \u2013 Configuration for Form sso action resource.": [[797, "netscaler-adc-vpnformssoaction-module-configuration-for-form-sso-action-resource"]], "netscaler.adc.vpnglobal_appcontroller_binding module \u2013 Binding Resource definition for describing association between vpnglobal and appcontroller resources": [[798, "netscaler-adc-vpnglobal-appcontroller-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-appcontroller-resources"]], "netscaler.adc.vpnglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and auditnslogpolicy resources": [[799, "netscaler-adc-vpnglobal-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-auditnslogpolicy-resources"]], "netscaler.adc.vpnglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and auditsyslogpolicy resources": [[800, "netscaler-adc-vpnglobal-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-auditsyslogpolicy-resources"]], "netscaler.adc.vpnglobal_authenticationcertpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationcertpolicy resources": [[801, "netscaler-adc-vpnglobal-authenticationcertpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationcertpolicy-resources"]], "netscaler.adc.vpnglobal_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationldappolicy resources": [[802, "netscaler-adc-vpnglobal-authenticationldappolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationldappolicy-resources"]], "netscaler.adc.vpnglobal_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationlocalpolicy resources": [[803, "netscaler-adc-vpnglobal-authenticationlocalpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationlocalpolicy-resources"]], "netscaler.adc.vpnglobal_authenticationnegotiatepolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationnegotiatepolicy resources": [[804, "netscaler-adc-vpnglobal-authenticationnegotiatepolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationnegotiatepolicy-resources"]], "netscaler.adc.vpnglobal_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationpolicy resources": [[805, "netscaler-adc-vpnglobal-authenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationpolicy-resources"]], "netscaler.adc.vpnglobal_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationradiuspolicy resources": [[806, "netscaler-adc-vpnglobal-authenticationradiuspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationradiuspolicy-resources"]], "netscaler.adc.vpnglobal_authenticationsamlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationsamlpolicy resources": [[807, "netscaler-adc-vpnglobal-authenticationsamlpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationsamlpolicy-resources"]], "netscaler.adc.vpnglobal_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationtacacspolicy resources": [[808, "netscaler-adc-vpnglobal-authenticationtacacspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationtacacspolicy-resources"]], "netscaler.adc.vpnglobal_domain_binding module \u2013 Binding Resource definition for describing association between vpnglobal and domain resources": [[809, "netscaler-adc-vpnglobal-domain-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-domain-resources"]], "netscaler.adc.vpnglobal_intranetip6_binding module \u2013 Binding Resource definition for describing association between vpnglobal and intranetip6 resources": [[810, "netscaler-adc-vpnglobal-intranetip6-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-intranetip6-resources"]], "netscaler.adc.vpnglobal_intranetip_binding module \u2013 Binding Resource definition for describing association between vpnglobal and intranetip resources": [[811, "netscaler-adc-vpnglobal-intranetip-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-intranetip-resources"]], "netscaler.adc.vpnglobal_sharefileserver_binding module \u2013 Binding Resource definition for describing association between vpnglobal and sharefileserver resources": [[812, "netscaler-adc-vpnglobal-sharefileserver-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-sharefileserver-resources"]], "netscaler.adc.vpnglobal_sslcertkey_binding module \u2013 Binding Resource definition for describing association between vpnglobal and sslcertkey resources": [[813, "netscaler-adc-vpnglobal-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-sslcertkey-resources"]], "netscaler.adc.vpnglobal_staserver_binding module \u2013 Binding Resource definition for describing association between vpnglobal and staserver resources": [[814, "netscaler-adc-vpnglobal-staserver-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-staserver-resources"]], "netscaler.adc.vpnglobal_vpnclientlessaccesspolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnclientlessaccesspolicy resources": [[815, "netscaler-adc-vpnglobal-vpnclientlessaccesspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnclientlessaccesspolicy-resources"]], "netscaler.adc.vpnglobal_vpneula_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpneula resources": [[816, "netscaler-adc-vpnglobal-vpneula-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpneula-resources"]], "netscaler.adc.vpnglobal_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnintranetapplication resources": [[817, "netscaler-adc-vpnglobal-vpnintranetapplication-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnintranetapplication-resources"]], "netscaler.adc.vpnglobal_vpnnexthopserver_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnnexthopserver resources": [[818, "netscaler-adc-vpnglobal-vpnnexthopserver-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnnexthopserver-resources"]], "netscaler.adc.vpnglobal_vpnportaltheme_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnportaltheme resources": [[819, "netscaler-adc-vpnglobal-vpnportaltheme-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnportaltheme-resources"]], "netscaler.adc.vpnglobal_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnsessionpolicy resources": [[820, "netscaler-adc-vpnglobal-vpnsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnsessionpolicy-resources"]], "netscaler.adc.vpnglobal_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpntrafficpolicy resources": [[821, "netscaler-adc-vpnglobal-vpntrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpntrafficpolicy-resources"]], "netscaler.adc.vpnglobal_vpnurl_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnurl resources": [[822, "netscaler-adc-vpnglobal-vpnurl-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnurl-resources"]], "netscaler.adc.vpnglobal_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnurlpolicy resources": [[823, "netscaler-adc-vpnglobal-vpnurlpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnurlpolicy-resources"]], "netscaler.adc.vpnicaconnection module \u2013 Configuration for active ica connections resource.": [[824, "netscaler-adc-vpnicaconnection-module-configuration-for-active-ica-connections-resource"]], "netscaler.adc.vpnintranetapplication module \u2013 Configuration for SSLVPN intranet application resource.": [[825, "netscaler-adc-vpnintranetapplication-module-configuration-for-sslvpn-intranet-application-resource"]], "netscaler.adc.vpnnexthopserver module \u2013 Configuration for Next Hop Server resource.": [[826, "netscaler-adc-vpnnexthopserver-module-configuration-for-next-hop-server-resource"]], "netscaler.adc.vpnparameter module \u2013 Configuration for VPN parameter resource.": [[827, "netscaler-adc-vpnparameter-module-configuration-for-vpn-parameter-resource"]], "netscaler.adc.vpnpcoipconnection module \u2013 Configuration for PCoIP connection resource.": [[828, "netscaler-adc-vpnpcoipconnection-module-configuration-for-pcoip-connection-resource"]], "netscaler.adc.vpnpcoipprofile module \u2013 Configuration for PCoIP session profile resource.": [[829, "netscaler-adc-vpnpcoipprofile-module-configuration-for-pcoip-session-profile-resource"]], "netscaler.adc.vpnpcoipvserverprofile module \u2013 Configuration for PCoIP vserver profile resource.": [[830, "netscaler-adc-vpnpcoipvserverprofile-module-configuration-for-pcoip-vserver-profile-resource"]], "netscaler.adc.vpnportaltheme module \u2013 Configuration for portaltheme resource.": [[831, "netscaler-adc-vpnportaltheme-module-configuration-for-portaltheme-resource"]], "netscaler.adc.vpnsamlssoprofile module \u2013 Configuration for SAML sso action resource.": [[832, "netscaler-adc-vpnsamlssoprofile-module-configuration-for-saml-sso-action-resource"]], "netscaler.adc.vpnsessionaction module \u2013 Configuration for VPN session action resource.": [[833, "netscaler-adc-vpnsessionaction-module-configuration-for-vpn-session-action-resource"]], "netscaler.adc.vpnsessionpolicy module \u2013 Configuration for VPN session policy resource.": [[834, "netscaler-adc-vpnsessionpolicy-module-configuration-for-vpn-session-policy-resource"]], "netscaler.adc.vpntrafficaction module \u2013 Configuration for VPN traffic action resource.": [[835, "netscaler-adc-vpntrafficaction-module-configuration-for-vpn-traffic-action-resource"]], "netscaler.adc.vpntrafficpolicy module \u2013 Configuration for VPN traffic policy resource.": [[836, "netscaler-adc-vpntrafficpolicy-module-configuration-for-vpn-traffic-policy-resource"]], "netscaler.adc.vpnurl module \u2013 Configuration for VPN URL resource.": [[837, "netscaler-adc-vpnurl-module-configuration-for-vpn-url-resource"]], "netscaler.adc.vpnurlaction module \u2013 Configuration for VPN url action resource.": [[838, "netscaler-adc-vpnurlaction-module-configuration-for-vpn-url-action-resource"]], "netscaler.adc.vpnurlpolicy module \u2013 Configuration for VPN url policy resource.": [[839, "netscaler-adc-vpnurlpolicy-module-configuration-for-vpn-url-policy-resource"]], "netscaler.adc.vpnvserver_aaapreauthenticationpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and aaapreauthenticationpolicy resources": [[840, "netscaler-adc-vpnvserver-aaapreauthenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-aaapreauthenticationpolicy-resources"]], "netscaler.adc.vpnvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between vpnvserver and analyticsprofile resources": [[841, "netscaler-adc-vpnvserver-analyticsprofile-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-analyticsprofile-resources"]], "netscaler.adc.vpnvserver_appcontroller_binding module \u2013 Binding Resource definition for describing association between vpnvserver and appcontroller resources": [[842, "netscaler-adc-vpnvserver-appcontroller-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-appcontroller-resources"]], "netscaler.adc.vpnvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and appflowpolicy resources": [[843, "netscaler-adc-vpnvserver-appflowpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-appflowpolicy-resources"]], "netscaler.adc.vpnvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and auditnslogpolicy resources": [[844, "netscaler-adc-vpnvserver-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-auditnslogpolicy-resources"]], "netscaler.adc.vpnvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and auditsyslogpolicy resources": [[845, "netscaler-adc-vpnvserver-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-auditsyslogpolicy-resources"]], "netscaler.adc.vpnvserver_authenticationcertpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationcertpolicy resources": [[846, "netscaler-adc-vpnvserver-authenticationcertpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationcertpolicy-resources"]], "netscaler.adc.vpnvserver_authenticationdfapolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationdfapolicy resources": [[847, "netscaler-adc-vpnvserver-authenticationdfapolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationdfapolicy-resources"]], "netscaler.adc.vpnvserver_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationldappolicy resources": [[848, "netscaler-adc-vpnvserver-authenticationldappolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationldappolicy-resources"]], "netscaler.adc.vpnvserver_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationlocalpolicy resources": [[849, "netscaler-adc-vpnvserver-authenticationlocalpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationlocalpolicy-resources"]], "netscaler.adc.vpnvserver_authenticationloginschemapolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationloginschemapolicy resources": [[850, "netscaler-adc-vpnvserver-authenticationloginschemapolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationloginschemapolicy-resources"]], "netscaler.adc.vpnvserver_authenticationnegotiatepolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationnegotiatepolicy resources": [[851, "netscaler-adc-vpnvserver-authenticationnegotiatepolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationnegotiatepolicy-resources"]], "netscaler.adc.vpnvserver_authenticationoauthidppolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationoauthidppolicy resources": [[852, "netscaler-adc-vpnvserver-authenticationoauthidppolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationoauthidppolicy-resources"]], "netscaler.adc.vpnvserver_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationpolicy resources": [[853, "netscaler-adc-vpnvserver-authenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationpolicy-resources"]], "netscaler.adc.vpnvserver_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationradiuspolicy resources": [[854, "netscaler-adc-vpnvserver-authenticationradiuspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationradiuspolicy-resources"]], "netscaler.adc.vpnvserver_authenticationsamlidppolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationsamlidppolicy resources": [[855, "netscaler-adc-vpnvserver-authenticationsamlidppolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationsamlidppolicy-resources"]], "netscaler.adc.vpnvserver_authenticationsamlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationsamlpolicy resources": [[856, "netscaler-adc-vpnvserver-authenticationsamlpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationsamlpolicy-resources"]], "netscaler.adc.vpnvserver_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationtacacspolicy resources": [[857, "netscaler-adc-vpnvserver-authenticationtacacspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationtacacspolicy-resources"]], "netscaler.adc.vpnvserver_authenticationwebauthpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationwebauthpolicy resources": [[858, "netscaler-adc-vpnvserver-authenticationwebauthpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationwebauthpolicy-resources"]], "netscaler.adc.vpnvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and cachepolicy resources": [[859, "netscaler-adc-vpnvserver-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-cachepolicy-resources"]], "netscaler.adc.vpnvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and cspolicy resources": [[860, "netscaler-adc-vpnvserver-cspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-cspolicy-resources"]], "netscaler.adc.vpnvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and feopolicy resources": [[861, "netscaler-adc-vpnvserver-feopolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-feopolicy-resources"]], "netscaler.adc.vpnvserver_icapolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and icapolicy resources": [[862, "netscaler-adc-vpnvserver-icapolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-icapolicy-resources"]], "netscaler.adc.vpnvserver_intranetip6_binding module \u2013 Binding Resource definition for describing association between vpnvserver and intranetip6 resources": [[863, "netscaler-adc-vpnvserver-intranetip6-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-intranetip6-resources"]], "netscaler.adc.vpnvserver_intranetip_binding module \u2013 Binding Resource definition for describing association between vpnvserver and intranetip resources": [[864, "netscaler-adc-vpnvserver-intranetip-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-intranetip-resources"]], "netscaler.adc.vpnvserver module \u2013 Configuration for VPN virtual server resource.": [[865, "netscaler-adc-vpnvserver-module-configuration-for-vpn-virtual-server-resource"]], "netscaler.adc.vpnvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and responderpolicy resources": [[866, "netscaler-adc-vpnvserver-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-responderpolicy-resources"]], "netscaler.adc.vpnvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and rewritepolicy resources": [[867, "netscaler-adc-vpnvserver-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-rewritepolicy-resources"]], "netscaler.adc.vpnvserver_sharefileserver_binding module \u2013 Binding Resource definition for describing association between vpnvserver and sharefileserver resources": [[868, "netscaler-adc-vpnvserver-sharefileserver-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-sharefileserver-resources"]], "netscaler.adc.vpnvserver_staserver_binding module \u2013 Binding Resource definition for describing association between vpnvserver and staserver resources": [[869, "netscaler-adc-vpnvserver-staserver-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-staserver-resources"]], "netscaler.adc.vpnvserver_vpnclientlessaccesspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnclientlessaccesspolicy resources": [[870, "netscaler-adc-vpnvserver-vpnclientlessaccesspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnclientlessaccesspolicy-resources"]], "netscaler.adc.vpnvserver_vpnepaprofile_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnepaprofile resources": [[871, "netscaler-adc-vpnvserver-vpnepaprofile-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnepaprofile-resources"]], "netscaler.adc.vpnvserver_vpneula_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpneula resources": [[872, "netscaler-adc-vpnvserver-vpneula-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpneula-resources"]], "netscaler.adc.vpnvserver_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnintranetapplication resources": [[873, "netscaler-adc-vpnvserver-vpnintranetapplication-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnintranetapplication-resources"]], "netscaler.adc.vpnvserver_vpnnexthopserver_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnnexthopserver resources": [[874, "netscaler-adc-vpnvserver-vpnnexthopserver-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnnexthopserver-resources"]], "netscaler.adc.vpnvserver_vpnportaltheme_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnportaltheme resources": [[875, "netscaler-adc-vpnvserver-vpnportaltheme-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnportaltheme-resources"]], "netscaler.adc.vpnvserver_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnsessionpolicy resources": [[876, "netscaler-adc-vpnvserver-vpnsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnsessionpolicy-resources"]], "netscaler.adc.vpnvserver_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpntrafficpolicy resources": [[877, "netscaler-adc-vpnvserver-vpntrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpntrafficpolicy-resources"]], "netscaler.adc.vpnvserver_vpnurl_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnurl resources": [[878, "netscaler-adc-vpnvserver-vpnurl-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnurl-resources"]], "netscaler.adc.vpnvserver_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnurlpolicy resources": [[879, "netscaler-adc-vpnvserver-vpnurlpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnurlpolicy-resources"]], "netscaler.adc.vrid6_channel_binding module \u2013 Binding Resource definition for describing association between vrid6 and channel resources": [[880, "netscaler-adc-vrid6-channel-binding-module-binding-resource-definition-for-describing-association-between-vrid6-and-channel-resources"]], "netscaler.adc.vrid6_interface_binding module \u2013 Binding Resource definition for describing association between vrid6 and interface resources": [[881, "netscaler-adc-vrid6-interface-binding-module-binding-resource-definition-for-describing-association-between-vrid6-and-interface-resources"]], "netscaler.adc.vrid6 module \u2013 Configuration for Virtual Router ID for IPv6 resource.": [[882, "netscaler-adc-vrid6-module-configuration-for-virtual-router-id-for-ipv6-resource"]], "netscaler.adc.vrid6_trackinterface_binding module \u2013 Binding Resource definition for describing association between vrid6 and trackinterface resources": [[883, "netscaler-adc-vrid6-trackinterface-binding-module-binding-resource-definition-for-describing-association-between-vrid6-and-trackinterface-resources"]], "netscaler.adc.vrid_channel_binding module \u2013 Binding Resource definition for describing association between vrid and channel resources": [[884, "netscaler-adc-vrid-channel-binding-module-binding-resource-definition-for-describing-association-between-vrid-and-channel-resources"]], "netscaler.adc.vrid_interface_binding module \u2013 Binding Resource definition for describing association between vrid and interface resources": [[885, "netscaler-adc-vrid-interface-binding-module-binding-resource-definition-for-describing-association-between-vrid-and-interface-resources"]], "netscaler.adc.vrid module \u2013 Configuration for Virtual Router ID resource.": [[886, "netscaler-adc-vrid-module-configuration-for-virtual-router-id-resource"]], "netscaler.adc.vrid_trackinterface_binding module \u2013 Binding Resource definition for describing association between vrid and trackinterface resources": [[887, "netscaler-adc-vrid-trackinterface-binding-module-binding-resource-definition-for-describing-association-between-vrid-and-trackinterface-resources"]], "netscaler.adc.vridparam module \u2013 Configuration for VR ID parameter resource.": [[888, "netscaler-adc-vridparam-module-configuration-for-vr-id-parameter-resource"]], "netscaler.adc.vserver module \u2013 Configuration for virtual server resource.": [[889, "netscaler-adc-vserver-module-configuration-for-virtual-server-resource"]], "netscaler.adc.vxlan module \u2013 Configuration for \u201cVXLAN\u201d resource.": [[890, "netscaler-adc-vxlan-module-configuration-for-vxlan-resource"]], "netscaler.adc.vxlan_nsip6_binding module \u2013 Binding Resource definition for describing association between vxlan and nsip6 resources": [[891, "netscaler-adc-vxlan-nsip6-binding-module-binding-resource-definition-for-describing-association-between-vxlan-and-nsip6-resources"]], "netscaler.adc.vxlan_nsip_binding module \u2013 Binding Resource definition for describing association between vxlan and nsip resources": [[892, "netscaler-adc-vxlan-nsip-binding-module-binding-resource-definition-for-describing-association-between-vxlan-and-nsip-resources"]], "netscaler.adc.vxlan_srcip_binding module \u2013 Binding Resource definition for describing association between vxlan and srcip resources": [[893, "netscaler-adc-vxlan-srcip-binding-module-binding-resource-definition-for-describing-association-between-vxlan-and-srcip-resources"]], "netscaler.adc.vxlanvlanmap module \u2013 Configuration for vxlan vlan mapping resource.": [[894, "netscaler-adc-vxlanvlanmap-module-configuration-for-vxlan-vlan-mapping-resource"]], "netscaler.adc.vxlanvlanmap_vxlan_binding module \u2013 Binding Resource definition for describing association between vxlanvlanmap and vxlan resources": [[895, "netscaler-adc-vxlanvlanmap-vxlan-binding-module-binding-resource-definition-for-describing-association-between-vxlanvlanmap-and-vxlan-resources"]], "Collections in the Netscaler Namespace": [[896, "collections-in-the-netscaler-namespace"]], "Welcome to my Ansible collection documentation": [[897, "welcome-to-my-ansible-collection-documentation"]], "Collections:": [[897, null]], "Plugin indexes:": [[897, null]], "Reference indexes:": [[897, null]]}, "indexentries": {}}) \ No newline at end of file +Search.setIndex({"docnames": ["collections/environment_variables", "collections/index", "collections/index_module", "collections/netscaler/adc/aaacertparams_module", "collections/netscaler/adc/aaaglobal_aaapreauthenticationpolicy_binding_module", "collections/netscaler/adc/aaaglobal_authenticationnegotiateaction_binding_module", "collections/netscaler/adc/aaagroup_aaauser_binding_module", "collections/netscaler/adc/aaagroup_auditnslogpolicy_binding_module", "collections/netscaler/adc/aaagroup_auditsyslogpolicy_binding_module", "collections/netscaler/adc/aaagroup_authorizationpolicy_binding_module", "collections/netscaler/adc/aaagroup_intranetip6_binding_module", "collections/netscaler/adc/aaagroup_intranetip_binding_module", "collections/netscaler/adc/aaagroup_module", "collections/netscaler/adc/aaagroup_tmsessionpolicy_binding_module", "collections/netscaler/adc/aaagroup_vpnintranetapplication_binding_module", "collections/netscaler/adc/aaagroup_vpnsessionpolicy_binding_module", "collections/netscaler/adc/aaagroup_vpntrafficpolicy_binding_module", "collections/netscaler/adc/aaagroup_vpnurl_binding_module", "collections/netscaler/adc/aaagroup_vpnurlpolicy_binding_module", "collections/netscaler/adc/aaakcdaccount_module", "collections/netscaler/adc/aaaldapparams_module", "collections/netscaler/adc/aaaotpparameter_module", "collections/netscaler/adc/aaaparameter_module", "collections/netscaler/adc/aaapreauthenticationaction_module", "collections/netscaler/adc/aaapreauthenticationparameter_module", "collections/netscaler/adc/aaapreauthenticationpolicy_module", "collections/netscaler/adc/aaaradiusparams_module", "collections/netscaler/adc/aaasession_module", "collections/netscaler/adc/aaassoprofile_module", "collections/netscaler/adc/aaatacacsparams_module", "collections/netscaler/adc/aaauser_auditnslogpolicy_binding_module", "collections/netscaler/adc/aaauser_auditsyslogpolicy_binding_module", "collections/netscaler/adc/aaauser_authorizationpolicy_binding_module", "collections/netscaler/adc/aaauser_intranetip6_binding_module", "collections/netscaler/adc/aaauser_intranetip_binding_module", "collections/netscaler/adc/aaauser_module", "collections/netscaler/adc/aaauser_tmsessionpolicy_binding_module", "collections/netscaler/adc/aaauser_vpnintranetapplication_binding_module", "collections/netscaler/adc/aaauser_vpnsessionpolicy_binding_module", "collections/netscaler/adc/aaauser_vpntrafficpolicy_binding_module", "collections/netscaler/adc/aaauser_vpnurl_binding_module", "collections/netscaler/adc/aaauser_vpnurlpolicy_binding_module", "collections/netscaler/adc/admparameter_module", "collections/netscaler/adc/analyticsglobal_analyticsprofile_binding_module", "collections/netscaler/adc/analyticsprofile_module", "collections/netscaler/adc/apispec_module", "collections/netscaler/adc/apispecfile_module", "collections/netscaler/adc/appalgparam_module", "collections/netscaler/adc/appflowaction_analyticsprofile_binding_module", "collections/netscaler/adc/appflowaction_module", "collections/netscaler/adc/appflowcollector_module", "collections/netscaler/adc/appflowglobal_appflowpolicy_binding_module", "collections/netscaler/adc/appflowparam_module", "collections/netscaler/adc/appflowpolicy_module", "collections/netscaler/adc/appflowpolicylabel_appflowpolicy_binding_module", "collections/netscaler/adc/appflowpolicylabel_module", "collections/netscaler/adc/appfwarchive_module", "collections/netscaler/adc/appfwconfidfield_module", "collections/netscaler/adc/appfwcustomsettings_module", "collections/netscaler/adc/appfwfieldtype_module", "collections/netscaler/adc/appfwglobal_appfwpolicy_binding_module", "collections/netscaler/adc/appfwglobal_auditnslogpolicy_binding_module", "collections/netscaler/adc/appfwglobal_auditsyslogpolicy_binding_module", "collections/netscaler/adc/appfwgrpccontenttype_module", "collections/netscaler/adc/appfwgrpcwebjsoncontenttype_module", "collections/netscaler/adc/appfwgrpcwebtextcontenttype_module", "collections/netscaler/adc/appfwhtmlerrorpage_module", "collections/netscaler/adc/appfwjsoncontenttype_module", "collections/netscaler/adc/appfwjsonerrorpage_module", "collections/netscaler/adc/appfwlearningdata_module", "collections/netscaler/adc/appfwlearningsettings_module", "collections/netscaler/adc/appfwmultipartformcontenttype_module", "collections/netscaler/adc/appfwpolicy_module", "collections/netscaler/adc/appfwpolicylabel_appfwpolicy_binding_module", "collections/netscaler/adc/appfwpolicylabel_module", "collections/netscaler/adc/appfwprofile_appfwconfidfield_binding_module", "collections/netscaler/adc/appfwprofile_blockkeyword_binding_module", "collections/netscaler/adc/appfwprofile_bypasslist_binding_module", "collections/netscaler/adc/appfwprofile_cmdinjection_binding_module", "collections/netscaler/adc/appfwprofile_contenttype_binding_module", "collections/netscaler/adc/appfwprofile_cookieconsistency_binding_module", "collections/netscaler/adc/appfwprofile_creditcardnumber_binding_module", "collections/netscaler/adc/appfwprofile_crosssitescripting_binding_module", "collections/netscaler/adc/appfwprofile_csrftag_binding_module", "collections/netscaler/adc/appfwprofile_denylist_binding_module", "collections/netscaler/adc/appfwprofile_denyurl_binding_module", "collections/netscaler/adc/appfwprofile_excluderescontenttype_binding_module", "collections/netscaler/adc/appfwprofile_fakeaccount_binding_module", "collections/netscaler/adc/appfwprofile_fieldconsistency_binding_module", "collections/netscaler/adc/appfwprofile_fieldformat_binding_module", "collections/netscaler/adc/appfwprofile_fileuploadtype_binding_module", "collections/netscaler/adc/appfwprofile_jsonblockkeyword_binding_module", "collections/netscaler/adc/appfwprofile_jsoncmdurl_binding_module", "collections/netscaler/adc/appfwprofile_jsondosurl_binding_module", "collections/netscaler/adc/appfwprofile_jsonsqlurl_binding_module", "collections/netscaler/adc/appfwprofile_jsonxssurl_binding_module", "collections/netscaler/adc/appfwprofile_logexpression_binding_module", "collections/netscaler/adc/appfwprofile_module", "collections/netscaler/adc/appfwprofile_safeobject_binding_module", "collections/netscaler/adc/appfwprofile_sqlinjection_binding_module", "collections/netscaler/adc/appfwprofile_starturl_binding_module", "collections/netscaler/adc/appfwprofile_trustedlearningclients_binding_module", "collections/netscaler/adc/appfwprofile_xmlattachmenturl_binding_module", "collections/netscaler/adc/appfwprofile_xmldosurl_binding_module", "collections/netscaler/adc/appfwprofile_xmlsqlinjection_binding_module", "collections/netscaler/adc/appfwprofile_xmlvalidationurl_binding_module", "collections/netscaler/adc/appfwprofile_xmlwsiurl_binding_module", "collections/netscaler/adc/appfwprofile_xmlxss_binding_module", "collections/netscaler/adc/appfwprotofile_module", "collections/netscaler/adc/appfwsettings_module", "collections/netscaler/adc/appfwsignatures_module", "collections/netscaler/adc/appfwurlencodedformcontenttype_module", "collections/netscaler/adc/appfwwsdl_module", "collections/netscaler/adc/appfwxmlcontenttype_module", "collections/netscaler/adc/appfwxmlerrorpage_module", "collections/netscaler/adc/appfwxmlschema_module", "collections/netscaler/adc/application_module", "collections/netscaler/adc/appqoeaction_module", "collections/netscaler/adc/appqoecustomresp_module", "collections/netscaler/adc/appqoeparameter_module", "collections/netscaler/adc/appqoepolicy_module", "collections/netscaler/adc/arp_module", "collections/netscaler/adc/arpparam_module", "collections/netscaler/adc/auditmessageaction_module", "collections/netscaler/adc/auditnslogaction_module", "collections/netscaler/adc/auditnslogglobal_auditnslogpolicy_binding_module", "collections/netscaler/adc/auditnslogparams_module", "collections/netscaler/adc/auditnslogpolicy_module", "collections/netscaler/adc/auditsyslogaction_module", "collections/netscaler/adc/auditsyslogglobal_auditsyslogpolicy_binding_module", "collections/netscaler/adc/auditsyslogparams_module", "collections/netscaler/adc/auditsyslogpolicy_module", "collections/netscaler/adc/authenticationadfsproxyprofile_module", "collections/netscaler/adc/authenticationauthnprofile_module", "collections/netscaler/adc/authenticationazurekeyvault_module", "collections/netscaler/adc/authenticationcaptchaaction_module", "collections/netscaler/adc/authenticationcertaction_module", "collections/netscaler/adc/authenticationcertpolicy_module", "collections/netscaler/adc/authenticationcitrixauthaction_module", "collections/netscaler/adc/authenticationdfaaction_module", "collections/netscaler/adc/authenticationdfapolicy_module", "collections/netscaler/adc/authenticationemailaction_module", "collections/netscaler/adc/authenticationepaaction_module", "collections/netscaler/adc/authenticationldapaction_module", "collections/netscaler/adc/authenticationldappolicy_module", "collections/netscaler/adc/authenticationlocalpolicy_module", "collections/netscaler/adc/authenticationloginschema_module", "collections/netscaler/adc/authenticationloginschemapolicy_module", "collections/netscaler/adc/authenticationnegotiateaction_module", "collections/netscaler/adc/authenticationnegotiatepolicy_module", "collections/netscaler/adc/authenticationnoauthaction_module", "collections/netscaler/adc/authenticationoauthaction_module", "collections/netscaler/adc/authenticationoauthidppolicy_module", "collections/netscaler/adc/authenticationoauthidpprofile_module", "collections/netscaler/adc/authenticationpolicy_module", "collections/netscaler/adc/authenticationpolicylabel_authenticationpolicy_binding_module", "collections/netscaler/adc/authenticationpolicylabel_module", "collections/netscaler/adc/authenticationpushservice_module", "collections/netscaler/adc/authenticationradiusaction_module", "collections/netscaler/adc/authenticationradiuspolicy_module", "collections/netscaler/adc/authenticationsamlaction_module", "collections/netscaler/adc/authenticationsamlidppolicy_module", "collections/netscaler/adc/authenticationsamlidpprofile_module", "collections/netscaler/adc/authenticationsamlpolicy_module", "collections/netscaler/adc/authenticationsmartaccesspolicy_module", "collections/netscaler/adc/authenticationsmartaccessprofile_module", "collections/netscaler/adc/authenticationstorefrontauthaction_module", "collections/netscaler/adc/authenticationtacacsaction_module", "collections/netscaler/adc/authenticationtacacspolicy_module", "collections/netscaler/adc/authenticationvserver_auditnslogpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_auditsyslogpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationcertpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationldappolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationlocalpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationloginschemapolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationnegotiatepolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationoauthidppolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationradiuspolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationsamlidppolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationsamlpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationsmartaccesspolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationtacacspolicy_binding_module", "collections/netscaler/adc/authenticationvserver_authenticationwebauthpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_cachepolicy_binding_module", "collections/netscaler/adc/authenticationvserver_cspolicy_binding_module", "collections/netscaler/adc/authenticationvserver_module", "collections/netscaler/adc/authenticationvserver_responderpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_rewritepolicy_binding_module", "collections/netscaler/adc/authenticationvserver_tmsessionpolicy_binding_module", "collections/netscaler/adc/authenticationvserver_vpnportaltheme_binding_module", "collections/netscaler/adc/authenticationwebauthaction_module", "collections/netscaler/adc/authenticationwebauthpolicy_module", "collections/netscaler/adc/authorizationpolicy_module", "collections/netscaler/adc/authorizationpolicylabel_authorizationpolicy_binding_module", "collections/netscaler/adc/authorizationpolicylabel_module", "collections/netscaler/adc/autoscaleaction_module", "collections/netscaler/adc/autoscalepolicy_module", "collections/netscaler/adc/autoscaleprofile_module", "collections/netscaler/adc/azureapplication_module", "collections/netscaler/adc/azurekeyvault_module", "collections/netscaler/adc/botglobal_botpolicy_binding_module", "collections/netscaler/adc/botpolicy_module", "collections/netscaler/adc/botpolicylabel_botpolicy_binding_module", "collections/netscaler/adc/botpolicylabel_module", "collections/netscaler/adc/botprofile_blacklist_binding_module", "collections/netscaler/adc/botprofile_captcha_binding_module", "collections/netscaler/adc/botprofile_ipreputation_binding_module", "collections/netscaler/adc/botprofile_kmdetectionexpr_binding_module", "collections/netscaler/adc/botprofile_logexpression_binding_module", "collections/netscaler/adc/botprofile_module", "collections/netscaler/adc/botprofile_ratelimit_binding_module", "collections/netscaler/adc/botprofile_tps_binding_module", "collections/netscaler/adc/botprofile_trapinsertionurl_binding_module", "collections/netscaler/adc/botprofile_whitelist_binding_module", "collections/netscaler/adc/botsettings_module", "collections/netscaler/adc/botsignature_module", "collections/netscaler/adc/bridgegroup_module", "collections/netscaler/adc/bridgegroup_nsip6_binding_module", "collections/netscaler/adc/bridgegroup_nsip_binding_module", "collections/netscaler/adc/bridgegroup_vlan_binding_module", "collections/netscaler/adc/bridgetable_module", "collections/netscaler/adc/cachecontentgroup_module", "collections/netscaler/adc/cacheforwardproxy_module", "collections/netscaler/adc/cacheglobal_cachepolicy_binding_module", "collections/netscaler/adc/cacheobject_module", "collections/netscaler/adc/cacheparameter_module", "collections/netscaler/adc/cachepolicy_module", "collections/netscaler/adc/cachepolicylabel_cachepolicy_binding_module", "collections/netscaler/adc/cachepolicylabel_module", "collections/netscaler/adc/cacheselector_module", "collections/netscaler/adc/callhome_module", "collections/netscaler/adc/change_password_module", "collections/netscaler/adc/channel_interface_binding_module", "collections/netscaler/adc/channel_module", "collections/netscaler/adc/cloudallowedngsticketprofile_module", "collections/netscaler/adc/cloudawsparam_module", "collections/netscaler/adc/cloudcredential_module", "collections/netscaler/adc/cloudngsparameter_module", "collections/netscaler/adc/cloudparameter_module", "collections/netscaler/adc/cloudparaminternal_module", "collections/netscaler/adc/cloudprofile_module", "collections/netscaler/adc/cloudtunnelparameter_module", "collections/netscaler/adc/cloudtunnelvserver_module", "collections/netscaler/adc/cluster_module", "collections/netscaler/adc/clusterfiles_module", "collections/netscaler/adc/clusterinstance_module", "collections/netscaler/adc/clusternode_module", "collections/netscaler/adc/clusternode_routemonitor_binding_module", "collections/netscaler/adc/clusternodegroup_authenticationvserver_binding_module", "collections/netscaler/adc/clusternodegroup_clusternode_binding_module", "collections/netscaler/adc/clusternodegroup_crvserver_binding_module", "collections/netscaler/adc/clusternodegroup_csvserver_binding_module", "collections/netscaler/adc/clusternodegroup_gslbsite_binding_module", "collections/netscaler/adc/clusternodegroup_gslbvserver_binding_module", "collections/netscaler/adc/clusternodegroup_lbvserver_binding_module", "collections/netscaler/adc/clusternodegroup_module", "collections/netscaler/adc/clusternodegroup_nslimitidentifier_binding_module", "collections/netscaler/adc/clusternodegroup_service_binding_module", "collections/netscaler/adc/clusternodegroup_streamidentifier_binding_module", "collections/netscaler/adc/clusternodegroup_vpnvserver_binding_module", "collections/netscaler/adc/clusterpropstatus_module", "collections/netscaler/adc/cmpaction_module", "collections/netscaler/adc/cmpglobal_cmppolicy_binding_module", "collections/netscaler/adc/cmpparameter_module", "collections/netscaler/adc/cmppolicy_module", "collections/netscaler/adc/cmppolicylabel_cmppolicy_binding_module", "collections/netscaler/adc/cmppolicylabel_module", "collections/netscaler/adc/contentinspectionaction_module", "collections/netscaler/adc/contentinspectioncallout_module", "collections/netscaler/adc/contentinspectionglobal_contentinspectionpolicy_binding_module", "collections/netscaler/adc/contentinspectionparameter_module", "collections/netscaler/adc/contentinspectionpolicy_module", "collections/netscaler/adc/contentinspectionpolicylabel_contentinspectionpolicy_binding_module", "collections/netscaler/adc/contentinspectionpolicylabel_module", "collections/netscaler/adc/contentinspectionprofile_module", "collections/netscaler/adc/crpolicy_module", "collections/netscaler/adc/crvserver_analyticsprofile_binding_module", "collections/netscaler/adc/crvserver_appflowpolicy_binding_module", "collections/netscaler/adc/crvserver_appfwpolicy_binding_module", "collections/netscaler/adc/crvserver_appqoepolicy_binding_module", "collections/netscaler/adc/crvserver_cachepolicy_binding_module", "collections/netscaler/adc/crvserver_cmppolicy_binding_module", "collections/netscaler/adc/crvserver_crpolicy_binding_module", "collections/netscaler/adc/crvserver_cspolicy_binding_module", "collections/netscaler/adc/crvserver_feopolicy_binding_module", "collections/netscaler/adc/crvserver_icapolicy_binding_module", "collections/netscaler/adc/crvserver_lbvserver_binding_module", "collections/netscaler/adc/crvserver_module", "collections/netscaler/adc/crvserver_policymap_binding_module", "collections/netscaler/adc/crvserver_responderpolicy_binding_module", "collections/netscaler/adc/crvserver_rewritepolicy_binding_module", "collections/netscaler/adc/crvserver_spilloverpolicy_binding_module", "collections/netscaler/adc/csaction_module", "collections/netscaler/adc/csparameter_module", "collections/netscaler/adc/cspolicy_module", "collections/netscaler/adc/cspolicylabel_cspolicy_binding_module", "collections/netscaler/adc/cspolicylabel_module", "collections/netscaler/adc/csvserver_analyticsprofile_binding_module", "collections/netscaler/adc/csvserver_appflowpolicy_binding_module", "collections/netscaler/adc/csvserver_appfwpolicy_binding_module", "collections/netscaler/adc/csvserver_appqoepolicy_binding_module", "collections/netscaler/adc/csvserver_auditnslogpolicy_binding_module", "collections/netscaler/adc/csvserver_auditsyslogpolicy_binding_module", "collections/netscaler/adc/csvserver_authorizationpolicy_binding_module", "collections/netscaler/adc/csvserver_botpolicy_binding_module", "collections/netscaler/adc/csvserver_cachepolicy_binding_module", "collections/netscaler/adc/csvserver_cmppolicy_binding_module", "collections/netscaler/adc/csvserver_contentinspectionpolicy_binding_module", "collections/netscaler/adc/csvserver_cspolicy_binding_module", "collections/netscaler/adc/csvserver_domain_binding_module", "collections/netscaler/adc/csvserver_feopolicy_binding_module", "collections/netscaler/adc/csvserver_gslbvserver_binding_module", "collections/netscaler/adc/csvserver_lbvserver_binding_module", "collections/netscaler/adc/csvserver_module", "collections/netscaler/adc/csvserver_responderpolicy_binding_module", "collections/netscaler/adc/csvserver_rewritepolicy_binding_module", "collections/netscaler/adc/csvserver_spilloverpolicy_binding_module", "collections/netscaler/adc/csvserver_tmtrafficpolicy_binding_module", "collections/netscaler/adc/csvserver_transformpolicy_binding_module", "collections/netscaler/adc/csvserver_vpnvserver_binding_module", "collections/netscaler/adc/dbdbprofile_module", "collections/netscaler/adc/dbuser_module", "collections/netscaler/adc/dnsaaaarec_module", "collections/netscaler/adc/dnsaction64_module", "collections/netscaler/adc/dnsaction_module", "collections/netscaler/adc/dnsaddrec_module", "collections/netscaler/adc/dnscaarec_module", "collections/netscaler/adc/dnscnamerec_module", "collections/netscaler/adc/dnsglobal_dnspolicy_binding_module", "collections/netscaler/adc/dnskey_module", "collections/netscaler/adc/dnsmxrec_module", "collections/netscaler/adc/dnsnameserver_module", "collections/netscaler/adc/dnsnaptrrec_module", "collections/netscaler/adc/dnsnsrec_module", "collections/netscaler/adc/dnsparameter_module", "collections/netscaler/adc/dnspolicy64_module", "collections/netscaler/adc/dnspolicy_module", "collections/netscaler/adc/dnspolicylabel_dnspolicy_binding_module", "collections/netscaler/adc/dnspolicylabel_module", "collections/netscaler/adc/dnsprofile_module", "collections/netscaler/adc/dnsproxyrecords_module", "collections/netscaler/adc/dnsptrrec_module", "collections/netscaler/adc/dnssoarec_module", "collections/netscaler/adc/dnssrvrec_module", "collections/netscaler/adc/dnssubnetcache_module", "collections/netscaler/adc/dnssuffix_module", "collections/netscaler/adc/dnstxtrec_module", "collections/netscaler/adc/dnsview_module", "collections/netscaler/adc/dnszone_module", "collections/netscaler/adc/endpointinfo_module", "collections/netscaler/adc/extendedmemoryparam_module", "collections/netscaler/adc/feoaction_module", "collections/netscaler/adc/feoglobal_feopolicy_binding_module", "collections/netscaler/adc/feoparameter_module", "collections/netscaler/adc/feopolicy_module", "collections/netscaler/adc/fis_channel_binding_module", "collections/netscaler/adc/fis_interface_binding_module", "collections/netscaler/adc/fis_module", "collections/netscaler/adc/forwardingsession_module", "collections/netscaler/adc/gslbconfig_module", "collections/netscaler/adc/gslbldnsentries_module", "collections/netscaler/adc/gslbldnsentry_module", "collections/netscaler/adc/gslbparameter_module", "collections/netscaler/adc/gslbservice_dnsview_binding_module", "collections/netscaler/adc/gslbservice_lbmonitor_binding_module", "collections/netscaler/adc/gslbservice_module", "collections/netscaler/adc/gslbservicegroup_gslbservicegroupmember_binding_module", "collections/netscaler/adc/gslbservicegroup_lbmonitor_binding_module", "collections/netscaler/adc/gslbservicegroup_module", "collections/netscaler/adc/gslbsite_module", "collections/netscaler/adc/gslbvserver_domain_binding_module", "collections/netscaler/adc/gslbvserver_gslbservice_binding_module", "collections/netscaler/adc/gslbvserver_gslbservicegroup_binding_module", "collections/netscaler/adc/gslbvserver_lbpolicy_binding_module", "collections/netscaler/adc/gslbvserver_module", "collections/netscaler/adc/gslbvserver_spilloverpolicy_binding_module", "collections/netscaler/adc/hafailover_module", "collections/netscaler/adc/hafiles_module", "collections/netscaler/adc/hanode_module", "collections/netscaler/adc/hanode_routemonitor6_binding_module", "collections/netscaler/adc/hanode_routemonitor_binding_module", "collections/netscaler/adc/hasync_module", "collections/netscaler/adc/icaaccessprofile_module", "collections/netscaler/adc/icaaction_module", "collections/netscaler/adc/icaglobal_icapolicy_binding_module", "collections/netscaler/adc/icalatencyprofile_module", "collections/netscaler/adc/icaparameter_module", "collections/netscaler/adc/icapolicy_module", "collections/netscaler/adc/inat_module", "collections/netscaler/adc/inatparam_module", "collections/netscaler/adc/index", "collections/netscaler/adc/install_module", "collections/netscaler/adc/interfacepair_module", "collections/netscaler/adc/ip6tunnel_module", "collections/netscaler/adc/ip6tunnelparam_module", "collections/netscaler/adc/ipsecalgprofile_module", "collections/netscaler/adc/ipsecalgsession_module", "collections/netscaler/adc/ipsecparameter_module", "collections/netscaler/adc/ipsecprofile_module", "collections/netscaler/adc/ipset_module", "collections/netscaler/adc/ipset_nsip6_binding_module", "collections/netscaler/adc/ipset_nsip_binding_module", "collections/netscaler/adc/iptunnel_module", "collections/netscaler/adc/iptunnelparam_module", "collections/netscaler/adc/ipv6_module", "collections/netscaler/adc/l2param_module", "collections/netscaler/adc/l3param_module", "collections/netscaler/adc/l4param_module", "collections/netscaler/adc/lacp_module", "collections/netscaler/adc/lbaction_module", "collections/netscaler/adc/lbglobal_lbpolicy_binding_module", "collections/netscaler/adc/lbgroup_lbvserver_binding_module", "collections/netscaler/adc/lbgroup_module", "collections/netscaler/adc/lbmetrictable_metric_binding_module", "collections/netscaler/adc/lbmetrictable_module", "collections/netscaler/adc/lbmonitor_metric_binding_module", "collections/netscaler/adc/lbmonitor_module", "collections/netscaler/adc/lbmonitor_sslcertkey_binding_module", "collections/netscaler/adc/lbparameter_module", "collections/netscaler/adc/lbpersistentsessions_module", "collections/netscaler/adc/lbpolicy_module", "collections/netscaler/adc/lbpolicylabel_lbpolicy_binding_module", "collections/netscaler/adc/lbpolicylabel_module", "collections/netscaler/adc/lbprofile_module", "collections/netscaler/adc/lbroute6_module", "collections/netscaler/adc/lbroute_module", "collections/netscaler/adc/lbsipparameters_module", "collections/netscaler/adc/lbvserver_analyticsprofile_binding_module", "collections/netscaler/adc/lbvserver_appflowpolicy_binding_module", "collections/netscaler/adc/lbvserver_appfwpolicy_binding_module", "collections/netscaler/adc/lbvserver_appqoepolicy_binding_module", "collections/netscaler/adc/lbvserver_auditnslogpolicy_binding_module", "collections/netscaler/adc/lbvserver_auditsyslogpolicy_binding_module", "collections/netscaler/adc/lbvserver_authorizationpolicy_binding_module", "collections/netscaler/adc/lbvserver_botpolicy_binding_module", "collections/netscaler/adc/lbvserver_cachepolicy_binding_module", "collections/netscaler/adc/lbvserver_cmppolicy_binding_module", "collections/netscaler/adc/lbvserver_contentinspectionpolicy_binding_module", "collections/netscaler/adc/lbvserver_dnspolicy64_binding_module", "collections/netscaler/adc/lbvserver_feopolicy_binding_module", "collections/netscaler/adc/lbvserver_lbpolicy_binding_module", "collections/netscaler/adc/lbvserver_module", "collections/netscaler/adc/lbvserver_responderpolicy_binding_module", "collections/netscaler/adc/lbvserver_rewritepolicy_binding_module", "collections/netscaler/adc/lbvserver_service_binding_module", "collections/netscaler/adc/lbvserver_servicegroup_binding_module", "collections/netscaler/adc/lbvserver_spilloverpolicy_binding_module", "collections/netscaler/adc/lbvserver_tmtrafficpolicy_binding_module", "collections/netscaler/adc/lbvserver_transformpolicy_binding_module", "collections/netscaler/adc/lbvserver_videooptimizationdetectionpolicy_binding_module", "collections/netscaler/adc/lbvserver_videooptimizationpacingpolicy_binding_module", "collections/netscaler/adc/lbwlm_lbvserver_binding_module", "collections/netscaler/adc/lbwlm_module", "collections/netscaler/adc/linkset_channel_binding_module", "collections/netscaler/adc/linkset_interface_binding_module", "collections/netscaler/adc/linkset_module", "collections/netscaler/adc/lldpneighbors_module", "collections/netscaler/adc/lldpparam_module", "collections/netscaler/adc/location_module", "collections/netscaler/adc/locationfile6_module", "collections/netscaler/adc/locationfile_module", "collections/netscaler/adc/locationparameter_module", "collections/netscaler/adc/login_module", "collections/netscaler/adc/logout_module", "collections/netscaler/adc/lsnappsattributes_module", "collections/netscaler/adc/lsnappsprofile_lsnappsattributes_binding_module", "collections/netscaler/adc/lsnappsprofile_module", "collections/netscaler/adc/lsnappsprofile_port_binding_module", "collections/netscaler/adc/lsnclient_module", "collections/netscaler/adc/lsnclient_network6_binding_module", "collections/netscaler/adc/lsnclient_network_binding_module", "collections/netscaler/adc/lsnclient_nsacl6_binding_module", "collections/netscaler/adc/lsnclient_nsacl_binding_module", "collections/netscaler/adc/lsngroup_ipsecalgprofile_binding_module", "collections/netscaler/adc/lsngroup_lsnappsprofile_binding_module", "collections/netscaler/adc/lsngroup_lsnhttphdrlogprofile_binding_module", "collections/netscaler/adc/lsngroup_lsnlogprofile_binding_module", "collections/netscaler/adc/lsngroup_lsnpool_binding_module", "collections/netscaler/adc/lsngroup_lsnrtspalgprofile_binding_module", "collections/netscaler/adc/lsngroup_lsnsipalgprofile_binding_module", "collections/netscaler/adc/lsngroup_lsntransportprofile_binding_module", "collections/netscaler/adc/lsngroup_module", "collections/netscaler/adc/lsngroup_pcpserver_binding_module", "collections/netscaler/adc/lsnhttphdrlogprofile_module", "collections/netscaler/adc/lsnip6profile_module", "collections/netscaler/adc/lsnlogprofile_module", "collections/netscaler/adc/lsnparameter_module", "collections/netscaler/adc/lsnpool_lsnip_binding_module", "collections/netscaler/adc/lsnpool_module", "collections/netscaler/adc/lsnrtspalgprofile_module", "collections/netscaler/adc/lsnrtspalgsession_module", "collections/netscaler/adc/lsnsession_module", "collections/netscaler/adc/lsnsipalgcall_module", "collections/netscaler/adc/lsnsipalgprofile_module", "collections/netscaler/adc/lsnstatic_module", "collections/netscaler/adc/lsntransportprofile_module", "collections/netscaler/adc/mapbmr_bmrv4network_binding_module", "collections/netscaler/adc/mapbmr_module", "collections/netscaler/adc/mapdmr_module", "collections/netscaler/adc/mapdomain_mapbmr_binding_module", "collections/netscaler/adc/mapdomain_module", "collections/netscaler/adc/nat64_module", "collections/netscaler/adc/nat64param_module", "collections/netscaler/adc/nd6_module", "collections/netscaler/adc/nd6ravariables_module", "collections/netscaler/adc/nd6ravariables_onlinkipv6prefix_binding_module", "collections/netscaler/adc/netbridge_iptunnel_binding_module", "collections/netscaler/adc/netbridge_module", "collections/netscaler/adc/netbridge_nsip6_binding_module", "collections/netscaler/adc/netbridge_nsip_binding_module", "collections/netscaler/adc/netbridge_vlan_binding_module", "collections/netscaler/adc/netprofile_module", "collections/netscaler/adc/netprofile_natrule_binding_module", "collections/netscaler/adc/netprofile_srcportset_binding_module", "collections/netscaler/adc/nsacls6_module", "collections/netscaler/adc/nsacls_module", "collections/netscaler/adc/nsappflowcollector_module", "collections/netscaler/adc/nsappflowparam_module", "collections/netscaler/adc/nsaptlicense_module", "collections/netscaler/adc/nsassignment_module", "collections/netscaler/adc/nscapacity_module", "collections/netscaler/adc/nscentralmanagementserver_module", "collections/netscaler/adc/nsconfig_module", "collections/netscaler/adc/nsconsoleloginprompt_module", "collections/netscaler/adc/nscqaparam_module", "collections/netscaler/adc/nsdhcpparams_module", "collections/netscaler/adc/nsdiameter_module", "collections/netscaler/adc/nsencryptionkey_module", "collections/netscaler/adc/nsencryptionparams_module", "collections/netscaler/adc/nsextension_module", "collections/netscaler/adc/nsfeature_module", "collections/netscaler/adc/nshmackey_module", "collections/netscaler/adc/nshostname_module", "collections/netscaler/adc/nshttpparam_module", "collections/netscaler/adc/nshttpprofile_module", "collections/netscaler/adc/nsicapprofile_module", "collections/netscaler/adc/nsip6_module", "collections/netscaler/adc/nsip_module", "collections/netscaler/adc/nslicenseparameters_module", "collections/netscaler/adc/nslicenseproxyserver_module", "collections/netscaler/adc/nslicenseserver_module", "collections/netscaler/adc/nslimitidentifier_module", "collections/netscaler/adc/nslimitselector_module", "collections/netscaler/adc/nslimitsessions_module", "collections/netscaler/adc/nsmigration_module", "collections/netscaler/adc/nsmode_module", "collections/netscaler/adc/nsparam_module", "collections/netscaler/adc/nspartition_bridgegroup_binding_module", "collections/netscaler/adc/nspartition_module", "collections/netscaler/adc/nspartition_vlan_binding_module", "collections/netscaler/adc/nspartition_vxlan_binding_module", "collections/netscaler/adc/nsratecontrol_module", "collections/netscaler/adc/nsrpcnode_module", "collections/netscaler/adc/nsservicefunction_module", "collections/netscaler/adc/nsservicepath_module", "collections/netscaler/adc/nsservicepath_nsservicefunction_binding_module", "collections/netscaler/adc/nssimpleacl6_module", "collections/netscaler/adc/nssimpleacl_module", "collections/netscaler/adc/nsspparams_module", "collections/netscaler/adc/nsstats_module", "collections/netscaler/adc/nssurgeq_module", "collections/netscaler/adc/nstcpbufparam_module", "collections/netscaler/adc/nstcpparam_module", "collections/netscaler/adc/nstcpprofile_module", "collections/netscaler/adc/nstimeout_module", "collections/netscaler/adc/nstimer_autoscalepolicy_binding_module", "collections/netscaler/adc/nstimer_module", "collections/netscaler/adc/nstrace_module", "collections/netscaler/adc/nstrafficdomain_bridgegroup_binding_module", "collections/netscaler/adc/nstrafficdomain_module", "collections/netscaler/adc/nstrafficdomain_vlan_binding_module", "collections/netscaler/adc/nstrafficdomain_vxlan_binding_module", "collections/netscaler/adc/nsvariable_module", "collections/netscaler/adc/nsvpxparam_module", "collections/netscaler/adc/nsweblogparam_module", "collections/netscaler/adc/nsxmlnamespace_module", "collections/netscaler/adc/ntpparam_module", "collections/netscaler/adc/ntpserver_module", "collections/netscaler/adc/onlinkipv6prefix_module", "collections/netscaler/adc/pcpprofile_module", "collections/netscaler/adc/pcpserver_module", "collections/netscaler/adc/ping6_module", "collections/netscaler/adc/ping_module", "collections/netscaler/adc/policydataset_module", "collections/netscaler/adc/policydataset_value_binding_module", "collections/netscaler/adc/policyexpression_module", "collections/netscaler/adc/policyhttpcallout_module", "collections/netscaler/adc/policymap_module", "collections/netscaler/adc/policyparam_module", "collections/netscaler/adc/policypatset_module", "collections/netscaler/adc/policypatset_pattern_binding_module", "collections/netscaler/adc/policypatsetfile_module", "collections/netscaler/adc/policystringmap_module", "collections/netscaler/adc/policystringmap_pattern_binding_module", "collections/netscaler/adc/policyurlset_module", "collections/netscaler/adc/protocolhttpband_module", "collections/netscaler/adc/ptp_module", "collections/netscaler/adc/quicbridgeprofile_module", "collections/netscaler/adc/quicparam_module", "collections/netscaler/adc/quicprofile_module", "collections/netscaler/adc/radiusnode_module", "collections/netscaler/adc/rdpclientprofile_module", "collections/netscaler/adc/rdpconnections_module", "collections/netscaler/adc/rdpserverprofile_module", "collections/netscaler/adc/reboot_module", "collections/netscaler/adc/reportingconfig_module", "collections/netscaler/adc/reputationsettings_module", "collections/netscaler/adc/responderaction_module", "collections/netscaler/adc/responderglobal_responderpolicy_binding_module", "collections/netscaler/adc/responderhtmlpage_module", "collections/netscaler/adc/responderparam_module", "collections/netscaler/adc/responderpolicy_module", "collections/netscaler/adc/responderpolicylabel_module", "collections/netscaler/adc/responderpolicylabel_responderpolicy_binding_module", "collections/netscaler/adc/rewriteaction_module", "collections/netscaler/adc/rewriteglobal_rewritepolicy_binding_module", "collections/netscaler/adc/rewriteparam_module", "collections/netscaler/adc/rewritepolicy_module", "collections/netscaler/adc/rewritepolicylabel_module", "collections/netscaler/adc/rewritepolicylabel_rewritepolicy_binding_module", "collections/netscaler/adc/rnat6_module", "collections/netscaler/adc/rnat6_nsip6_binding_module", "collections/netscaler/adc/rnat_module", "collections/netscaler/adc/rnat_nsip_binding_module", "collections/netscaler/adc/rnat_retainsourceportset_binding_module", "collections/netscaler/adc/rnatglobal_auditsyslogpolicy_binding_module", "collections/netscaler/adc/rnatparam_module", "collections/netscaler/adc/rnatsession_module", "collections/netscaler/adc/route6_module", "collections/netscaler/adc/route_module", "collections/netscaler/adc/routerdynamicrouting_module", "collections/netscaler/adc/rsskeytype_module", "collections/netscaler/adc/server_module", "collections/netscaler/adc/service_lbmonitor_binding_module", "collections/netscaler/adc/service_module", "collections/netscaler/adc/servicegroup_lbmonitor_binding_module", "collections/netscaler/adc/servicegroup_module", "collections/netscaler/adc/servicegroup_servicegroupmember_binding_module", "collections/netscaler/adc/smppparam_module", "collections/netscaler/adc/smppuser_module", "collections/netscaler/adc/snmpalarm_module", "collections/netscaler/adc/snmpcommunity_module", "collections/netscaler/adc/snmpengineid_module", "collections/netscaler/adc/snmpgroup_module", "collections/netscaler/adc/snmpmanager_module", "collections/netscaler/adc/snmpmib_module", "collections/netscaler/adc/snmpoption_module", "collections/netscaler/adc/snmptrap_module", "collections/netscaler/adc/snmptrap_snmpuser_binding_module", "collections/netscaler/adc/snmpuser_module", "collections/netscaler/adc/snmpview_module", "collections/netscaler/adc/spilloveraction_module", "collections/netscaler/adc/spilloverpolicy_module", "collections/netscaler/adc/sslaction_module", "collections/netscaler/adc/sslcacertgroup_module", "collections/netscaler/adc/sslcacertgroup_sslcertkey_binding_module", "collections/netscaler/adc/sslcert_module", "collections/netscaler/adc/sslcertbundle_module", "collections/netscaler/adc/sslcertfile_module", "collections/netscaler/adc/sslcertificatechain_module", "collections/netscaler/adc/sslcertkey_module", "collections/netscaler/adc/sslcertkey_sslocspresponder_binding_module", "collections/netscaler/adc/sslcertkeybundle_module", "collections/netscaler/adc/sslcertreq_module", "collections/netscaler/adc/sslcipher_module", "collections/netscaler/adc/sslcipher_sslciphersuite_binding_module", "collections/netscaler/adc/sslcrl_module", "collections/netscaler/adc/sslcrlfile_module", "collections/netscaler/adc/ssldhfile_module", "collections/netscaler/adc/ssldhparam_module", "collections/netscaler/adc/ssldtlsprofile_module", "collections/netscaler/adc/sslecdsakey_module", "collections/netscaler/adc/sslfips_module", "collections/netscaler/adc/sslfipskey_module", "collections/netscaler/adc/sslfipssimsource_module", "collections/netscaler/adc/sslfipssimtarget_module", "collections/netscaler/adc/sslglobal_sslpolicy_binding_module", "collections/netscaler/adc/sslhsmkey_module", "collections/netscaler/adc/sslkeyfile_module", "collections/netscaler/adc/ssllogprofile_module", "collections/netscaler/adc/sslocspresponder_module", "collections/netscaler/adc/sslparameter_module", "collections/netscaler/adc/sslpkcs12_module", "collections/netscaler/adc/sslpkcs8_module", "collections/netscaler/adc/sslpolicy_module", "collections/netscaler/adc/sslpolicylabel_module", "collections/netscaler/adc/sslpolicylabel_sslpolicy_binding_module", "collections/netscaler/adc/sslprofile_ecccurve_binding_module", "collections/netscaler/adc/sslprofile_module", "collections/netscaler/adc/sslprofile_sslcertkey_binding_module", "collections/netscaler/adc/sslprofile_sslcipher_binding_module", "collections/netscaler/adc/sslprofile_sslciphersuite_binding_module", "collections/netscaler/adc/sslrsakey_module", "collections/netscaler/adc/sslservice_ecccurve_binding_module", "collections/netscaler/adc/sslservice_module", "collections/netscaler/adc/sslservice_sslcertkey_binding_module", "collections/netscaler/adc/sslservice_sslcipher_binding_module", "collections/netscaler/adc/sslservice_sslciphersuite_binding_module", "collections/netscaler/adc/sslservice_sslpolicy_binding_module", "collections/netscaler/adc/sslservicegroup_ecccurve_binding_module", "collections/netscaler/adc/sslservicegroup_module", "collections/netscaler/adc/sslservicegroup_sslcertkey_binding_module", "collections/netscaler/adc/sslservicegroup_sslcipher_binding_module", "collections/netscaler/adc/sslservicegroup_sslciphersuite_binding_module", "collections/netscaler/adc/sslvserver_ecccurve_binding_module", "collections/netscaler/adc/sslvserver_module", "collections/netscaler/adc/sslvserver_sslcertkey_binding_module", "collections/netscaler/adc/sslvserver_sslcertkeybundle_binding_module", "collections/netscaler/adc/sslvserver_sslcipher_binding_module", "collections/netscaler/adc/sslvserver_sslciphersuite_binding_module", "collections/netscaler/adc/sslvserver_sslpolicy_binding_module", "collections/netscaler/adc/sslwrapkey_module", "collections/netscaler/adc/streamidentifier_module", "collections/netscaler/adc/streamselector_module", "collections/netscaler/adc/streamsession_module", "collections/netscaler/adc/subscribergxinterface_module", "collections/netscaler/adc/subscriberparam_module", "collections/netscaler/adc/subscriberprofile_module", "collections/netscaler/adc/subscriberradiusinterface_module", "collections/netscaler/adc/subscribersessions_module", "collections/netscaler/adc/systemadmuserinfo_module", "collections/netscaler/adc/systembackup_module", "collections/netscaler/adc/systemcmdpolicy_module", "collections/netscaler/adc/systemcollectionparam_module", "collections/netscaler/adc/systemcpuparam_module", "collections/netscaler/adc/systementitydata_module", "collections/netscaler/adc/systemextramgmtcpu_module", "collections/netscaler/adc/systemfile_module", "collections/netscaler/adc/systemglobal_auditnslogpolicy_binding_module", "collections/netscaler/adc/systemglobal_auditsyslogpolicy_binding_module", "collections/netscaler/adc/systemglobal_authenticationldappolicy_binding_module", "collections/netscaler/adc/systemglobal_authenticationlocalpolicy_binding_module", "collections/netscaler/adc/systemglobal_authenticationpolicy_binding_module", "collections/netscaler/adc/systemglobal_authenticationradiuspolicy_binding_module", "collections/netscaler/adc/systemglobal_authenticationtacacspolicy_binding_module", "collections/netscaler/adc/systemgroup_module", "collections/netscaler/adc/systemgroup_nspartition_binding_module", "collections/netscaler/adc/systemgroup_systemcmdpolicy_binding_module", "collections/netscaler/adc/systemgroup_systemuser_binding_module", "collections/netscaler/adc/systemhwerror_module", "collections/netscaler/adc/systemkek_module", "collections/netscaler/adc/systemparameter_module", "collections/netscaler/adc/systemrestorepoint_module", "collections/netscaler/adc/systemsession_module", "collections/netscaler/adc/systemsshkey_module", "collections/netscaler/adc/systemuser_module", "collections/netscaler/adc/systemuser_nspartition_binding_module", "collections/netscaler/adc/systemuser_systemcmdpolicy_binding_module", "collections/netscaler/adc/tmformssoaction_module", "collections/netscaler/adc/tmglobal_auditnslogpolicy_binding_module", "collections/netscaler/adc/tmglobal_auditsyslogpolicy_binding_module", "collections/netscaler/adc/tmglobal_tmsessionpolicy_binding_module", "collections/netscaler/adc/tmglobal_tmtrafficpolicy_binding_module", "collections/netscaler/adc/tmsamlssoprofile_module", "collections/netscaler/adc/tmsessionaction_module", "collections/netscaler/adc/tmsessionparameter_module", "collections/netscaler/adc/tmsessionpolicy_module", "collections/netscaler/adc/tmtrafficaction_module", "collections/netscaler/adc/tmtrafficpolicy_module", "collections/netscaler/adc/traceroute6_module", "collections/netscaler/adc/traceroute_module", "collections/netscaler/adc/transformaction_module", "collections/netscaler/adc/transformglobal_transformpolicy_binding_module", "collections/netscaler/adc/transformpolicy_module", "collections/netscaler/adc/transformpolicylabel_module", "collections/netscaler/adc/transformpolicylabel_transformpolicy_binding_module", "collections/netscaler/adc/transformprofile_module", "collections/netscaler/adc/tunnelglobal_tunneltrafficpolicy_binding_module", "collections/netscaler/adc/tunneltrafficpolicy_module", "collections/netscaler/adc/ulfdserver_module", "collections/netscaler/adc/urlfilteringcategorization_module", "collections/netscaler/adc/urlfilteringparameter_module", "collections/netscaler/adc/userprotocol_module", "collections/netscaler/adc/uservserver_module", "collections/netscaler/adc/videooptimizationdetectionaction_module", "collections/netscaler/adc/videooptimizationdetectionpolicy_module", "collections/netscaler/adc/videooptimizationdetectionpolicylabel_module", "collections/netscaler/adc/videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_binding_module", "collections/netscaler/adc/videooptimizationglobaldetection_videooptimizationdetectionpolicy_binding_module", "collections/netscaler/adc/videooptimizationglobalpacing_videooptimizationpacingpolicy_binding_module", "collections/netscaler/adc/videooptimizationpacingaction_module", "collections/netscaler/adc/videooptimizationpacingpolicy_module", "collections/netscaler/adc/videooptimizationpacingpolicylabel_module", "collections/netscaler/adc/videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_binding_module", "collections/netscaler/adc/videooptimizationparameter_module", "collections/netscaler/adc/vlan_channel_binding_module", "collections/netscaler/adc/vlan_interface_binding_module", "collections/netscaler/adc/vlan_linkset_binding_module", "collections/netscaler/adc/vlan_module", "collections/netscaler/adc/vlan_nsip6_binding_module", "collections/netscaler/adc/vlan_nsip_binding_module", "collections/netscaler/adc/vpnalwaysonprofile_module", "collections/netscaler/adc/vpnclientlessaccesspolicy_module", "collections/netscaler/adc/vpnclientlessaccessprofile_module", "collections/netscaler/adc/vpnepaprofile_module", "collections/netscaler/adc/vpneula_module", "collections/netscaler/adc/vpnformssoaction_module", "collections/netscaler/adc/vpnglobal_appcontroller_binding_module", "collections/netscaler/adc/vpnglobal_auditnslogpolicy_binding_module", "collections/netscaler/adc/vpnglobal_auditsyslogpolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationcertpolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationldappolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationlocalpolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationnegotiatepolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationpolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationradiuspolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationsamlpolicy_binding_module", "collections/netscaler/adc/vpnglobal_authenticationtacacspolicy_binding_module", "collections/netscaler/adc/vpnglobal_domain_binding_module", "collections/netscaler/adc/vpnglobal_intranetip6_binding_module", "collections/netscaler/adc/vpnglobal_intranetip_binding_module", "collections/netscaler/adc/vpnglobal_sharefileserver_binding_module", "collections/netscaler/adc/vpnglobal_sslcertkey_binding_module", "collections/netscaler/adc/vpnglobal_staserver_binding_module", "collections/netscaler/adc/vpnglobal_vpnclientlessaccesspolicy_binding_module", "collections/netscaler/adc/vpnglobal_vpneula_binding_module", "collections/netscaler/adc/vpnglobal_vpnintranetapplication_binding_module", "collections/netscaler/adc/vpnglobal_vpnnexthopserver_binding_module", "collections/netscaler/adc/vpnglobal_vpnportaltheme_binding_module", "collections/netscaler/adc/vpnglobal_vpnsessionpolicy_binding_module", "collections/netscaler/adc/vpnglobal_vpntrafficpolicy_binding_module", "collections/netscaler/adc/vpnglobal_vpnurl_binding_module", "collections/netscaler/adc/vpnglobal_vpnurlpolicy_binding_module", "collections/netscaler/adc/vpnicaconnection_module", "collections/netscaler/adc/vpnintranetapplication_module", "collections/netscaler/adc/vpnnexthopserver_module", "collections/netscaler/adc/vpnparameter_module", "collections/netscaler/adc/vpnpcoipconnection_module", "collections/netscaler/adc/vpnpcoipprofile_module", "collections/netscaler/adc/vpnpcoipvserverprofile_module", "collections/netscaler/adc/vpnportaltheme_module", "collections/netscaler/adc/vpnsamlssoprofile_module", "collections/netscaler/adc/vpnsessionaction_module", "collections/netscaler/adc/vpnsessionpolicy_module", "collections/netscaler/adc/vpntrafficaction_module", "collections/netscaler/adc/vpntrafficpolicy_module", "collections/netscaler/adc/vpnurl_module", "collections/netscaler/adc/vpnurlaction_module", "collections/netscaler/adc/vpnurlpolicy_module", "collections/netscaler/adc/vpnvserver_aaapreauthenticationpolicy_binding_module", "collections/netscaler/adc/vpnvserver_analyticsprofile_binding_module", "collections/netscaler/adc/vpnvserver_appcontroller_binding_module", "collections/netscaler/adc/vpnvserver_appflowpolicy_binding_module", "collections/netscaler/adc/vpnvserver_auditnslogpolicy_binding_module", "collections/netscaler/adc/vpnvserver_auditsyslogpolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationcertpolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationdfapolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationldappolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationlocalpolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationloginschemapolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationnegotiatepolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationoauthidppolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationpolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationradiuspolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationsamlidppolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationsamlpolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationtacacspolicy_binding_module", "collections/netscaler/adc/vpnvserver_authenticationwebauthpolicy_binding_module", "collections/netscaler/adc/vpnvserver_cachepolicy_binding_module", "collections/netscaler/adc/vpnvserver_cspolicy_binding_module", "collections/netscaler/adc/vpnvserver_feopolicy_binding_module", "collections/netscaler/adc/vpnvserver_icapolicy_binding_module", "collections/netscaler/adc/vpnvserver_intranetip6_binding_module", "collections/netscaler/adc/vpnvserver_intranetip_binding_module", "collections/netscaler/adc/vpnvserver_module", "collections/netscaler/adc/vpnvserver_responderpolicy_binding_module", "collections/netscaler/adc/vpnvserver_rewritepolicy_binding_module", "collections/netscaler/adc/vpnvserver_sharefileserver_binding_module", "collections/netscaler/adc/vpnvserver_staserver_binding_module", "collections/netscaler/adc/vpnvserver_vpnclientlessaccesspolicy_binding_module", "collections/netscaler/adc/vpnvserver_vpnepaprofile_binding_module", "collections/netscaler/adc/vpnvserver_vpneula_binding_module", "collections/netscaler/adc/vpnvserver_vpnintranetapplication_binding_module", "collections/netscaler/adc/vpnvserver_vpnnexthopserver_binding_module", "collections/netscaler/adc/vpnvserver_vpnportaltheme_binding_module", "collections/netscaler/adc/vpnvserver_vpnsessionpolicy_binding_module", "collections/netscaler/adc/vpnvserver_vpntrafficpolicy_binding_module", "collections/netscaler/adc/vpnvserver_vpnurl_binding_module", "collections/netscaler/adc/vpnvserver_vpnurlpolicy_binding_module", "collections/netscaler/adc/vrid6_channel_binding_module", "collections/netscaler/adc/vrid6_interface_binding_module", "collections/netscaler/adc/vrid6_module", "collections/netscaler/adc/vrid6_trackinterface_binding_module", "collections/netscaler/adc/vrid_channel_binding_module", "collections/netscaler/adc/vrid_interface_binding_module", "collections/netscaler/adc/vrid_module", "collections/netscaler/adc/vrid_trackinterface_binding_module", "collections/netscaler/adc/vridparam_module", "collections/netscaler/adc/vserver_module", "collections/netscaler/adc/vxlan_module", "collections/netscaler/adc/vxlan_nsip6_binding_module", "collections/netscaler/adc/vxlan_nsip_binding_module", "collections/netscaler/adc/vxlan_srcip_binding_module", "collections/netscaler/adc/vxlanvlanmap_module", "collections/netscaler/adc/vxlanvlanmap_vxlan_binding_module", "collections/netscaler/index", "index"], "filenames": ["collections/environment_variables.rst", "collections/index.rst", "collections/index_module.rst", "collections/netscaler/adc/aaacertparams_module.rst", "collections/netscaler/adc/aaaglobal_aaapreauthenticationpolicy_binding_module.rst", "collections/netscaler/adc/aaaglobal_authenticationnegotiateaction_binding_module.rst", "collections/netscaler/adc/aaagroup_aaauser_binding_module.rst", "collections/netscaler/adc/aaagroup_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/aaagroup_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/aaagroup_authorizationpolicy_binding_module.rst", "collections/netscaler/adc/aaagroup_intranetip6_binding_module.rst", "collections/netscaler/adc/aaagroup_intranetip_binding_module.rst", "collections/netscaler/adc/aaagroup_module.rst", "collections/netscaler/adc/aaagroup_tmsessionpolicy_binding_module.rst", "collections/netscaler/adc/aaagroup_vpnintranetapplication_binding_module.rst", "collections/netscaler/adc/aaagroup_vpnsessionpolicy_binding_module.rst", "collections/netscaler/adc/aaagroup_vpntrafficpolicy_binding_module.rst", "collections/netscaler/adc/aaagroup_vpnurl_binding_module.rst", "collections/netscaler/adc/aaagroup_vpnurlpolicy_binding_module.rst", "collections/netscaler/adc/aaakcdaccount_module.rst", "collections/netscaler/adc/aaaldapparams_module.rst", "collections/netscaler/adc/aaaotpparameter_module.rst", "collections/netscaler/adc/aaaparameter_module.rst", "collections/netscaler/adc/aaapreauthenticationaction_module.rst", "collections/netscaler/adc/aaapreauthenticationparameter_module.rst", "collections/netscaler/adc/aaapreauthenticationpolicy_module.rst", "collections/netscaler/adc/aaaradiusparams_module.rst", "collections/netscaler/adc/aaasession_module.rst", "collections/netscaler/adc/aaassoprofile_module.rst", "collections/netscaler/adc/aaatacacsparams_module.rst", "collections/netscaler/adc/aaauser_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/aaauser_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/aaauser_authorizationpolicy_binding_module.rst", "collections/netscaler/adc/aaauser_intranetip6_binding_module.rst", "collections/netscaler/adc/aaauser_intranetip_binding_module.rst", "collections/netscaler/adc/aaauser_module.rst", "collections/netscaler/adc/aaauser_tmsessionpolicy_binding_module.rst", "collections/netscaler/adc/aaauser_vpnintranetapplication_binding_module.rst", "collections/netscaler/adc/aaauser_vpnsessionpolicy_binding_module.rst", "collections/netscaler/adc/aaauser_vpntrafficpolicy_binding_module.rst", "collections/netscaler/adc/aaauser_vpnurl_binding_module.rst", "collections/netscaler/adc/aaauser_vpnurlpolicy_binding_module.rst", "collections/netscaler/adc/admparameter_module.rst", "collections/netscaler/adc/analyticsglobal_analyticsprofile_binding_module.rst", "collections/netscaler/adc/analyticsprofile_module.rst", "collections/netscaler/adc/apispec_module.rst", "collections/netscaler/adc/apispecfile_module.rst", "collections/netscaler/adc/appalgparam_module.rst", "collections/netscaler/adc/appflowaction_analyticsprofile_binding_module.rst", "collections/netscaler/adc/appflowaction_module.rst", "collections/netscaler/adc/appflowcollector_module.rst", "collections/netscaler/adc/appflowglobal_appflowpolicy_binding_module.rst", "collections/netscaler/adc/appflowparam_module.rst", "collections/netscaler/adc/appflowpolicy_module.rst", "collections/netscaler/adc/appflowpolicylabel_appflowpolicy_binding_module.rst", "collections/netscaler/adc/appflowpolicylabel_module.rst", "collections/netscaler/adc/appfwarchive_module.rst", "collections/netscaler/adc/appfwconfidfield_module.rst", "collections/netscaler/adc/appfwcustomsettings_module.rst", "collections/netscaler/adc/appfwfieldtype_module.rst", "collections/netscaler/adc/appfwglobal_appfwpolicy_binding_module.rst", "collections/netscaler/adc/appfwglobal_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/appfwglobal_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/appfwgrpccontenttype_module.rst", "collections/netscaler/adc/appfwgrpcwebjsoncontenttype_module.rst", "collections/netscaler/adc/appfwgrpcwebtextcontenttype_module.rst", "collections/netscaler/adc/appfwhtmlerrorpage_module.rst", "collections/netscaler/adc/appfwjsoncontenttype_module.rst", "collections/netscaler/adc/appfwjsonerrorpage_module.rst", "collections/netscaler/adc/appfwlearningdata_module.rst", "collections/netscaler/adc/appfwlearningsettings_module.rst", "collections/netscaler/adc/appfwmultipartformcontenttype_module.rst", "collections/netscaler/adc/appfwpolicy_module.rst", "collections/netscaler/adc/appfwpolicylabel_appfwpolicy_binding_module.rst", "collections/netscaler/adc/appfwpolicylabel_module.rst", "collections/netscaler/adc/appfwprofile_appfwconfidfield_binding_module.rst", "collections/netscaler/adc/appfwprofile_blockkeyword_binding_module.rst", "collections/netscaler/adc/appfwprofile_bypasslist_binding_module.rst", "collections/netscaler/adc/appfwprofile_cmdinjection_binding_module.rst", "collections/netscaler/adc/appfwprofile_contenttype_binding_module.rst", "collections/netscaler/adc/appfwprofile_cookieconsistency_binding_module.rst", "collections/netscaler/adc/appfwprofile_creditcardnumber_binding_module.rst", "collections/netscaler/adc/appfwprofile_crosssitescripting_binding_module.rst", "collections/netscaler/adc/appfwprofile_csrftag_binding_module.rst", "collections/netscaler/adc/appfwprofile_denylist_binding_module.rst", "collections/netscaler/adc/appfwprofile_denyurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_excluderescontenttype_binding_module.rst", "collections/netscaler/adc/appfwprofile_fakeaccount_binding_module.rst", "collections/netscaler/adc/appfwprofile_fieldconsistency_binding_module.rst", "collections/netscaler/adc/appfwprofile_fieldformat_binding_module.rst", "collections/netscaler/adc/appfwprofile_fileuploadtype_binding_module.rst", "collections/netscaler/adc/appfwprofile_jsonblockkeyword_binding_module.rst", "collections/netscaler/adc/appfwprofile_jsoncmdurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_jsondosurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_jsonsqlurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_jsonxssurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_logexpression_binding_module.rst", "collections/netscaler/adc/appfwprofile_module.rst", "collections/netscaler/adc/appfwprofile_safeobject_binding_module.rst", "collections/netscaler/adc/appfwprofile_sqlinjection_binding_module.rst", "collections/netscaler/adc/appfwprofile_starturl_binding_module.rst", "collections/netscaler/adc/appfwprofile_trustedlearningclients_binding_module.rst", "collections/netscaler/adc/appfwprofile_xmlattachmenturl_binding_module.rst", "collections/netscaler/adc/appfwprofile_xmldosurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_xmlsqlinjection_binding_module.rst", "collections/netscaler/adc/appfwprofile_xmlvalidationurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_xmlwsiurl_binding_module.rst", "collections/netscaler/adc/appfwprofile_xmlxss_binding_module.rst", "collections/netscaler/adc/appfwprotofile_module.rst", "collections/netscaler/adc/appfwsettings_module.rst", "collections/netscaler/adc/appfwsignatures_module.rst", "collections/netscaler/adc/appfwurlencodedformcontenttype_module.rst", "collections/netscaler/adc/appfwwsdl_module.rst", "collections/netscaler/adc/appfwxmlcontenttype_module.rst", "collections/netscaler/adc/appfwxmlerrorpage_module.rst", "collections/netscaler/adc/appfwxmlschema_module.rst", "collections/netscaler/adc/application_module.rst", "collections/netscaler/adc/appqoeaction_module.rst", "collections/netscaler/adc/appqoecustomresp_module.rst", "collections/netscaler/adc/appqoeparameter_module.rst", "collections/netscaler/adc/appqoepolicy_module.rst", "collections/netscaler/adc/arp_module.rst", "collections/netscaler/adc/arpparam_module.rst", "collections/netscaler/adc/auditmessageaction_module.rst", "collections/netscaler/adc/auditnslogaction_module.rst", "collections/netscaler/adc/auditnslogglobal_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/auditnslogparams_module.rst", "collections/netscaler/adc/auditnslogpolicy_module.rst", "collections/netscaler/adc/auditsyslogaction_module.rst", "collections/netscaler/adc/auditsyslogglobal_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/auditsyslogparams_module.rst", "collections/netscaler/adc/auditsyslogpolicy_module.rst", "collections/netscaler/adc/authenticationadfsproxyprofile_module.rst", "collections/netscaler/adc/authenticationauthnprofile_module.rst", "collections/netscaler/adc/authenticationazurekeyvault_module.rst", "collections/netscaler/adc/authenticationcaptchaaction_module.rst", "collections/netscaler/adc/authenticationcertaction_module.rst", "collections/netscaler/adc/authenticationcertpolicy_module.rst", "collections/netscaler/adc/authenticationcitrixauthaction_module.rst", "collections/netscaler/adc/authenticationdfaaction_module.rst", "collections/netscaler/adc/authenticationdfapolicy_module.rst", "collections/netscaler/adc/authenticationemailaction_module.rst", "collections/netscaler/adc/authenticationepaaction_module.rst", "collections/netscaler/adc/authenticationldapaction_module.rst", "collections/netscaler/adc/authenticationldappolicy_module.rst", "collections/netscaler/adc/authenticationlocalpolicy_module.rst", "collections/netscaler/adc/authenticationloginschema_module.rst", "collections/netscaler/adc/authenticationloginschemapolicy_module.rst", "collections/netscaler/adc/authenticationnegotiateaction_module.rst", "collections/netscaler/adc/authenticationnegotiatepolicy_module.rst", "collections/netscaler/adc/authenticationnoauthaction_module.rst", "collections/netscaler/adc/authenticationoauthaction_module.rst", "collections/netscaler/adc/authenticationoauthidppolicy_module.rst", "collections/netscaler/adc/authenticationoauthidpprofile_module.rst", "collections/netscaler/adc/authenticationpolicy_module.rst", "collections/netscaler/adc/authenticationpolicylabel_authenticationpolicy_binding_module.rst", "collections/netscaler/adc/authenticationpolicylabel_module.rst", "collections/netscaler/adc/authenticationpushservice_module.rst", "collections/netscaler/adc/authenticationradiusaction_module.rst", "collections/netscaler/adc/authenticationradiuspolicy_module.rst", "collections/netscaler/adc/authenticationsamlaction_module.rst", "collections/netscaler/adc/authenticationsamlidppolicy_module.rst", "collections/netscaler/adc/authenticationsamlidpprofile_module.rst", "collections/netscaler/adc/authenticationsamlpolicy_module.rst", "collections/netscaler/adc/authenticationsmartaccesspolicy_module.rst", "collections/netscaler/adc/authenticationsmartaccessprofile_module.rst", "collections/netscaler/adc/authenticationstorefrontauthaction_module.rst", "collections/netscaler/adc/authenticationtacacsaction_module.rst", "collections/netscaler/adc/authenticationtacacspolicy_module.rst", "collections/netscaler/adc/authenticationvserver_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationcertpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationldappolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationlocalpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationloginschemapolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationnegotiatepolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationoauthidppolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationradiuspolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationsamlidppolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationsamlpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationsmartaccesspolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationtacacspolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_authenticationwebauthpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_cachepolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_cspolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_module.rst", "collections/netscaler/adc/authenticationvserver_responderpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_rewritepolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_tmsessionpolicy_binding_module.rst", "collections/netscaler/adc/authenticationvserver_vpnportaltheme_binding_module.rst", "collections/netscaler/adc/authenticationwebauthaction_module.rst", "collections/netscaler/adc/authenticationwebauthpolicy_module.rst", "collections/netscaler/adc/authorizationpolicy_module.rst", "collections/netscaler/adc/authorizationpolicylabel_authorizationpolicy_binding_module.rst", "collections/netscaler/adc/authorizationpolicylabel_module.rst", "collections/netscaler/adc/autoscaleaction_module.rst", "collections/netscaler/adc/autoscalepolicy_module.rst", "collections/netscaler/adc/autoscaleprofile_module.rst", "collections/netscaler/adc/azureapplication_module.rst", "collections/netscaler/adc/azurekeyvault_module.rst", "collections/netscaler/adc/botglobal_botpolicy_binding_module.rst", "collections/netscaler/adc/botpolicy_module.rst", "collections/netscaler/adc/botpolicylabel_botpolicy_binding_module.rst", "collections/netscaler/adc/botpolicylabel_module.rst", "collections/netscaler/adc/botprofile_blacklist_binding_module.rst", "collections/netscaler/adc/botprofile_captcha_binding_module.rst", "collections/netscaler/adc/botprofile_ipreputation_binding_module.rst", "collections/netscaler/adc/botprofile_kmdetectionexpr_binding_module.rst", "collections/netscaler/adc/botprofile_logexpression_binding_module.rst", "collections/netscaler/adc/botprofile_module.rst", "collections/netscaler/adc/botprofile_ratelimit_binding_module.rst", "collections/netscaler/adc/botprofile_tps_binding_module.rst", "collections/netscaler/adc/botprofile_trapinsertionurl_binding_module.rst", "collections/netscaler/adc/botprofile_whitelist_binding_module.rst", "collections/netscaler/adc/botsettings_module.rst", "collections/netscaler/adc/botsignature_module.rst", "collections/netscaler/adc/bridgegroup_module.rst", "collections/netscaler/adc/bridgegroup_nsip6_binding_module.rst", "collections/netscaler/adc/bridgegroup_nsip_binding_module.rst", "collections/netscaler/adc/bridgegroup_vlan_binding_module.rst", "collections/netscaler/adc/bridgetable_module.rst", "collections/netscaler/adc/cachecontentgroup_module.rst", "collections/netscaler/adc/cacheforwardproxy_module.rst", "collections/netscaler/adc/cacheglobal_cachepolicy_binding_module.rst", "collections/netscaler/adc/cacheobject_module.rst", "collections/netscaler/adc/cacheparameter_module.rst", "collections/netscaler/adc/cachepolicy_module.rst", "collections/netscaler/adc/cachepolicylabel_cachepolicy_binding_module.rst", "collections/netscaler/adc/cachepolicylabel_module.rst", "collections/netscaler/adc/cacheselector_module.rst", "collections/netscaler/adc/callhome_module.rst", "collections/netscaler/adc/change_password_module.rst", "collections/netscaler/adc/channel_interface_binding_module.rst", "collections/netscaler/adc/channel_module.rst", "collections/netscaler/adc/cloudallowedngsticketprofile_module.rst", "collections/netscaler/adc/cloudawsparam_module.rst", "collections/netscaler/adc/cloudcredential_module.rst", "collections/netscaler/adc/cloudngsparameter_module.rst", "collections/netscaler/adc/cloudparameter_module.rst", "collections/netscaler/adc/cloudparaminternal_module.rst", "collections/netscaler/adc/cloudprofile_module.rst", "collections/netscaler/adc/cloudtunnelparameter_module.rst", "collections/netscaler/adc/cloudtunnelvserver_module.rst", "collections/netscaler/adc/cluster_module.rst", "collections/netscaler/adc/clusterfiles_module.rst", "collections/netscaler/adc/clusterinstance_module.rst", "collections/netscaler/adc/clusternode_module.rst", "collections/netscaler/adc/clusternode_routemonitor_binding_module.rst", "collections/netscaler/adc/clusternodegroup_authenticationvserver_binding_module.rst", "collections/netscaler/adc/clusternodegroup_clusternode_binding_module.rst", "collections/netscaler/adc/clusternodegroup_crvserver_binding_module.rst", "collections/netscaler/adc/clusternodegroup_csvserver_binding_module.rst", "collections/netscaler/adc/clusternodegroup_gslbsite_binding_module.rst", "collections/netscaler/adc/clusternodegroup_gslbvserver_binding_module.rst", "collections/netscaler/adc/clusternodegroup_lbvserver_binding_module.rst", "collections/netscaler/adc/clusternodegroup_module.rst", "collections/netscaler/adc/clusternodegroup_nslimitidentifier_binding_module.rst", "collections/netscaler/adc/clusternodegroup_service_binding_module.rst", "collections/netscaler/adc/clusternodegroup_streamidentifier_binding_module.rst", "collections/netscaler/adc/clusternodegroup_vpnvserver_binding_module.rst", "collections/netscaler/adc/clusterpropstatus_module.rst", "collections/netscaler/adc/cmpaction_module.rst", "collections/netscaler/adc/cmpglobal_cmppolicy_binding_module.rst", "collections/netscaler/adc/cmpparameter_module.rst", "collections/netscaler/adc/cmppolicy_module.rst", "collections/netscaler/adc/cmppolicylabel_cmppolicy_binding_module.rst", "collections/netscaler/adc/cmppolicylabel_module.rst", "collections/netscaler/adc/contentinspectionaction_module.rst", "collections/netscaler/adc/contentinspectioncallout_module.rst", "collections/netscaler/adc/contentinspectionglobal_contentinspectionpolicy_binding_module.rst", "collections/netscaler/adc/contentinspectionparameter_module.rst", "collections/netscaler/adc/contentinspectionpolicy_module.rst", "collections/netscaler/adc/contentinspectionpolicylabel_contentinspectionpolicy_binding_module.rst", "collections/netscaler/adc/contentinspectionpolicylabel_module.rst", "collections/netscaler/adc/contentinspectionprofile_module.rst", "collections/netscaler/adc/crpolicy_module.rst", "collections/netscaler/adc/crvserver_analyticsprofile_binding_module.rst", "collections/netscaler/adc/crvserver_appflowpolicy_binding_module.rst", "collections/netscaler/adc/crvserver_appfwpolicy_binding_module.rst", "collections/netscaler/adc/crvserver_appqoepolicy_binding_module.rst", "collections/netscaler/adc/crvserver_cachepolicy_binding_module.rst", "collections/netscaler/adc/crvserver_cmppolicy_binding_module.rst", "collections/netscaler/adc/crvserver_crpolicy_binding_module.rst", "collections/netscaler/adc/crvserver_cspolicy_binding_module.rst", "collections/netscaler/adc/crvserver_feopolicy_binding_module.rst", "collections/netscaler/adc/crvserver_icapolicy_binding_module.rst", "collections/netscaler/adc/crvserver_lbvserver_binding_module.rst", "collections/netscaler/adc/crvserver_module.rst", "collections/netscaler/adc/crvserver_policymap_binding_module.rst", "collections/netscaler/adc/crvserver_responderpolicy_binding_module.rst", "collections/netscaler/adc/crvserver_rewritepolicy_binding_module.rst", "collections/netscaler/adc/crvserver_spilloverpolicy_binding_module.rst", "collections/netscaler/adc/csaction_module.rst", "collections/netscaler/adc/csparameter_module.rst", "collections/netscaler/adc/cspolicy_module.rst", "collections/netscaler/adc/cspolicylabel_cspolicy_binding_module.rst", "collections/netscaler/adc/cspolicylabel_module.rst", "collections/netscaler/adc/csvserver_analyticsprofile_binding_module.rst", "collections/netscaler/adc/csvserver_appflowpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_appfwpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_appqoepolicy_binding_module.rst", "collections/netscaler/adc/csvserver_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_authorizationpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_botpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_cachepolicy_binding_module.rst", "collections/netscaler/adc/csvserver_cmppolicy_binding_module.rst", "collections/netscaler/adc/csvserver_contentinspectionpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_cspolicy_binding_module.rst", "collections/netscaler/adc/csvserver_domain_binding_module.rst", "collections/netscaler/adc/csvserver_feopolicy_binding_module.rst", "collections/netscaler/adc/csvserver_gslbvserver_binding_module.rst", "collections/netscaler/adc/csvserver_lbvserver_binding_module.rst", "collections/netscaler/adc/csvserver_module.rst", "collections/netscaler/adc/csvserver_responderpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_rewritepolicy_binding_module.rst", "collections/netscaler/adc/csvserver_spilloverpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_tmtrafficpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_transformpolicy_binding_module.rst", "collections/netscaler/adc/csvserver_vpnvserver_binding_module.rst", "collections/netscaler/adc/dbdbprofile_module.rst", "collections/netscaler/adc/dbuser_module.rst", "collections/netscaler/adc/dnsaaaarec_module.rst", "collections/netscaler/adc/dnsaction64_module.rst", "collections/netscaler/adc/dnsaction_module.rst", "collections/netscaler/adc/dnsaddrec_module.rst", "collections/netscaler/adc/dnscaarec_module.rst", "collections/netscaler/adc/dnscnamerec_module.rst", "collections/netscaler/adc/dnsglobal_dnspolicy_binding_module.rst", "collections/netscaler/adc/dnskey_module.rst", "collections/netscaler/adc/dnsmxrec_module.rst", "collections/netscaler/adc/dnsnameserver_module.rst", "collections/netscaler/adc/dnsnaptrrec_module.rst", "collections/netscaler/adc/dnsnsrec_module.rst", "collections/netscaler/adc/dnsparameter_module.rst", "collections/netscaler/adc/dnspolicy64_module.rst", "collections/netscaler/adc/dnspolicy_module.rst", "collections/netscaler/adc/dnspolicylabel_dnspolicy_binding_module.rst", "collections/netscaler/adc/dnspolicylabel_module.rst", "collections/netscaler/adc/dnsprofile_module.rst", "collections/netscaler/adc/dnsproxyrecords_module.rst", "collections/netscaler/adc/dnsptrrec_module.rst", "collections/netscaler/adc/dnssoarec_module.rst", "collections/netscaler/adc/dnssrvrec_module.rst", "collections/netscaler/adc/dnssubnetcache_module.rst", "collections/netscaler/adc/dnssuffix_module.rst", "collections/netscaler/adc/dnstxtrec_module.rst", "collections/netscaler/adc/dnsview_module.rst", "collections/netscaler/adc/dnszone_module.rst", "collections/netscaler/adc/endpointinfo_module.rst", "collections/netscaler/adc/extendedmemoryparam_module.rst", "collections/netscaler/adc/feoaction_module.rst", "collections/netscaler/adc/feoglobal_feopolicy_binding_module.rst", "collections/netscaler/adc/feoparameter_module.rst", "collections/netscaler/adc/feopolicy_module.rst", "collections/netscaler/adc/fis_channel_binding_module.rst", "collections/netscaler/adc/fis_interface_binding_module.rst", "collections/netscaler/adc/fis_module.rst", "collections/netscaler/adc/forwardingsession_module.rst", "collections/netscaler/adc/gslbconfig_module.rst", "collections/netscaler/adc/gslbldnsentries_module.rst", "collections/netscaler/adc/gslbldnsentry_module.rst", "collections/netscaler/adc/gslbparameter_module.rst", "collections/netscaler/adc/gslbservice_dnsview_binding_module.rst", "collections/netscaler/adc/gslbservice_lbmonitor_binding_module.rst", "collections/netscaler/adc/gslbservice_module.rst", "collections/netscaler/adc/gslbservicegroup_gslbservicegroupmember_binding_module.rst", "collections/netscaler/adc/gslbservicegroup_lbmonitor_binding_module.rst", "collections/netscaler/adc/gslbservicegroup_module.rst", "collections/netscaler/adc/gslbsite_module.rst", "collections/netscaler/adc/gslbvserver_domain_binding_module.rst", "collections/netscaler/adc/gslbvserver_gslbservice_binding_module.rst", "collections/netscaler/adc/gslbvserver_gslbservicegroup_binding_module.rst", "collections/netscaler/adc/gslbvserver_lbpolicy_binding_module.rst", "collections/netscaler/adc/gslbvserver_module.rst", "collections/netscaler/adc/gslbvserver_spilloverpolicy_binding_module.rst", "collections/netscaler/adc/hafailover_module.rst", "collections/netscaler/adc/hafiles_module.rst", "collections/netscaler/adc/hanode_module.rst", "collections/netscaler/adc/hanode_routemonitor6_binding_module.rst", "collections/netscaler/adc/hanode_routemonitor_binding_module.rst", "collections/netscaler/adc/hasync_module.rst", "collections/netscaler/adc/icaaccessprofile_module.rst", "collections/netscaler/adc/icaaction_module.rst", "collections/netscaler/adc/icaglobal_icapolicy_binding_module.rst", "collections/netscaler/adc/icalatencyprofile_module.rst", "collections/netscaler/adc/icaparameter_module.rst", "collections/netscaler/adc/icapolicy_module.rst", "collections/netscaler/adc/inat_module.rst", "collections/netscaler/adc/inatparam_module.rst", "collections/netscaler/adc/index.rst", "collections/netscaler/adc/install_module.rst", "collections/netscaler/adc/interfacepair_module.rst", "collections/netscaler/adc/ip6tunnel_module.rst", "collections/netscaler/adc/ip6tunnelparam_module.rst", "collections/netscaler/adc/ipsecalgprofile_module.rst", "collections/netscaler/adc/ipsecalgsession_module.rst", "collections/netscaler/adc/ipsecparameter_module.rst", "collections/netscaler/adc/ipsecprofile_module.rst", "collections/netscaler/adc/ipset_module.rst", "collections/netscaler/adc/ipset_nsip6_binding_module.rst", "collections/netscaler/adc/ipset_nsip_binding_module.rst", "collections/netscaler/adc/iptunnel_module.rst", "collections/netscaler/adc/iptunnelparam_module.rst", "collections/netscaler/adc/ipv6_module.rst", "collections/netscaler/adc/l2param_module.rst", "collections/netscaler/adc/l3param_module.rst", "collections/netscaler/adc/l4param_module.rst", "collections/netscaler/adc/lacp_module.rst", "collections/netscaler/adc/lbaction_module.rst", "collections/netscaler/adc/lbglobal_lbpolicy_binding_module.rst", "collections/netscaler/adc/lbgroup_lbvserver_binding_module.rst", "collections/netscaler/adc/lbgroup_module.rst", "collections/netscaler/adc/lbmetrictable_metric_binding_module.rst", "collections/netscaler/adc/lbmetrictable_module.rst", "collections/netscaler/adc/lbmonitor_metric_binding_module.rst", "collections/netscaler/adc/lbmonitor_module.rst", "collections/netscaler/adc/lbmonitor_sslcertkey_binding_module.rst", "collections/netscaler/adc/lbparameter_module.rst", "collections/netscaler/adc/lbpersistentsessions_module.rst", "collections/netscaler/adc/lbpolicy_module.rst", "collections/netscaler/adc/lbpolicylabel_lbpolicy_binding_module.rst", "collections/netscaler/adc/lbpolicylabel_module.rst", "collections/netscaler/adc/lbprofile_module.rst", "collections/netscaler/adc/lbroute6_module.rst", "collections/netscaler/adc/lbroute_module.rst", "collections/netscaler/adc/lbsipparameters_module.rst", "collections/netscaler/adc/lbvserver_analyticsprofile_binding_module.rst", "collections/netscaler/adc/lbvserver_appflowpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_appfwpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_appqoepolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_authorizationpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_botpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_cachepolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_cmppolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_contentinspectionpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_dnspolicy64_binding_module.rst", "collections/netscaler/adc/lbvserver_feopolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_lbpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_module.rst", "collections/netscaler/adc/lbvserver_responderpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_rewritepolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_service_binding_module.rst", "collections/netscaler/adc/lbvserver_servicegroup_binding_module.rst", "collections/netscaler/adc/lbvserver_spilloverpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_tmtrafficpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_transformpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_videooptimizationdetectionpolicy_binding_module.rst", "collections/netscaler/adc/lbvserver_videooptimizationpacingpolicy_binding_module.rst", "collections/netscaler/adc/lbwlm_lbvserver_binding_module.rst", "collections/netscaler/adc/lbwlm_module.rst", "collections/netscaler/adc/linkset_channel_binding_module.rst", "collections/netscaler/adc/linkset_interface_binding_module.rst", "collections/netscaler/adc/linkset_module.rst", "collections/netscaler/adc/lldpneighbors_module.rst", "collections/netscaler/adc/lldpparam_module.rst", "collections/netscaler/adc/location_module.rst", "collections/netscaler/adc/locationfile6_module.rst", "collections/netscaler/adc/locationfile_module.rst", "collections/netscaler/adc/locationparameter_module.rst", "collections/netscaler/adc/login_module.rst", "collections/netscaler/adc/logout_module.rst", "collections/netscaler/adc/lsnappsattributes_module.rst", "collections/netscaler/adc/lsnappsprofile_lsnappsattributes_binding_module.rst", "collections/netscaler/adc/lsnappsprofile_module.rst", "collections/netscaler/adc/lsnappsprofile_port_binding_module.rst", "collections/netscaler/adc/lsnclient_module.rst", "collections/netscaler/adc/lsnclient_network6_binding_module.rst", "collections/netscaler/adc/lsnclient_network_binding_module.rst", "collections/netscaler/adc/lsnclient_nsacl6_binding_module.rst", "collections/netscaler/adc/lsnclient_nsacl_binding_module.rst", "collections/netscaler/adc/lsngroup_ipsecalgprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_lsnappsprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_lsnhttphdrlogprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_lsnlogprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_lsnpool_binding_module.rst", "collections/netscaler/adc/lsngroup_lsnrtspalgprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_lsnsipalgprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_lsntransportprofile_binding_module.rst", "collections/netscaler/adc/lsngroup_module.rst", "collections/netscaler/adc/lsngroup_pcpserver_binding_module.rst", "collections/netscaler/adc/lsnhttphdrlogprofile_module.rst", "collections/netscaler/adc/lsnip6profile_module.rst", "collections/netscaler/adc/lsnlogprofile_module.rst", "collections/netscaler/adc/lsnparameter_module.rst", "collections/netscaler/adc/lsnpool_lsnip_binding_module.rst", "collections/netscaler/adc/lsnpool_module.rst", "collections/netscaler/adc/lsnrtspalgprofile_module.rst", "collections/netscaler/adc/lsnrtspalgsession_module.rst", "collections/netscaler/adc/lsnsession_module.rst", "collections/netscaler/adc/lsnsipalgcall_module.rst", "collections/netscaler/adc/lsnsipalgprofile_module.rst", "collections/netscaler/adc/lsnstatic_module.rst", "collections/netscaler/adc/lsntransportprofile_module.rst", "collections/netscaler/adc/mapbmr_bmrv4network_binding_module.rst", "collections/netscaler/adc/mapbmr_module.rst", "collections/netscaler/adc/mapdmr_module.rst", "collections/netscaler/adc/mapdomain_mapbmr_binding_module.rst", "collections/netscaler/adc/mapdomain_module.rst", "collections/netscaler/adc/nat64_module.rst", "collections/netscaler/adc/nat64param_module.rst", "collections/netscaler/adc/nd6_module.rst", "collections/netscaler/adc/nd6ravariables_module.rst", "collections/netscaler/adc/nd6ravariables_onlinkipv6prefix_binding_module.rst", "collections/netscaler/adc/netbridge_iptunnel_binding_module.rst", "collections/netscaler/adc/netbridge_module.rst", "collections/netscaler/adc/netbridge_nsip6_binding_module.rst", "collections/netscaler/adc/netbridge_nsip_binding_module.rst", "collections/netscaler/adc/netbridge_vlan_binding_module.rst", "collections/netscaler/adc/netprofile_module.rst", "collections/netscaler/adc/netprofile_natrule_binding_module.rst", "collections/netscaler/adc/netprofile_srcportset_binding_module.rst", "collections/netscaler/adc/nsacls6_module.rst", "collections/netscaler/adc/nsacls_module.rst", "collections/netscaler/adc/nsappflowcollector_module.rst", "collections/netscaler/adc/nsappflowparam_module.rst", "collections/netscaler/adc/nsaptlicense_module.rst", "collections/netscaler/adc/nsassignment_module.rst", "collections/netscaler/adc/nscapacity_module.rst", "collections/netscaler/adc/nscentralmanagementserver_module.rst", "collections/netscaler/adc/nsconfig_module.rst", "collections/netscaler/adc/nsconsoleloginprompt_module.rst", "collections/netscaler/adc/nscqaparam_module.rst", "collections/netscaler/adc/nsdhcpparams_module.rst", "collections/netscaler/adc/nsdiameter_module.rst", "collections/netscaler/adc/nsencryptionkey_module.rst", "collections/netscaler/adc/nsencryptionparams_module.rst", "collections/netscaler/adc/nsextension_module.rst", "collections/netscaler/adc/nsfeature_module.rst", "collections/netscaler/adc/nshmackey_module.rst", "collections/netscaler/adc/nshostname_module.rst", "collections/netscaler/adc/nshttpparam_module.rst", "collections/netscaler/adc/nshttpprofile_module.rst", "collections/netscaler/adc/nsicapprofile_module.rst", "collections/netscaler/adc/nsip6_module.rst", "collections/netscaler/adc/nsip_module.rst", "collections/netscaler/adc/nslicenseparameters_module.rst", "collections/netscaler/adc/nslicenseproxyserver_module.rst", "collections/netscaler/adc/nslicenseserver_module.rst", "collections/netscaler/adc/nslimitidentifier_module.rst", "collections/netscaler/adc/nslimitselector_module.rst", "collections/netscaler/adc/nslimitsessions_module.rst", "collections/netscaler/adc/nsmigration_module.rst", "collections/netscaler/adc/nsmode_module.rst", "collections/netscaler/adc/nsparam_module.rst", "collections/netscaler/adc/nspartition_bridgegroup_binding_module.rst", "collections/netscaler/adc/nspartition_module.rst", "collections/netscaler/adc/nspartition_vlan_binding_module.rst", "collections/netscaler/adc/nspartition_vxlan_binding_module.rst", "collections/netscaler/adc/nsratecontrol_module.rst", "collections/netscaler/adc/nsrpcnode_module.rst", "collections/netscaler/adc/nsservicefunction_module.rst", "collections/netscaler/adc/nsservicepath_module.rst", "collections/netscaler/adc/nsservicepath_nsservicefunction_binding_module.rst", "collections/netscaler/adc/nssimpleacl6_module.rst", "collections/netscaler/adc/nssimpleacl_module.rst", "collections/netscaler/adc/nsspparams_module.rst", "collections/netscaler/adc/nsstats_module.rst", "collections/netscaler/adc/nssurgeq_module.rst", "collections/netscaler/adc/nstcpbufparam_module.rst", "collections/netscaler/adc/nstcpparam_module.rst", "collections/netscaler/adc/nstcpprofile_module.rst", "collections/netscaler/adc/nstimeout_module.rst", "collections/netscaler/adc/nstimer_autoscalepolicy_binding_module.rst", "collections/netscaler/adc/nstimer_module.rst", "collections/netscaler/adc/nstrace_module.rst", "collections/netscaler/adc/nstrafficdomain_bridgegroup_binding_module.rst", "collections/netscaler/adc/nstrafficdomain_module.rst", "collections/netscaler/adc/nstrafficdomain_vlan_binding_module.rst", "collections/netscaler/adc/nstrafficdomain_vxlan_binding_module.rst", "collections/netscaler/adc/nsvariable_module.rst", "collections/netscaler/adc/nsvpxparam_module.rst", "collections/netscaler/adc/nsweblogparam_module.rst", "collections/netscaler/adc/nsxmlnamespace_module.rst", "collections/netscaler/adc/ntpparam_module.rst", "collections/netscaler/adc/ntpserver_module.rst", "collections/netscaler/adc/onlinkipv6prefix_module.rst", "collections/netscaler/adc/pcpprofile_module.rst", "collections/netscaler/adc/pcpserver_module.rst", "collections/netscaler/adc/ping6_module.rst", "collections/netscaler/adc/ping_module.rst", "collections/netscaler/adc/policydataset_module.rst", "collections/netscaler/adc/policydataset_value_binding_module.rst", "collections/netscaler/adc/policyexpression_module.rst", "collections/netscaler/adc/policyhttpcallout_module.rst", "collections/netscaler/adc/policymap_module.rst", "collections/netscaler/adc/policyparam_module.rst", "collections/netscaler/adc/policypatset_module.rst", "collections/netscaler/adc/policypatset_pattern_binding_module.rst", "collections/netscaler/adc/policypatsetfile_module.rst", "collections/netscaler/adc/policystringmap_module.rst", "collections/netscaler/adc/policystringmap_pattern_binding_module.rst", "collections/netscaler/adc/policyurlset_module.rst", "collections/netscaler/adc/protocolhttpband_module.rst", "collections/netscaler/adc/ptp_module.rst", "collections/netscaler/adc/quicbridgeprofile_module.rst", "collections/netscaler/adc/quicparam_module.rst", "collections/netscaler/adc/quicprofile_module.rst", "collections/netscaler/adc/radiusnode_module.rst", "collections/netscaler/adc/rdpclientprofile_module.rst", "collections/netscaler/adc/rdpconnections_module.rst", "collections/netscaler/adc/rdpserverprofile_module.rst", "collections/netscaler/adc/reboot_module.rst", "collections/netscaler/adc/reportingconfig_module.rst", "collections/netscaler/adc/reputationsettings_module.rst", "collections/netscaler/adc/responderaction_module.rst", "collections/netscaler/adc/responderglobal_responderpolicy_binding_module.rst", "collections/netscaler/adc/responderhtmlpage_module.rst", "collections/netscaler/adc/responderparam_module.rst", "collections/netscaler/adc/responderpolicy_module.rst", "collections/netscaler/adc/responderpolicylabel_module.rst", "collections/netscaler/adc/responderpolicylabel_responderpolicy_binding_module.rst", "collections/netscaler/adc/rewriteaction_module.rst", "collections/netscaler/adc/rewriteglobal_rewritepolicy_binding_module.rst", "collections/netscaler/adc/rewriteparam_module.rst", "collections/netscaler/adc/rewritepolicy_module.rst", "collections/netscaler/adc/rewritepolicylabel_module.rst", "collections/netscaler/adc/rewritepolicylabel_rewritepolicy_binding_module.rst", "collections/netscaler/adc/rnat6_module.rst", "collections/netscaler/adc/rnat6_nsip6_binding_module.rst", "collections/netscaler/adc/rnat_module.rst", "collections/netscaler/adc/rnat_nsip_binding_module.rst", "collections/netscaler/adc/rnat_retainsourceportset_binding_module.rst", "collections/netscaler/adc/rnatglobal_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/rnatparam_module.rst", "collections/netscaler/adc/rnatsession_module.rst", "collections/netscaler/adc/route6_module.rst", "collections/netscaler/adc/route_module.rst", "collections/netscaler/adc/routerdynamicrouting_module.rst", "collections/netscaler/adc/rsskeytype_module.rst", "collections/netscaler/adc/server_module.rst", "collections/netscaler/adc/service_lbmonitor_binding_module.rst", "collections/netscaler/adc/service_module.rst", "collections/netscaler/adc/servicegroup_lbmonitor_binding_module.rst", "collections/netscaler/adc/servicegroup_module.rst", "collections/netscaler/adc/servicegroup_servicegroupmember_binding_module.rst", "collections/netscaler/adc/smppparam_module.rst", "collections/netscaler/adc/smppuser_module.rst", "collections/netscaler/adc/snmpalarm_module.rst", "collections/netscaler/adc/snmpcommunity_module.rst", "collections/netscaler/adc/snmpengineid_module.rst", "collections/netscaler/adc/snmpgroup_module.rst", "collections/netscaler/adc/snmpmanager_module.rst", "collections/netscaler/adc/snmpmib_module.rst", "collections/netscaler/adc/snmpoption_module.rst", "collections/netscaler/adc/snmptrap_module.rst", "collections/netscaler/adc/snmptrap_snmpuser_binding_module.rst", "collections/netscaler/adc/snmpuser_module.rst", "collections/netscaler/adc/snmpview_module.rst", "collections/netscaler/adc/spilloveraction_module.rst", "collections/netscaler/adc/spilloverpolicy_module.rst", "collections/netscaler/adc/sslaction_module.rst", "collections/netscaler/adc/sslcacertgroup_module.rst", "collections/netscaler/adc/sslcacertgroup_sslcertkey_binding_module.rst", "collections/netscaler/adc/sslcert_module.rst", "collections/netscaler/adc/sslcertbundle_module.rst", "collections/netscaler/adc/sslcertfile_module.rst", "collections/netscaler/adc/sslcertificatechain_module.rst", "collections/netscaler/adc/sslcertkey_module.rst", "collections/netscaler/adc/sslcertkey_sslocspresponder_binding_module.rst", "collections/netscaler/adc/sslcertkeybundle_module.rst", "collections/netscaler/adc/sslcertreq_module.rst", "collections/netscaler/adc/sslcipher_module.rst", "collections/netscaler/adc/sslcipher_sslciphersuite_binding_module.rst", "collections/netscaler/adc/sslcrl_module.rst", "collections/netscaler/adc/sslcrlfile_module.rst", "collections/netscaler/adc/ssldhfile_module.rst", "collections/netscaler/adc/ssldhparam_module.rst", "collections/netscaler/adc/ssldtlsprofile_module.rst", "collections/netscaler/adc/sslecdsakey_module.rst", "collections/netscaler/adc/sslfips_module.rst", "collections/netscaler/adc/sslfipskey_module.rst", "collections/netscaler/adc/sslfipssimsource_module.rst", "collections/netscaler/adc/sslfipssimtarget_module.rst", "collections/netscaler/adc/sslglobal_sslpolicy_binding_module.rst", "collections/netscaler/adc/sslhsmkey_module.rst", "collections/netscaler/adc/sslkeyfile_module.rst", "collections/netscaler/adc/ssllogprofile_module.rst", "collections/netscaler/adc/sslocspresponder_module.rst", "collections/netscaler/adc/sslparameter_module.rst", "collections/netscaler/adc/sslpkcs12_module.rst", "collections/netscaler/adc/sslpkcs8_module.rst", "collections/netscaler/adc/sslpolicy_module.rst", "collections/netscaler/adc/sslpolicylabel_module.rst", "collections/netscaler/adc/sslpolicylabel_sslpolicy_binding_module.rst", "collections/netscaler/adc/sslprofile_ecccurve_binding_module.rst", "collections/netscaler/adc/sslprofile_module.rst", "collections/netscaler/adc/sslprofile_sslcertkey_binding_module.rst", "collections/netscaler/adc/sslprofile_sslcipher_binding_module.rst", "collections/netscaler/adc/sslprofile_sslciphersuite_binding_module.rst", "collections/netscaler/adc/sslrsakey_module.rst", "collections/netscaler/adc/sslservice_ecccurve_binding_module.rst", "collections/netscaler/adc/sslservice_module.rst", "collections/netscaler/adc/sslservice_sslcertkey_binding_module.rst", "collections/netscaler/adc/sslservice_sslcipher_binding_module.rst", "collections/netscaler/adc/sslservice_sslciphersuite_binding_module.rst", "collections/netscaler/adc/sslservice_sslpolicy_binding_module.rst", "collections/netscaler/adc/sslservicegroup_ecccurve_binding_module.rst", "collections/netscaler/adc/sslservicegroup_module.rst", "collections/netscaler/adc/sslservicegroup_sslcertkey_binding_module.rst", "collections/netscaler/adc/sslservicegroup_sslcipher_binding_module.rst", "collections/netscaler/adc/sslservicegroup_sslciphersuite_binding_module.rst", "collections/netscaler/adc/sslvserver_ecccurve_binding_module.rst", "collections/netscaler/adc/sslvserver_module.rst", "collections/netscaler/adc/sslvserver_sslcertkey_binding_module.rst", "collections/netscaler/adc/sslvserver_sslcertkeybundle_binding_module.rst", "collections/netscaler/adc/sslvserver_sslcipher_binding_module.rst", "collections/netscaler/adc/sslvserver_sslciphersuite_binding_module.rst", "collections/netscaler/adc/sslvserver_sslpolicy_binding_module.rst", "collections/netscaler/adc/sslwrapkey_module.rst", "collections/netscaler/adc/streamidentifier_module.rst", "collections/netscaler/adc/streamselector_module.rst", "collections/netscaler/adc/streamsession_module.rst", "collections/netscaler/adc/subscribergxinterface_module.rst", "collections/netscaler/adc/subscriberparam_module.rst", "collections/netscaler/adc/subscriberprofile_module.rst", "collections/netscaler/adc/subscriberradiusinterface_module.rst", "collections/netscaler/adc/subscribersessions_module.rst", "collections/netscaler/adc/systemadmuserinfo_module.rst", "collections/netscaler/adc/systembackup_module.rst", "collections/netscaler/adc/systemcmdpolicy_module.rst", "collections/netscaler/adc/systemcollectionparam_module.rst", "collections/netscaler/adc/systemcpuparam_module.rst", "collections/netscaler/adc/systementitydata_module.rst", "collections/netscaler/adc/systemextramgmtcpu_module.rst", "collections/netscaler/adc/systemfile_module.rst", "collections/netscaler/adc/systemglobal_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/systemglobal_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/systemglobal_authenticationldappolicy_binding_module.rst", "collections/netscaler/adc/systemglobal_authenticationlocalpolicy_binding_module.rst", "collections/netscaler/adc/systemglobal_authenticationpolicy_binding_module.rst", "collections/netscaler/adc/systemglobal_authenticationradiuspolicy_binding_module.rst", "collections/netscaler/adc/systemglobal_authenticationtacacspolicy_binding_module.rst", "collections/netscaler/adc/systemgroup_module.rst", "collections/netscaler/adc/systemgroup_nspartition_binding_module.rst", "collections/netscaler/adc/systemgroup_systemcmdpolicy_binding_module.rst", "collections/netscaler/adc/systemgroup_systemuser_binding_module.rst", "collections/netscaler/adc/systemhwerror_module.rst", "collections/netscaler/adc/systemkek_module.rst", "collections/netscaler/adc/systemparameter_module.rst", "collections/netscaler/adc/systemrestorepoint_module.rst", "collections/netscaler/adc/systemsession_module.rst", "collections/netscaler/adc/systemsshkey_module.rst", "collections/netscaler/adc/systemuser_module.rst", "collections/netscaler/adc/systemuser_nspartition_binding_module.rst", "collections/netscaler/adc/systemuser_systemcmdpolicy_binding_module.rst", "collections/netscaler/adc/tmformssoaction_module.rst", "collections/netscaler/adc/tmglobal_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/tmglobal_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/tmglobal_tmsessionpolicy_binding_module.rst", "collections/netscaler/adc/tmglobal_tmtrafficpolicy_binding_module.rst", "collections/netscaler/adc/tmsamlssoprofile_module.rst", "collections/netscaler/adc/tmsessionaction_module.rst", "collections/netscaler/adc/tmsessionparameter_module.rst", "collections/netscaler/adc/tmsessionpolicy_module.rst", "collections/netscaler/adc/tmtrafficaction_module.rst", "collections/netscaler/adc/tmtrafficpolicy_module.rst", "collections/netscaler/adc/traceroute6_module.rst", "collections/netscaler/adc/traceroute_module.rst", "collections/netscaler/adc/transformaction_module.rst", "collections/netscaler/adc/transformglobal_transformpolicy_binding_module.rst", "collections/netscaler/adc/transformpolicy_module.rst", "collections/netscaler/adc/transformpolicylabel_module.rst", "collections/netscaler/adc/transformpolicylabel_transformpolicy_binding_module.rst", "collections/netscaler/adc/transformprofile_module.rst", "collections/netscaler/adc/tunnelglobal_tunneltrafficpolicy_binding_module.rst", "collections/netscaler/adc/tunneltrafficpolicy_module.rst", "collections/netscaler/adc/ulfdserver_module.rst", "collections/netscaler/adc/urlfilteringcategorization_module.rst", "collections/netscaler/adc/urlfilteringparameter_module.rst", "collections/netscaler/adc/userprotocol_module.rst", "collections/netscaler/adc/uservserver_module.rst", "collections/netscaler/adc/videooptimizationdetectionaction_module.rst", "collections/netscaler/adc/videooptimizationdetectionpolicy_module.rst", "collections/netscaler/adc/videooptimizationdetectionpolicylabel_module.rst", "collections/netscaler/adc/videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_binding_module.rst", "collections/netscaler/adc/videooptimizationglobaldetection_videooptimizationdetectionpolicy_binding_module.rst", "collections/netscaler/adc/videooptimizationglobalpacing_videooptimizationpacingpolicy_binding_module.rst", "collections/netscaler/adc/videooptimizationpacingaction_module.rst", "collections/netscaler/adc/videooptimizationpacingpolicy_module.rst", "collections/netscaler/adc/videooptimizationpacingpolicylabel_module.rst", "collections/netscaler/adc/videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_binding_module.rst", "collections/netscaler/adc/videooptimizationparameter_module.rst", "collections/netscaler/adc/vlan_channel_binding_module.rst", "collections/netscaler/adc/vlan_interface_binding_module.rst", "collections/netscaler/adc/vlan_linkset_binding_module.rst", "collections/netscaler/adc/vlan_module.rst", "collections/netscaler/adc/vlan_nsip6_binding_module.rst", "collections/netscaler/adc/vlan_nsip_binding_module.rst", "collections/netscaler/adc/vpnalwaysonprofile_module.rst", "collections/netscaler/adc/vpnclientlessaccesspolicy_module.rst", "collections/netscaler/adc/vpnclientlessaccessprofile_module.rst", "collections/netscaler/adc/vpnepaprofile_module.rst", "collections/netscaler/adc/vpneula_module.rst", "collections/netscaler/adc/vpnformssoaction_module.rst", "collections/netscaler/adc/vpnglobal_appcontroller_binding_module.rst", "collections/netscaler/adc/vpnglobal_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationcertpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationldappolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationlocalpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationnegotiatepolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationradiuspolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationsamlpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_authenticationtacacspolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_domain_binding_module.rst", "collections/netscaler/adc/vpnglobal_intranetip6_binding_module.rst", "collections/netscaler/adc/vpnglobal_intranetip_binding_module.rst", "collections/netscaler/adc/vpnglobal_sharefileserver_binding_module.rst", "collections/netscaler/adc/vpnglobal_sslcertkey_binding_module.rst", "collections/netscaler/adc/vpnglobal_staserver_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnclientlessaccesspolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpneula_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnintranetapplication_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnnexthopserver_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnportaltheme_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnsessionpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpntrafficpolicy_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnurl_binding_module.rst", "collections/netscaler/adc/vpnglobal_vpnurlpolicy_binding_module.rst", "collections/netscaler/adc/vpnicaconnection_module.rst", "collections/netscaler/adc/vpnintranetapplication_module.rst", "collections/netscaler/adc/vpnnexthopserver_module.rst", "collections/netscaler/adc/vpnparameter_module.rst", "collections/netscaler/adc/vpnpcoipconnection_module.rst", "collections/netscaler/adc/vpnpcoipprofile_module.rst", "collections/netscaler/adc/vpnpcoipvserverprofile_module.rst", "collections/netscaler/adc/vpnportaltheme_module.rst", "collections/netscaler/adc/vpnsamlssoprofile_module.rst", "collections/netscaler/adc/vpnsessionaction_module.rst", "collections/netscaler/adc/vpnsessionpolicy_module.rst", "collections/netscaler/adc/vpntrafficaction_module.rst", "collections/netscaler/adc/vpntrafficpolicy_module.rst", "collections/netscaler/adc/vpnurl_module.rst", "collections/netscaler/adc/vpnurlaction_module.rst", "collections/netscaler/adc/vpnurlpolicy_module.rst", "collections/netscaler/adc/vpnvserver_aaapreauthenticationpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_analyticsprofile_binding_module.rst", "collections/netscaler/adc/vpnvserver_appcontroller_binding_module.rst", "collections/netscaler/adc/vpnvserver_appflowpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_auditnslogpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_auditsyslogpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationcertpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationdfapolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationldappolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationlocalpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationloginschemapolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationnegotiatepolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationoauthidppolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationradiuspolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationsamlidppolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationsamlpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationtacacspolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_authenticationwebauthpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_cachepolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_cspolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_feopolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_icapolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_intranetip6_binding_module.rst", "collections/netscaler/adc/vpnvserver_intranetip_binding_module.rst", "collections/netscaler/adc/vpnvserver_module.rst", "collections/netscaler/adc/vpnvserver_responderpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_rewritepolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_sharefileserver_binding_module.rst", "collections/netscaler/adc/vpnvserver_staserver_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnclientlessaccesspolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnepaprofile_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpneula_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnintranetapplication_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnnexthopserver_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnportaltheme_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnsessionpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpntrafficpolicy_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnurl_binding_module.rst", "collections/netscaler/adc/vpnvserver_vpnurlpolicy_binding_module.rst", "collections/netscaler/adc/vrid6_channel_binding_module.rst", "collections/netscaler/adc/vrid6_interface_binding_module.rst", "collections/netscaler/adc/vrid6_module.rst", "collections/netscaler/adc/vrid6_trackinterface_binding_module.rst", "collections/netscaler/adc/vrid_channel_binding_module.rst", "collections/netscaler/adc/vrid_interface_binding_module.rst", "collections/netscaler/adc/vrid_module.rst", "collections/netscaler/adc/vrid_trackinterface_binding_module.rst", "collections/netscaler/adc/vridparam_module.rst", "collections/netscaler/adc/vserver_module.rst", "collections/netscaler/adc/vxlan_module.rst", "collections/netscaler/adc/vxlan_nsip6_binding_module.rst", "collections/netscaler/adc/vxlan_nsip_binding_module.rst", "collections/netscaler/adc/vxlan_srcip_binding_module.rst", "collections/netscaler/adc/vxlanvlanmap_module.rst", "collections/netscaler/adc/vxlanvlanmap_vxlan_binding_module.rst", "collections/netscaler/index.rst", "index.rst"], "titles": ["Index of all Collection Environment Variables", "Collection Index", "Index of all Modules", "netscaler.adc.aaacertparams module \u2013 Configuration for certificate parameter resource.", "netscaler.adc.aaaglobal_aaapreauthenticationpolicy_binding module \u2013 Binding Resource definition for describing association between aaaglobal and aaapreauthenticationpolicy resources", "netscaler.adc.aaaglobal_authenticationnegotiateaction_binding module \u2013 Binding Resource definition for describing association between aaaglobal and authenticationnegotiateaction resources", "netscaler.adc.aaagroup_aaauser_binding module \u2013 Binding Resource definition for describing association between aaagroup and aaauser resources", "netscaler.adc.aaagroup_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and auditnslogpolicy resources", "netscaler.adc.aaagroup_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and auditsyslogpolicy resources", "netscaler.adc.aaagroup_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and authorizationpolicy resources", "netscaler.adc.aaagroup_intranetip6_binding module \u2013 Binding Resource definition for describing association between aaagroup and intranetip6 resources", "netscaler.adc.aaagroup_intranetip_binding module \u2013 Binding Resource definition for describing association between aaagroup and intranetip resources", "netscaler.adc.aaagroup module \u2013 Configuration for AAA group resource.", "netscaler.adc.aaagroup_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and tmsessionpolicy resources", "netscaler.adc.aaagroup_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnintranetapplication resources", "netscaler.adc.aaagroup_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnsessionpolicy resources", "netscaler.adc.aaagroup_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpntrafficpolicy resources", "netscaler.adc.aaagroup_vpnurl_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnurl resources", "netscaler.adc.aaagroup_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnurlpolicy resources", "netscaler.adc.aaakcdaccount module \u2013 Configuration for Kerberos constrained delegation account resource.", "netscaler.adc.aaaldapparams module \u2013 Configuration for LDAP parameter resource.", "netscaler.adc.aaaotpparameter module \u2013 Configuration for AAA otpparameter resource.", "netscaler.adc.aaaparameter module \u2013 Configuration for AAA parameter resource.", "netscaler.adc.aaapreauthenticationaction module \u2013 Configuration for pre authentication action resource.", "netscaler.adc.aaapreauthenticationparameter module \u2013 Configuration for pre authentication parameter resource.", "netscaler.adc.aaapreauthenticationpolicy module \u2013 Configuration for pre authentication policy resource.", "netscaler.adc.aaaradiusparams module \u2013 Configuration for RADIUS parameter resource.", "netscaler.adc.aaasession module \u2013 Configuration for active connection resource.", "netscaler.adc.aaassoprofile module \u2013 Configuration for aaa sso profile resource.", "netscaler.adc.aaatacacsparams module \u2013 Configuration for tacacs parameters resource.", "netscaler.adc.aaauser_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and auditnslogpolicy resources", "netscaler.adc.aaauser_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and auditsyslogpolicy resources", "netscaler.adc.aaauser_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and authorizationpolicy resources", "netscaler.adc.aaauser_intranetip6_binding module \u2013 Binding Resource definition for describing association between aaauser and intranetip6 resources", "netscaler.adc.aaauser_intranetip_binding module \u2013 Binding Resource definition for describing association between aaauser and intranetip resources", "netscaler.adc.aaauser module \u2013 Configuration for AAA user resource.", "netscaler.adc.aaauser_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and tmsessionpolicy resources", "netscaler.adc.aaauser_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnintranetapplication resources", "netscaler.adc.aaauser_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnsessionpolicy resources", "netscaler.adc.aaauser_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and vpntrafficpolicy resources", "netscaler.adc.aaauser_vpnurl_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnurl resources", "netscaler.adc.aaauser_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnurlpolicy resources", "netscaler.adc.admparameter module \u2013 Configuration for ADM parameter resource.", "netscaler.adc.analyticsglobal_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between analyticsglobal and analyticsprofile resources", "netscaler.adc.analyticsprofile module \u2013 Configuration for Analytics profile resource.", "netscaler.adc.apispec module \u2013 Configuration for API specification resource.", "netscaler.adc.apispecfile module \u2013 Configuration for API specificationfile resource.", "netscaler.adc.appalgparam module \u2013 Configuration for AppAlg Param resource.", "netscaler.adc.appflowaction_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between appflowaction and analyticsprofile resources", "netscaler.adc.appflowaction module \u2013 Configuration for AppFlow action resource.", "netscaler.adc.appflowcollector module \u2013 Configuration for AppFlow collector resource.", "netscaler.adc.appflowglobal_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between appflowglobal and appflowpolicy resources", "netscaler.adc.appflowparam module \u2013 Configuration for AppFlow parameter resource.", "netscaler.adc.appflowpolicy module \u2013 Configuration for AppFlow policy resource.", "netscaler.adc.appflowpolicylabel_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between appflowpolicylabel and appflowpolicy resources", "netscaler.adc.appflowpolicylabel module \u2013 Configuration for AppFlow policy label resource.", "netscaler.adc.appfwarchive module \u2013 Configuration for archive resource.", "netscaler.adc.appfwconfidfield module \u2013 Configuration for configured confidential form fields resource.", "netscaler.adc.appfwcustomsettings module \u2013 Configuration for application firewall custom settings XML configuration resource.", "netscaler.adc.appfwfieldtype module \u2013 Configuration for application firewall form field type resource.", "netscaler.adc.appfwglobal_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between appfwglobal and appfwpolicy resources", "netscaler.adc.appfwglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between appfwglobal and auditnslogpolicy resources", "netscaler.adc.appfwglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between appfwglobal and auditsyslogpolicy resources", "netscaler.adc.appfwgrpccontenttype module \u2013 Configuration for gRRPC content type resource.", "netscaler.adc.appfwgrpcwebjsoncontenttype module \u2013 Configuration for gRRPC-Web-json content type resource.", "netscaler.adc.appfwgrpcwebtextcontenttype module \u2013 Configuration for gRRPC-Web-text content type resource.", "netscaler.adc.appfwhtmlerrorpage module \u2013 Configuration for HTML error page resource.", "netscaler.adc.appfwjsoncontenttype module \u2013 Configuration for JSON content type resource.", "netscaler.adc.appfwjsonerrorpage module \u2013 Configuration for JSON error page resource.", "netscaler.adc.appfwlearningdata module \u2013 Configuration for learning data resource.", "netscaler.adc.appfwlearningsettings module \u2013 Configuration for learning settings resource.", "netscaler.adc.appfwmultipartformcontenttype module \u2013 Configuration for Multipart form content type resource.", "netscaler.adc.appfwpolicy module \u2013 Configuration for application firewall policy resource.", "netscaler.adc.appfwpolicylabel_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between appfwpolicylabel and appfwpolicy resources", "netscaler.adc.appfwpolicylabel module \u2013 Configuration for application firewall policy label resource.", "netscaler.adc.appfwprofile_appfwconfidfield_binding module \u2013 Binding Resource definition for describing association between appfwprofile and appfwconfidfield resources", "netscaler.adc.appfwprofile_blockkeyword_binding module \u2013 Binding Resource definition for describing association between appfwprofile and blockkeyword resources", "netscaler.adc.appfwprofile_bypasslist_binding module \u2013 Binding Resource definition for describing association between appfwprofile and bypasslist resources", "netscaler.adc.appfwprofile_cmdinjection_binding module \u2013 Binding Resource definition for describing association between appfwprofile and cmdinjection resources", "netscaler.adc.appfwprofile_contenttype_binding module \u2013 Binding Resource definition for describing association between appfwprofile and contenttype resources", "netscaler.adc.appfwprofile_cookieconsistency_binding module \u2013 Binding Resource definition for describing association between appfwprofile and cookieconsistency resources", "netscaler.adc.appfwprofile_creditcardnumber_binding module \u2013 Binding Resource definition for describing association between appfwprofile and creditcardnumber resources", "netscaler.adc.appfwprofile_crosssitescripting_binding module \u2013 Binding Resource definition for describing association between appfwprofile and crosssitescripting resources", "netscaler.adc.appfwprofile_csrftag_binding module \u2013 Binding Resource definition for describing association between appfwprofile and csrftag resources", "netscaler.adc.appfwprofile_denylist_binding module \u2013 Binding Resource definition for describing association between appfwprofile and denylist resources", "netscaler.adc.appfwprofile_denyurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and denyurl resources", "netscaler.adc.appfwprofile_excluderescontenttype_binding module \u2013 Binding Resource definition for describing association between appfwprofile and excluderescontenttype resources", "netscaler.adc.appfwprofile_fakeaccount_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fakeaccount resources", "netscaler.adc.appfwprofile_fieldconsistency_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fieldconsistency resources", "netscaler.adc.appfwprofile_fieldformat_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fieldformat resources", "netscaler.adc.appfwprofile_fileuploadtype_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fileuploadtype resources", "netscaler.adc.appfwprofile_jsonblockkeyword_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsonblockkeyword resources", "netscaler.adc.appfwprofile_jsoncmdurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsoncmdurl resources", "netscaler.adc.appfwprofile_jsondosurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsondosurl resources", "netscaler.adc.appfwprofile_jsonsqlurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsonsqlurl resources", "netscaler.adc.appfwprofile_jsonxssurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsonxssurl resources", "netscaler.adc.appfwprofile_logexpression_binding module \u2013 Binding Resource definition for describing association between appfwprofile and logexpression resources", "netscaler.adc.appfwprofile module \u2013 Configuration for application firewall profile resource.", "netscaler.adc.appfwprofile_safeobject_binding module \u2013 Binding Resource definition for describing association between appfwprofile and safeobject resources", "netscaler.adc.appfwprofile_sqlinjection_binding module \u2013 Binding Resource definition for describing association between appfwprofile and sqlinjection resources", "netscaler.adc.appfwprofile_starturl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and starturl resources", "netscaler.adc.appfwprofile_trustedlearningclients_binding module \u2013 Binding Resource definition for describing association between appfwprofile and trustedlearningclients resources", "netscaler.adc.appfwprofile_xmlattachmenturl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlattachmenturl resources", "netscaler.adc.appfwprofile_xmldosurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmldosurl resources", "netscaler.adc.appfwprofile_xmlsqlinjection_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlsqlinjection resources", "netscaler.adc.appfwprofile_xmlvalidationurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlvalidationurl resources", "netscaler.adc.appfwprofile_xmlwsiurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlwsiurl resources", "netscaler.adc.appfwprofile_xmlxss_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlxss resources", "netscaler.adc.appfwprotofile module \u2013 Configuration for gRPC protofile resource.", "netscaler.adc.appfwsettings module \u2013 Configuration for AS settings resource.", "netscaler.adc.appfwsignatures module \u2013 Configuration for application firewall signatures XML configuration resource.", "netscaler.adc.appfwurlencodedformcontenttype module \u2013 Configuration for Urlencoded form content type resource.", "netscaler.adc.appfwwsdl module \u2013 Configuration for WSDL file resource.", "netscaler.adc.appfwxmlcontenttype module \u2013 Configuration for XML Content type resource.", "netscaler.adc.appfwxmlerrorpage module \u2013 Configuration for xml error page resource.", "netscaler.adc.appfwxmlschema module \u2013 Configuration for XML schema resource.", "netscaler.adc.application module \u2013 Configuration for application resource.", "netscaler.adc.appqoeaction module \u2013 Configuration for AppQoS action resource.", "netscaler.adc.appqoecustomresp module \u2013 Configuration for AppQoE custom response page resource.", "netscaler.adc.appqoeparameter module \u2013 Configuration for QOS parameter resource.", "netscaler.adc.appqoepolicy module \u2013 Configuration for AppQoS policy resource.", "netscaler.adc.arp module \u2013 Configuration for arp resource.", "netscaler.adc.arpparam module \u2013 Configuration for Global arp parameters resource.", "netscaler.adc.auditmessageaction module \u2013 Configuration for message action resource.", "netscaler.adc.auditnslogaction module \u2013 Configuration for ns log action resource.", "netscaler.adc.auditnslogglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between auditnslogglobal and auditnslogpolicy resources", "netscaler.adc.auditnslogparams module \u2013 Configuration for ns log parameters resource.", "netscaler.adc.auditnslogpolicy module \u2013 Configuration for ns log policy resource.", "netscaler.adc.auditsyslogaction module \u2013 Configuration for system log action resource.", "netscaler.adc.auditsyslogglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between auditsyslogglobal and auditsyslogpolicy resources", "netscaler.adc.auditsyslogparams module \u2013 Configuration for system log parameters resource.", "netscaler.adc.auditsyslogpolicy module \u2013 Configuration for system log policy resource.", "netscaler.adc.authenticationadfsproxyprofile module \u2013 Configuration for ADFSProxy Profile resource.", "netscaler.adc.authenticationauthnprofile module \u2013 Configuration for Authentication profile resource.", "netscaler.adc.authenticationazurekeyvault module \u2013 Configuration for Azure Key Vault entity resource.", "netscaler.adc.authenticationcaptchaaction module \u2013 Configuration for Captcha Action resource.", "netscaler.adc.authenticationcertaction module \u2013 Configuration for CERT action resource.", "netscaler.adc.authenticationcertpolicy module \u2013 Configuration for CERT policy resource.", "netscaler.adc.authenticationcitrixauthaction module \u2013 Configuration for Citrix Authentication action resource.", "netscaler.adc.authenticationdfaaction module \u2013 Configuration for Dfa authentication action resource.", "netscaler.adc.authenticationdfapolicy module \u2013 Configuration for Dfa authentication policy resource.", "netscaler.adc.authenticationemailaction module \u2013 Configuration for Email entity resource.", "netscaler.adc.authenticationepaaction module \u2013 Configuration for epa action resource.", "netscaler.adc.authenticationldapaction module \u2013 Configuration for LDAP action resource.", "netscaler.adc.authenticationldappolicy module \u2013 Configuration for LDAP policy resource.", "netscaler.adc.authenticationlocalpolicy module \u2013 Configuration for LOCAL policy resource.", "netscaler.adc.authenticationloginschema module \u2013 Configuration for 0 resource.", "netscaler.adc.authenticationloginschemapolicy module \u2013 Configuration for 0 resource.", "netscaler.adc.authenticationnegotiateaction module \u2013 Configuration for Negotiate action resource.", "netscaler.adc.authenticationnegotiatepolicy module \u2013 Configuration for Negotiate Policy resource.", "netscaler.adc.authenticationnoauthaction module \u2013 Configuration for no authentication action resource.", "netscaler.adc.authenticationoauthaction module \u2013 Configuration for OAuth authentication action resource.", "netscaler.adc.authenticationoauthidppolicy module \u2013 Configuration for AAA OAuth IdentityProvider (IdP) policy resource.", "netscaler.adc.authenticationoauthidpprofile module \u2013 Configuration for OAuth Identity Provider (IdP) profile resource.", "netscaler.adc.authenticationpolicy module \u2013 Configuration for Authentication Policy resource.", "netscaler.adc.authenticationpolicylabel_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationpolicylabel and authenticationpolicy resources", "netscaler.adc.authenticationpolicylabel module \u2013 Configuration for authentication policy label resource.", "netscaler.adc.authenticationpushservice module \u2013 Configuration for Service details for sending push notifications resource.", "netscaler.adc.authenticationradiusaction module \u2013 Configuration for RADIUS action resource.", "netscaler.adc.authenticationradiuspolicy module \u2013 Configuration for RADIUS policy resource.", "netscaler.adc.authenticationsamlaction module \u2013 Configuration for AAA Saml action resource.", "netscaler.adc.authenticationsamlidppolicy module \u2013 Configuration for AAA Saml IdentityProvider (IdP) policy resource.", "netscaler.adc.authenticationsamlidpprofile module \u2013 Configuration for AAA Saml IdentityProvider (IdP) profile resource.", "netscaler.adc.authenticationsamlpolicy module \u2013 Configuration for AAA Saml policy resource.", "netscaler.adc.authenticationsmartaccesspolicy module \u2013 Configuration for SmartAccess policy resource.", "netscaler.adc.authenticationsmartaccessprofile module \u2013 Configuration for SmartAccess profile resource.", "netscaler.adc.authenticationstorefrontauthaction module \u2013 Configuration for Storefront authentication action resource.", "netscaler.adc.authenticationtacacsaction module \u2013 Configuration for TACACS action resource.", "netscaler.adc.authenticationtacacspolicy module \u2013 Configuration for TACACS policy resource.", "netscaler.adc.authenticationvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and auditnslogpolicy resources", "netscaler.adc.authenticationvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and auditsyslogpolicy resources", "netscaler.adc.authenticationvserver_authenticationcertpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationcertpolicy resources", "netscaler.adc.authenticationvserver_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationldappolicy resources", "netscaler.adc.authenticationvserver_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationlocalpolicy resources", "netscaler.adc.authenticationvserver_authenticationloginschemapolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationloginschemapolicy resources", "netscaler.adc.authenticationvserver_authenticationnegotiatepolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationnegotiatepolicy resources", "netscaler.adc.authenticationvserver_authenticationoauthidppolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationoauthidppolicy resources", "netscaler.adc.authenticationvserver_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationpolicy resources", "netscaler.adc.authenticationvserver_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationradiuspolicy resources", "netscaler.adc.authenticationvserver_authenticationsamlidppolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationsamlidppolicy resources", "netscaler.adc.authenticationvserver_authenticationsamlpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationsamlpolicy resources", "netscaler.adc.authenticationvserver_authenticationsmartaccesspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationsmartaccesspolicy resources", "netscaler.adc.authenticationvserver_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationtacacspolicy resources", "netscaler.adc.authenticationvserver_authenticationwebauthpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationwebauthpolicy resources", "netscaler.adc.authenticationvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and cachepolicy resources", "netscaler.adc.authenticationvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and cspolicy resources", "netscaler.adc.authenticationvserver module \u2013 Configuration for authentication virtual server resource.", "netscaler.adc.authenticationvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and responderpolicy resources", "netscaler.adc.authenticationvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and rewritepolicy resources", "netscaler.adc.authenticationvserver_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and tmsessionpolicy resources", "netscaler.adc.authenticationvserver_vpnportaltheme_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and vpnportaltheme resources", "netscaler.adc.authenticationwebauthaction module \u2013 Configuration for Web authentication action resource.", "netscaler.adc.authenticationwebauthpolicy module \u2013 Configuration for Web authentication policy resource.", "netscaler.adc.authorizationpolicy module \u2013 Configuration for authorization policy resource.", "netscaler.adc.authorizationpolicylabel_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between authorizationpolicylabel and authorizationpolicy resources", "netscaler.adc.authorizationpolicylabel module \u2013 Configuration for authorization policy label resource.", "netscaler.adc.autoscaleaction module \u2013 Configuration for autoscale action resource.", "netscaler.adc.autoscalepolicy module \u2013 Configuration for Autoscale policy resource.", "netscaler.adc.autoscaleprofile module \u2013 Configuration for autoscale profile resource.", "netscaler.adc.azureapplication module \u2013 Configuration for Azure Application resource.", "netscaler.adc.azurekeyvault module \u2013 Configuration for Azure Key Vault entity resource.", "netscaler.adc.botglobal_botpolicy_binding module \u2013 Binding Resource definition for describing association between botglobal and botpolicy resources", "netscaler.adc.botpolicy module \u2013 Configuration for Bot policy resource.", "netscaler.adc.botpolicylabel_botpolicy_binding module \u2013 Binding Resource definition for describing association between botpolicylabel and botpolicy resources", "netscaler.adc.botpolicylabel module \u2013 Configuration for Bot policy label resource.", "netscaler.adc.botprofile_blacklist_binding module \u2013 Binding Resource definition for describing association between botprofile and blacklist resources", "netscaler.adc.botprofile_captcha_binding module \u2013 Binding Resource definition for describing association between botprofile and captcha resources", "netscaler.adc.botprofile_ipreputation_binding module \u2013 Binding Resource definition for describing association between botprofile and ipreputation resources", "netscaler.adc.botprofile_kmdetectionexpr_binding module \u2013 Binding Resource definition for describing association between botprofile and kmdetectionexpr resources", "netscaler.adc.botprofile_logexpression_binding module \u2013 Binding Resource definition for describing association between botprofile and logexpression resources", "netscaler.adc.botprofile module \u2013 Configuration for Bot profile resource.", "netscaler.adc.botprofile_ratelimit_binding module \u2013 Binding Resource definition for describing association between botprofile and ratelimit resources", "netscaler.adc.botprofile_tps_binding module \u2013 Binding Resource definition for describing association between botprofile and tps resources", "netscaler.adc.botprofile_trapinsertionurl_binding module \u2013 Binding Resource definition for describing association between botprofile and trapinsertionurl resources", "netscaler.adc.botprofile_whitelist_binding module \u2013 Binding Resource definition for describing association between botprofile and whitelist resources", "netscaler.adc.botsettings module \u2013 Configuration for Bot engine settings resource.", "netscaler.adc.botsignature module \u2013 Configuration for bot signatures resource.", "netscaler.adc.bridgegroup module \u2013 Configuration for bridge group resource.", "netscaler.adc.bridgegroup_nsip6_binding module \u2013 Binding Resource definition for describing association between bridgegroup and nsip6 resources", "netscaler.adc.bridgegroup_nsip_binding module \u2013 Binding Resource definition for describing association between bridgegroup and nsip resources", "netscaler.adc.bridgegroup_vlan_binding module \u2013 Binding Resource definition for describing association between bridgegroup and vlan resources", "netscaler.adc.bridgetable module \u2013 Configuration for bridge table entry resource.", "netscaler.adc.cachecontentgroup module \u2013 Configuration for Integrated Cache content group resource.", "netscaler.adc.cacheforwardproxy module \u2013 Configuration for forward proxy resource.", "netscaler.adc.cacheglobal_cachepolicy_binding module \u2013 Binding Resource definition for describing association between cacheglobal and cachepolicy resources", "netscaler.adc.cacheobject module \u2013 Configuration for cache object resource.", "netscaler.adc.cacheparameter module \u2013 Configuration for cache parameter resource.", "netscaler.adc.cachepolicy module \u2013 Configuration for Integrated Cache policy resource.", "netscaler.adc.cachepolicylabel_cachepolicy_binding module \u2013 Binding Resource definition for describing association between cachepolicylabel and cachepolicy resources", "netscaler.adc.cachepolicylabel module \u2013 Configuration for cache policy label resource.", "netscaler.adc.cacheselector module \u2013 Configuration for cache selector resource.", "netscaler.adc.callhome module \u2013 Configuration for callhome resource.", "netscaler.adc.change_password module \u2013 Change password of a user on a NetScaler ADC node.", "netscaler.adc.channel_interface_binding module \u2013 Binding Resource definition for describing association between channel and interface resources", "netscaler.adc.channel module \u2013 Configuration for channel resource.", "netscaler.adc.cloudallowedngsticketprofile module \u2013 Configuration for Allowed ticket profile for NGS resource.", "netscaler.adc.cloudawsparam module \u2013 Configuration for cloud awsParam resource.", "netscaler.adc.cloudcredential module \u2013 Configuration for cloud credentials resource.", "netscaler.adc.cloudngsparameter module \u2013 Configuration for cloud ngsparameter resource.", "netscaler.adc.cloudparameter module \u2013 Configuration for cloud parameter resource.", "netscaler.adc.cloudparaminternal module \u2013 Configuration for cloud paramInternal resource.", "netscaler.adc.cloudprofile module \u2013 Configuration for cloud profile resource.", "netscaler.adc.cloudtunnelparameter module \u2013 Configuration for Cloudtunnel parameter resource.", "netscaler.adc.cloudtunnelvserver module \u2013 Configuration for Cloud Tunnel virtual server resource.", "netscaler.adc.cluster module \u2013 Configuration for 0 resource.", "netscaler.adc.clusterfiles module \u2013 Configuration for files resource.", "netscaler.adc.clusterinstance module \u2013 Configuration for cluster instance resource.", "netscaler.adc.clusternode module \u2013 Configuration for cluster node resource.", "netscaler.adc.clusternode_routemonitor_binding module \u2013 Binding Resource definition for describing association between clusternode and routemonitor resources", "netscaler.adc.clusternodegroup_authenticationvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and authenticationvserver resources", "netscaler.adc.clusternodegroup_clusternode_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and clusternode resources", "netscaler.adc.clusternodegroup_crvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and crvserver resources", "netscaler.adc.clusternodegroup_csvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and csvserver resources", "netscaler.adc.clusternodegroup_gslbsite_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and gslbsite resources", "netscaler.adc.clusternodegroup_gslbvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and gslbvserver resources", "netscaler.adc.clusternodegroup_lbvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and lbvserver resources", "netscaler.adc.clusternodegroup module \u2013 Configuration for Node group object type resource.", "netscaler.adc.clusternodegroup_nslimitidentifier_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and nslimitidentifier resources", "netscaler.adc.clusternodegroup_service_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and service resources", "netscaler.adc.clusternodegroup_streamidentifier_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and streamidentifier resources", "netscaler.adc.clusternodegroup_vpnvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and vpnvserver resources", "netscaler.adc.clusterpropstatus module \u2013 Configuration for 0 resource.", "netscaler.adc.cmpaction module \u2013 Configuration for compression action resource.", "netscaler.adc.cmpglobal_cmppolicy_binding module \u2013 Binding Resource definition for describing association between cmpglobal and cmppolicy resources", "netscaler.adc.cmpparameter module \u2013 Configuration for CMP parameter resource.", "netscaler.adc.cmppolicy module \u2013 Configuration for compression policy resource.", "netscaler.adc.cmppolicylabel_cmppolicy_binding module \u2013 Binding Resource definition for describing association between cmppolicylabel and cmppolicy resources", "netscaler.adc.cmppolicylabel module \u2013 Configuration for compression policy label resource.", "netscaler.adc.contentinspectionaction module \u2013 Configuration for Content Inspection action resource.", "netscaler.adc.contentinspectioncallout module \u2013 Configuration for Content Inspection callout resource.", "netscaler.adc.contentinspectionglobal_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between contentinspectionglobal and contentinspectionpolicy resources", "netscaler.adc.contentinspectionparameter module \u2013 Configuration for Contentinspection parameter resource.", "netscaler.adc.contentinspectionpolicy module \u2013 Configuration for ContentInspection policy resource.", "netscaler.adc.contentinspectionpolicylabel_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between contentinspectionpolicylabel and contentinspectionpolicy resources", "netscaler.adc.contentinspectionpolicylabel module \u2013 Configuration for ContentInspection policy label resource.", "netscaler.adc.contentinspectionprofile module \u2013 Configuration for ContentInspection profile resource.", "netscaler.adc.crpolicy module \u2013 Configuration for cache redirection policy resource.", "netscaler.adc.crvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between crvserver and analyticsprofile resources", "netscaler.adc.crvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and appflowpolicy resources", "netscaler.adc.crvserver_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and appfwpolicy resources", "netscaler.adc.crvserver_appqoepolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and appqoepolicy resources", "netscaler.adc.crvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and cachepolicy resources", "netscaler.adc.crvserver_cmppolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and cmppolicy resources", "netscaler.adc.crvserver_crpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and crpolicy resources", "netscaler.adc.crvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and cspolicy resources", "netscaler.adc.crvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and feopolicy resources", "netscaler.adc.crvserver_icapolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and icapolicy resources", "netscaler.adc.crvserver_lbvserver_binding module \u2013 Binding Resource definition for describing association between crvserver and lbvserver resources", "netscaler.adc.crvserver module \u2013 Configuration for CR virtual server resource.", "netscaler.adc.crvserver_policymap_binding module \u2013 Binding Resource definition for describing association between crvserver and policymap resources", "netscaler.adc.crvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and responderpolicy resources", "netscaler.adc.crvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and rewritepolicy resources", "netscaler.adc.crvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and spilloverpolicy resources", "netscaler.adc.csaction module \u2013 Configuration for Content Switching action resource.", "netscaler.adc.csparameter module \u2013 Configuration for CS parameter resource.", "netscaler.adc.cspolicy module \u2013 Configuration for content-switching policy resource.", "netscaler.adc.cspolicylabel_cspolicy_binding module \u2013 Binding Resource definition for describing association between cspolicylabel and cspolicy resources", "netscaler.adc.cspolicylabel module \u2013 Configuration for CS policy label resource.", "netscaler.adc.csvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between csvserver and analyticsprofile resources", "netscaler.adc.csvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and appflowpolicy resources", "netscaler.adc.csvserver_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and appfwpolicy resources", "netscaler.adc.csvserver_appqoepolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and appqoepolicy resources", "netscaler.adc.csvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and auditnslogpolicy resources", "netscaler.adc.csvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and auditsyslogpolicy resources", "netscaler.adc.csvserver_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and authorizationpolicy resources", "netscaler.adc.csvserver_botpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and botpolicy resources", "netscaler.adc.csvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and cachepolicy resources", "netscaler.adc.csvserver_cmppolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and cmppolicy resources", "netscaler.adc.csvserver_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and contentinspectionpolicy resources", "netscaler.adc.csvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and cspolicy resources", "netscaler.adc.csvserver_domain_binding module \u2013 Binding Resource definition for describing association between csvserver and domain resources", "netscaler.adc.csvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and feopolicy resources", "netscaler.adc.csvserver_gslbvserver_binding module \u2013 Binding Resource definition for describing association between csvserver and gslbvserver resources", "netscaler.adc.csvserver_lbvserver_binding module \u2013 Binding Resource definition for describing association between csvserver and lbvserver resources", "netscaler.adc.csvserver module \u2013 Configuration for CS virtual server resource.", "netscaler.adc.csvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and responderpolicy resources", "netscaler.adc.csvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and rewritepolicy resources", "netscaler.adc.csvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and spilloverpolicy resources", "netscaler.adc.csvserver_tmtrafficpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and tmtrafficpolicy resources", "netscaler.adc.csvserver_transformpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and transformpolicy resources", "netscaler.adc.csvserver_vpnvserver_binding module \u2013 Binding Resource definition for describing association between csvserver and vpnvserver resources", "netscaler.adc.dbdbprofile module \u2013 Configuration for DB profile resource.", "netscaler.adc.dbuser module \u2013 Configuration for DB user resource.", "netscaler.adc.dnsaaaarec module \u2013 Configuration for IPv6 address type record resource.", "netscaler.adc.dnsaction64 module \u2013 Configuration for dns64 action resource.", "netscaler.adc.dnsaction module \u2013 Configuration for DNS action resource.", "netscaler.adc.dnsaddrec module \u2013 Configuration for address type record resource.", "netscaler.adc.dnscaarec module \u2013 Configuration for CAA record resource.", "netscaler.adc.dnscnamerec module \u2013 Configuration for CNAME record resource.", "netscaler.adc.dnsglobal_dnspolicy_binding module \u2013 Binding Resource definition for describing association between dnsglobal and dnspolicy resources", "netscaler.adc.dnskey module \u2013 Configuration for dns key resource.", "netscaler.adc.dnsmxrec module \u2013 Configuration for MX record resource.", "netscaler.adc.dnsnameserver module \u2013 Configuration for name server resource.", "netscaler.adc.dnsnaptrrec module \u2013 Configuration for NAPTR record resource.", "netscaler.adc.dnsnsrec module \u2013 Configuration for name server record resource.", "netscaler.adc.dnsparameter module \u2013 Configuration for DNS parameter resource.", "netscaler.adc.dnspolicy64 module \u2013 Configuration for dns64 policy resource.", "netscaler.adc.dnspolicy module \u2013 Configuration for DNS policy resource.", "netscaler.adc.dnspolicylabel_dnspolicy_binding module \u2013 Binding Resource definition for describing association between dnspolicylabel and dnspolicy resources", "netscaler.adc.dnspolicylabel module \u2013 Configuration for dns policy label resource.", "netscaler.adc.dnsprofile module \u2013 Configuration for DNS profile resource.", "netscaler.adc.dnsproxyrecords module \u2013 Configuration for proxy record resource.", "netscaler.adc.dnsptrrec module \u2013 Configuration for PTR record resource.", "netscaler.adc.dnssoarec module \u2013 Configuration for SOA record resource.", "netscaler.adc.dnssrvrec module \u2013 Configuration for server record resource.", "netscaler.adc.dnssubnetcache module \u2013 Configuration for subnet cache resource.", "netscaler.adc.dnssuffix module \u2013 Configuration for DNS suffix resource.", "netscaler.adc.dnstxtrec module \u2013 Configuration for TXT record resource.", "netscaler.adc.dnsview module \u2013 Configuration for DNS view resource.", "netscaler.adc.dnszone module \u2013 Configuration for DNS zone resource.", "netscaler.adc.endpointinfo module \u2013 Configuration for Information resource.", "netscaler.adc.extendedmemoryparam module \u2013 Configuration for Parameter for extended memory used by LSN and Subscriber Store resource.", "netscaler.adc.feoaction module \u2013 Configuration for Front end optimization action resource.", "netscaler.adc.feoglobal_feopolicy_binding module \u2013 Binding Resource definition for describing association between feoglobal and feopolicy resources", "netscaler.adc.feoparameter module \u2013 Configuration for FEO parameter resource.", "netscaler.adc.feopolicy module \u2013 Configuration for Front end optimization policy resource.", "netscaler.adc.fis_channel_binding module \u2013 Binding Resource definition for describing association between fis and channel resources", "netscaler.adc.fis_interface_binding module \u2013 Binding Resource definition for describing association between fis and interface resources", "netscaler.adc.fis module \u2013 Configuration for \u201cFIS\u201d resource.", "netscaler.adc.forwardingsession module \u2013 Configuration for session forward resource.", "netscaler.adc.gslbconfig module \u2013 Configuration for gslb config resource.", "netscaler.adc.gslbldnsentries module \u2013 Configuration for LDNS entry resource.", "netscaler.adc.gslbldnsentry module \u2013 Configuration for LDNS entry resource.", "netscaler.adc.gslbparameter module \u2013 Configuration for GSLB parameter resource.", "netscaler.adc.gslbservice_dnsview_binding module \u2013 Binding Resource definition for describing association between gslbservice and dnsview resources", "netscaler.adc.gslbservice_lbmonitor_binding module \u2013 Binding Resource definition for describing association between gslbservice and lbmonitor resources", "netscaler.adc.gslbservice module \u2013 Configuration for GSLB service resource.", "netscaler.adc.gslbservicegroup_gslbservicegroupmember_binding module \u2013 Binding Resource definition for describing association between gslbservicegroup and gslbservicegroupmember resources", "netscaler.adc.gslbservicegroup_lbmonitor_binding module \u2013 Binding Resource definition for describing association between gslbservicegroup and lbmonitor resources", "netscaler.adc.gslbservicegroup module \u2013 Configuration for GSLB service group resource.", "netscaler.adc.gslbsite module \u2013 Configuration for GSLB site resource.", "netscaler.adc.gslbvserver_domain_binding module \u2013 Binding Resource definition for describing association between gslbvserver and domain resources", "netscaler.adc.gslbvserver_gslbservice_binding module \u2013 Binding Resource definition for describing association between gslbvserver and gslbservice resources", "netscaler.adc.gslbvserver_gslbservicegroup_binding module \u2013 Binding Resource definition for describing association between gslbvserver and gslbservicegroup resources", "netscaler.adc.gslbvserver_lbpolicy_binding module \u2013 Binding Resource definition for describing association between gslbvserver and lbpolicy resources", "netscaler.adc.gslbvserver module \u2013 Configuration for Global Server Load Balancing Virtual Server resource.", "netscaler.adc.gslbvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between gslbvserver and spilloverpolicy resources", "netscaler.adc.hafailover module \u2013 Configuration for failover resource.", "netscaler.adc.hafiles module \u2013 Configuration for files resource.", "netscaler.adc.hanode module \u2013 Configuration for node resource.", "netscaler.adc.hanode_routemonitor6_binding module \u2013 Binding Resource definition for describing association between hanode and routemonitor6 resources", "netscaler.adc.hanode_routemonitor_binding module \u2013 Binding Resource definition for describing association between hanode and routemonitor resources", "netscaler.adc.hasync module \u2013 Configuration for sync resource.", "netscaler.adc.icaaccessprofile module \u2013 Configuration for ica accessprofile resource.", "netscaler.adc.icaaction module \u2013 Configuration for ica action resource.", "netscaler.adc.icaglobal_icapolicy_binding module \u2013 Binding Resource definition for describing association between icaglobal and icapolicy resources", "netscaler.adc.icalatencyprofile module \u2013 Configuration for Profile for Latency monitoring resource.", "netscaler.adc.icaparameter module \u2013 Configuration for Config Parameters for NS ICA resource.", "netscaler.adc.icapolicy module \u2013 Configuration for ICA policy resource.", "netscaler.adc.inat module \u2013 Configuration for inbound nat resource.", "netscaler.adc.inatparam module \u2013 Configuration for INAT parameter resource.", "Netscaler.Adc", "netscaler.adc.install module \u2013 Configuration for 0 resource.", "netscaler.adc.interfacepair module \u2013 Configuration for \u201cInterface Pair\u201d resource.", "netscaler.adc.ip6tunnel module \u2013 Configuration for ip6 Tunnel resource.", "netscaler.adc.ip6tunnelparam module \u2013 Configuration for ip6 tunnel parameter resource.", "netscaler.adc.ipsecalgprofile module \u2013 Configuration for IPSEC ALG profile resource.", "netscaler.adc.ipsecalgsession module \u2013 Configuration for IPSEC ALG session resource.", "netscaler.adc.ipsecparameter module \u2013 Configuration for IPSEC paramter resource.", "netscaler.adc.ipsecprofile module \u2013 Configuration for IPSEC profile resource.", "netscaler.adc.ipset module \u2013 Configuration for network ipset resource.", "netscaler.adc.ipset_nsip6_binding module \u2013 Binding Resource definition for describing association between ipset and nsip6 resources", "netscaler.adc.ipset_nsip_binding module \u2013 Binding Resource definition for describing association between ipset and nsip resources", "netscaler.adc.iptunnel module \u2013 Configuration for ip Tunnel resource.", "netscaler.adc.iptunnelparam module \u2013 Configuration for ip tunnel parameter resource.", "netscaler.adc.ipv6 module \u2013 Configuration for ip v6 resource.", "netscaler.adc.l2param module \u2013 Configuration for Layer 2 related parameter resource.", "netscaler.adc.l3param module \u2013 Configuration for Layer 3 related parameter resource.", "netscaler.adc.l4param module \u2013 Configuration for Layer 4 related parameter resource.", "netscaler.adc.lacp module \u2013 Configuration for Link aggregation control protocol resource.", "netscaler.adc.lbaction module \u2013 Configuration for lb action resource.", "netscaler.adc.lbglobal_lbpolicy_binding module \u2013 Binding Resource definition for describing association between lbglobal and lbpolicy resources", "netscaler.adc.lbgroup_lbvserver_binding module \u2013 Binding Resource definition for describing association between lbgroup and lbvserver resources", "netscaler.adc.lbgroup module \u2013 Configuration for LB group resource.", "netscaler.adc.lbmetrictable_metric_binding module \u2013 Binding Resource definition for describing association between lbmetrictable and metric resources", "netscaler.adc.lbmetrictable module \u2013 Configuration for metric table resource.", "netscaler.adc.lbmonitor_metric_binding module \u2013 Binding Resource definition for describing association between lbmonitor and metric resources", "netscaler.adc.lbmonitor module \u2013 Configuration for monitor resource.", "netscaler.adc.lbmonitor_sslcertkey_binding module \u2013 Binding Resource definition for describing association between lbmonitor and sslcertkey resources", "netscaler.adc.lbparameter module \u2013 Configuration for LB parameter resource.", "netscaler.adc.lbpersistentsessions module \u2013 Configuration for persistence session resource.", "netscaler.adc.lbpolicy module \u2013 Configuration for lb policy resource.", "netscaler.adc.lbpolicylabel_lbpolicy_binding module \u2013 Binding Resource definition for describing association between lbpolicylabel and lbpolicy resources", "netscaler.adc.lbpolicylabel module \u2013 Configuration for lb policy label resource.", "netscaler.adc.lbprofile module \u2013 Configuration for LB profile resource.", "netscaler.adc.lbroute6 module \u2013 Configuration for LB route6 resource.", "netscaler.adc.lbroute module \u2013 Configuration for LB route resource.", "netscaler.adc.lbsipparameters module \u2013 Configuration for SIP parameters resource.", "netscaler.adc.lbvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between lbvserver and analyticsprofile resources", "netscaler.adc.lbvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and appflowpolicy resources", "netscaler.adc.lbvserver_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and appfwpolicy resources", "netscaler.adc.lbvserver_appqoepolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and appqoepolicy resources", "netscaler.adc.lbvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and auditnslogpolicy resources", "netscaler.adc.lbvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and auditsyslogpolicy resources", "netscaler.adc.lbvserver_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and authorizationpolicy resources", "netscaler.adc.lbvserver_botpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and botpolicy resources", "netscaler.adc.lbvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and cachepolicy resources", "netscaler.adc.lbvserver_cmppolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and cmppolicy resources", "netscaler.adc.lbvserver_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and contentinspectionpolicy resources", "netscaler.adc.lbvserver_dnspolicy64_binding module \u2013 Binding Resource definition for describing association between lbvserver and dnspolicy64 resources", "netscaler.adc.lbvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and feopolicy resources", "netscaler.adc.lbvserver_lbpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and lbpolicy resources", "netscaler.adc.lbvserver module \u2013 Configuration for Load Balancing Virtual Server resource.", "netscaler.adc.lbvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and responderpolicy resources", "netscaler.adc.lbvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and rewritepolicy resources", "netscaler.adc.lbvserver_service_binding module \u2013 Binding Resource definition for describing association between lbvserver and service resources", "netscaler.adc.lbvserver_servicegroup_binding module \u2013 Binding Resource definition for describing association between lbvserver and servicegroup resources", "netscaler.adc.lbvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and spilloverpolicy resources", "netscaler.adc.lbvserver_tmtrafficpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and tmtrafficpolicy resources", "netscaler.adc.lbvserver_transformpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and transformpolicy resources", "netscaler.adc.lbvserver_videooptimizationdetectionpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and videooptimizationdetectionpolicy resources", "netscaler.adc.lbvserver_videooptimizationpacingpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and videooptimizationpacingpolicy resources", "netscaler.adc.lbwlm_lbvserver_binding module \u2013 Binding Resource definition for describing association between lbwlm and lbvserver resources", "netscaler.adc.lbwlm module \u2013 Configuration for web log manager resource.", "netscaler.adc.linkset_channel_binding module \u2013 Binding Resource definition for describing association between linkset and channel resources", "netscaler.adc.linkset_interface_binding module \u2013 Binding Resource definition for describing association between linkset and interface resources", "netscaler.adc.linkset module \u2013 Configuration for link set resource.", "netscaler.adc.lldpneighbors module \u2013 Configuration for lldp neighbors resource.", "netscaler.adc.lldpparam module \u2013 Configuration for lldp params resource.", "netscaler.adc.location module \u2013 Configuration for location resource.", "netscaler.adc.locationfile6 module \u2013 Configuration for location file6 resource.", "netscaler.adc.locationfile module \u2013 Configuration for location file resource.", "netscaler.adc.locationparameter module \u2013 Configuration for location parameter resource.", "netscaler.adc.login module \u2013 Login to a NetScaler ADC node.", "netscaler.adc.logout module \u2013 Logout from a NetScaler ADC node.", "netscaler.adc.lsnappsattributes module \u2013 Configuration for LSN Application Attributes resource.", "netscaler.adc.lsnappsprofile_lsnappsattributes_binding module \u2013 Binding Resource definition for describing association between lsnappsprofile and lsnappsattributes resources", "netscaler.adc.lsnappsprofile module \u2013 Configuration for LSN Application Profile resource.", "netscaler.adc.lsnappsprofile_port_binding module \u2013 Binding Resource definition for describing association between lsnappsprofile and port resources", "netscaler.adc.lsnclient module \u2013 Configuration for lsn client resource.", "netscaler.adc.lsnclient_network6_binding module \u2013 Binding Resource definition for describing association between lsnclient and network6 resources", "netscaler.adc.lsnclient_network_binding module \u2013 Binding Resource definition for describing association between lsnclient and network resources", "netscaler.adc.lsnclient_nsacl6_binding module \u2013 Binding Resource definition for describing association between lsnclient and nsacl6 resources", "netscaler.adc.lsnclient_nsacl_binding module \u2013 Binding Resource definition for describing association between lsnclient and nsacl resources", "netscaler.adc.lsngroup_ipsecalgprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and ipsecalgprofile resources", "netscaler.adc.lsngroup_lsnappsprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnappsprofile resources", "netscaler.adc.lsngroup_lsnhttphdrlogprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnhttphdrlogprofile resources", "netscaler.adc.lsngroup_lsnlogprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnlogprofile resources", "netscaler.adc.lsngroup_lsnpool_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnpool resources", "netscaler.adc.lsngroup_lsnrtspalgprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnrtspalgprofile resources", "netscaler.adc.lsngroup_lsnsipalgprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnsipalgprofile resources", "netscaler.adc.lsngroup_lsntransportprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsntransportprofile resources", "netscaler.adc.lsngroup module \u2013 Configuration for LSN group resource.", "netscaler.adc.lsngroup_pcpserver_binding module \u2013 Binding Resource definition for describing association between lsngroup and pcpserver resources", "netscaler.adc.lsnhttphdrlogprofile module \u2013 Configuration for LSN HTTP header logging Profile resource.", "netscaler.adc.lsnip6profile module \u2013 Configuration for LSN ip6 Profile resource.", "netscaler.adc.lsnlogprofile module \u2013 Configuration for LSN logging Profile resource.", "netscaler.adc.lsnparameter module \u2013 Configuration for LSN parameter resource.", "netscaler.adc.lsnpool_lsnip_binding module \u2013 Binding Resource definition for describing association between lsnpool and lsnip resources", "netscaler.adc.lsnpool module \u2013 Configuration for LSN pool resource.", "netscaler.adc.lsnrtspalgprofile module \u2013 Configuration for LSN RTSPALG Profile resource.", "netscaler.adc.lsnrtspalgsession module \u2013 Configuration for LSN RTSPALG session resource.", "netscaler.adc.lsnsession module \u2013 Configuration for lsn session resource.", "netscaler.adc.lsnsipalgcall module \u2013 Configuration for LSN SIPALG call resource.", "netscaler.adc.lsnsipalgprofile module \u2013 Configuration for LSN SIPALG Profile resource.", "netscaler.adc.lsnstatic module \u2013 Configuration for static mapping resource.", "netscaler.adc.lsntransportprofile module \u2013 Configuration for LSN Transport Profile resource.", "netscaler.adc.mapbmr_bmrv4network_binding module \u2013 Binding Resource definition for describing association between mapbmr and bmrv4network resources", "netscaler.adc.mapbmr module \u2013 Configuration for MAP-T Basic Mapping rule resource.", "netscaler.adc.mapdmr module \u2013 Configuration for MAP-T Default Mapping rule resource.", "netscaler.adc.mapdomain_mapbmr_binding module \u2013 Binding Resource definition for describing association between mapdomain and mapbmr resources", "netscaler.adc.mapdomain module \u2013 Configuration for MAP-T Map Domain resource.", "netscaler.adc.nat64 module \u2013 Configuration for nat64 config resource.", "netscaler.adc.nat64param module \u2013 Configuration for NAT64 parameter resource.", "netscaler.adc.nd6 module \u2013 Configuration for nd6 resource.", "netscaler.adc.nd6ravariables module \u2013 Configuration for nd6 Router Advertisment configuration variables resource.", "netscaler.adc.nd6ravariables_onlinkipv6prefix_binding module \u2013 Binding Resource definition for describing association between nd6ravariables and onlinkipv6prefix resources", "netscaler.adc.netbridge_iptunnel_binding module \u2013 Binding Resource definition for describing association between netbridge and iptunnel resources", "netscaler.adc.netbridge module \u2013 Configuration for network bridge resource.", "netscaler.adc.netbridge_nsip6_binding module \u2013 Binding Resource definition for describing association between netbridge and nsip6 resources", "netscaler.adc.netbridge_nsip_binding module \u2013 Binding Resource definition for describing association between netbridge and nsip resources", "netscaler.adc.netbridge_vlan_binding module \u2013 Binding Resource definition for describing association between netbridge and vlan resources", "netscaler.adc.netprofile module \u2013 Configuration for Network profile resource.", "netscaler.adc.netprofile_natrule_binding module \u2013 Binding Resource definition for describing association between netprofile and natrule resources", "netscaler.adc.netprofile_srcportset_binding module \u2013 Binding Resource definition for describing association between netprofile and srcportset resources", "netscaler.adc.nsacls6 module \u2013 Configuration for ACL6 entry resource.", "netscaler.adc.nsacls module \u2013 Configuration for ACL entry resource.", "netscaler.adc.nsappflowcollector module \u2013 Configuration for appflowCollector resource.", "netscaler.adc.nsappflowparam module \u2013 Configuration for appflowParam resource.", "netscaler.adc.nsaptlicense module \u2013 Configuration for aptlicense resource.", "netscaler.adc.nsassignment module \u2013 Configuration for assignment resource.", "netscaler.adc.nscapacity module \u2013 Configuration for capacity resource.", "netscaler.adc.nscentralmanagementserver module \u2013 Configuration for centralmanagementserver resource.", "netscaler.adc.nsconfig module \u2013 Configuration for system config resource.", "netscaler.adc.nsconsoleloginprompt module \u2013 Configuration for console prompt resource.", "netscaler.adc.nscqaparam module \u2013 Configuration for cqaparam resource.", "netscaler.adc.nsdhcpparams module \u2013 Configuration for DHCP parameters resource.", "netscaler.adc.nsdiameter module \u2013 Configuration for Diameter Parameters resource.", "netscaler.adc.nsencryptionkey module \u2013 Configuration for encryption key resource.", "netscaler.adc.nsencryptionparams module \u2013 Configuration for default encryption parameters resource.", "netscaler.adc.nsextension module \u2013 Configuration for Extension resource.", "netscaler.adc.nsfeature module \u2013 Configuration for feature resource.", "netscaler.adc.nshmackey module \u2013 Configuration for HMAC key resource.", "netscaler.adc.nshostname module \u2013 Configuration for host name resource.", "netscaler.adc.nshttpparam module \u2013 Configuration for HTTP parameter resource.", "netscaler.adc.nshttpprofile module \u2013 Configuration for HTTP profile resource.", "netscaler.adc.nsicapprofile module \u2013 Configuration for ICAP profile resource.", "netscaler.adc.nsip6 module \u2013 Configuration for ip6 resource.", "netscaler.adc.nsip module \u2013 Configuration for ip resource.", "netscaler.adc.nslicenseparameters module \u2013 Configuration for licenseparameters resource.", "netscaler.adc.nslicenseproxyserver module \u2013 Configuration for licenseproxyserver resource.", "netscaler.adc.nslicenseserver module \u2013 Configuration for licenseserver resource.", "netscaler.adc.nslimitidentifier module \u2013 Configuration for limit Indetifier resource.", "netscaler.adc.nslimitselector module \u2013 Configuration for limit selector resource.", "netscaler.adc.nslimitsessions module \u2013 Configuration for limit sessions resource.", "netscaler.adc.nsmigration module \u2013 Configuration for Migration operation resource.", "netscaler.adc.nsmode module \u2013 Configuration for ns mode resource.", "netscaler.adc.nsparam module \u2013 Configuration for Citrix ADC parameters resource.", "netscaler.adc.nspartition_bridgegroup_binding module \u2013 Binding Resource definition for describing association between nspartition and bridgegroup resources", "netscaler.adc.nspartition module \u2013 Configuration for admin partition resource.", "netscaler.adc.nspartition_vlan_binding module \u2013 Binding Resource definition for describing association between nspartition and vlan resources", "netscaler.adc.nspartition_vxlan_binding module \u2013 Binding Resource definition for describing association between nspartition and vxlan resources", "netscaler.adc.nsratecontrol module \u2013 Configuration for rate control resource.", "netscaler.adc.nsrpcnode module \u2013 Configuration for rpc node resource.", "netscaler.adc.nsservicefunction module \u2013 Configuration for service Function resource.", "netscaler.adc.nsservicepath module \u2013 Configuration for service Chain resource.", "netscaler.adc.nsservicepath_nsservicefunction_binding module \u2013 Binding Resource definition for describing association between nsservicepath and nsservicefunction resources", "netscaler.adc.nssimpleacl6 module \u2013 Configuration for simple ACL6 resource.", "netscaler.adc.nssimpleacl module \u2013 Configuration for simple ACL resource.", "netscaler.adc.nsspparams module \u2013 Configuration for Surge Protection parameter resource.", "netscaler.adc.nsstats module \u2013 Configuration for stats resource.", "netscaler.adc.nssurgeq module \u2013 Configuration for surge queue resource.", "netscaler.adc.nstcpbufparam module \u2013 Configuration for tcp buffer parameter resource.", "netscaler.adc.nstcpparam module \u2013 Configuration for tcp parameters resource.", "netscaler.adc.nstcpprofile module \u2013 Configuration for TCP profile resource.", "netscaler.adc.nstimeout module \u2013 Configuration for timeout resource.", "netscaler.adc.nstimer_autoscalepolicy_binding module \u2013 Binding Resource definition for describing association between nstimer and autoscalepolicy resources", "netscaler.adc.nstimer module \u2013 Configuration for Timer resource.", "netscaler.adc.nstrace module \u2013 Configuration for nstrace operations resource.", "netscaler.adc.nstrafficdomain_bridgegroup_binding module \u2013 Binding Resource definition for describing association between nstrafficdomain and bridgegroup resources", "netscaler.adc.nstrafficdomain module \u2013 Configuration for Traffic Domain resource.", "netscaler.adc.nstrafficdomain_vlan_binding module \u2013 Binding Resource definition for describing association between nstrafficdomain and vlan resources", "netscaler.adc.nstrafficdomain_vxlan_binding module \u2013 Binding Resource definition for describing association between nstrafficdomain and vxlan resources", "netscaler.adc.nsvariable module \u2013 Configuration for variable resource.", "netscaler.adc.nsvpxparam module \u2013 Configuration for \u201cVPX\u201d resource.", "netscaler.adc.nsweblogparam module \u2013 Configuration for Web log parameters resource.", "netscaler.adc.nsxmlnamespace module \u2013 Configuration for XML namespace resource.", "netscaler.adc.ntpparam module \u2013 Configuration for NTP parameter resource.", "netscaler.adc.ntpserver module \u2013 Configuration for NTP server resource.", "netscaler.adc.onlinkipv6prefix module \u2013 Configuration for on-link IPv6 global prefixes for Router Advertisment resource.", "netscaler.adc.pcpprofile module \u2013 Configuration for PCP Profile resource.", "netscaler.adc.pcpserver module \u2013 Configuration for server resource.", "netscaler.adc.ping6 module \u2013 Configuration for 0 resource.", "netscaler.adc.ping module \u2013 Configuration for 0 resource.", "netscaler.adc.policydataset module \u2013 Configuration for TYPE set resource.", "netscaler.adc.policydataset_value_binding module \u2013 Binding Resource definition for describing association between policydataset and value resources", "netscaler.adc.policyexpression module \u2013 Configuration for expression resource.", "netscaler.adc.policyhttpcallout module \u2013 Configuration for HTTP callout resource.", "netscaler.adc.policymap module \u2013 Configuration for map policy resource.", "netscaler.adc.policyparam module \u2013 Configuration for policy parameter resource.", "netscaler.adc.policypatset module \u2013 Configuration for PAT set resource.", "netscaler.adc.policypatset_pattern_binding module \u2013 Binding Resource definition for describing association between policypatset and pattern resources", "netscaler.adc.policypatsetfile module \u2013 Configuration for patset file resource.", "netscaler.adc.policystringmap module \u2013 Configuration for string map resource.", "netscaler.adc.policystringmap_pattern_binding module \u2013 Binding Resource definition for describing association between policystringmap and pattern resources", "netscaler.adc.policyurlset module \u2013 Configuration for URL set resource.", "netscaler.adc.protocolhttpband module \u2013 Configuration for HTTP request/response band resource.", "netscaler.adc.ptp module \u2013 Configuration for Precision Time Protocol resource.", "netscaler.adc.quicbridgeprofile module \u2013 Configuration for QUIC BRIDGE profile resource.", "netscaler.adc.quicparam module \u2013 Configuration for Citrix ADC QUIC parameters resource.", "netscaler.adc.quicprofile module \u2013 Configuration for QUIC profile resource.", "netscaler.adc.radiusnode module \u2013 Configuration for RADIUS Node resource.", "netscaler.adc.rdpclientprofile module \u2013 Configuration for RDP clientprofile resource.", "netscaler.adc.rdpconnections module \u2013 Configuration for active rdp connections resource.", "netscaler.adc.rdpserverprofile module \u2013 Configuration for RDP serverprofile resource.", "netscaler.adc.reboot module \u2013 Configuration for 0 resource.", "netscaler.adc.reportingconfig module \u2013 Configuration for reporting config resource.", "netscaler.adc.reputationsettings module \u2013 Configuration for Reputation service settings resource.", "netscaler.adc.responderaction module \u2013 Configuration for responder action resource.", "netscaler.adc.responderglobal_responderpolicy_binding module \u2013 Binding Resource definition for describing association between responderglobal and responderpolicy resources", "netscaler.adc.responderhtmlpage module \u2013 Configuration for Responder HTML page resource.", "netscaler.adc.responderparam module \u2013 Configuration for responser parameter resource.", "netscaler.adc.responderpolicy module \u2013 Configuration for responder policy resource.", "netscaler.adc.responderpolicylabel module \u2013 Configuration for responder policy label resource.", "netscaler.adc.responderpolicylabel_responderpolicy_binding module \u2013 Binding Resource definition for describing association between responderpolicylabel and responderpolicy resources", "netscaler.adc.rewriteaction module \u2013 Configuration for rewrite action resource.", "netscaler.adc.rewriteglobal_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between rewriteglobal and rewritepolicy resources", "netscaler.adc.rewriteparam module \u2013 Configuration for rewrite parameter resource.", "netscaler.adc.rewritepolicy module \u2013 Configuration for rewrite policy resource.", "netscaler.adc.rewritepolicylabel module \u2013 Configuration for rewrite policy label resource.", "netscaler.adc.rewritepolicylabel_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between rewritepolicylabel and rewritepolicy resources", "netscaler.adc.rnat6 module \u2013 Configuration for IPv6 RNAT configured route resource.", "netscaler.adc.rnat6_nsip6_binding module \u2013 Binding Resource definition for describing association between rnat6 and nsip6 resources", "netscaler.adc.rnat module \u2013 Configuration for RNAT configured route resource.", "netscaler.adc.rnat_nsip_binding module \u2013 Binding Resource definition for describing association between rnat and nsip resources", "netscaler.adc.rnat_retainsourceportset_binding module \u2013 Binding Resource definition for describing association between rnat and retainsourceportset resources", "netscaler.adc.rnatglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between rnatglobal and auditsyslogpolicy resources", "netscaler.adc.rnatparam module \u2013 Configuration for RNAT parameter resource.", "netscaler.adc.rnatsession module \u2013 Configuration for RNAT session resource.", "netscaler.adc.route6 module \u2013 Configuration for route 6 resource.", "netscaler.adc.route module \u2013 Configuration for route resource.", "netscaler.adc.routerdynamicrouting module \u2013 Configuration for dynamic routing config resource.", "netscaler.adc.rsskeytype module \u2013 Configuration for RSS key type resource.", "netscaler.adc.server module \u2013 Configuration for server resource.", "netscaler.adc.service_lbmonitor_binding module \u2013 Binding Resource definition for describing association between service and lbmonitor resources", "netscaler.adc.service module \u2013 Configuration for service resource.", "netscaler.adc.servicegroup_lbmonitor_binding module \u2013 Binding Resource definition for describing association between servicegroup and lbmonitor resources", "netscaler.adc.servicegroup module \u2013 Configuration for service group resource.", "netscaler.adc.servicegroup_servicegroupmember_binding module \u2013 Binding Resource definition for describing association between servicegroup and servicegroupmember resources", "netscaler.adc.smppparam module \u2013 Configuration for SMPP configuration parameters resource.", "netscaler.adc.smppuser module \u2013 Configuration for SMPP user resource.", "netscaler.adc.snmpalarm module \u2013 Configuration for alarm resource.", "netscaler.adc.snmpcommunity module \u2013 Configuration for community resource.", "netscaler.adc.snmpengineid module \u2013 Configuration for SNMP engine id resource.", "netscaler.adc.snmpgroup module \u2013 Configuration for SNMP group resource.", "netscaler.adc.snmpmanager module \u2013 Configuration for manager resource.", "netscaler.adc.snmpmib module \u2013 Configuration for SNMP mib resource.", "netscaler.adc.snmpoption module \u2013 Configuration for SNMP option resource.", "netscaler.adc.snmptrap module \u2013 Configuration for snmp trap resource.", "netscaler.adc.snmptrap_snmpuser_binding module \u2013 Binding Resource definition for describing association between snmptrap and snmpuser resources", "netscaler.adc.snmpuser module \u2013 Configuration for SNMP user resource.", "netscaler.adc.snmpview module \u2013 Configuration for view resource.", "netscaler.adc.spilloveraction module \u2013 Configuration for Spillover action resource.", "netscaler.adc.spilloverpolicy module \u2013 Configuration for Spillover policy resource.", "netscaler.adc.sslaction module \u2013 Configuration for SSL action resource.", "netscaler.adc.sslcacertgroup module \u2013 Configuration for Group of CA certificate-key pairs resource.", "netscaler.adc.sslcacertgroup_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslcacertgroup and sslcertkey resources", "netscaler.adc.sslcert module \u2013 Configuration for cerificate resource.", "netscaler.adc.sslcertbundle module \u2013 Configuration for Imported Certbundle resource.", "netscaler.adc.sslcertfile module \u2013 Configuration for Imported Certfile resource.", "netscaler.adc.sslcertificatechain module \u2013 Configuration for linked certificate resource.", "netscaler.adc.sslcertkey module \u2013 Configuration for certificate key resource.", "netscaler.adc.sslcertkey_sslocspresponder_binding module \u2013 Binding Resource definition for describing association between sslcertkey and sslocspresponder resources", "netscaler.adc.sslcertkeybundle module \u2013 Configuration for certkey bundle resource.", "netscaler.adc.sslcertreq module \u2013 Configuration for certificate request resource.", "netscaler.adc.sslcipher module \u2013 Configuration for cipher resource.", "netscaler.adc.sslcipher_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslcipher and sslciphersuite resources", "netscaler.adc.sslcrl module \u2013 Configuration for Certificate Revocation List resource.", "netscaler.adc.sslcrlfile module \u2013 Configuration for Imported crl files resource.", "netscaler.adc.ssldhfile module \u2013 Configuration for dh imported file resource.", "netscaler.adc.ssldhparam module \u2013 Configuration for dh Parameter resource.", "netscaler.adc.ssldtlsprofile module \u2013 Configuration for DTLS profile resource.", "netscaler.adc.sslecdsakey module \u2013 Configuration for ecdsa key resource.", "netscaler.adc.sslfips module \u2013 Configuration for fips resource.", "netscaler.adc.sslfipskey module \u2013 Configuration for FIPS key resource.", "netscaler.adc.sslfipssimsource module \u2013 Configuration for FIPsSIM source resource.", "netscaler.adc.sslfipssimtarget module \u2013 Configuration for FIPS SIM Target resource.", "netscaler.adc.sslglobal_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslglobal and sslpolicy resources", "netscaler.adc.sslhsmkey module \u2013 Configuration for HSM key resource.", "netscaler.adc.sslkeyfile module \u2013 Configuration for Imported ssl key files resource.", "netscaler.adc.ssllogprofile module \u2013 Configuration for SSL logging Profile resource.", "netscaler.adc.sslocspresponder module \u2013 Configuration for OCSP responser resource.", "netscaler.adc.sslparameter module \u2013 Configuration for SSL parameter resource.", "netscaler.adc.sslpkcs12 module \u2013 Configuration for pkcs12 resource.", "netscaler.adc.sslpkcs8 module \u2013 Configuration for pkcs8 resource.", "netscaler.adc.sslpolicy module \u2013 Configuration for SSL policy resource.", "netscaler.adc.sslpolicylabel module \u2013 Configuration for SSL policy label resource.", "netscaler.adc.sslpolicylabel_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslpolicylabel and sslpolicy resources", "netscaler.adc.sslprofile_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslprofile and ecccurve resources", "netscaler.adc.sslprofile module \u2013 Configuration for SSL profile resource.", "netscaler.adc.sslprofile_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslprofile and sslcertkey resources", "netscaler.adc.sslprofile_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslprofile and sslcipher resources", "netscaler.adc.sslprofile_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslprofile and sslciphersuite resources", "netscaler.adc.sslrsakey module \u2013 Configuration for RSA key resource.", "netscaler.adc.sslservice_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslservice and ecccurve resources", "netscaler.adc.sslservice module \u2013 Configuration for SSL service resource.", "netscaler.adc.sslservice_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslservice and sslcertkey resources", "netscaler.adc.sslservice_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslservice and sslcipher resources", "netscaler.adc.sslservice_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslservice and sslciphersuite resources", "netscaler.adc.sslservice_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslservice and sslpolicy resources", "netscaler.adc.sslservicegroup_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and ecccurve resources", "netscaler.adc.sslservicegroup module \u2013 Configuration for SSL service group resource.", "netscaler.adc.sslservicegroup_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and sslcertkey resources", "netscaler.adc.sslservicegroup_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and sslcipher resources", "netscaler.adc.sslservicegroup_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and sslciphersuite resources", "netscaler.adc.sslvserver_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslvserver and ecccurve resources", "netscaler.adc.sslvserver module \u2013 Configuration for SSL virtual server resource.", "netscaler.adc.sslvserver_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslcertkey resources", "netscaler.adc.sslvserver_sslcertkeybundle_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslcertkeybundle resources", "netscaler.adc.sslvserver_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslcipher resources", "netscaler.adc.sslvserver_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslciphersuite resources", "netscaler.adc.sslvserver_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslpolicy resources", "netscaler.adc.sslwrapkey module \u2013 Configuration for WRAP key resource.", "netscaler.adc.streamidentifier module \u2013 Configuration for identifier resource.", "netscaler.adc.streamselector module \u2013 Configuration for selector resource.", "netscaler.adc.streamsession module \u2013 Configuration for active connection resource.", "netscaler.adc.subscribergxinterface module \u2013 Configuration for Gx interface Parameters resource.", "netscaler.adc.subscriberparam module \u2013 Configuration for Subscriber Params resource.", "netscaler.adc.subscriberprofile module \u2013 Configuration for Subscriber Profile resource.", "netscaler.adc.subscriberradiusinterface module \u2013 Configuration for RADIUS interface Parameters resource.", "netscaler.adc.subscribersessions module \u2013 Configuration for subscriber sesions resource.", "netscaler.adc.systemadmuserinfo module \u2013 Configuration for 0 resource.", "netscaler.adc.systembackup module \u2013 Configuration for Backup Data for ns backup and restore resource.", "netscaler.adc.systemcmdpolicy module \u2013 Configuration for command policy resource.", "netscaler.adc.systemcollectionparam module \u2013 Configuration for collection parameter resource.", "netscaler.adc.systemcpuparam module \u2013 Configuration for 0 resource.", "netscaler.adc.systementitydata module \u2013 Configuration for entity data resource.", "netscaler.adc.systemextramgmtcpu module \u2013 Configuration for 0 resource.", "netscaler.adc.systemfile module \u2013 Configuration for file resource.", "netscaler.adc.systemglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and auditnslogpolicy resources", "netscaler.adc.systemglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and auditsyslogpolicy resources", "netscaler.adc.systemglobal_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationldappolicy resources", "netscaler.adc.systemglobal_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationlocalpolicy resources", "netscaler.adc.systemglobal_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationpolicy resources", "netscaler.adc.systemglobal_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationradiuspolicy resources", "netscaler.adc.systemglobal_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationtacacspolicy resources", "netscaler.adc.systemgroup module \u2013 Configuration for system group resource.", "netscaler.adc.systemgroup_nspartition_binding module \u2013 Binding Resource definition for describing association between systemgroup and nspartition resources", "netscaler.adc.systemgroup_systemcmdpolicy_binding module \u2013 Binding Resource definition for describing association between systemgroup and systemcmdpolicy resources", "netscaler.adc.systemgroup_systemuser_binding module \u2013 Binding Resource definition for describing association between systemgroup and systemuser resources", "netscaler.adc.systemhwerror module \u2013 Configuration for Hardware errors resource.", "netscaler.adc.systemkek module \u2013 Configuration for Key encryption Key resource.", "netscaler.adc.systemparameter module \u2013 Configuration for system parameter resource.", "netscaler.adc.systemrestorepoint module \u2013 Configuration for Setting restorepoints for auto restore resource.", "netscaler.adc.systemsession module \u2013 Configuration for system session resource.", "netscaler.adc.systemsshkey module \u2013 Configuration for 0 resource.", "netscaler.adc.systemuser module \u2013 Configuration for system user resource.", "netscaler.adc.systemuser_nspartition_binding module \u2013 Binding Resource definition for describing association between systemuser and nspartition resources", "netscaler.adc.systemuser_systemcmdpolicy_binding module \u2013 Binding Resource definition for describing association between systemuser and systemcmdpolicy resources", "netscaler.adc.tmformssoaction module \u2013 Configuration for Form sso action resource.", "netscaler.adc.tmglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and auditnslogpolicy resources", "netscaler.adc.tmglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and auditsyslogpolicy resources", "netscaler.adc.tmglobal_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and tmsessionpolicy resources", "netscaler.adc.tmglobal_tmtrafficpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and tmtrafficpolicy resources", "netscaler.adc.tmsamlssoprofile module \u2013 Configuration for SAML sso action resource.", "netscaler.adc.tmsessionaction module \u2013 Configuration for TM session action resource.", "netscaler.adc.tmsessionparameter module \u2013 Configuration for session parameter resource.", "netscaler.adc.tmsessionpolicy module \u2013 Configuration for TM session policy resource.", "netscaler.adc.tmtrafficaction module \u2013 Configuration for TM traffic action resource.", "netscaler.adc.tmtrafficpolicy module \u2013 Configuration for TM traffic policy resource.", "netscaler.adc.traceroute6 module \u2013 Configuration for 0 resource.", "netscaler.adc.traceroute module \u2013 Configuration for 0 resource.", "netscaler.adc.transformaction module \u2013 Configuration for transform action resource.", "netscaler.adc.transformglobal_transformpolicy_binding module \u2013 Binding Resource definition for describing association between transformglobal and transformpolicy resources", "netscaler.adc.transformpolicy module \u2013 Configuration for URL Transformation policy resource.", "netscaler.adc.transformpolicylabel module \u2013 Configuration for transform policy label resource.", "netscaler.adc.transformpolicylabel_transformpolicy_binding module \u2013 Binding Resource definition for describing association between transformpolicylabel and transformpolicy resources", "netscaler.adc.transformprofile module \u2013 Configuration for URL Transformation profile resource.", "netscaler.adc.tunnelglobal_tunneltrafficpolicy_binding module \u2013 Binding Resource definition for describing association between tunnelglobal and tunneltrafficpolicy resources", "netscaler.adc.tunneltrafficpolicy module \u2013 Configuration for tunnel policy resource.", "netscaler.adc.ulfdserver module \u2013 Configuration for ulfd server resource.", "netscaler.adc.urlfilteringcategorization module \u2013 Configuration for Categorization resource.", "netscaler.adc.urlfilteringparameter module \u2013 Configuration for URLFILTERING paramter resource.", "netscaler.adc.userprotocol module \u2013 Configuration for user protocol resource.", "netscaler.adc.uservserver module \u2013 Configuration for virtual server resource.", "netscaler.adc.videooptimizationdetectionaction module \u2013 Configuration for videooptimization detectionaction resource.", "netscaler.adc.videooptimizationdetectionpolicy module \u2013 Configuration for videooptimization detectionpolicy resource.", "netscaler.adc.videooptimizationdetectionpolicylabel module \u2013 Configuration for videooptimization detection policy label resource.", "netscaler.adc.videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationdetectionpolicylabel and videooptimizationdetectionpolicy resources", "netscaler.adc.videooptimizationglobaldetection_videooptimizationdetectionpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationglobaldetection and videooptimizationdetectionpolicy resources", "netscaler.adc.videooptimizationglobalpacing_videooptimizationpacingpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationglobalpacing and videooptimizationpacingpolicy resources", "netscaler.adc.videooptimizationpacingaction module \u2013 Configuration for videooptimization pacingaction resource.", "netscaler.adc.videooptimizationpacingpolicy module \u2013 Configuration for videooptimization pacingpolicy resource.", "netscaler.adc.videooptimizationpacingpolicylabel module \u2013 Configuration for videooptimization pacing policy label resource.", "netscaler.adc.videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationpacingpolicylabel and videooptimizationpacingpolicy resources", "netscaler.adc.videooptimizationparameter module \u2013 Configuration for VideoOptimization parameter resource.", "netscaler.adc.vlan_channel_binding module \u2013 Binding Resource definition for describing association between vlan and channel resources", "netscaler.adc.vlan_interface_binding module \u2013 Binding Resource definition for describing association between vlan and interface resources", "netscaler.adc.vlan_linkset_binding module \u2013 Binding Resource definition for describing association between vlan and linkset resources", "netscaler.adc.vlan module \u2013 Configuration for \u201cVLAN\u201d resource.", "netscaler.adc.vlan_nsip6_binding module \u2013 Binding Resource definition for describing association between vlan and nsip6 resources", "netscaler.adc.vlan_nsip_binding module \u2013 Binding Resource definition for describing association between vlan and nsip resources", "netscaler.adc.vpnalwaysonprofile module \u2013 Configuration for AlwyasON profile resource.", "netscaler.adc.vpnclientlessaccesspolicy module \u2013 Configuration for Clientless VPN rewrite policy resource.", "netscaler.adc.vpnclientlessaccessprofile module \u2013 Configuration for Clientless VPN rewrite profile resource.", "netscaler.adc.vpnepaprofile module \u2013 Configuration for Epa profile resource.", "netscaler.adc.vpneula module \u2013 Configuration for EULA for vservers resource.", "netscaler.adc.vpnformssoaction module \u2013 Configuration for Form sso action resource.", "netscaler.adc.vpnglobal_appcontroller_binding module \u2013 Binding Resource definition for describing association between vpnglobal and appcontroller resources", "netscaler.adc.vpnglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and auditnslogpolicy resources", "netscaler.adc.vpnglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and auditsyslogpolicy resources", "netscaler.adc.vpnglobal_authenticationcertpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationcertpolicy resources", "netscaler.adc.vpnglobal_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationldappolicy resources", "netscaler.adc.vpnglobal_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationlocalpolicy resources", "netscaler.adc.vpnglobal_authenticationnegotiatepolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationnegotiatepolicy resources", "netscaler.adc.vpnglobal_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationpolicy resources", "netscaler.adc.vpnglobal_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationradiuspolicy resources", "netscaler.adc.vpnglobal_authenticationsamlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationsamlpolicy resources", "netscaler.adc.vpnglobal_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationtacacspolicy resources", "netscaler.adc.vpnglobal_domain_binding module \u2013 Binding Resource definition for describing association between vpnglobal and domain resources", "netscaler.adc.vpnglobal_intranetip6_binding module \u2013 Binding Resource definition for describing association between vpnglobal and intranetip6 resources", "netscaler.adc.vpnglobal_intranetip_binding module \u2013 Binding Resource definition for describing association between vpnglobal and intranetip resources", "netscaler.adc.vpnglobal_sharefileserver_binding module \u2013 Binding Resource definition for describing association between vpnglobal and sharefileserver resources", "netscaler.adc.vpnglobal_sslcertkey_binding module \u2013 Binding Resource definition for describing association between vpnglobal and sslcertkey resources", "netscaler.adc.vpnglobal_staserver_binding module \u2013 Binding Resource definition for describing association between vpnglobal and staserver resources", "netscaler.adc.vpnglobal_vpnclientlessaccesspolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnclientlessaccesspolicy resources", "netscaler.adc.vpnglobal_vpneula_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpneula resources", "netscaler.adc.vpnglobal_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnintranetapplication resources", "netscaler.adc.vpnglobal_vpnnexthopserver_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnnexthopserver resources", "netscaler.adc.vpnglobal_vpnportaltheme_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnportaltheme resources", "netscaler.adc.vpnglobal_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnsessionpolicy resources", "netscaler.adc.vpnglobal_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpntrafficpolicy resources", "netscaler.adc.vpnglobal_vpnurl_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnurl resources", "netscaler.adc.vpnglobal_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnurlpolicy resources", "netscaler.adc.vpnicaconnection module \u2013 Configuration for active ica connections resource.", "netscaler.adc.vpnintranetapplication module \u2013 Configuration for SSLVPN intranet application resource.", "netscaler.adc.vpnnexthopserver module \u2013 Configuration for Next Hop Server resource.", "netscaler.adc.vpnparameter module \u2013 Configuration for VPN parameter resource.", "netscaler.adc.vpnpcoipconnection module \u2013 Configuration for PCoIP connection resource.", "netscaler.adc.vpnpcoipprofile module \u2013 Configuration for PCoIP session profile resource.", "netscaler.adc.vpnpcoipvserverprofile module \u2013 Configuration for PCoIP vserver profile resource.", "netscaler.adc.vpnportaltheme module \u2013 Configuration for portaltheme resource.", "netscaler.adc.vpnsamlssoprofile module \u2013 Configuration for SAML sso action resource.", "netscaler.adc.vpnsessionaction module \u2013 Configuration for VPN session action resource.", "netscaler.adc.vpnsessionpolicy module \u2013 Configuration for VPN session policy resource.", "netscaler.adc.vpntrafficaction module \u2013 Configuration for VPN traffic action resource.", "netscaler.adc.vpntrafficpolicy module \u2013 Configuration for VPN traffic policy resource.", "netscaler.adc.vpnurl module \u2013 Configuration for VPN URL resource.", "netscaler.adc.vpnurlaction module \u2013 Configuration for VPN url action resource.", "netscaler.adc.vpnurlpolicy module \u2013 Configuration for VPN url policy resource.", "netscaler.adc.vpnvserver_aaapreauthenticationpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and aaapreauthenticationpolicy resources", "netscaler.adc.vpnvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between vpnvserver and analyticsprofile resources", "netscaler.adc.vpnvserver_appcontroller_binding module \u2013 Binding Resource definition for describing association between vpnvserver and appcontroller resources", "netscaler.adc.vpnvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and appflowpolicy resources", "netscaler.adc.vpnvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and auditnslogpolicy resources", "netscaler.adc.vpnvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and auditsyslogpolicy resources", "netscaler.adc.vpnvserver_authenticationcertpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationcertpolicy resources", "netscaler.adc.vpnvserver_authenticationdfapolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationdfapolicy resources", "netscaler.adc.vpnvserver_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationldappolicy resources", "netscaler.adc.vpnvserver_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationlocalpolicy resources", "netscaler.adc.vpnvserver_authenticationloginschemapolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationloginschemapolicy resources", "netscaler.adc.vpnvserver_authenticationnegotiatepolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationnegotiatepolicy resources", "netscaler.adc.vpnvserver_authenticationoauthidppolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationoauthidppolicy resources", "netscaler.adc.vpnvserver_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationpolicy resources", "netscaler.adc.vpnvserver_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationradiuspolicy resources", "netscaler.adc.vpnvserver_authenticationsamlidppolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationsamlidppolicy resources", "netscaler.adc.vpnvserver_authenticationsamlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationsamlpolicy resources", "netscaler.adc.vpnvserver_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationtacacspolicy resources", "netscaler.adc.vpnvserver_authenticationwebauthpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationwebauthpolicy resources", "netscaler.adc.vpnvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and cachepolicy resources", "netscaler.adc.vpnvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and cspolicy resources", "netscaler.adc.vpnvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and feopolicy resources", "netscaler.adc.vpnvserver_icapolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and icapolicy resources", "netscaler.adc.vpnvserver_intranetip6_binding module \u2013 Binding Resource definition for describing association between vpnvserver and intranetip6 resources", "netscaler.adc.vpnvserver_intranetip_binding module \u2013 Binding Resource definition for describing association between vpnvserver and intranetip resources", "netscaler.adc.vpnvserver module \u2013 Configuration for VPN virtual server resource.", "netscaler.adc.vpnvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and responderpolicy resources", "netscaler.adc.vpnvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and rewritepolicy resources", "netscaler.adc.vpnvserver_sharefileserver_binding module \u2013 Binding Resource definition for describing association between vpnvserver and sharefileserver resources", "netscaler.adc.vpnvserver_staserver_binding module \u2013 Binding Resource definition for describing association between vpnvserver and staserver resources", "netscaler.adc.vpnvserver_vpnclientlessaccesspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnclientlessaccesspolicy resources", "netscaler.adc.vpnvserver_vpnepaprofile_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnepaprofile resources", "netscaler.adc.vpnvserver_vpneula_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpneula resources", "netscaler.adc.vpnvserver_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnintranetapplication resources", "netscaler.adc.vpnvserver_vpnnexthopserver_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnnexthopserver resources", "netscaler.adc.vpnvserver_vpnportaltheme_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnportaltheme resources", "netscaler.adc.vpnvserver_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnsessionpolicy resources", "netscaler.adc.vpnvserver_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpntrafficpolicy resources", "netscaler.adc.vpnvserver_vpnurl_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnurl resources", "netscaler.adc.vpnvserver_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnurlpolicy resources", "netscaler.adc.vrid6_channel_binding module \u2013 Binding Resource definition for describing association between vrid6 and channel resources", "netscaler.adc.vrid6_interface_binding module \u2013 Binding Resource definition for describing association between vrid6 and interface resources", "netscaler.adc.vrid6 module \u2013 Configuration for Virtual Router ID for IPv6 resource.", "netscaler.adc.vrid6_trackinterface_binding module \u2013 Binding Resource definition for describing association between vrid6 and trackinterface resources", "netscaler.adc.vrid_channel_binding module \u2013 Binding Resource definition for describing association between vrid and channel resources", "netscaler.adc.vrid_interface_binding module \u2013 Binding Resource definition for describing association between vrid and interface resources", "netscaler.adc.vrid module \u2013 Configuration for Virtual Router ID resource.", "netscaler.adc.vrid_trackinterface_binding module \u2013 Binding Resource definition for describing association between vrid and trackinterface resources", "netscaler.adc.vridparam module \u2013 Configuration for VR ID parameter resource.", "netscaler.adc.vserver module \u2013 Configuration for virtual server resource.", "netscaler.adc.vxlan module \u2013 Configuration for \u201cVXLAN\u201d resource.", "netscaler.adc.vxlan_nsip6_binding module \u2013 Binding Resource definition for describing association between vxlan and nsip6 resources", "netscaler.adc.vxlan_nsip_binding module \u2013 Binding Resource definition for describing association between vxlan and nsip resources", "netscaler.adc.vxlan_srcip_binding module \u2013 Binding Resource definition for describing association between vxlan and srcip resources", "netscaler.adc.vxlanvlanmap module \u2013 Configuration for vxlan vlan mapping resource.", "netscaler.adc.vxlanvlanmap_vxlan_binding module \u2013 Binding Resource definition for describing association between vxlanvlanmap and vxlan resources", "Collections in the Netscaler Namespace", "Welcome to my Ansible collection documentation"], "terms": {"The": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "follow": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "document": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896], "declar": [0, 103], "plugin": [0, 827, 833, 865], "us": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "ansibl": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "core": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "configur": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 48, 51, 54, 60, 61, 62, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 218, 219, 220, 224, 228, 232, 233, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 263, 266, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 329, 338, 353, 356, 357, 364, 365, 367, 368, 371, 372, 373, 374, 376, 380, 381, 385, 391, 401, 402, 411, 412, 414, 416, 418, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 463, 464, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 497, 500, 506, 507, 509, 510, 511, 513, 514, 548, 550, 551, 556, 566, 569, 571, 572, 585, 591, 594, 609, 614, 616, 620, 622, 624, 625, 626, 634, 636, 638, 649, 656, 662, 666, 677, 687, 688, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 786, 787, 788, 790, 791, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 887, 891, 892, 893, 895], "ar": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896], "set": [0, 2, 12, 20, 22, 26, 35, 44, 49, 50, 52, 53, 55, 57, 60, 61, 62, 72, 73, 74, 97, 105, 117, 122, 124, 126, 128, 130, 133, 136, 143, 147, 154, 156, 160, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 189, 193, 194, 195, 201, 202, 203, 204, 210, 217, 221, 222, 225, 226, 227, 229, 231, 233, 234, 244, 245, 246, 247, 256, 262, 264, 265, 267, 269, 270, 271, 272, 273, 274, 288, 295, 297, 314, 323, 325, 327, 328, 331, 332, 333, 334, 335, 337, 339, 342, 343, 344, 347, 349, 352, 358, 363, 366, 369, 370, 375, 379, 383, 390, 391, 392, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 409, 410, 411, 413, 415, 416, 417, 418, 419, 421, 422, 423, 424, 431, 432, 433, 439, 440, 442, 447, 448, 453, 467, 469, 475, 478, 481, 482, 485, 487, 488, 489, 496, 498, 501, 503, 504, 505, 508, 512, 520, 523, 526, 527, 530, 533, 534, 535, 536, 537, 538, 541, 542, 547, 549, 555, 557, 558, 563, 564, 565, 567, 568, 570, 573, 574, 578, 582, 583, 585, 586, 587, 591, 592, 593, 594, 602, 608, 609, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 623, 635, 636, 637, 638, 639, 642, 643, 646, 647, 648, 649, 650, 651, 655, 657, 661, 665, 667, 681, 682, 685, 686, 689, 694, 695, 696, 697, 698, 699, 701, 706, 713, 714, 716, 717, 725, 736, 742, 746, 755, 756, 758, 760, 761, 762, 763, 764, 765, 766, 775, 776, 777, 778, 779, 780, 782, 783, 784, 789, 792, 794, 797, 825, 827, 833, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 865, 876, 877, 879, 882, 886, 890, 894], "No": [0, 20, 109, 124, 126, 128, 130, 387, 462, 528, 574, 582, 583, 682, 689, 706, 716, 882, 886], "have": [0, 20, 35, 53, 93, 97, 103, 143, 147, 151, 160, 161, 167, 186, 225, 226, 227, 234, 247, 256, 265, 276, 288, 295, 314, 331, 333, 336, 337, 343, 344, 349, 352, 360, 366, 368, 369, 375, 388, 390, 404, 405, 406, 409, 413, 417, 419, 427, 442, 462, 482, 489, 523, 538, 547, 558, 568, 573, 582, 583, 617, 618, 630, 633, 635, 637, 645, 651, 667, 673, 685, 689, 706, 716, 726, 736, 742, 746, 757, 764, 769, 776, 782, 786, 787, 788, 793, 825, 827, 833, 834, 836, 839, 865], "been": [0, 206, 352, 395, 404, 417, 419, 523, 547, 573, 617, 633, 635, 645, 667, 716], "defin": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "These": [1, 143, 151, 160, 167, 234, 272, 391, 612, 618, 657, 664, 682, 689, 711, 776, 896], "here": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896], "netscal": [1, 897], "adc": [1, 896, 897], "aaacertparam": [2, 391], "certif": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 656, 657, 658, 659, 662, 663, 665, 666, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "paramet": [2, 391], "resourc": [2, 232, 391, 463, 464], "aaaglobal_aaapreauthenticationpolicy_bind": [2, 391], "bind": [2, 12, 20, 22, 35, 49, 53, 55, 72, 74, 97, 117, 143, 154, 156, 186, 193, 195, 202, 204, 210, 217, 227, 229, 234, 241, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 337, 339, 358, 366, 369, 375, 379, 391, 400, 413, 415, 417, 419, 421, 423, 424, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 519, 537, 538, 549, 555, 567, 570, 584, 590, 593, 612, 613, 618, 619, 621, 623, 635, 637, 639, 640, 644, 648, 650, 655, 657, 661, 663, 665, 667, 685, 686, 689, 695, 701, 706, 736, 746, 764, 765, 776, 777, 782, 783, 789, 865, 882, 886, 890, 894], "definit": [2, 146, 391, 523, 587], "describ": [2, 59, 239, 391, 459, 462, 528, 689, 762], "associ": [2, 27, 49, 50, 53, 56, 97, 108, 127, 131, 156, 158, 165, 186, 197, 221, 276, 288, 293, 295, 314, 325, 327, 332, 355, 359, 366, 369, 375, 384, 388, 391, 403, 417, 442, 467, 482, 512, 528, 532, 537, 538, 567, 570, 573, 584, 586, 590, 592, 593, 628, 630, 635, 637, 641, 642, 644, 645, 651, 653, 657, 664, 685, 762, 769, 773, 774, 827, 833, 835, 837, 838, 865, 882, 886], "between": [2, 3, 12, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 35, 42, 44, 45, 46, 47, 49, 50, 52, 53, 55, 56, 57, 58, 59, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 74, 97, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 186, 191, 192, 193, 195, 196, 197, 198, 199, 200, 202, 204, 210, 215, 216, 217, 221, 222, 223, 225, 226, 227, 229, 230, 231, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 256, 261, 262, 264, 265, 267, 268, 269, 271, 272, 274, 275, 276, 288, 293, 294, 295, 297, 314, 321, 322, 323, 324, 325, 326, 327, 328, 330, 331, 332, 333, 334, 335, 336, 337, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 354, 355, 358, 359, 360, 361, 362, 363, 366, 369, 370, 375, 377, 378, 379, 382, 383, 384, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 403, 404, 405, 406, 407, 408, 409, 410, 413, 415, 417, 419, 420, 421, 423, 424, 425, 426, 427, 442, 453, 456, 457, 458, 459, 460, 461, 462, 465, 467, 469, 482, 484, 485, 486, 487, 489, 490, 491, 492, 493, 494, 495, 496, 498, 499, 501, 502, 503, 504, 505, 508, 512, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 549, 552, 553, 554, 555, 557, 558, 559, 560, 561, 562, 563, 564, 565, 567, 568, 570, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 610, 611, 612, 613, 615, 617, 618, 619, 621, 623, 627, 628, 629, 630, 631, 632, 633, 635, 637, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 663, 664, 665, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 678, 679, 680, 681, 682, 683, 684, 685, 686, 689, 693, 695, 701, 706, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 736, 740, 741, 742, 743, 744, 745, 746, 749, 754, 755, 756, 757, 758, 759, 760, 761, 762, 764, 765, 767, 769, 770, 771, 772, 773, 774, 775, 776, 777, 781, 782, 783, 785, 789, 792, 793, 794, 795, 796, 797, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 865, 882, 886, 888, 889, 890, 894], "aaaglob": [2, 391], "aaapreauthenticationpolici": [2, 391], "aaaglobal_authenticationnegotiateaction_bind": [2, 391], "authenticationnegotiateact": [2, 391], "aaagroup": [2, 391], "aaa": [2, 23, 27, 52, 129, 142, 143, 151, 153, 167, 245, 378, 391, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 827, 865], "group": [2, 3, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 20, 23, 26, 27, 28, 29, 52, 73, 97, 134, 135, 136, 139, 141, 142, 143, 148, 150, 151, 153, 156, 158, 160, 162, 166, 167, 171, 172, 173, 175, 178, 180, 182, 183, 191, 218, 219, 220, 221, 225, 226, 227, 233, 234, 246, 247, 364, 366, 367, 368, 373, 375, 391, 394, 403, 406, 412, 417, 419, 424, 442, 445, 446, 474, 475, 476, 477, 478, 479, 480, 481, 483, 487, 489, 495, 496, 514, 548, 561, 569, 587, 621, 622, 623, 629, 630, 636, 638, 650, 654, 656, 665, 666, 689, 691, 692, 697, 698, 702, 703, 704, 709, 710, 737, 738, 739, 786, 787, 788, 790, 791, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "aaagroup_aaauser_bind": [2, 12, 391], "aaauser": [2, 391], "aaagroup_auditnslogpolicy_bind": [2, 12, 391], "auditnslogpolici": [2, 391], "aaagroup_auditsyslogpolicy_bind": [2, 12, 391], "auditsyslogpolici": [2, 391], "aaagroup_authorizationpolicy_bind": [2, 12, 391], "authorizationpolici": [2, 391], "aaagroup_intranetip6_bind": [2, 12, 391], "intranetip6": [2, 391], "aaagroup_intranetip_bind": [2, 12, 391], "intranetip": [2, 391], "aaagroup_tmsessionpolicy_bind": [2, 12, 391], "tmsessionpolici": [2, 391, 606], "aaagroup_vpnintranetapplication_bind": [2, 12, 391], "vpnintranetappl": [2, 391], "aaagroup_vpnsessionpolicy_bind": [2, 12, 391], "vpnsessionpolici": [2, 391], "aaagroup_vpntrafficpolicy_bind": [2, 12, 391], "vpntrafficpolici": [2, 391], "aaagroup_vpnurl_bind": [2, 12, 391], "vpnurl": [2, 391, 838, 839], "aaagroup_vpnurlpolicy_bind": [2, 12, 391], "vpnurlpolici": [2, 391], "aaakcdaccount": [2, 391], "kerbero": [2, 148, 160, 162, 391, 754, 755, 756, 758, 832, 835], "constrain": [2, 391, 536, 587, 755, 756, 758, 835], "deleg": [2, 330, 333, 366, 391, 755, 756, 758, 835], "account": [2, 22, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 75, 87, 97, 132, 134, 148, 157, 158, 167, 186, 222, 244, 321, 391, 417, 442, 522, 635, 717, 719, 755, 756, 758, 827, 833, 835, 865], "aaaldapparam": [2, 391], "ldap": [2, 22, 192, 391, 417, 602, 667], "aaaotpparamet": [2, 391], "otpparamet": [2, 391], "aaaparamet": [2, 391], "aaapreauthenticationact": [2, 391], "pre": [2, 391, 399, 564, 602, 604, 882, 886], "authent": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 155, 157, 158, 159, 160, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "action": [2, 22, 25, 28, 48, 52, 53, 69, 76, 77, 78, 82, 83, 84, 88, 89, 90, 97, 98, 99, 109, 110, 120, 126, 127, 130, 131, 133, 134, 137, 140, 141, 144, 146, 147, 149, 152, 153, 154, 159, 161, 162, 163, 164, 168, 192, 193, 197, 202, 205, 206, 207, 210, 211, 212, 226, 227, 265, 271, 272, 276, 295, 314, 336, 337, 355, 359, 363, 375, 388, 391, 407, 417, 419, 421, 442, 472, 473, 482, 502, 512, 520, 535, 536, 566, 573, 591, 611, 612, 617, 618, 621, 628, 653, 682, 685, 711, 717, 723, 742, 757, 759, 769, 775, 776, 781, 782, 834, 836, 839], "aaapreauthenticationparamet": [2, 391], "polici": [2, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 54, 60, 61, 62, 73, 109, 117, 125, 129, 134, 135, 141, 146, 147, 150, 153, 155, 162, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 194, 196, 201, 203, 215, 222, 224, 226, 228, 243, 262, 263, 264, 266, 270, 271, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 329, 338, 353, 363, 364, 366, 374, 376, 383, 385, 391, 411, 419, 422, 424, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 482, 520, 523, 528, 536, 566, 567, 573, 586, 587, 608, 609, 611, 614, 615, 616, 617, 620, 626, 637, 641, 677, 682, 687, 689, 695, 699, 700, 702, 703, 704, 706, 711, 713, 729, 730, 731, 732, 733, 734, 735, 738, 747, 748, 750, 751, 752, 753, 755, 756, 758, 762, 763, 766, 768, 776, 778, 779, 780, 782, 784, 794, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "aaaradiusparam": [2, 391], "radiu": [2, 22, 133, 143, 241, 297, 314, 366, 369, 375, 391, 417, 423, 442, 609, 613, 615, 619, 635, 637, 716, 717, 827, 833], "aaasess": [2, 391], "activ": [2, 20, 97, 103, 109, 143, 148, 199, 200, 207, 234, 239, 246, 288, 314, 351, 366, 369, 386, 391, 396, 442, 467, 482, 487, 519, 522, 537, 538, 542, 545, 547, 559, 563, 564, 600, 635, 637, 695, 701, 706, 716, 717, 827, 828, 833, 865, 882, 886, 888], "connect": [2, 20, 25, 26, 29, 42, 52, 72, 97, 109, 117, 119, 124, 126, 128, 130, 143, 147, 152, 158, 161, 167, 186, 191, 215, 221, 234, 238, 239, 241, 246, 268, 271, 272, 288, 314, 321, 335, 359, 363, 366, 369, 370, 375, 379, 383, 389, 391, 392, 396, 398, 399, 407, 408, 417, 419, 424, 427, 442, 458, 467, 482, 487, 489, 496, 499, 514, 522, 523, 525, 527, 534, 535, 536, 538, 542, 547, 549, 553, 559, 562, 563, 564, 565, 568, 598, 600, 602, 604, 612, 617, 618, 623, 625, 629, 630, 633, 635, 637, 641, 654, 671, 682, 689, 695, 696, 706, 713, 716, 742, 746, 757, 758, 759, 764, 776, 786, 787, 788, 792, 825, 827, 829, 833, 865, 889], "aaassoprofil": [2, 391], "sso": [2, 20, 143, 146, 391, 755, 756, 758, 827, 833, 835, 837, 838, 865], "profil": [2, 5, 43, 48, 50, 69, 70, 72, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 117, 128, 134, 136, 147, 148, 151, 152, 157, 160, 161, 164, 166, 167, 191, 196, 197, 202, 205, 206, 207, 208, 209, 211, 212, 213, 214, 215, 268, 269, 277, 288, 298, 314, 325, 332, 335, 383, 391, 403, 417, 428, 442, 465, 466, 468, 474, 475, 476, 477, 479, 480, 481, 482, 522, 563, 581, 602, 604, 635, 637, 665, 682, 688, 690, 691, 692, 695, 701, 706, 716, 749, 754, 758, 762, 764, 793, 797, 825, 827, 832, 833, 835, 837, 838, 841, 865, 871], "aaatacacsparam": [2, 391], "tacac": [2, 22, 391, 523], "user": [2, 6, 19, 20, 21, 22, 26, 27, 28, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 44, 51, 52, 54, 61, 62, 73, 97, 109, 124, 126, 128, 130, 132, 133, 134, 135, 137, 138, 140, 141, 143, 144, 146, 147, 148, 149, 150, 151, 153, 154, 156, 157, 158, 159, 160, 162, 163, 166, 168, 171, 172, 173, 175, 178, 180, 182, 183, 186, 192, 199, 200, 203, 206, 207, 208, 210, 211, 212, 215, 222, 224, 228, 241, 264, 265, 266, 268, 271, 272, 275, 297, 314, 321, 352, 363, 366, 370, 375, 383, 391, 392, 403, 411, 412, 413, 415, 417, 419, 421, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 463, 518, 519, 522, 535, 536, 537, 538, 547, 564, 580, 581, 588, 602, 603, 607, 608, 611, 612, 614, 615, 617, 618, 635, 644, 649, 657, 664, 665, 666, 673, 677, 685, 689, 695, 697, 703, 706, 709, 721, 723, 736, 739, 742, 747, 748, 749, 754, 755, 756, 758, 774, 778, 784, 792, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 813, 815, 820, 821, 823, 824, 825, 827, 828, 830, 832, 833, 834, 835, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 871, 876, 877, 879], "aaauser_auditnslogpolicy_bind": [2, 35, 391], "aaauser_auditsyslogpolicy_bind": [2, 35, 391], "aaauser_authorizationpolicy_bind": [2, 35, 391], "aaauser_intranetip6_bind": [2, 35, 391], "aaauser_intranetip_bind": [2, 35, 391], "aaauser_tmsessionpolicy_bind": [2, 35, 391], "aaauser_vpnintranetapplication_bind": [2, 35, 391], "aaauser_vpnsessionpolicy_bind": [2, 35, 391], "aaauser_vpntrafficpolicy_bind": [2, 35, 391], "aaauser_vpnurl_bind": [2, 35, 391], "aaauser_vpnurlpolicy_bind": [2, 35, 391], "admparamet": [2, 391], "adm": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "analyticsglobal_analyticsprofile_bind": [2, 391], "analyticsglob": [2, 391], "analyticsprofil": [2, 391, 486], "analyt": [2, 43, 48, 117, 277, 298, 391, 428, 486, 547, 742, 841], "apispec": [2, 97, 391], "api": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "specif": [2, 52, 97, 117, 124, 126, 128, 130, 134, 143, 147, 151, 158, 160, 288, 314, 350, 364, 366, 375, 391, 403, 404, 417, 424, 442, 459, 467, 498, 515, 516, 523, 535, 537, 538, 557, 558, 568, 573, 574, 645, 648, 649, 651, 654, 714, 755, 756], "apispecfil": [2, 391], "specificationfil": [2, 391], "appalgparam": [2, 391], "appalg": [2, 391], "param": [2, 288, 313, 366, 391, 408, 419, 602, 635, 689, 695, 706, 774], "appflowact": [2, 391, 612], "appflow": [2, 44, 48, 51, 54, 124, 126, 128, 129, 130, 186, 288, 314, 352, 366, 369, 375, 391, 442, 517, 518, 531, 591, 595, 612, 635, 637, 713, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 865], "appflowaction_analyticsprofile_bind": [2, 49, 391], "appflowcollector": [2, 391], "collector": [2, 44, 49, 52, 124, 126, 128, 130, 391, 517], "appflowglobal_appflowpolicy_bind": [2, 391], "appflowglob": [2, 391], "appflowpolici": [2, 391], "appflowparam": [2, 391], "appflowpolicylabel": [2, 391], "label": [2, 6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 51, 54, 60, 61, 62, 73, 155, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 181, 182, 183, 194, 201, 203, 224, 228, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 329, 338, 350, 391, 411, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 462, 525, 609, 614, 616, 620, 673, 677, 687, 699, 711, 729, 730, 731, 732, 733, 734, 735, 750, 751, 753, 763, 766, 778, 779, 780, 784, 794, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "appflowpolicylabel_appflowpolicy_bind": [2, 53, 55, 391], "appfwarch": [2, 391], "archiv": [2, 97, 391], "appfwconfidfield": [2, 391], "confidenti": [2, 75, 391, 568, 595], "form": [2, 20, 44, 56, 69, 70, 75, 76, 78, 82, 83, 88, 89, 97, 99, 109, 143, 146, 191, 247, 288, 314, 350, 391, 406, 419, 424, 442, 456, 520, 536, 568, 587, 661, 663, 758, 835, 865, 884, 885, 886, 887], "field": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "appfwcustomset": [2, 391], "applic": [2, 6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 42, 44, 52, 61, 62, 67, 70, 73, 103, 109, 111, 134, 151, 153, 160, 162, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 200, 210, 222, 224, 237, 247, 263, 278, 279, 280, 281, 282, 283, 285, 286, 288, 289, 290, 291, 292, 302, 303, 314, 318, 329, 333, 335, 363, 366, 367, 368, 369, 374, 375, 376, 378, 383, 391, 392, 407, 417, 419, 431, 432, 433, 439, 440, 442, 447, 448, 466, 468, 475, 482, 489, 496, 523, 528, 535, 537, 538, 539, 563, 565, 574, 602, 615, 621, 623, 635, 637, 639, 667, 677, 689, 695, 706, 713, 716, 729, 730, 731, 732, 733, 734, 735, 742, 750, 751, 753, 754, 755, 756, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 832, 833, 835, 837, 838, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 873, 876, 877], "firewal": [2, 70, 73, 109, 370, 378, 391, 417, 419, 442, 865], "custom": [2, 97, 146, 156, 157, 160, 167, 239, 336, 337, 391, 417, 442, 462, 497, 498, 528, 535, 536, 538, 541, 602, 635, 636, 637, 638, 646, 794, 827], "xml": [2, 66, 69, 70, 97, 102, 103, 104, 105, 106, 107, 146, 160, 378, 391, 417, 523, 615, 641, 794, 795], "appfwfieldtyp": [2, 391], "type": [2, 4, 7, 8, 9, 13, 15, 16, 18, 20, 22, 26, 30, 31, 32, 36, 38, 39, 41, 44, 45, 50, 51, 52, 54, 55, 60, 61, 62, 69, 70, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 110, 123, 124, 125, 126, 128, 129, 130, 138, 141, 143, 151, 156, 158, 160, 186, 191, 194, 196, 198, 201, 202, 203, 205, 211, 212, 214, 222, 224, 228, 234, 241, 262, 263, 264, 266, 267, 268, 269, 270, 272, 273, 274, 275, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 296, 297, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 312, 314, 315, 316, 317, 318, 319, 320, 325, 327, 328, 329, 330, 331, 332, 333, 334, 335, 338, 339, 340, 341, 342, 343, 344, 347, 349, 353, 360, 366, 370, 374, 375, 376, 385, 388, 391, 398, 399, 403, 410, 411, 413, 417, 419, 421, 422, 423, 424, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 463, 464, 467, 478, 482, 485, 488, 489, 490, 492, 494, 495, 515, 516, 519, 521, 522, 523, 535, 537, 538, 541, 542, 565, 573, 585, 586, 587, 591, 596, 606, 608, 609, 612, 613, 614, 615, 616, 619, 620, 629, 630, 633, 635, 636, 637, 638, 639, 641, 642, 644, 648, 649, 650, 651, 652, 654, 657, 677, 678, 686, 687, 689, 695, 699, 706, 711, 716, 717, 718, 726, 728, 729, 730, 731, 732, 733, 734, 735, 741, 742, 745, 749, 752, 753, 755, 756, 761, 763, 765, 766, 767, 768, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 794, 797, 814, 815, 820, 823, 824, 825, 826, 827, 833, 835, 837, 838, 869, 889, 890], "appfwglobal_appfwpolicy_bind": [2, 391], "appfwglob": [2, 391], "appfwpolici": [2, 391, 606], "appfwglobal_auditnslogpolicy_bind": [2, 391], "appfwglobal_auditsyslogpolicy_bind": [2, 391], "appfwgrpccontenttyp": [2, 391], "grrpc": [2, 391], "content": [2, 44, 52, 69, 70, 79, 86, 97, 102, 117, 119, 123, 124, 126, 128, 130, 141, 225, 226, 227, 272, 276, 278, 279, 280, 281, 282, 283, 285, 286, 288, 289, 290, 291, 292, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 366, 391, 442, 528, 529, 535, 587, 595, 615, 641, 716, 728, 754, 755, 756, 775, 794, 832, 889], "appfwgrpcwebjsoncontenttyp": [2, 391], "web": [2, 52, 57, 69, 70, 75, 78, 82, 83, 88, 97, 99, 109, 140, 151, 207, 297, 314, 352, 391, 417, 442, 523, 535, 547, 608, 641, 654, 664, 755, 756, 825, 827, 833, 835, 837, 838, 865], "json": [2, 44, 91, 92, 93, 94, 95, 97, 151, 350, 391, 615, 641, 837], "appfwgrpcwebtextcontenttyp": [2, 391], "text": [2, 90, 97, 269, 391, 417, 419, 424, 520, 523, 528, 535, 547, 568, 573, 587, 608, 615, 619, 635, 641, 650, 689, 706, 754, 827, 832, 833], "appfwhtmlerrorpag": [2, 391], "html": [2, 42, 70, 97, 117, 118, 314, 352, 391, 392, 417, 587, 608, 615, 794], "error": [2, 22, 97, 109, 123, 124, 126, 128, 130, 147, 152, 154, 161, 202, 210, 246, 271, 272, 340, 378, 379, 390, 391, 407, 417, 418, 419, 421, 503, 528, 535, 563, 583, 608, 612, 617, 618, 639, 641, 647, 671, 680, 681, 689, 695, 706, 742, 760, 761, 776, 782, 827, 833], "page": [2, 22, 44, 49, 52, 57, 75, 97, 117, 146, 160, 352, 378, 391, 417, 608, 695, 706, 755, 756, 827, 833, 865, 871], "appfwjsoncontenttyp": [2, 391], "appfwjsonerrorpag": [2, 391], "appfwlearningdata": [2, 391], "learn": [2, 42, 59, 97, 109, 122, 151, 166, 221, 363, 370, 391, 392, 405, 406, 407, 417, 442, 563, 635, 641, 682], "data": [2, 42, 44, 47, 52, 71, 89, 97, 102, 103, 128, 153, 162, 210, 234, 264, 269, 297, 343, 352, 369, 379, 383, 391, 392, 398, 399, 403, 442, 458, 494, 528, 532, 535, 547, 563, 564, 565, 568, 574, 575, 582, 583, 584, 585, 587, 594, 600, 607, 615, 635, 637, 639, 675, 676, 682, 685, 686, 689, 706, 713, 717, 723, 724, 795, 813, 830, 832], "appfwlearningset": [2, 391], "appfwmultipartformcontenttyp": [2, 391], "multipart": [2, 97, 391], "appfwpolicylabel": [2, 391, 606], "appfwpolicylabel_appfwpolicy_bind": [2, 72, 74, 391], "appfwprofil": [2, 391, 606], "appfwprofile_appfwconfidfield_bind": [2, 97, 391], "appfwprofile_blockkeyword_bind": [2, 97, 391], "blockkeyword": [2, 91, 391, 641], "appfwprofile_bypasslist_bind": [2, 97, 391], "bypasslist": [2, 391], "appfwprofile_cmdinjection_bind": [2, 97, 391], "cmdinject": [2, 391], "appfwprofile_contenttype_bind": [2, 97, 391], "contenttyp": [2, 69, 97, 391], "appfwprofile_cookieconsistency_bind": [2, 97, 391], "cookieconsist": [2, 69, 97, 391], "appfwprofile_creditcardnumber_bind": [2, 97, 391], "creditcardnumb": [2, 69, 391], "appfwprofile_crosssitescripting_bind": [2, 97, 391], "crosssitescript": [2, 69, 97, 391], "appfwprofile_csrftag_bind": [2, 97, 391], "csrftag": [2, 69, 97, 391], "appfwprofile_denylist_bind": [2, 97, 391], "denylist": [2, 391], "appfwprofile_denyurl_bind": [2, 97, 391], "denyurl": [2, 391], "appfwprofile_excluderescontenttype_bind": [2, 97, 391], "excluderescontenttyp": [2, 391], "appfwprofile_fakeaccount_bind": [2, 97, 391], "fakeaccount": [2, 391], "appfwprofile_fieldconsistency_bind": [2, 97, 391], "fieldconsist": [2, 69, 97, 391], "appfwprofile_fieldformat_bind": [2, 97, 391], "fieldformat": [2, 59, 69, 97, 391], "appfwprofile_fileuploadtype_bind": [2, 97, 391], "fileuploadtyp": [2, 391], "appfwprofile_jsonblockkeyword_bind": [2, 97, 391], "jsonblockkeyword": [2, 391], "appfwprofile_jsoncmdurl_bind": [2, 97, 391], "jsoncmdurl": [2, 391], "appfwprofile_jsondosurl_bind": [2, 97, 391], "jsondosurl": [2, 391], "appfwprofile_jsonsqlurl_bind": [2, 97, 391], "jsonsqlurl": [2, 391], "appfwprofile_jsonxssurl_bind": [2, 97, 391], "jsonxssurl": [2, 391], "appfwprofile_logexpression_bind": [2, 97, 391], "logexpress": [2, 391], "appfwprofile_safeobject_bind": [2, 97, 391], "safeobject": [2, 391], "appfwprofile_sqlinjection_bind": [2, 97, 391], "sqlinject": [2, 69, 97, 391], "appfwprofile_starturl_bind": [2, 97, 391], "starturl": [2, 69, 97, 391], "appfwprofile_trustedlearningclients_bind": [2, 97, 391], "trustedlearningcli": [2, 391], "appfwprofile_xmlattachmenturl_bind": [2, 97, 391], "xmlattachmenturl": [2, 391], "appfwprofile_xmldosurl_bind": [2, 97, 391], "xmldosurl": [2, 391], "appfwprofile_xmlsqlinjection_bind": [2, 97, 391], "xmlsqlinject": [2, 391], "appfwprofile_xmlvalidationurl_bind": [2, 97, 391], "xmlvalidationurl": [2, 391], "appfwprofile_xmlwsiurl_bind": [2, 97, 391], "xmlwsiurl": [2, 391], "appfwprofile_xmlxss_bind": [2, 97, 391], "xmlxss": [2, 391], "appfwprotofil": [2, 391], "grpc": [2, 44, 63, 64, 65, 97, 391, 417, 535, 641], "protofil": [2, 391], "appfwset": [2, 391], "AS": [2, 22, 211, 391], "appfwsignatur": [2, 391], "signatur": [2, 97, 109, 134, 153, 160, 162, 210, 215, 391, 641, 654, 682, 689, 695, 701, 706], "appfwurlencodedformcontenttyp": [2, 391], "urlencod": [2, 97, 391], "appfwwsdl": [2, 391], "wsdl": [2, 105, 378, 391], "file": [2, 19, 23, 24, 44, 45, 46, 56, 90, 97, 103, 108, 109, 110, 115, 116, 142, 146, 148, 151, 160, 208, 210, 215, 216, 330, 352, 354, 363, 382, 383, 389, 391, 392, 399, 417, 460, 523, 529, 530, 537, 538, 547, 568, 577, 578, 584, 590, 595, 602, 610, 615, 641, 648, 649, 655, 656, 657, 658, 659, 661, 663, 667, 670, 672, 673, 674, 675, 676, 678, 683, 684, 689, 693, 695, 706, 722, 742, 745, 794, 825, 827, 833, 835, 837, 838], "appfwxmlcontenttyp": [2, 391], "appfwxmlerrorpag": [2, 391], "appfwxmlschema": [2, 391], "schema": [2, 44, 105, 108, 146, 156, 378, 391, 641], "appqoeact": [2, 391], "appqo": [2, 119, 129, 391, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "appqoecustomresp": [2, 391], "respons": [2, 20, 26, 29, 44, 49, 52, 86, 97, 105, 117, 119, 135, 143, 147, 153, 158, 160, 162, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 191, 194, 206, 210, 215, 222, 225, 226, 229, 230, 262, 264, 265, 267, 268, 269, 270, 271, 272, 273, 274, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 324, 335, 340, 363, 369, 371, 374, 375, 376, 391, 413, 417, 419, 421, 424, 427, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 512, 534, 535, 536, 538, 563, 570, 573, 575, 587, 608, 609, 612, 613, 615, 616, 617, 618, 619, 620, 635, 636, 637, 638, 661, 689, 695, 701, 706, 713, 716, 742, 749, 754, 760, 761, 762, 763, 764, 776, 777, 782, 783, 794, 797, 832, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "appqoeparamet": [2, 391], "qo": [2, 391], "appqoepolici": [2, 391, 606], "arp": [2, 246, 288, 391, 406, 417, 488, 537, 538, 570, 630], "arpparam": [2, 391], "global": [2, 44, 51, 262, 263, 314, 329, 332, 349, 353, 364, 366, 370, 385, 391, 395, 404, 409, 419, 424, 442, 458, 482, 487, 512, 523, 537, 542, 547, 560, 565, 566, 573, 626, 635, 636, 637, 638, 677, 682, 818, 827, 833], "auditmessageact": [2, 391], "messag": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "auditnslogact": [2, 391], "n": [2, 117, 226, 233, 234, 247, 288, 314, 341, 349, 363, 366, 369, 382, 391, 392, 405, 407, 419, 424, 442, 467, 488, 512, 522, 523, 527, 528, 530, 536, 563, 564, 582, 583, 585, 608, 615, 635, 637, 641, 657, 661, 682, 689, 713, 736, 741, 746, 760, 761, 827, 833, 882, 886], "log": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 129, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "auditnslogglobal_auditnslogpolicy_bind": [2, 391], "auditnslogglob": [2, 391], "auditnslogparam": [2, 391], "auditsyslogact": [2, 391], "system": [2, 4, 20, 42, 125, 129, 171, 172, 173, 175, 178, 180, 182, 183, 234, 241, 246, 247, 335, 369, 378, 391, 392, 418, 442, 512, 521, 527, 531, 537, 538, 547, 549, 553, 559, 563, 574, 575, 591, 605, 635, 637, 657, 661, 665, 666, 682, 703, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 752, 768, 815, 820, 823, 827, 833, 865, 889], "auditsyslogglobal_auditsyslogpolicy_bind": [2, 391], "auditsyslogglob": [2, 391], "auditsyslogparam": [2, 391], "authenticationadfsproxyprofil": [2, 391], "adfsproxi": [2, 391, 442], "authenticationauthnprofil": [2, 391], "authenticationazurekeyvault": [2, 391], "azur": [2, 207, 239, 241, 391], "kei": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 529, 530, 531, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 656, 657, 658, 659, 660, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 673, 675, 676, 677, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "vault": [2, 199, 391], "entiti": [2, 52, 97, 103, 121, 124, 126, 128, 130, 151, 153, 160, 162, 186, 218, 219, 238, 256, 257, 259, 288, 314, 359, 360, 366, 379, 389, 390, 391, 400, 405, 425, 426, 442, 469, 470, 471, 472, 473, 482, 489, 492, 503, 504, 512, 528, 532, 537, 538, 557, 558, 561, 565, 570, 573, 606, 621, 623, 629, 630, 633, 635, 637, 641, 648, 649, 689, 706, 754, 790, 791, 832, 865], "authenticationcaptchaact": [2, 391], "captcha": [2, 391], "authenticationcertact": [2, 391], "cert": [2, 19, 22, 143, 391, 641, 656, 657, 661, 682, 689, 711], "authenticationcertpolici": [2, 391], "authenticationcitrixauthact": [2, 391], "citrix": [2, 12, 19, 20, 23, 24, 25, 26, 29, 35, 42, 44, 45, 46, 48, 49, 50, 52, 53, 55, 59, 72, 74, 97, 109, 116, 117, 121, 123, 124, 126, 127, 128, 130, 131, 134, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 222, 223, 226, 227, 233, 234, 239, 243, 247, 262, 264, 265, 267, 272, 274, 276, 288, 293, 295, 297, 314, 322, 323, 326, 327, 328, 331, 332, 333, 334, 335, 336, 337, 340, 342, 343, 344, 347, 349, 351, 359, 366, 367, 368, 369, 375, 383, 384, 386, 388, 389, 390, 391, 392, 394, 403, 405, 406, 409, 410, 413, 417, 419, 421, 422, 423, 424, 442, 453, 458, 459, 460, 461, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 487, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 513, 514, 520, 522, 523, 526, 527, 529, 530, 532, 533, 534, 535, 536, 537, 538, 542, 554, 563, 564, 565, 568, 570, 573, 577, 578, 587, 600, 601, 602, 605, 608, 610, 612, 613, 615, 618, 619, 621, 623, 625, 627, 628, 629, 630, 633, 635, 639, 641, 642, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 682, 685, 686, 689, 695, 701, 706, 712, 713, 714, 716, 717, 728, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 776, 777, 782, 783, 793, 794, 825, 826, 827, 832, 833, 834, 835, 836, 837, 865, 882, 886, 890], "authenticationdfaact": [2, 391], "dfa": [2, 391], "authenticationdfapolici": [2, 391], "authenticationemailact": [2, 391], "email": [2, 52, 143, 231, 343, 391, 646, 657, 664, 813, 825, 827, 833], "authenticationepaact": [2, 391], "epa": [2, 23, 24, 391, 865, 871], "authenticationldapact": [2, 391], "authenticationldappolici": [2, 391], "authenticationlocalpolici": [2, 391], "local": [2, 20, 22, 35, 143, 160, 216, 222, 332, 360, 363, 366, 367, 368, 369, 370, 380, 381, 391, 394, 403, 461, 504, 530, 537, 568, 582, 592, 602, 610, 659, 664, 678, 722, 742, 772, 827, 833], "authenticationloginschema": [2, 391], "0": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 722, 723, 724, 726, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "authenticationloginschemapolici": [2, 391, 606], "negoti": [2, 5, 391, 396, 563, 654, 689, 706, 755, 756, 827, 833], "authenticationnegotiatepolici": [2, 391], "authenticationnoauthact": [2, 391], "authenticationoauthact": [2, 391], "oauth": [2, 134, 391], "authenticationoauthidppolici": [2, 391, 606], "identityprovid": [2, 160, 391], "idp": [2, 134, 141, 151, 160, 391, 754, 832], "authenticationoauthidpprofil": [2, 391], "ident": [2, 134, 151, 152, 157, 160, 161, 369, 391, 527, 637, 682, 689], "provid": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "authenticationpolici": [2, 391, 606], "authenticationpolicylabel": [2, 391, 606], "authenticationpolicylabel_authenticationpolicy_bind": [2, 154, 156, 391], "authenticationpushservic": [2, 391], "servic": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 367, 368, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 636, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "detail": [2, 12, 22, 51, 97, 123, 124, 126, 128, 130, 151, 153, 210, 224, 225, 327, 333, 347, 369, 385, 391, 392, 417, 530, 544, 545, 594, 629, 630, 637, 654, 717, 742, 827, 833, 837], "send": [2, 20, 26, 29, 42, 44, 49, 52, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 117, 119, 123, 124, 128, 134, 143, 147, 153, 158, 160, 162, 186, 191, 194, 210, 215, 221, 234, 264, 268, 269, 271, 272, 288, 314, 330, 335, 352, 363, 369, 375, 386, 389, 390, 391, 392, 398, 399, 406, 417, 419, 421, 458, 467, 482, 497, 498, 499, 503, 505, 535, 536, 538, 563, 564, 570, 580, 582, 583, 587, 600, 608, 611, 612, 617, 618, 633, 635, 637, 639, 641, 645, 647, 648, 649, 671, 681, 682, 689, 695, 701, 706, 716, 717, 742, 749, 754, 760, 761, 763, 776, 797, 827, 832, 833, 865, 889], "push": [2, 44, 129, 132, 134, 143, 241, 264, 314, 391, 442, 531, 535, 537, 538, 563, 564, 591, 682, 689, 695, 706, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 889], "notif": [2, 22, 134, 143, 330, 386, 391, 564], "authenticationradiusact": [2, 391], "authenticationradiuspolici": [2, 391], "authenticationsamlact": [2, 391], "saml": [2, 22, 391, 602, 758, 835, 837, 838], "authenticationsamlidppolici": [2, 391, 606], "authenticationsamlidpprofil": [2, 391], "authenticationsamlpolici": [2, 391], "authenticationsmartaccesspolici": [2, 391], "smartaccess": [2, 391], "authenticationsmartaccessprofil": [2, 391], "authenticationstorefrontauthact": [2, 391], "storefront": [2, 391, 417, 827, 833, 865], "authenticationtacacsact": [2, 391], "authenticationtacacspolici": [2, 391], "authenticationvserv": [2, 391, 606], "virtual": [2, 51, 52, 54, 60, 61, 62, 73, 117, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 224, 228, 234, 241, 263, 266, 269, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 293, 294, 295, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 332, 366, 367, 368, 369, 370, 371, 372, 373, 374, 376, 391, 403, 407, 411, 412, 413, 419, 420, 422, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 512, 537, 538, 542, 561, 563, 574, 587, 588, 609, 614, 616, 620, 635, 636, 637, 654, 662, 666, 677, 681, 682, 689, 695, 701, 705, 707, 708, 709, 710, 711, 716, 763, 766, 778, 779, 780, 784, 786, 787, 788, 790, 791, 825, 827, 833, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 888], "server": [2, 20, 22, 26, 28, 29, 35, 46, 51, 52, 54, 56, 60, 61, 62, 66, 68, 73, 97, 109, 110, 112, 114, 115, 117, 123, 124, 126, 127, 128, 130, 131, 132, 134, 136, 137, 139, 140, 141, 143, 144, 148, 149, 151, 153, 154, 157, 158, 159, 160, 163, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 194, 201, 203, 215, 216, 222, 223, 224, 226, 228, 231, 241, 263, 264, 266, 268, 269, 270, 272, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 293, 294, 295, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 321, 326, 330, 331, 335, 337, 340, 343, 349, 352, 359, 362, 364, 366, 367, 368, 369, 370, 371, 372, 373, 374, 376, 383, 389, 390, 391, 405, 406, 407, 408, 411, 412, 413, 417, 419, 420, 422, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 460, 461, 482, 483, 502, 512, 514, 522, 523, 526, 527, 530, 534, 535, 536, 537, 538, 540, 541, 542, 547, 553, 559, 561, 563, 564, 565, 568, 577, 587, 588, 592, 595, 598, 601, 602, 604, 607, 608, 609, 610, 611, 612, 614, 616, 618, 620, 623, 624, 625, 634, 635, 636, 637, 638, 640, 645, 654, 657, 658, 659, 661, 662, 664, 666, 667, 668, 669, 671, 677, 679, 681, 682, 689, 695, 696, 701, 705, 707, 708, 709, 710, 711, 714, 716, 742, 745, 746, 749, 763, 764, 766, 778, 779, 780, 784, 794, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 812, 814, 815, 818, 820, 821, 823, 825, 827, 829, 832, 833, 835, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 882, 886, 888], "authenticationvserver_auditnslogpolicy_bind": [2, 186, 391], "authenticationvserver_auditsyslogpolicy_bind": [2, 186, 391], "authenticationvserver_authenticationcertpolicy_bind": [2, 186, 391], "authenticationvserver_authenticationldappolicy_bind": [2, 186, 391], "authenticationvserver_authenticationlocalpolicy_bind": [2, 186, 391], "authenticationvserver_authenticationloginschemapolicy_bind": [2, 186, 391], "authenticationvserver_authenticationnegotiatepolicy_bind": [2, 186, 391], "authenticationvserver_authenticationoauthidppolicy_bind": [2, 186, 391], "authenticationvserver_authenticationpolicy_bind": [2, 186, 391], "authenticationvserver_authenticationradiuspolicy_bind": [2, 186, 391], "authenticationvserver_authenticationsamlidppolicy_bind": [2, 186, 391], "authenticationvserver_authenticationsamlpolicy_bind": [2, 186, 391], "authenticationvserver_authenticationsmartaccesspolicy_bind": [2, 186, 391], "authenticationvserver_authenticationtacacspolicy_bind": [2, 186, 391], "authenticationvserver_authenticationwebauthpolicy_bind": [2, 186, 391], "authenticationwebauthpolici": [2, 391], "authenticationvserver_cachepolicy_bind": [2, 186, 391], "cachepolici": [2, 391, 606], "authenticationvserver_cspolicy_bind": [2, 186, 391], "cspolici": [2, 314, 391], "authenticationvserver_responderpolicy_bind": [2, 186, 391], "responderpolici": [2, 391, 606], "authenticationvserver_rewritepolicy_bind": [2, 186, 391], "rewritepolici": [2, 391, 606], "authenticationvserver_tmsessionpolicy_bind": [2, 186, 391], "authenticationvserver_vpnportaltheme_bind": [2, 186, 391], "vpnportalthem": [2, 391], "authenticationwebauthact": [2, 391], "author": [2, 391], "authorizationpolicylabel": [2, 391, 606], "authorizationpolicylabel_authorizationpolicy_bind": [2, 193, 195, 391], "autoscaleact": [2, 391], "autoscal": [2, 241, 369, 391, 442, 637], "autoscalepolici": [2, 391], "autoscaleprofil": [2, 391], "azureappl": [2, 200, 391], "azurekeyvault": [2, 391, 678], "botglobal_botpolicy_bind": [2, 391], "botglob": [2, 391], "botpolici": [2, 391, 606], "bot": [2, 49, 129, 201, 203, 205, 207, 209, 212, 214, 391, 531, 591, 641, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "botpolicylabel": [2, 391, 606], "botpolicylabel_botpolicy_bind": [2, 202, 204, 391], "botprofil": [2, 391, 606], "botprofile_blacklist_bind": [2, 210, 391], "blacklist": [2, 391], "botprofile_captcha_bind": [2, 210, 391], "botprofile_ipreputation_bind": [2, 210, 391], "ipreput": [2, 391], "botprofile_kmdetectionexpr_bind": [2, 210, 391], "kmdetectionexpr": [2, 391], "botprofile_logexpression_bind": [2, 210, 391], "botprofile_ratelimit_bind": [2, 210, 391], "ratelimit": [2, 391, 641], "botprofile_tps_bind": [2, 210, 391], "tp": [2, 206, 210, 391], "botprofile_trapinsertionurl_bind": [2, 210, 391], "trapinsertionurl": [2, 391], "botprofile_whitelist_bind": [2, 210, 391], "whitelist": [2, 238, 391], "botset": [2, 391], "engin": [2, 70, 97, 109, 335, 391, 419, 496, 529, 535, 563, 573, 682], "botsignatur": [2, 391], "bridgegroup": [2, 391], "bridg": [2, 218, 219, 220, 391, 406, 442, 507, 509, 510, 511, 548, 569, 635], "bridgegroup_nsip6_bind": [2, 217, 391], "nsip6": [2, 379, 391, 648], "bridgegroup_nsip_bind": [2, 217, 391], "nsip": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 893, 894, 895], "bridgegroup_vlan_bind": [2, 217, 391], "vlan": [2, 121, 217, 218, 219, 221, 234, 275, 288, 379, 391, 403, 408, 442, 504, 505, 506, 508, 523, 537, 538, 547, 549, 554, 568, 570, 582, 606, 629, 630, 717, 718, 720, 865, 890, 895], "bridget": [2, 391], "tabl": [2, 121, 363, 391, 406, 414, 416, 417, 504, 535, 537, 538, 629, 630, 671, 760, 761, 894, 895], "entri": [2, 121, 122, 160, 205, 214, 233, 234, 263, 335, 341, 363, 370, 375, 389, 391, 406, 482, 495, 496, 504, 520, 547, 573, 585, 595, 623, 628, 629, 630, 633, 641, 644, 682, 747, 748, 880, 881, 884, 885, 889], "cachecontentgroup": [2, 391, 606], "integr": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 224, 225, 226, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "cach": [2, 22, 44, 52, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 223, 224, 228, 262, 264, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 314, 321, 323, 326, 327, 328, 330, 331, 333, 334, 335, 337, 340, 341, 342, 343, 344, 347, 352, 359, 391, 431, 432, 433, 439, 440, 442, 447, 448, 523, 547, 587, 588, 635, 637, 661, 681, 682, 689, 695, 701, 706, 713, 827, 833, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 876, 877, 879, 889], "cacheforwardproxi": [2, 391], "forward": [2, 44, 60, 61, 62, 73, 97, 194, 201, 268, 270, 273, 275, 278, 279, 280, 281, 282, 283, 285, 286, 288, 290, 291, 292, 296, 314, 321, 335, 337, 340, 349, 366, 369, 375, 383, 391, 406, 407, 411, 419, 442, 467, 564, 609, 616, 620, 629, 635, 637, 654, 664, 681, 682, 689, 706, 711, 763, 766, 779, 780, 888], "proxi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "cacheglobal_cachepolicy_bind": [2, 391], "cacheglob": [2, 391], "cacheobject": [2, 391], "object": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "cacheparamet": [2, 391], "cachepolicylabel": [2, 391, 606], "cachepolicylabel_cachepolicy_bind": [2, 227, 229, 391], "cacheselector": [2, 391], "selector": [2, 222, 391, 542, 713], "callhom": [2, 129, 391, 392, 531, 591, 641, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "change_password": [2, 391], "chang": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "password": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "node": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "channel": [2, 207, 288, 379, 391, 408, 409, 442, 494, 553, 865], "channel_interface_bind": [2, 234, 391], "interfac": [2, 121, 221, 234, 246, 247, 275, 336, 337, 356, 379, 391, 406, 417, 454, 457, 458, 488, 504, 523, 537, 538, 568, 582, 583, 630, 641, 717, 736, 746, 786, 788, 827, 833, 837, 838, 880, 882, 883, 884, 886, 887], "cloudallowedngsticketprofil": [2, 391], "allow": [2, 22, 23, 24, 26, 29, 59, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 117, 123, 139, 143, 151, 158, 160, 162, 167, 193, 206, 207, 208, 210, 211, 212, 215, 234, 264, 267, 275, 314, 329, 335, 339, 358, 359, 366, 369, 379, 383, 389, 391, 403, 406, 408, 413, 418, 419, 424, 442, 467, 472, 473, 482, 496, 497, 498, 502, 505, 523, 535, 536, 537, 538, 542, 547, 554, 563, 564, 574, 586, 589, 600, 602, 608, 611, 617, 619, 621, 628, 637, 647, 654, 657, 664, 667, 682, 685, 689, 695, 696, 706, 711, 723, 736, 742, 746, 755, 756, 765, 792, 794, 797, 825, 827, 833, 835, 837, 838, 865, 890], "ticket": [2, 19, 148, 160, 238, 391, 689, 706, 814, 869], "ng": [2, 52, 211, 239, 391], "cloudawsparam": [2, 391], "cloud": [2, 138, 143, 153, 157, 162, 200, 207, 234, 391, 522, 637, 772, 827, 832, 833, 895], "awsparam": [2, 391], "cloudcredenti": [2, 391], "credenti": [2, 146, 148, 391, 417, 749, 755, 756, 797, 827, 833, 835], "cloudngsparamet": [2, 391], "ngsparamet": [2, 391], "cloudparamet": [2, 391], "cloudparamintern": [2, 391], "paramintern": [2, 391], "cloudprofil": [2, 391], "cloudtunnelparamet": [2, 391], "cloudtunnel": [2, 391], "cloudtunnelvserv": [2, 391], "tunnel": [2, 26, 121, 158, 207, 221, 247, 275, 391, 407, 417, 504, 507, 535, 792, 827, 833], "cluster": [2, 27, 52, 121, 218, 219, 221, 225, 231, 233, 234, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 323, 326, 327, 328, 331, 333, 334, 342, 343, 344, 345, 347, 350, 356, 357, 358, 361, 363, 370, 391, 394, 403, 404, 409, 420, 424, 442, 457, 488, 491, 492, 493, 504, 515, 516, 521, 523, 527, 533, 537, 538, 541, 568, 573, 574, 596, 621, 622, 623, 629, 630, 631, 635, 637, 641, 643, 646, 648, 682, 716, 720, 727, 742, 786, 787, 788, 790, 791, 824, 828, 882, 886], "clusterfil": [2, 391], "clusterinst": [2, 391], "instanc": [2, 42, 239, 391, 392, 522, 742], "clusternod": [2, 391], "clusternode_routemonitor_bind": [2, 244, 247, 391], "routemonitor": [2, 380, 391], "clusternodegroup": [2, 391], "clusternodegroup_authenticationvserver_bind": [2, 244, 247, 256, 391], "clusternodegroup_clusternode_bind": [2, 244, 247, 256, 391], "clusternodegroup_crvserver_bind": [2, 244, 247, 256, 391], "crvserver": [2, 391, 606], "clusternodegroup_csvserver_bind": [2, 244, 247, 256, 391], "csvserver": [2, 238, 391, 606], "clusternodegroup_gslbsite_bind": [2, 244, 247, 256, 391], "gslbsite": [2, 391, 606], "clusternodegroup_gslbvserver_bind": [2, 244, 247, 256, 391], "gslbvserver": [2, 391, 606], "clusternodegroup_lbvserver_bind": [2, 244, 247, 256, 391], "lbvserver": [2, 293, 314, 391, 606], "clusternodegroup_nslimitidentifier_bind": [2, 244, 247, 256, 391], "nslimitidentifi": [2, 391, 606], "clusternodegroup_service_bind": [2, 244, 247, 256, 391], "clusternodegroup_streamidentifier_bind": [2, 244, 247, 256, 391], "streamidentifi": [2, 391], "clusternodegroup_vpnvserver_bind": [2, 244, 247, 256, 391], "vpnvserver": [2, 391], "clusterpropstatu": [2, 391], "cmpaction": [2, 391], "compress": [2, 263, 264, 266, 289, 391, 535, 635, 637, 713, 769], "cmpglobal_cmppolicy_bind": [2, 391], "cmpglobal": [2, 391], "cmppolici": [2, 391, 606], "cmpparamet": [2, 391], "cmp": [2, 129, 262, 265, 267, 391, 531, 591, 635, 637, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "cmppolicylabel": [2, 391, 606], "cmppolicylabel_cmppolicy_bind": [2, 265, 267, 391], "contentinspectionact": [2, 391], "inspect": [2, 69, 81, 86, 97, 124, 126, 128, 130, 271, 272, 275, 321, 391], "contentinspectioncallout": [2, 391], "callout": [2, 391, 528, 532, 573, 586, 590, 593, 595], "contentinspectionglobal_contentinspectionpolicy_bind": [2, 391], "contentinspectionglob": [2, 391], "contentinspectionpolici": [2, 391, 606], "contentinspectionparamet": [2, 391], "contentinspect": [2, 49, 129, 268, 270, 273, 391, 531, 591, 635, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "contentinspectionpolicylabel": [2, 391, 606], "contentinspectionpolicylabel_contentinspectionpolicy_bind": [2, 272, 274, 391], "contentinspectionprofil": [2, 391], "crpolici": [2, 391], "redirect": [2, 22, 52, 84, 97, 133, 151, 160, 162, 205, 206, 207, 210, 211, 212, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 314, 335, 366, 367, 368, 369, 375, 383, 391, 405, 442, 489, 523, 547, 587, 588, 604, 608, 621, 623, 635, 637, 689, 695, 706, 754, 832, 889], "cr": [2, 129, 211, 277, 391, 531, 535, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "crvserver_analyticsprofile_bind": [2, 288, 391], "crvserver_appflowpolicy_bind": [2, 288, 391], "crvserver_appfwpolicy_bind": [2, 288, 391], "crvserver_appqoepolicy_bind": [2, 288, 391], "crvserver_cachepolicy_bind": [2, 288, 391], "crvserver_cmppolicy_bind": [2, 288, 391], "crvserver_crpolicy_bind": [2, 288, 391], "crvserver_cspolicy_bind": [2, 288, 391], "crvserver_feopolicy_bind": [2, 288, 391], "feopolici": [2, 391], "crvserver_icapolicy_bind": [2, 288, 391], "icapolici": [2, 391], "crvserver_lbvserver_bind": [2, 288, 391], "crvserver_policymap_bind": [2, 288, 391], "policymap": [2, 391], "crvserver_responderpolicy_bind": [2, 288, 391], "crvserver_rewritepolicy_bind": [2, 288, 391], "crvserver_spilloverpolicy_bind": [2, 288, 391], "spilloverpolici": [2, 391, 606], "csaction": [2, 391], "switch": [2, 269, 276, 278, 286, 289, 290, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 366, 391, 408, 419, 442, 523, 549, 563, 587, 641, 716, 786, 787, 788, 827, 833, 889], "csparamet": [2, 391], "c": [2, 129, 207, 233, 234, 247, 293, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 312, 313, 315, 316, 317, 318, 319, 320, 391, 419, 424, 531, 564, 568, 582, 583, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 837], "cspolicylabel": [2, 391], "cspolicylabel_cspolicy_bind": [2, 295, 297, 391], "csvserver_analyticsprofile_bind": [2, 314, 391], "csvserver_appflowpolicy_bind": [2, 314, 391], "csvserver_appfwpolicy_bind": [2, 314, 391], "csvserver_appqoepolicy_bind": [2, 314, 391], "csvserver_auditnslogpolicy_bind": [2, 314, 391], "csvserver_auditsyslogpolicy_bind": [2, 314, 391], "csvserver_authorizationpolicy_bind": [2, 314, 391], "csvserver_botpolicy_bind": [2, 314, 391], "csvserver_cachepolicy_bind": [2, 314, 391], "csvserver_cmppolicy_bind": [2, 314, 391], "csvserver_contentinspectionpolicy_bind": [2, 314, 391], "csvserver_cspolicy_bind": [2, 314, 391], "csvserver_domain_bind": [2, 314, 391], "domain": [2, 44, 52, 121, 124, 128, 133, 148, 166, 186, 200, 207, 218, 219, 288, 314, 323, 326, 327, 328, 331, 333, 334, 335, 337, 340, 342, 343, 344, 346, 347, 349, 352, 359, 366, 367, 368, 369, 372, 375, 389, 390, 391, 400, 405, 413, 417, 419, 425, 426, 442, 467, 470, 471, 472, 473, 482, 492, 495, 499, 500, 503, 504, 512, 522, 537, 538, 540, 541, 557, 558, 568, 569, 571, 572, 578, 582, 583, 587, 588, 602, 621, 623, 629, 630, 633, 635, 636, 637, 638, 648, 649, 661, 664, 689, 695, 701, 706, 755, 756, 760, 761, 762, 790, 791, 827, 830, 833, 865], "csvserver_feopolicy_bind": [2, 314, 391], "csvserver_gslbvserver_bind": [2, 314, 391], "csvserver_lbvserver_bind": [2, 314, 391], "csvserver_responderpolicy_bind": [2, 314, 391], "csvserver_rewritepolicy_bind": [2, 314, 391], "csvserver_spilloverpolicy_bind": [2, 314, 391], "csvserver_tmtrafficpolicy_bind": [2, 314, 391], "tmtrafficpolici": [2, 391, 606], "csvserver_transformpolicy_bind": [2, 314, 391], "transformpolici": [2, 391], "csvserver_vpnvserver_bind": [2, 314, 391], "dbdbprofil": [2, 391], "db": [2, 245, 314, 391, 442, 641, 741, 772], "dbuser": [2, 391], "dnsaaaarec": [2, 391], "ipv6": [2, 10, 33, 77, 84, 205, 214, 217, 241, 248, 288, 314, 324, 325, 335, 342, 359, 363, 375, 380, 381, 389, 390, 391, 394, 395, 407, 413, 442, 460, 470, 485, 492, 495, 497, 498, 499, 502, 503, 504, 537, 557, 568, 582, 584, 585, 587, 604, 629, 633, 635, 641, 645, 648, 649, 717, 774, 789, 814, 826, 827, 833, 863, 865, 869, 890], "address": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 324, 325, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "record": [2, 44, 49, 52, 143, 330, 335, 340, 349, 352, 366, 370, 375, 383, 391, 417, 419, 518, 595, 615, 633, 636, 637, 638, 671, 682, 689, 713, 714, 827, 833, 865], "dnsaction": [2, 391], "dn": [2, 20, 56, 124, 128, 130, 143, 222, 226, 241, 245, 288, 297, 314, 323, 326, 327, 328, 329, 331, 332, 333, 334, 336, 338, 341, 342, 343, 344, 345, 347, 363, 364, 366, 369, 370, 375, 378, 391, 417, 419, 423, 442, 523, 613, 615, 619, 633, 635, 636, 637, 638, 641, 645, 654, 657, 664, 667, 792, 826, 827, 833], "dnsaction64": [2, 391], "dns64": [2, 335, 391, 442], "dnsaddrec": [2, 391], "dnscaarec": [2, 391], "caa": [2, 341, 391], "dnscnamerec": [2, 391], "cname": [2, 314, 341, 366, 375, 391], "dnsglobal_dnspolicy_bind": [2, 391], "dnsglobal": [2, 391], "dnspolici": [2, 391], "dnskei": [2, 341, 391, 641], "dnsmxrec": [2, 391], "mx": [2, 211, 341, 391], "dnsnameserv": [2, 391], "name": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 35, 36, 37, 38, 39, 41, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 123, 124, 125, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 220, 222, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234, 235, 241, 243, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 265, 266, 267, 268, 269, 270, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 333, 335, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 352, 353, 355, 356, 357, 358, 359, 360, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 383, 384, 385, 386, 388, 389, 391, 394, 395, 396, 399, 400, 401, 402, 403, 407, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 457, 460, 461, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 488, 489, 490, 492, 494, 495, 496, 497, 498, 499, 500, 501, 502, 505, 507, 508, 509, 510, 511, 512, 513, 514, 517, 520, 522, 523, 525, 527, 528, 530, 531, 532, 535, 536, 537, 538, 540, 541, 542, 544, 547, 548, 549, 550, 551, 554, 555, 556, 557, 558, 559, 561, 564, 566, 567, 568, 570, 573, 574, 575, 578, 580, 581, 582, 583, 584, 585, 586, 587, 588, 590, 591, 592, 593, 594, 595, 598, 600, 602, 603, 604, 606, 608, 609, 610, 612, 613, 614, 615, 616, 618, 619, 620, 621, 622, 623, 624, 625, 626, 628, 629, 630, 632, 633, 634, 635, 636, 637, 638, 640, 641, 642, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 721, 722, 723, 724, 726, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 742, 743, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 789, 792, 793, 794, 795, 796, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 813, 815, 816, 818, 819, 820, 821, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 889, 894, 895], "dnsnaptrrec": [2, 391], "naptr": [2, 314, 341, 366, 370, 375, 391], "dnsnsrec": [2, 391], "dnsparamet": [2, 391], "dnspolicy64": [2, 391], "dnspolicylabel": [2, 391, 606], "dnspolicylabel_dnspolicy_bind": [2, 337, 339, 391], "dnsprofil": [2, 391], "dnsproxyrecord": [2, 391], "dnsptrrec": [2, 391], "ptr": [2, 341, 391], "dnssoarec": [2, 391], "soa": [2, 323, 326, 327, 328, 331, 333, 334, 341, 342, 344, 347, 349, 391, 417], "dnssrvrec": [2, 391], "dnssubnetcach": [2, 391], "subnet": [2, 27, 205, 214, 218, 219, 323, 326, 327, 328, 331, 333, 334, 335, 340, 342, 343, 344, 347, 359, 375, 391, 403, 417, 442, 470, 471, 492, 497, 509, 510, 523, 537, 538, 553, 585, 623, 628, 630, 637, 645, 790, 791, 825, 827, 833, 891, 892], "dnssuffix": [2, 391], "suffix": [2, 160, 288, 330, 342, 370, 391, 588, 792, 827, 833], "dnstxtrec": [2, 391], "txt": [2, 341, 391], "dnsview": [2, 391], "view": [2, 42, 227, 246, 325, 327, 333, 337, 347, 352, 364, 366, 391, 392, 586, 629, 630, 644, 650], "dnszone": [2, 391], "zone": [2, 124, 126, 128, 130, 323, 326, 327, 328, 330, 331, 333, 334, 342, 343, 344, 347, 391, 417, 547], "endpointinfo": [2, 391], "inform": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "extendedmemoryparam": [2, 391, 487], "extend": [2, 340, 352, 391, 417, 472, 473, 509, 510, 511, 515, 516, 523, 615, 623, 628, 689, 741], "memori": [2, 222, 226, 335, 391, 419, 424, 487, 534, 535, 549, 562, 563, 564, 568, 573, 575, 641, 682, 713], "lsn": [2, 52, 124, 126, 128, 129, 130, 391, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 495, 512, 531, 538, 591, 641, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "subscrib": [2, 124, 126, 128, 130, 391, 465, 467, 468, 470, 471, 472, 473, 482, 485, 486, 487, 489, 492, 495, 496, 547, 615, 716], "store": [2, 45, 66, 68, 110, 112, 114, 115, 143, 146, 151, 160, 167, 216, 222, 225, 226, 227, 262, 264, 347, 366, 391, 417, 419, 424, 458, 460, 461, 530, 568, 587, 600, 657, 661, 664, 672, 678, 683, 684, 693, 713, 726, 794, 827, 833, 837], "feoaction": [2, 391], "front": [2, 353, 391, 417, 654, 689], "end": [2, 6, 7, 8, 10, 11, 14, 16, 17, 18, 22, 24, 30, 31, 33, 34, 37, 39, 40, 41, 42, 52, 61, 62, 160, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 199, 263, 289, 302, 303, 318, 329, 335, 340, 353, 374, 376, 391, 392, 432, 433, 442, 448, 528, 585, 586, 602, 654, 657, 677, 682, 689, 695, 701, 706, 726, 729, 730, 731, 732, 734, 735, 750, 751, 753, 755, 756, 758, 827, 833, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877], "optim": [2, 97, 264, 353, 389, 391, 467, 534, 535, 564, 627, 775, 776, 777, 781, 782, 783, 835], "feoglobal_feopolicy_bind": [2, 391], "feoglob": [2, 391], "feoparamet": [2, 391], "feo": [2, 129, 352, 391, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "fi": [2, 211, 391], "fis_channel_bind": [2, 358, 391], "fis_interface_bind": [2, 358, 391], "forwardingsess": [2, 391], "session": [2, 12, 27, 47, 52, 70, 97, 109, 119, 124, 126, 128, 130, 133, 134, 135, 141, 143, 146, 150, 151, 153, 160, 162, 167, 210, 211, 215, 297, 314, 351, 369, 370, 375, 379, 383, 387, 389, 391, 395, 396, 404, 406, 413, 417, 442, 463, 465, 467, 468, 482, 486, 487, 489, 490, 494, 495, 496, 512, 519, 545, 564, 577, 604, 605, 623, 624, 635, 637, 641, 654, 671, 682, 689, 695, 701, 706, 713, 716, 717, 718, 736, 742, 746, 758, 794, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 837, 838, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 861, 865, 876, 877], "gslbconfig": [2, 391], "gslb": [2, 129, 293, 312, 314, 320, 340, 349, 364, 365, 367, 368, 371, 372, 373, 374, 375, 376, 391, 410, 419, 424, 459, 531, 538, 591, 641, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "config": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "gslbldnsentri": [2, 391], "ldn": [2, 332, 363, 370, 375, 391, 417, 462], "gslbparamet": [2, 391], "gslbservic": [2, 391, 606], "gslbservice_dnsview_bind": [2, 366, 391], "gslbservice_lbmonitor_bind": [2, 366, 391], "lbmonitor": [2, 391, 635], "gslbservicegroup": [2, 391, 606], "gslbservicegroup_gslbservicegroupmember_bind": [2, 366, 369, 391], "gslbservicegroupmemb": [2, 391, 606], "gslbservicegroup_lbmonitor_bind": [2, 366, 369, 391], "site": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "load": [2, 44, 49, 135, 269, 293, 294, 295, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 314, 315, 316, 317, 318, 319, 332, 349, 364, 366, 367, 368, 369, 370, 391, 412, 413, 416, 417, 419, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 446, 447, 448, 449, 450, 451, 452, 453, 523, 547, 587, 634, 635, 636, 637, 638, 661, 681, 682, 716, 774, 865, 889], "balanc": [2, 44, 269, 293, 294, 295, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 314, 315, 316, 317, 318, 319, 332, 349, 364, 366, 367, 368, 369, 370, 391, 412, 413, 417, 419, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 446, 447, 448, 449, 450, 451, 453, 587, 635, 636, 637, 638, 716, 774, 865, 889], "gslbvserver_domain_bind": [2, 375, 391], "gslbvserver_gslbservice_bind": [2, 375, 391], "gslbvserver_gslbservicegroup_bind": [2, 375, 391], "gslbvserver_lbpolicy_bind": [2, 375, 391], "lbpolici": [2, 391], "gslbvserver_spilloverpolicy_bind": [2, 375, 391], "hafailov": [2, 391], "failov": [2, 234, 363, 387, 391, 396, 406, 442, 482, 487], "hafil": [2, 391], "hanod": [2, 391], "hanode_routemonitor6_bind": [2, 379, 391], "routemonitor6": [2, 391], "hanode_routemonitor_bind": [2, 379, 391], "hasync": [2, 379, 391], "sync": [2, 207, 226, 246, 360, 363, 370, 379, 391, 641], "icaaccessprofil": [2, 391], "ica": [2, 385, 386, 391, 547, 827, 833, 835, 865], "accessprofil": [2, 384, 391], "icaact": [2, 391], "icaglobal_icapolicy_bind": [2, 391], "icaglob": [2, 391], "icalatencyprofil": [2, 391], "latenc": [2, 97, 387, 391, 865], "monitor": [2, 151, 234, 245, 363, 365, 366, 368, 369, 370, 379, 391, 416, 418, 419, 442, 538, 568, 570, 602, 629, 630, 634, 635, 636, 637, 638, 641, 664], "icaparamet": [2, 391], "inat": [2, 391, 606], "inbound": [2, 391], "nat": [2, 52, 314, 366, 367, 368, 369, 370, 379, 390, 391, 397, 405, 406, 407, 423, 442, 467, 470, 471, 473, 478, 482, 485, 488, 489, 492, 495, 496, 497, 565, 613, 622, 623, 624, 625, 628], "inatparam": [2, 391], "instal": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "interfacepair": [2, 391], "pair": [2, 143, 151, 153, 157, 160, 167, 288, 330, 349, 359, 366, 367, 368, 369, 389, 391, 417, 467, 547, 573, 593, 594, 623, 637, 638, 656, 660, 661, 662, 664, 681, 683, 689, 695, 696, 706, 707, 749, 797], "ip6tunnel": [2, 391], "ip6": [2, 10, 33, 314, 342, 391, 482, 863], "ip6tunnelparam": [2, 391], "ipsecalgprofil": [2, 391], "ipsec": [2, 391, 403, 404, 474], "alg": [2, 124, 126, 128, 130, 391, 474, 479, 480, 482, 490, 494], "ipsecalgsess": [2, 391], "ipsecparamet": [2, 391], "paramt": [2, 391, 541, 742], "ipsecprofil": [2, 391], "ipset": [2, 288, 314, 391, 442, 512, 635, 865], "network": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 509, 510, 511, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "ipset_nsip6_bind": [2, 391, 400], "ipset_nsip_bind": [2, 391, 400], "iptunnel": [2, 275, 391, 417, 442], "ip": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "iptunnelparam": [2, 391], "v6": [2, 238, 391, 814, 827, 833, 869], "l2param": [2, 391], "layer": [2, 389, 391, 442, 458, 467, 482, 505, 535, 627, 635, 671, 689, 773, 865], "2": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "relat": [2, 128, 130, 321, 359, 378, 379, 389, 391, 482, 487, 535, 538, 566, 623, 635, 776], "l3param": [2, 391], "3": [2, 97, 121, 167, 222, 233, 234, 246, 326, 356, 357, 375, 391, 410, 417, 442, 482, 504, 525, 535, 538, 574, 575, 635, 674, 682, 689, 693, 695, 701, 706, 760, 761, 786, 787, 788], "l4param": [2, 391], "4": [2, 21, 167, 222, 233, 234, 389, 391, 417, 442, 463, 464, 467, 482, 523, 535, 538, 615, 627, 635, 786, 787, 788, 789, 865], "lacp": [2, 234, 391], "link": [2, 391], "aggreg": [2, 171, 172, 173, 175, 178, 180, 182, 183, 391, 564, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "control": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "protocol": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lbaction": [2, 391], "lb": [2, 128, 129, 158, 211, 268, 293, 298, 313, 314, 363, 368, 371, 372, 373, 374, 375, 376, 379, 391, 408, 411, 417, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 531, 568, 591, 634, 636, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 837, 889], "lbglobal_lbpolicy_bind": [2, 391], "lbglobal": [2, 391], "lbgroup": [2, 391], "lbgroup_lbvserver_bind": [2, 391, 413], "lbmetrict": [2, 391], "metric": [2, 44, 52, 363, 370, 375, 391, 417, 442, 537, 538, 713], "lbmetrictable_metric_bind": [2, 391, 415], "lbmonitor_metric_bind": [2, 391, 417], "lbmonitor_sslcertkey_bind": [2, 391, 417], "sslcertkei": [2, 391], "lbparamet": [2, 391], "lbpersistentsess": [2, 391], "persist": [2, 22, 162, 226, 234, 288, 314, 366, 367, 368, 369, 370, 375, 379, 391, 413, 417, 419, 424, 427, 442, 523, 535, 547, 563, 621, 627, 635, 636, 637, 638, 754, 755, 756, 758, 794, 827, 832, 833, 889], "lbpolicylabel": [2, 391], "lbpolicylabel_lbpolicy_bind": [2, 391, 421, 423], "lbprofil": [2, 391], "lbrout": [2, 391], "rout": [2, 217, 288, 314, 359, 379, 390, 391, 405, 407, 419, 425, 442, 499, 523, 526, 537, 538, 598, 716, 760, 761, 789, 825, 827, 833, 865, 889, 890], "lbroute6": [2, 391], "route6": [2, 391], "lbsipparamet": [2, 391], "sip": [2, 297, 344, 391, 417, 442, 480, 482, 493, 494, 609, 613, 615, 619], "lbvserver_analyticsprofile_bind": [2, 391, 442], "lbvserver_appflowpolicy_bind": [2, 391, 442], "lbvserver_appfwpolicy_bind": [2, 391, 442], "lbvserver_appqoepolicy_bind": [2, 391, 442], "lbvserver_auditnslogpolicy_bind": [2, 391, 442], "lbvserver_auditsyslogpolicy_bind": [2, 391, 442], "lbvserver_authorizationpolicy_bind": [2, 391, 442], "lbvserver_botpolicy_bind": [2, 391, 442], "lbvserver_cachepolicy_bind": [2, 391, 442], "lbvserver_cmppolicy_bind": [2, 391, 442], "lbvserver_contentinspectionpolicy_bind": [2, 391, 442], "lbvserver_dnspolicy64_bind": [2, 391, 442], "lbvserver_feopolicy_bind": [2, 391, 442], "lbvserver_lbpolicy_bind": [2, 391, 442], "lbvserver_responderpolicy_bind": [2, 391, 442], "lbvserver_rewritepolicy_bind": [2, 391, 442], "lbvserver_service_bind": [2, 391, 442], "lbvserver_servicegroup_bind": [2, 391, 442], "servicegroup": [2, 241, 367, 368, 369, 391, 419, 442, 561, 606, 641, 700], "lbvserver_spilloverpolicy_bind": [2, 391, 442], "lbvserver_tmtrafficpolicy_bind": [2, 391, 442], "lbvserver_transformpolicy_bind": [2, 391, 442], "lbvserver_videooptimizationdetectionpolicy_bind": [2, 391, 442], "videooptimizationdetectionpolici": [2, 391, 606], "lbvserver_videooptimizationpacingpolicy_bind": [2, 391, 442], "videooptimizationpacingpolici": [2, 391, 606], "lbwlm": [2, 391], "manag": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lbwlm_lbvserver_bind": [2, 391, 453], "linkset": [2, 391], "linkset_channel_bind": [2, 391, 456], "linkset_interface_bind": [2, 391, 456], "lldpneighbor": [2, 391], "lldp": [2, 391, 606, 641], "neighbor": [2, 391, 405, 504, 537], "lldpparam": [2, 391], "locat": [2, 20, 44, 45, 52, 66, 68, 69, 77, 78, 82, 84, 97, 99, 104, 107, 109, 110, 114, 115, 143, 160, 225, 239, 325, 337, 363, 391, 442, 522, 523, 615, 646, 661, 664, 689, 695, 706, 718, 720, 728, 745, 792, 827, 833], "locationfil": [2, 391, 460], "locationfile6": [2, 391], "file6": [2, 391], "locationparamet": [2, 391], "login": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "logout": [2, 160, 162, 391, 463, 758, 827, 833], "from": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 238, 239, 241, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 520, 521, 522, 523, 524, 525, 526, 527, 528, 530, 532, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 598, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 630, 631, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 661, 662, 663, 664, 665, 666, 667, 668, 669, 671, 673, 674, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 716, 717, 718, 719, 722, 723, 724, 725, 726, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 742, 743, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 827, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lsnappsattribut": [2, 391], "attribut": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lsnappsprofil": [2, 391], "lsnappsprofile_lsnappsattributes_bind": [2, 391, 467], "lsnappsprofile_port_bind": [2, 391, 467], "port": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lsnclient": [2, 391], "client": [2, 3, 22, 26, 29, 44, 46, 49, 52, 56, 66, 68, 97, 109, 110, 112, 114, 115, 119, 136, 137, 142, 147, 148, 151, 158, 160, 206, 207, 210, 211, 216, 222, 226, 238, 268, 272, 288, 314, 321, 330, 335, 336, 337, 340, 344, 364, 366, 369, 370, 375, 383, 387, 389, 391, 395, 404, 407, 408, 413, 417, 418, 419, 424, 427, 442, 460, 461, 467, 470, 471, 472, 473, 482, 489, 492, 512, 518, 523, 526, 527, 530, 534, 535, 536, 537, 538, 547, 563, 564, 565, 568, 577, 587, 588, 592, 595, 600, 601, 602, 604, 610, 612, 618, 635, 637, 639, 654, 657, 658, 659, 664, 668, 669, 671, 679, 681, 682, 689, 695, 696, 701, 706, 707, 711, 714, 716, 742, 745, 746, 776, 792, 794, 825, 827, 833, 837, 838, 865, 889], "lsnclient_network6_bind": [2, 391, 469], "network6": [2, 391, 485, 492, 495], "lsnclient_network_bind": [2, 391, 469], "lsnclient_nsacl6_bind": [2, 391, 469], "nsacl6": [2, 391, 606], "lsnclient_nsacl_bind": [2, 391, 469], "nsacl": [2, 391, 606], "lsngroup": [2, 391], "lsngroup_ipsecalgprofile_bind": [2, 391, 482], "lsngroup_lsnappsprofile_bind": [2, 391, 482], "lsngroup_lsnhttphdrlogprofile_bind": [2, 391, 482], "lsnhttphdrlogprofil": [2, 391], "lsngroup_lsnlogprofile_bind": [2, 391, 482], "lsnlogprofil": [2, 391], "lsngroup_lsnpool_bind": [2, 391, 482], "lsnpool": [2, 391], "lsngroup_lsnrtspalgprofile_bind": [2, 391, 482], "lsnrtspalgprofil": [2, 391], "lsngroup_lsnsipalgprofile_bind": [2, 391, 482], "lsnsipalgprofil": [2, 391], "lsngroup_lsntransportprofile_bind": [2, 391, 482], "lsntransportprofil": [2, 391], "lsngroup_pcpserver_bind": [2, 391, 482], "pcpserver": [2, 391, 606], "http": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 588, 589, 590, 591, 592, 593, 594, 595, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "header": [2, 22, 44, 52, 69, 78, 82, 97, 99, 105, 109, 139, 210, 222, 226, 234, 246, 262, 264, 269, 288, 314, 335, 366, 369, 390, 391, 395, 404, 417, 427, 442, 476, 503, 512, 523, 528, 534, 535, 536, 547, 575, 587, 608, 615, 635, 637, 641, 654, 682, 689, 706, 762, 789], "lsnip6profil": [2, 391], "lsnparamet": [2, 391], "pool": [2, 391, 467, 478, 482, 488, 521, 534, 535, 539, 541, 641, 827, 833], "lsnpool_lsnip_bind": [2, 391, 489], "lsnip": [2, 391], "rtspalg": [2, 391, 482], "lsnrtspalgsess": [2, 391], "lsnsession": [2, 391], "lsnsipalgcal": [2, 391], "sipalg": [2, 391, 482], "call": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lsnstatic": [2, 391], "static": [2, 22, 97, 210, 370, 375, 391, 442, 459, 460, 461, 523, 536, 629, 630, 717, 749, 797], "map": [2, 109, 148, 215, 278, 279, 280, 281, 282, 283, 285, 286, 288, 290, 291, 292, 314, 336, 342, 366, 367, 368, 369, 383, 391, 407, 417, 442, 467, 482, 489, 492, 496, 497, 500, 508, 520, 537, 573, 580, 587, 590, 594, 595, 635, 637, 827, 833, 895], "transport": [2, 44, 50, 128, 158, 160, 162, 391, 403, 481, 490, 494, 565, 689, 706, 773, 824, 829], "mapbmr": [2, 391], "t": [2, 105, 109, 234, 391, 535, 582, 583, 595, 717, 736, 742, 746, 760, 761], "basic": [2, 97, 162, 391, 497, 500, 523, 722, 741, 742, 754, 755, 756, 827, 832, 833, 835, 865], "rule": [2, 9, 13, 15, 24, 25, 32, 36, 38, 51, 53, 54, 59, 60, 69, 70, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 110, 117, 120, 127, 131, 137, 140, 144, 145, 147, 149, 152, 154, 155, 159, 160, 161, 163, 164, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 192, 193, 194, 197, 201, 202, 203, 224, 227, 228, 230, 263, 265, 266, 270, 272, 273, 276, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 295, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 324, 329, 333, 336, 337, 338, 353, 355, 359, 366, 374, 375, 376, 379, 385, 388, 391, 411, 413, 417, 418, 421, 422, 429, 430, 431, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 449, 450, 451, 472, 473, 497, 500, 501, 502, 528, 532, 543, 557, 558, 566, 573, 609, 612, 614, 615, 616, 618, 620, 621, 622, 623, 624, 625, 641, 653, 661, 667, 685, 687, 689, 696, 699, 711, 714, 718, 733, 752, 757, 759, 763, 764, 766, 768, 769, 776, 778, 779, 780, 782, 784, 793, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 834, 836, 839, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 876, 877, 879], "mapbmr_bmrv4network_bind": [2, 391, 498], "bmrv4network": [2, 391], "mapdmr": [2, 391], "default": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "mapdomain": [2, 391], "mapdomain_mapbmr_bind": [2, 391, 501], "nat64": [2, 391, 485, 492, 495], "nat64param": [2, 391], "nd6": [2, 391, 405, 417, 629], "nd6ravari": [2, 391], "router": [2, 207, 391, 405, 417], "advertis": [2, 335, 391, 405, 442, 499, 535, 537, 538, 600, 629, 630, 888], "variabl": [2, 4, 125, 129, 232, 293, 314, 391, 419, 424, 442, 445, 463, 464, 520, 530, 559, 591, 729, 730, 731, 732, 733, 734, 735, 736, 742, 746, 752, 768, 815, 820, 823, 827, 833, 897], "nd6ravariables_onlinkipv6prefix_bind": [2, 391, 504, 505], "onlinkipv6prefix": [2, 391], "netbridg": [2, 391], "netbridge_iptunnel_bind": [2, 391, 508], "netbridge_nsip6_bind": [2, 391, 508], "netbridge_nsip_bind": [2, 391, 508], "netbridge_vlan_bind": [2, 391, 508], "netprofil": [2, 50, 128, 288, 314, 391, 406, 417, 442, 502, 635, 637, 865], "netprofile_natrule_bind": [2, 391, 512], "natrul": [2, 391], "netprofile_srcportset_bind": [2, 391, 512], "srcportset": [2, 391], "acl": [2, 124, 126, 128, 130, 359, 391, 407, 473, 515, 623, 628], "nsacls6": [2, 391], "acl6": [2, 359, 391, 472, 502, 621], "nsappflowcollector": [2, 391], "nsappflowparam": [2, 391], "nsaptlicens": [2, 391], "aptlicens": [2, 391], "nsassign": [2, 391], "assign": [2, 46, 52, 89, 97, 116, 124, 126, 128, 130, 143, 158, 167, 186, 216, 218, 219, 241, 288, 314, 323, 326, 331, 353, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 391, 419, 424, 442, 445, 446, 462, 482, 489, 527, 530, 548, 550, 551, 573, 592, 610, 634, 635, 636, 637, 638, 641, 644, 645, 648, 650, 657, 658, 659, 665, 666, 668, 669, 679, 682, 684, 717, 774, 790, 791, 827, 833, 865, 882, 886, 891, 892, 895], "nscapac": [2, 391], "capac": [2, 367, 368, 369, 391, 446, 541, 636, 637, 638, 682], "nscentralmanagementserv": [2, 391], "centralmanagementserv": [2, 391], "nsconfig": [2, 45, 245, 391, 417, 657, 661, 663, 664, 667, 670, 672, 674, 675, 676, 683, 684, 693, 695, 706], "nsconsoleloginprompt": [2, 391], "consol": [2, 391], "prompt": [2, 146, 360, 377, 382, 391, 392, 523, 549, 657, 664, 672, 683, 689, 693, 695, 706, 736, 742, 746, 827, 833], "nscqaparam": [2, 391], "cqaparam": [2, 391], "nsdhcpparam": [2, 391], "dhcp": [2, 22, 391], "nsdiamet": [2, 391], "diamet": [2, 241, 297, 314, 391, 417, 423, 442, 613, 615, 619, 635, 637, 716], "nsencryptionkei": [2, 391], "encrypt": [2, 20, 21, 22, 97, 109, 143, 151, 153, 162, 297, 330, 391, 398, 399, 532, 578, 644, 650, 657, 661, 663, 672, 674, 682, 683, 684, 689, 693, 695, 701, 706, 754, 775, 776, 813, 827, 832, 833], "nsencryptionparam": [2, 391], "nsextens": [2, 391], "extens": [2, 335, 352, 391, 442, 528, 657, 664, 681, 682, 689, 773, 827, 835], "nsfeatur": [2, 391], "featur": [2, 22, 42, 52, 97, 129, 153, 156, 162, 210, 215, 246, 335, 351, 352, 375, 378, 383, 389, 391, 392, 396, 442, 467, 487, 496, 523, 536, 575, 587, 591, 627, 682, 689, 695, 701, 706, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 827, 833], "nshmackei": [2, 391], "hmac": [2, 391], "nshostnam": [2, 391], "host": [2, 22, 44, 46, 52, 56, 66, 67, 68, 71, 97, 101, 110, 111, 112, 113, 114, 115, 124, 128, 143, 207, 212, 216, 222, 225, 226, 227, 229, 231, 232, 234, 245, 288, 293, 314, 326, 330, 331, 334, 335, 344, 366, 370, 379, 383, 390, 391, 392, 395, 400, 405, 407, 409, 417, 419, 442, 445, 460, 461, 463, 464, 467, 484, 505, 512, 518, 523, 527, 530, 531, 535, 536, 537, 538, 547, 559, 564, 574, 575, 578, 582, 583, 587, 592, 595, 608, 610, 630, 632, 633, 635, 637, 644, 645, 648, 650, 651, 657, 658, 659, 661, 668, 669, 679, 682, 689, 695, 716, 736, 742, 745, 746, 760, 761, 772, 785, 789, 825, 827, 833, 837, 838, 865], "nshttpparam": [2, 391], "nshttpprofil": [2, 391], "nsicapprofil": [2, 391], "icap": [2, 268, 269, 391], "nslicenseparamet": [2, 391], "licenseparamet": [2, 391], "nslicenseproxyserv": [2, 391], "licenseproxyserv": [2, 391, 519], "nslicenseserv": [2, 391], "licenseserv": [2, 391, 539], "limit": [2, 97, 109, 210, 211, 222, 257, 259, 335, 347, 351, 386, 391, 419, 424, 487, 496, 505, 521, 523, 525, 534, 535, 537, 547, 549, 563, 564, 575, 600, 639, 641, 664, 682, 713, 736, 742, 746, 865], "indetifi": [2, 391], "nslimitselector": [2, 391], "nslimitsess": [2, 391], "nsmigrat": [2, 391], "migrat": [2, 391, 600, 641], "oper": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "nsmode": [2, 391], "mode": [2, 12, 22, 35, 44, 49, 53, 55, 72, 74, 97, 154, 156, 158, 186, 193, 195, 202, 204, 210, 217, 227, 229, 231, 234, 240, 244, 245, 246, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 335, 337, 339, 340, 349, 358, 363, 366, 369, 375, 378, 379, 389, 391, 392, 396, 400, 406, 407, 413, 415, 417, 419, 421, 423, 424, 442, 453, 456, 458, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 523, 528, 536, 542, 549, 555, 563, 564, 567, 568, 570, 584, 590, 593, 612, 613, 618, 619, 621, 623, 633, 635, 637, 639, 648, 655, 657, 661, 665, 667, 682, 683, 685, 686, 689, 695, 701, 706, 736, 742, 746, 764, 765, 776, 777, 782, 783, 789, 825, 827, 833, 865, 882, 886, 888, 890, 894], "nsparam": [2, 391], "nspartit": [2, 391], "admin": [2, 153, 162, 391, 689, 742, 865], "partit": [2, 391, 407, 523, 537, 538, 548, 550, 551, 641, 647, 648, 678, 737, 741, 747, 757, 789], "nspartition_bridgegroup_bind": [2, 391, 549], "nspartition_vlan_bind": [2, 391, 549], "nspartition_vxlan_bind": [2, 391, 549], "vxlan": [2, 121, 221, 391, 504, 508, 606, 629], "nsratecontrol": [2, 391], "rate": [2, 52, 210, 211, 257, 259, 335, 391, 407, 419, 542, 544, 559, 563, 564, 641, 713, 781, 785], "nsrpcnode": [2, 391], "rpc": [2, 97, 391, 568], "nsservicefunct": [2, 391], "function": [2, 22, 57, 61, 62, 73, 97, 117, 124, 126, 128, 130, 194, 201, 203, 226, 234, 245, 262, 264, 265, 269, 270, 271, 273, 288, 297, 314, 323, 327, 328, 331, 332, 333, 334, 335, 336, 337, 342, 343, 344, 347, 349, 363, 369, 370, 375, 391, 410, 411, 413, 417, 419, 421, 422, 431, 432, 433, 439, 440, 442, 447, 448, 467, 482, 489, 496, 528, 530, 532, 536, 538, 556, 563, 587, 602, 608, 609, 611, 614, 616, 617, 620, 635, 637, 639, 652, 653, 667, 674, 682, 689, 695, 706, 713, 742, 763, 766, 769, 775, 778, 779, 780, 784, 797, 827, 833, 882, 886], "nsservicepath": [2, 391], "chain": [2, 52, 128, 171, 172, 173, 175, 178, 180, 182, 183, 314, 371, 375, 391, 442, 528, 556, 661, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "nsservicepath_nsservicefunction_bind": [2, 391, 555], "nssimpleacl": [2, 391], "simpl": [2, 391, 442, 445, 537, 538, 608], "nssimpleacl6": [2, 391], "nsspparam": [2, 391], "surg": [2, 391, 635, 637], "protect": [2, 93, 97, 102, 103, 109, 133, 160, 210, 391, 404, 564, 611, 612, 635, 637, 657, 671, 835], "nsstat": [2, 391], "stat": [2, 49, 52, 97, 98, 109, 110, 363, 391, 535, 547, 827, 833], "nssurgeq": [2, 391], "queue": [2, 117, 119, 201, 391, 489, 563, 564, 609, 639, 682, 689, 763], "nstcpbufparam": [2, 391], "tcp": [2, 44, 52, 117, 124, 126, 128, 130, 158, 186, 226, 241, 243, 269, 288, 297, 314, 332, 363, 366, 369, 375, 379, 389, 391, 417, 442, 465, 467, 475, 481, 482, 487, 490, 494, 495, 496, 535, 547, 552, 557, 558, 565, 568, 587, 604, 609, 613, 619, 621, 623, 627, 635, 637, 641, 689, 695, 706, 742, 773, 777, 783, 824, 825, 835, 865], "buffer": [2, 97, 391, 535, 563, 564, 568, 575, 582, 635, 637, 641, 682, 689], "nstcpparam": [2, 391], "nstcpprofil": [2, 391], "nstimeout": [2, 391], "timeout": [2, 109, 117, 122, 141, 210, 215, 246, 247, 314, 366, 371, 375, 387, 391, 396, 413, 417, 442, 465, 489, 490, 494, 496, 523, 535, 536, 563, 564, 582, 589, 600, 611, 617, 637, 681, 682, 689, 695, 701, 706, 716, 717, 736, 742, 746, 755, 756, 827, 829, 889], "nstimer": [2, 391], "timer": [2, 391, 458, 565, 566, 682, 689, 695, 706, 716, 758], "nstimer_autoscalepolicy_bind": [2, 391, 567], "nstrace": [2, 268, 391], "nstrafficdomain": [2, 391], "traffic": [2, 22, 50, 52, 53, 55, 121, 131, 186, 207, 218, 219, 227, 234, 243, 256, 268, 271, 276, 288, 295, 297, 314, 336, 337, 359, 375, 379, 388, 389, 390, 391, 398, 399, 400, 405, 406, 407, 413, 417, 419, 421, 424, 425, 426, 427, 442, 467, 470, 471, 472, 473, 482, 485, 492, 495, 503, 504, 512, 513, 518, 535, 537, 538, 542, 547, 554, 557, 558, 568, 569, 571, 572, 574, 582, 583, 618, 621, 623, 627, 628, 629, 630, 633, 635, 637, 648, 649, 685, 755, 756, 757, 760, 761, 764, 769, 776, 790, 791, 792, 793, 825, 827, 830, 833, 834, 839, 865, 882, 886, 889, 890], "nstrafficdomain_bridgegroup_bind": [2, 391, 570], "nstrafficdomain_vlan_bind": [2, 391, 570], "nstrafficdomain_vxlan_bind": [2, 391, 570], "nsvariabl": [2, 391], "nsvpxparam": [2, 391], "vpx": [2, 234, 391, 392, 682], "nsweblogparam": [2, 391], "nsxmlnamespac": [2, 391], "namespac": [2, 103, 350, 391], "ntpparam": [2, 391], "ntp": [2, 245, 391], "ntpserver": [2, 391], "prefix": [2, 26, 158, 269, 288, 324, 330, 335, 336, 344, 359, 366, 367, 368, 369, 371, 375, 390, 391, 405, 498, 499, 502, 506, 513, 537, 576, 586, 587, 588, 593, 601, 615, 645, 717], "pcpprofil": [2, 391, 581], "pcp": [2, 391, 483, 581], "ping": [2, 288, 363, 391, 417, 442, 535, 582, 629, 630, 865], "ping6": [2, 391], "policydataset": [2, 391], "policydataset_value_bind": [2, 391, 584], "valu": [2, 391], "policyexpress": [2, 391], "express": [2, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 20, 24, 25, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 53, 54, 57, 59, 60, 61, 62, 63, 64, 65, 67, 69, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 111, 113, 117, 120, 123, 127, 131, 137, 140, 141, 143, 144, 145, 146, 147, 149, 152, 153, 154, 155, 159, 160, 161, 162, 163, 164, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 191, 192, 193, 194, 201, 202, 203, 205, 208, 209, 210, 214, 222, 224, 227, 228, 230, 243, 263, 265, 266, 269, 270, 271, 272, 273, 276, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 295, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 324, 329, 333, 336, 337, 338, 353, 374, 375, 376, 385, 388, 391, 411, 413, 417, 419, 421, 422, 424, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 462, 520, 528, 532, 536, 566, 568, 573, 577, 578, 587, 589, 590, 593, 595, 608, 609, 612, 614, 615, 616, 617, 618, 620, 653, 677, 685, 687, 699, 711, 713, 714, 716, 723, 729, 730, 731, 732, 733, 734, 735, 749, 750, 751, 752, 753, 754, 757, 758, 759, 762, 763, 764, 766, 768, 769, 776, 778, 779, 780, 782, 784, 793, 794, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 832, 833, 834, 835, 836, 839, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "policyhttpcallout": [2, 391], "policyparam": [2, 391], "policypatset": [2, 391], "pat": [2, 391], "policypatset_pattern_bind": [2, 391, 590], "pattern": [2, 69, 70, 82, 95, 97, 213, 269, 314, 391, 442, 582, 583, 584, 586, 587, 590, 592, 593, 595, 615, 762, 794], "policypatsetfil": [2, 391], "patset": [2, 22, 186, 391, 528, 532, 573, 590, 591, 615, 794, 827, 865], "policystringmap": [2, 391], "string": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "policystringmap_pattern_bind": [2, 391, 593], "policyurlset": [2, 391], "url": [2, 17, 40, 44, 46, 52, 56, 57, 66, 68, 69, 70, 75, 76, 77, 78, 81, 82, 83, 84, 85, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 102, 103, 104, 105, 106, 107, 109, 110, 112, 114, 115, 119, 124, 126, 128, 130, 132, 134, 139, 151, 153, 160, 162, 166, 198, 199, 206, 210, 211, 212, 213, 215, 216, 225, 226, 288, 314, 330, 352, 391, 392, 417, 442, 460, 461, 484, 518, 522, 530, 587, 588, 592, 602, 608, 610, 619, 641, 658, 659, 664, 667, 668, 669, 679, 681, 689, 695, 706, 714, 745, 749, 754, 762, 765, 766, 771, 772, 794, 797, 822, 827, 829, 832, 833, 878, 889], "protocolhttpband": [2, 391], "request": [2, 7, 8, 9, 13, 15, 16, 18, 20, 30, 31, 32, 36, 38, 39, 41, 44, 52, 60, 61, 62, 69, 70, 73, 97, 102, 105, 109, 117, 120, 132, 134, 143, 147, 151, 152, 153, 154, 160, 161, 162, 166, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 191, 193, 194, 201, 202, 206, 210, 211, 212, 213, 215, 222, 223, 225, 226, 229, 230, 243, 262, 265, 267, 268, 269, 270, 271, 272, 273, 274, 275, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 321, 335, 337, 340, 344, 352, 363, 366, 367, 368, 369, 374, 375, 376, 383, 388, 391, 392, 411, 413, 417, 419, 421, 423, 424, 427, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 523, 527, 534, 535, 536, 537, 538, 542, 547, 573, 575, 587, 588, 595, 608, 609, 611, 612, 615, 616, 617, 618, 619, 620, 635, 636, 637, 638, 639, 647, 654, 657, 671, 681, 682, 685, 689, 695, 696, 701, 706, 707, 711, 713, 714, 716, 717, 719, 723, 742, 754, 755, 756, 758, 759, 762, 763, 764, 765, 766, 769, 776, 779, 780, 782, 794, 827, 832, 833, 835, 839, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 889], "band": [2, 391], "ptp": [2, 391], "precis": [2, 391], "time": [2, 22, 44, 49, 52, 109, 119, 122, 124, 126, 128, 130, 141, 151, 153, 160, 162, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 196, 206, 211, 212, 215, 221, 222, 226, 229, 232, 241, 246, 278, 286, 288, 289, 290, 297, 299, 302, 303, 305, 310, 314, 318, 323, 325, 326, 327, 328, 330, 331, 333, 334, 335, 342, 343, 344, 347, 352, 363, 366, 369, 370, 371, 372, 375, 386, 387, 391, 405, 406, 407, 413, 417, 427, 442, 453, 465, 482, 487, 489, 496, 505, 523, 534, 535, 536, 542, 547, 563, 564, 566, 568, 578, 579, 582, 583, 587, 589, 600, 602, 611, 617, 633, 635, 637, 641, 645, 654, 657, 661, 667, 671, 681, 682, 689, 695, 701, 706, 713, 716, 722, 726, 736, 742, 746, 754, 758, 760, 761, 772, 827, 832, 833, 835, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 865, 876, 877, 879, 882, 886], "quicbridgeprofil": [2, 391], "quic": [2, 241, 314, 391, 442, 568, 635, 637, 689, 785], "quicparam": [2, 391], "quicprofil": [2, 391], "radiusnod": [2, 391], "rdpclientprofil": [2, 391], "rdp": [2, 241, 297, 314, 366, 369, 375, 391, 442, 635, 637, 827, 833, 865], "clientprofil": [2, 391], "rdpconnect": [2, 391], "rdpserverprofil": [2, 391], "serverprofil": [2, 391], "reboot": [2, 234, 363, 391, 392], "reportingconfig": [2, 391], "report": [2, 52, 386, 391], "reputationset": [2, 391], "reput": [2, 129, 206, 207, 210, 391, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "responderact": [2, 391], "respond": [2, 117, 129, 152, 204, 246, 288, 335, 343, 349, 374, 375, 376, 391, 417, 442, 505, 531, 535, 536, 537, 538, 563, 564, 591, 609, 614, 645, 662, 681, 689, 695, 696, 701, 706, 729, 730, 731, 732, 733, 734, 735, 741, 752, 768, 815, 820, 865], "responderglobal_responderpolicy_bind": [2, 391], "responderglob": [2, 391], "responderhtmlpag": [2, 391], "responderparam": [2, 391], "responderpolicylabel": [2, 391, 606], "responderpolicylabel_responderpolicy_bind": [2, 391, 612, 613], "rewriteact": [2, 391], "rewrit": [2, 129, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 278, 286, 289, 290, 314, 374, 376, 391, 419, 424, 431, 432, 433, 439, 440, 442, 447, 448, 513, 520, 531, 591, 616, 620, 689, 695, 706, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 876, 877, 879], "rewriteglobal_rewritepolicy_bind": [2, 391], "rewriteglob": [2, 391], "rewriteparam": [2, 391], "rewritepolicylabel": [2, 391, 606], "rewritepolicylabel_rewritepolicy_bind": [2, 391, 618, 619], "rnat": [2, 379, 389, 391, 407, 622, 626], "rnat6": [2, 391], "rnat6_nsip6_bind": [2, 391, 621, 623], "rnat_nsip_bind": [2, 391, 623], "rnat_retainsourceportset_bind": [2, 391, 623], "retainsourceportset": [2, 391], "rnatglobal_auditsyslogpolicy_bind": [2, 391, 623], "rnatglob": [2, 391], "rnatparam": [2, 391], "rnatsess": [2, 391], "6": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "routerdynamicrout": [2, 391], "dynam": [2, 22, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 122, 166, 217, 221, 227, 370, 379, 391, 406, 407, 417, 419, 467, 478, 482, 489, 496, 535, 536, 537, 538, 563, 564, 629, 630, 635, 682, 689, 718, 749, 789, 797, 882, 886, 890], "rsskeytyp": [2, 391], "rss": [2, 97, 391, 424, 442, 635], "service_lbmonitor_bind": [2, 391, 635], "servicegroup_lbmonitor_bind": [2, 391, 635, 637], "servicegroup_servicegroupmember_bind": [2, 391, 635, 637], "servicegroupmemb": [2, 391, 606], "smppparam": [2, 391], "smpp": [2, 241, 297, 314, 391, 417, 442, 635, 637], "smppuser": [2, 391], "snmpalarm": [2, 391], "alarm": [2, 330, 391, 417, 647, 648], "snmpcommun": [2, 391, 417], "commun": [2, 20, 26, 29, 139, 143, 157, 158, 167, 247, 297, 370, 379, 391, 417, 442, 453, 482, 512, 538, 549, 553, 578, 601, 635, 644, 648, 650, 654, 689, 695, 706, 724], "snmpengineid": [2, 391], "snmp": [2, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 234, 241, 330, 391, 414, 415, 417, 442, 482, 537, 538, 539, 563, 568, 635, 637, 641, 642, 645, 649, 651, 713], "id": [2, 26, 52, 69, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 110, 121, 143, 151, 157, 158, 160, 186, 199, 211, 217, 218, 219, 220, 221, 225, 233, 234, 237, 239, 247, 275, 288, 314, 327, 333, 340, 347, 356, 357, 358, 359, 375, 379, 380, 381, 389, 390, 391, 392, 393, 400, 405, 417, 425, 426, 427, 442, 454, 455, 456, 463, 467, 470, 471, 472, 473, 482, 486, 488, 491, 492, 493, 495, 503, 504, 512, 519, 527, 533, 537, 538, 554, 557, 558, 568, 569, 571, 572, 574, 582, 583, 595, 598, 600, 621, 623, 629, 630, 633, 635, 636, 637, 638, 646, 648, 649, 654, 672, 717, 718, 726, 744, 749, 760, 761, 786, 787, 788, 789, 790, 791, 797, 863, 864, 865, 880, 881, 883, 884, 885, 887, 890, 891, 892, 893, 895], "snmpgroup": [2, 391], "snmpmanag": [2, 391], "snmpmib": [2, 391], "mib": [2, 391, 647, 648, 649, 651], "snmpoption": [2, 391], "option": [2, 22, 29, 44, 45, 49, 52, 97, 117, 141, 143, 146, 151, 153, 156, 160, 162, 165, 246, 247, 256, 288, 289, 314, 335, 340, 359, 360, 363, 366, 367, 368, 369, 375, 379, 391, 403, 417, 418, 419, 424, 442, 467, 482, 484, 486, 489, 505, 512, 515, 516, 519, 523, 528, 535, 536, 537, 538, 545, 560, 563, 564, 568, 574, 582, 602, 615, 635, 637, 644, 654, 656, 657, 661, 662, 663, 664, 667, 670, 672, 674, 675, 676, 678, 683, 684, 689, 693, 695, 696, 702, 706, 707, 708, 717, 722, 742, 754, 792, 813, 827, 832, 833, 865, 871, 889], "snmptrap": [2, 391, 713], "trap": [2, 210, 213, 215, 234, 330, 391, 417, 482, 542, 563, 641, 647, 649, 713], "snmptrap_snmpuser_bind": [2, 391, 648], "snmpuser": [2, 391], "snmpview": [2, 391], "spilloveract": [2, 391], "spillov": [2, 288, 314, 375, 391, 442, 523, 547, 641, 827, 833, 889], "sslaction": [2, 391], "ssl": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 681, 683, 684, 687, 688, 690, 691, 692, 693, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "sslcacertgroup": [2, 391], "ca": [2, 19, 211, 391, 418, 459, 610, 654, 656, 657, 662, 667, 682, 689, 690, 696, 702, 707, 813], "sslcacertgroup_sslcertkey_bind": [2, 391, 655], "sslcert": [2, 391, 461], "cerif": [2, 391], "sslcertbundl": [2, 391], "import": [2, 46, 56, 66, 68, 97, 108, 109, 110, 112, 114, 115, 116, 118, 216, 245, 330, 352, 378, 391, 460, 461, 530, 592, 595, 608, 610, 648, 661, 674, 683, 745], "certbundl": [2, 391], "sslcertfil": [2, 391], "certfil": [2, 391, 610, 657, 675, 676, 683], "sslcertificatechain": [2, 391], "sslcertkey_sslocspresponder_bind": [2, 391, 657, 661], "sslocsprespond": [2, 391], "sslcertkeybundl": [2, 391], "certkei": [2, 391, 656, 661, 662, 690, 696, 702, 707, 813], "bundl": [2, 391, 658, 661], "sslcertreq": [2, 391], "sslcipher": [2, 391], "cipher": [2, 391, 528, 529, 535, 654, 666, 688, 689, 690, 691, 692, 693, 695, 697, 698, 703, 704, 706, 709, 710], "sslcipher_sslciphersuite_bind": [2, 391, 665], "sslciphersuit": [2, 391], "sslcrl": [2, 391], "revoc": [2, 391, 682], "list": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "sslcrlfile": [2, 391], "crl": [2, 378, 391, 418, 656, 667, 682, 696, 702, 707, 813], "ssldhfile": [2, 391], "dh": [2, 391, 689, 695, 706], "ssldhparam": [2, 391], "ssldtlsprofil": [2, 391], "dtl": [2, 241, 314, 391, 442, 635, 637, 695, 706, 865], "sslecdsakei": [2, 391], "ecdsa": [2, 391, 674, 682], "sslfip": [2, 391], "fip": [2, 391, 568, 661, 664, 675, 742], "sslfipskei": [2, 391], "sslfipssimsourc": [2, 391], "fipssim": [2, 391], "sourc": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "sslfipssimtarget": [2, 391], "sim": [2, 391, 674], "target": [2, 12, 35, 49, 53, 55, 56, 58, 69, 72, 74, 97, 154, 156, 186, 193, 195, 202, 204, 210, 217, 221, 227, 229, 234, 244, 247, 256, 265, 267, 269, 272, 274, 284, 287, 288, 289, 295, 297, 309, 314, 337, 339, 344, 358, 366, 369, 375, 379, 391, 400, 413, 415, 417, 421, 423, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 549, 555, 567, 570, 584, 587, 588, 590, 593, 608, 612, 613, 615, 618, 619, 621, 623, 635, 637, 648, 655, 657, 661, 665, 675, 685, 686, 689, 695, 701, 706, 736, 746, 764, 765, 776, 777, 782, 783, 789, 832, 865, 882, 886, 890, 894], "sslglobal_sslpolicy_bind": [2, 391], "sslglobal": [2, 391], "sslpolici": [2, 391], "sslhsmkei": [2, 391], "hsm": [2, 391, 661, 673], "sslkeyfil": [2, 391], "ssllogprofil": [2, 391, 654, 689], "ocsp": [2, 391, 418, 656, 662, 682, 689, 695, 696, 701, 702, 706, 707, 813], "sslparamet": [2, 391], "sslpkcs12": [2, 391], "pkcs12": [2, 391], "sslpkcs8": [2, 391], "pkcs8": [2, 391, 672, 693], "sslpolicylabel": [2, 391], "sslpolicylabel_sslpolicy_bind": [2, 391, 685, 686], "sslprofil": [2, 391, 417, 665, 695, 701, 706], "sslprofile_ecccurve_bind": [2, 391, 689], "ecccurv": [2, 391], "sslprofile_sslcertkey_bind": [2, 391, 689], "sslprofile_sslcipher_bind": [2, 391, 689], "sslprofile_sslciphersuite_bind": [2, 391, 689], "sslrsakei": [2, 391], "rsa": [2, 160, 162, 391, 657, 664, 674, 682, 689, 695, 706, 754, 832, 833], "sslservic": [2, 391], "sslservice_ecccurve_bind": [2, 391, 695], "sslservice_sslcertkey_bind": [2, 391, 695], "sslservice_sslcipher_bind": [2, 391, 695], "sslservice_sslciphersuite_bind": [2, 391, 695], "sslservice_sslpolicy_bind": [2, 391, 695], "sslservicegroup": [2, 391], "sslservicegroup_ecccurve_bind": [2, 391, 695, 701], "sslservicegroup_sslcertkey_bind": [2, 391, 695, 701], "sslservicegroup_sslcipher_bind": [2, 391, 695, 701], "sslservicegroup_sslciphersuite_bind": [2, 391, 695, 701], "sslvserver": [2, 391, 606], "sslvserver_ecccurve_bind": [2, 391, 706], "sslvserver_sslcertkey_bind": [2, 391, 706], "sslvserver_sslcertkeybundle_bind": [2, 391, 706], "sslvserver_sslcipher_bind": [2, 391, 706], "sslvserver_sslciphersuite_bind": [2, 391, 706], "sslvserver_sslpolicy_bind": [2, 391, 706], "sslwrapkei": [2, 391], "wrap": [2, 391, 674], "identifi": [2, 20, 27, 52, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 121, 134, 135, 141, 143, 151, 153, 160, 162, 186, 207, 211, 217, 218, 219, 220, 221, 225, 231, 233, 239, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 288, 314, 323, 326, 327, 328, 331, 333, 334, 335, 342, 343, 344, 345, 347, 359, 361, 364, 366, 367, 368, 369, 375, 379, 380, 381, 389, 390, 391, 400, 403, 405, 408, 417, 419, 420, 425, 426, 442, 456, 457, 460, 461, 473, 482, 489, 491, 492, 493, 498, 502, 503, 504, 512, 521, 523, 527, 537, 538, 541, 542, 544, 548, 550, 551, 557, 558, 568, 569, 570, 571, 572, 577, 580, 596, 621, 623, 629, 630, 631, 633, 635, 636, 637, 638, 641, 643, 644, 646, 648, 649, 651, 654, 673, 714, 715, 716, 720, 727, 754, 786, 787, 788, 789, 790, 791, 824, 828, 832, 865, 880, 881, 882, 883, 884, 885, 886, 887, 890, 891, 892, 893], "streamselector": [2, 391], "streamsess": [2, 391], "subscribergxinterfac": [2, 391], "gx": [2, 52, 391, 717], "subscriberparam": [2, 391], "subscriberprofil": [2, 391], "subscriberradiusinterfac": [2, 391], "subscribersess": [2, 391], "sesion": [2, 391], "systemadmuserinfo": [2, 391], "systembackup": [2, 391], "backup": [2, 256, 288, 310, 314, 331, 363, 370, 371, 372, 375, 391, 413, 442, 563, 741, 882, 886, 888, 889], "restor": [2, 97, 391, 574], "systemcmdpolici": [2, 391], "command": [2, 12, 19, 20, 22, 78, 92, 95, 97, 186, 217, 222, 227, 288, 313, 314, 325, 327, 333, 336, 337, 360, 363, 366, 369, 379, 391, 392, 417, 419, 442, 466, 487, 488, 512, 523, 529, 610, 631, 635, 637, 653, 672, 683, 685, 689, 693, 695, 706, 729, 730, 731, 732, 733, 734, 735, 736, 738, 742, 746, 747, 748, 789, 890], "systemcollectionparam": [2, 391], "collect": [2, 391], "systemcpuparam": [2, 391], "systementitydata": [2, 391], "systemextramgmtcpu": [2, 391], "systemfil": [2, 391], "systemglobal_auditnslogpolicy_bind": [2, 391], "systemglob": [2, 391], "systemglobal_auditsyslogpolicy_bind": [2, 391], "systemglobal_authenticationldappolicy_bind": [2, 391], "systemglobal_authenticationlocalpolicy_bind": [2, 391], "systemglobal_authenticationpolicy_bind": [2, 391], "systemglobal_authenticationradiuspolicy_bind": [2, 391], "systemglobal_authenticationtacacspolicy_bind": [2, 391], "systemgroup": [2, 391], "systemgroup_nspartition_bind": [2, 391, 736], "systemgroup_systemcmdpolicy_bind": [2, 391, 736], "systemgroup_systemuser_bind": [2, 391, 736], "systemus": [2, 391], "systemhwerror": [2, 391], "hardwar": [2, 391, 519, 661, 664, 673, 682, 689], "systemkek": [2, 391], "systemparamet": [2, 391], "systemrestorepoint": [2, 391], "restorepoint": [2, 391], "auto": [2, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 215, 234, 363, 369, 370, 391, 405, 528, 532, 549, 637, 667, 682, 689, 827, 833], "systemsess": [2, 391], "systemsshkei": [2, 391], "systemuser_nspartition_bind": [2, 391, 746], "systemuser_systemcmdpolicy_bind": [2, 391, 746], "tmformssoact": [2, 391], "tmglobal_auditnslogpolicy_bind": [2, 391], "tmglobal": [2, 391], "tmglobal_auditsyslogpolicy_bind": [2, 391], "tmglobal_tmsessionpolicy_bind": [2, 391], "tmglobal_tmtrafficpolicy_bind": [2, 391], "tmsamlssoprofil": [2, 391], "tmsessionact": [2, 391], "tm": [2, 27, 133, 211, 391, 756], "tmsessionparamet": [2, 391], "tmtrafficact": [2, 391], "tracerout": [2, 391], "traceroute6": [2, 391], "transformact": [2, 391], "transform": [2, 74, 97, 109, 339, 391, 619, 633, 763, 766], "transformglobal_transformpolicy_bind": [2, 391], "transformglob": [2, 391], "transformpolicylabel": [2, 391], "transformpolicylabel_transformpolicy_bind": [2, 391, 764, 765], "transformprofil": [2, 391], "tunnelglobal_tunneltrafficpolicy_bind": [2, 391], "tunnelglob": [2, 391], "tunneltrafficpolici": [2, 391], "ulfdserv": [2, 391], "ulfd": [2, 391, 546], "urlfilteringcategor": [2, 391], "categor": [2, 391], "urlfilteringparamet": [2, 391], "urlfilt": [2, 124, 126, 128, 129, 130, 391, 531, 591, 641, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "userprotocol": [2, 391, 774], "uservserv": [2, 391, 606], "videooptimizationdetectionact": [2, 391], "videooptim": [2, 129, 391, 431, 432, 433, 439, 440, 447, 448, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 778, 779, 780, 784, 815, 820], "detectionact": [2, 391], "detectionpolici": [2, 391], "videooptimizationdetectionpolicylabel": [2, 391, 606], "detect": [2, 75, 87, 97, 205, 207, 208, 210, 211, 212, 214, 268, 370, 391, 405, 406, 407, 442, 563, 671, 775, 776, 778, 779, 781, 792, 827, 833, 865], "videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_bind": [2, 391, 776, 777], "videooptimizationglobaldetection_videooptimizationdetectionpolicy_bind": [2, 391], "videooptimizationglobaldetect": [2, 391], "videooptimizationglobalpacing_videooptimizationpacingpolicy_bind": [2, 391], "videooptimizationglobalpac": [2, 391], "videooptimizationpacingact": [2, 391], "pacingact": [2, 391], "pacingpolici": [2, 391], "videooptimizationpacingpolicylabel": [2, 391, 606], "pace": [2, 388, 391, 780, 781, 782, 784, 785], "videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_bind": [2, 391, 782, 783], "videooptimizationparamet": [2, 391], "vlan_channel_bind": [2, 391, 789], "vlan_interface_bind": [2, 391, 789], "vlan_linkset_bind": [2, 391, 789], "vlan_nsip6_bind": [2, 391, 789], "vlan_nsip_bind": [2, 391, 789], "vpnalwaysonprofil": [2, 391], "alwyason": [2, 391], "vpnclientlessaccesspolici": [2, 391], "clientless": [2, 391, 619, 827, 833, 837, 838], "vpn": [2, 14, 22, 27, 37, 124, 126, 128, 130, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 245, 293, 312, 320, 335, 366, 391, 602, 619, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 862, 866, 867, 870, 872, 873, 874, 875, 876, 877, 879], "vpnclientlessaccessprofil": [2, 391], "vpnepaprofil": [2, 391], "vpneula": [2, 391], "eula": [2, 391, 816, 872], "vserver": [2, 44, 51, 54, 117, 119, 128, 133, 146, 158, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 196, 201, 203, 241, 249, 251, 252, 253, 254, 255, 260, 268, 269, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 293, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 335, 340, 371, 372, 373, 374, 375, 376, 391, 406, 408, 410, 411, 413, 419, 420, 422, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 535, 536, 537, 538, 563, 564, 565, 566, 568, 587, 609, 614, 641, 654, 677, 682, 687, 688, 689, 694, 699, 705, 708, 711, 716, 755, 756, 774, 778, 779, 780, 784, 827, 833, 837, 838, 841, 863, 865, 872, 875], "vpnformssoact": [2, 391], "vpnglobal_appcontroller_bind": [2, 391], "vpnglobal": [2, 391], "appcontrol": [2, 391], "vpnglobal_auditnslogpolicy_bind": [2, 391], "vpnglobal_auditsyslogpolicy_bind": [2, 391], "vpnglobal_authenticationcertpolicy_bind": [2, 391], "vpnglobal_authenticationldappolicy_bind": [2, 391], "vpnglobal_authenticationlocalpolicy_bind": [2, 391], "vpnglobal_authenticationnegotiatepolicy_bind": [2, 391], "vpnglobal_authenticationpolicy_bind": [2, 391], "vpnglobal_authenticationradiuspolicy_bind": [2, 391], "vpnglobal_authenticationsamlpolicy_bind": [2, 391], "vpnglobal_authenticationtacacspolicy_bind": [2, 391], "vpnglobal_domain_bind": [2, 391], "vpnglobal_intranetip6_bind": [2, 391], "vpnglobal_intranetip_bind": [2, 391], "vpnglobal_sharefileserver_bind": [2, 391], "sharefileserv": [2, 391], "vpnglobal_sslcertkey_bind": [2, 391], "vpnglobal_staserver_bind": [2, 391], "staserv": [2, 391], "vpnglobal_vpnclientlessaccesspolicy_bind": [2, 391], "vpnglobal_vpneula_bind": [2, 391], "vpnglobal_vpnintranetapplication_bind": [2, 391], "vpnglobal_vpnnexthopserver_bind": [2, 391], "vpnnexthopserv": [2, 391], "vpnglobal_vpnportaltheme_bind": [2, 391], "vpnglobal_vpnsessionpolicy_bind": [2, 391], "vpnglobal_vpntrafficpolicy_bind": [2, 391], "vpnglobal_vpnurl_bind": [2, 391], "vpnglobal_vpnurlpolicy_bind": [2, 391], "vpnicaconnect": [2, 391], "sslvpn": [2, 129, 391, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "intranet": [2, 10, 11, 14, 17, 27, 33, 34, 37, 40, 158, 391, 755, 756, 809, 810, 811, 817, 822, 827, 833, 863, 864, 873, 878], "next": [2, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 54, 60, 61, 62, 73, 119, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 194, 201, 203, 224, 228, 247, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 353, 374, 376, 385, 391, 406, 410, 411, 419, 422, 424, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 482, 489, 526, 536, 564, 566, 609, 614, 616, 620, 633, 657, 677, 687, 699, 711, 729, 730, 731, 732, 733, 734, 735, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 874, 876, 877, 879, 890], "hop": [2, 52, 391, 406, 417, 505, 537, 547, 760, 761, 818, 865, 874], "vpnparamet": [2, 391], "vpnpcoipconnect": [2, 391], "pcoip": [2, 391, 827, 833, 865], "vpnpcoipprofil": [2, 391], "vpnpcoipvserverprofil": [2, 391], "portalthem": [2, 190, 391, 819, 875], "vpnsamlssoprofil": [2, 391], "vpnsessionact": [2, 391], "vpntrafficact": [2, 391], "vpnurlact": [2, 391], "vpnvserver_aaapreauthenticationpolicy_bind": [2, 391, 865], "vpnvserver_analyticsprofile_bind": [2, 391, 865], "vpnvserver_appcontroller_bind": [2, 391, 865], "vpnvserver_appflowpolicy_bind": [2, 391, 865], "vpnvserver_auditnslogpolicy_bind": [2, 391, 865], "vpnvserver_auditsyslogpolicy_bind": [2, 391, 865], "vpnvserver_authenticationcertpolicy_bind": [2, 391, 865], "vpnvserver_authenticationdfapolicy_bind": [2, 391, 865], "vpnvserver_authenticationldappolicy_bind": [2, 391, 865], "vpnvserver_authenticationlocalpolicy_bind": [2, 391, 865], "vpnvserver_authenticationloginschemapolicy_bind": [2, 391, 865], "vpnvserver_authenticationnegotiatepolicy_bind": [2, 391, 865], "vpnvserver_authenticationoauthidppolicy_bind": [2, 391, 865], "vpnvserver_authenticationpolicy_bind": [2, 391, 865], "vpnvserver_authenticationradiuspolicy_bind": [2, 391, 865], "vpnvserver_authenticationsamlidppolicy_bind": [2, 391, 865], "vpnvserver_authenticationsamlpolicy_bind": [2, 391, 865], "vpnvserver_authenticationtacacspolicy_bind": [2, 391, 865], "vpnvserver_authenticationwebauthpolicy_bind": [2, 391, 865], "vpnvserver_cachepolicy_bind": [2, 391, 865], "vpnvserver_cspolicy_bind": [2, 391, 865], "vpnvserver_feopolicy_bind": [2, 391, 865], "vpnvserver_icapolicy_bind": [2, 391, 865], "vpnvserver_intranetip6_bind": [2, 391, 865], "vpnvserver_intranetip_bind": [2, 391, 865], "vpnvserver_responderpolicy_bind": [2, 391, 865], "vpnvserver_rewritepolicy_bind": [2, 391, 865], "vpnvserver_sharefileserver_bind": [2, 391, 865], "vpnvserver_staserver_bind": [2, 391, 865], "vpnvserver_vpnclientlessaccesspolicy_bind": [2, 391, 865], "vpnvserver_vpnepaprofile_bind": [2, 391, 865], "vpnvserver_vpneula_bind": [2, 391, 865], "vpnvserver_vpnintranetapplication_bind": [2, 391, 865], "vpnvserver_vpnnexthopserver_bind": [2, 391, 865], "vpnvserver_vpnportaltheme_bind": [2, 391, 865], "vpnvserver_vpnsessionpolicy_bind": [2, 391, 865], "vpnvserver_vpntrafficpolicy_bind": [2, 391, 865], "vpnvserver_vpnurl_bind": [2, 391, 865], "vpnvserver_vpnurlpolicy_bind": [2, 391, 865], "vrid": [2, 391, 406, 538, 641, 883], "vrid6": [2, 391, 537], "vrid6_channel_bind": [2, 391, 882, 886], "vrid6_interface_bind": [2, 391, 882, 886], "vrid6_trackinterface_bind": [2, 391, 882, 886], "trackinterfac": [2, 391], "vrid_channel_bind": [2, 391, 886], "vrid_interface_bind": [2, 391, 886], "vrid_trackinterface_bind": [2, 391, 886], "vridparam": [2, 391], "vr": [2, 391], "vxlan_nsip6_bind": [2, 391, 890], "vxlan_nsip_bind": [2, 391, 890], "vxlan_srcip_bind": [2, 391, 890], "srcip": [2, 391, 395, 404, 512, 553, 558, 568, 635, 648, 825], "vxlanvlanmap": [2, 391, 508], "vxlanvlanmap_vxlan_bind": [2, 391, 890, 894], "thi": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 897], "i": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "part": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "version": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "1": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "It": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "includ": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "To": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "check": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "whether": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "run": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "galaxi": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "playbook": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "specifi": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "new": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "comment": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "api_path": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "base": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "nitro": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "path": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "onli": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "case": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "an": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "v1": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "defaultauthenticationgroup": [3, 20, 26, 29, 134, 135, 136, 139, 141, 143, 148, 150, 151, 153, 158, 160, 162, 166, 167, 191], "chosen": [3, 20, 23, 26, 29, 136, 139, 142, 143, 148, 151, 158, 160, 166, 167, 191, 325, 327, 563, 717, 827, 833], "when": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "succe": [3, 20, 23, 26, 29, 136, 139, 142, 143, 148, 151, 158, 160, 166, 167, 191, 417, 645, 827, 833], "addit": [3, 20, 26, 29, 136, 139, 143, 146, 148, 151, 158, 160, 166, 167, 191, 210, 267, 340, 369, 398, 399, 408, 419, 424, 442, 467, 496, 523, 528, 608, 615, 637, 664, 682, 689, 706, 749, 786, 787, 788, 797, 827, 833, 865], "extract": [3, 20, 26, 29, 136, 139, 143, 146, 148, 151, 156, 158, 160, 166, 167, 172, 191, 269, 288, 314, 442, 587, 654, 749, 754, 762, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 832, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "groupnamefield": [3, 136, 160], "format": [3, 44, 45, 59, 69, 70, 89, 93, 97, 104, 107, 109, 123, 124, 126, 128, 130, 136, 153, 160, 162, 288, 352, 392, 417, 442, 460, 461, 486, 523, 528, 536, 568, 588, 592, 601, 602, 613, 615, 641, 648, 649, 654, 657, 661, 663, 664, 667, 672, 674, 683, 684, 693, 695, 706, 728, 736, 742, 746, 754, 762, 812, 832, 837, 868], "subfield": [3, 136], "nitro_auth_token": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "ad": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "token": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "nitro_pass": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "which": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "nitro_protocol": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "access": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "choic": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "nitro_us": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "usernam": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "requir": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "applianc": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "where": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "made": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "can": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "colon": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "e": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "g": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "192": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "168": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "555": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "save_config": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "boolean": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "If": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "true": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "save": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "make": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "ani": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "fals": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "state": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "being": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "present": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "creat": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 61, 62, 63, 64, 65, 67, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 604, 606, 607, 608, 609, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 660, 661, 662, 663, 664, 665, 666, 667, 670, 671, 672, 673, 674, 677, 678, 680, 681, 682, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 716, 717, 718, 719, 721, 722, 723, 724, 725, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 741, 742, 743, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 827, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "need": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 61, 62, 63, 64, 65, 67, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 561, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 604, 606, 607, 608, 609, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 660, 661, 662, 663, 665, 666, 667, 671, 673, 677, 678, 680, 681, 682, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 713, 714, 716, 717, 718, 719, 721, 722, 723, 724, 725, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 742, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 827, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "accord": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 61, 62, 63, 64, 65, 67, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 604, 606, 607, 608, 609, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 660, 661, 662, 663, 665, 666, 667, 671, 673, 677, 678, 680, 681, 682, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 713, 714, 716, 717, 718, 719, 721, 722, 723, 724, 725, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 742, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 827, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 61, 62, 63, 64, 65, 67, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 113, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 492, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 660, 661, 662, 663, 664, 665, 666, 667, 671, 673, 675, 676, 677, 678, 680, 681, 682, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 713, 714, 716, 717, 718, 719, 721, 722, 723, 724, 725, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 742, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 827, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "absent": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 238, 239, 241, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 520, 521, 522, 523, 524, 525, 526, 527, 528, 530, 532, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 598, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 630, 631, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 662, 663, 665, 666, 667, 668, 669, 671, 673, 674, 677, 678, 679, 680, 681, 682, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 716, 717, 718, 719, 722, 723, 724, 725, 726, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 742, 743, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 827, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "delet": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 238, 239, 241, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 520, 521, 522, 523, 524, 525, 526, 527, 528, 530, 532, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 562, 563, 564, 565, 566, 567, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 598, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 629, 630, 631, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 662, 663, 665, 666, 667, 668, 669, 671, 673, 674, 677, 678, 679, 680, 681, 682, 685, 686, 687, 688, 689, 690, 691, 692, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 716, 717, 718, 719, 722, 723, 724, 725, 726, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 742, 743, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 762, 763, 764, 765, 766, 767, 768, 769, 770, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 825, 826, 827, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "usernamefield": [3, 136, 151], "contain": [3, 28, 35, 44, 45, 46, 48, 49, 50, 52, 53, 55, 57, 59, 70, 72, 74, 75, 93, 97, 109, 123, 124, 128, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 272, 274, 276, 288, 293, 295, 297, 314, 321, 335, 340, 347, 366, 369, 370, 375, 383, 384, 386, 388, 407, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 522, 523, 535, 547, 548, 549, 550, 551, 555, 556, 557, 558, 568, 580, 581, 584, 586, 587, 590, 592, 595, 598, 600, 608, 612, 613, 615, 618, 619, 623, 633, 635, 637, 652, 653, 654, 655, 656, 657, 658, 659, 661, 663, 664, 665, 666, 667, 668, 669, 671, 674, 679, 681, 682, 683, 685, 686, 689, 695, 701, 706, 712, 714, 716, 723, 726, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 775, 776, 777, 781, 782, 783, 794, 825, 832, 835, 836, 838, 839, 865, 897], "validate_cert": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "valid": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "should": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "person": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "self": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "sign": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "For": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "more": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "devic": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "see": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "www": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "com": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "citrixadc": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "common": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "uniqu": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "descript": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "indic": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "alwai": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "sampl": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "diff": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "dictionari": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "befor": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "after": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "key2": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "pqr": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "key1": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "xyz": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "prepar": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "done": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "diff_list": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "element": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "differ": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "actual": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "desir": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "class": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "str": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "exist": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "fail": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "loglin": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "sumanth": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "lingappa": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "issu": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "tracker": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "repositori": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "builtin": [4, 22, 125, 129, 186, 463, 464, 591, 685, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 823, 827, 833, 865], "built": [4, 109, 117, 125, 129, 147, 154, 161, 265, 272, 276, 336, 337, 591, 612, 618, 682, 685, 697, 709, 729, 730, 731, 732, 733, 734, 735, 752, 768, 769, 776, 782, 815, 820, 823], "intern": [4, 59, 109, 125, 129, 147, 152, 153, 154, 161, 162, 202, 272, 314, 327, 333, 335, 347, 366, 367, 368, 369, 371, 375, 403, 407, 413, 421, 442, 467, 535, 547, 591, 612, 618, 633, 635, 639, 729, 730, 731, 732, 733, 734, 735, 752, 768, 776, 782, 815, 820, 823, 827, 833, 865], "modifi": [4, 12, 35, 49, 53, 55, 72, 74, 97, 105, 125, 129, 154, 156, 186, 193, 195, 202, 204, 210, 217, 222, 227, 229, 234, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 335, 337, 339, 358, 366, 369, 375, 379, 400, 413, 415, 417, 419, 421, 423, 424, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 535, 549, 555, 567, 570, 584, 587, 590, 591, 593, 612, 613, 615, 617, 618, 619, 621, 623, 635, 637, 641, 648, 655, 657, 661, 665, 685, 686, 689, 695, 701, 706, 729, 730, 731, 732, 733, 734, 735, 736, 746, 752, 764, 765, 768, 776, 777, 782, 783, 789, 815, 820, 823, 865, 882, 886, 890, 894], "immut": [4, 125, 129, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 823], "partition_al": [4, 125, 129, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820, 823], "unbound": [4, 662], "prioriti": [4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 54, 59, 60, 61, 62, 73, 117, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 194, 201, 203, 224, 228, 243, 247, 256, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 325, 329, 331, 335, 337, 338, 344, 353, 374, 376, 385, 409, 411, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451, 563, 566, 609, 614, 616, 620, 626, 662, 665, 666, 677, 687, 688, 689, 690, 691, 692, 699, 711, 729, 730, 731, 732, 733, 734, 735, 738, 748, 750, 751, 752, 753, 762, 763, 766, 768, 778, 779, 780, 784, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 882, 886], "float": [4, 7, 8, 9, 10, 12, 13, 15, 16, 18, 20, 21, 22, 26, 27, 29, 30, 31, 32, 33, 36, 38, 39, 41, 44, 47, 51, 52, 54, 59, 60, 61, 62, 70, 73, 89, 93, 97, 98, 102, 103, 109, 117, 119, 121, 122, 125, 128, 129, 133, 134, 141, 143, 146, 151, 153, 155, 157, 158, 160, 162, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 194, 196, 201, 203, 206, 210, 211, 212, 215, 217, 218, 219, 220, 221, 222, 224, 225, 226, 228, 231, 233, 234, 241, 243, 246, 247, 248, 250, 256, 261, 263, 264, 266, 268, 269, 270, 273, 275, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 314, 315, 316, 317, 318, 319, 323, 325, 326, 327, 328, 329, 330, 331, 333, 334, 335, 338, 342, 343, 344, 345, 347, 351, 352, 353, 354, 356, 357, 358, 359, 361, 363, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 379, 380, 381, 385, 386, 387, 389, 390, 393, 395, 396, 398, 399, 400, 403, 404, 405, 406, 407, 409, 411, 413, 416, 417, 419, 420, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 453, 457, 458, 465, 467, 470, 471, 472, 473, 482, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 498, 503, 504, 505, 506, 511, 512, 518, 521, 523, 525, 527, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 547, 548, 549, 550, 551, 552, 554, 556, 557, 558, 562, 563, 564, 565, 566, 568, 569, 570, 571, 572, 573, 574, 575, 577, 578, 579, 580, 582, 583, 585, 587, 589, 591, 595, 596, 598, 599, 600, 602, 604, 607, 608, 609, 611, 614, 616, 617, 620, 621, 623, 626, 629, 630, 631, 633, 634, 635, 636, 637, 638, 639, 641, 643, 646, 648, 649, 657, 661, 662, 665, 666, 667, 670, 671, 674, 677, 681, 682, 687, 688, 689, 690, 691, 692, 693, 695, 699, 701, 706, 711, 713, 716, 717, 718, 720, 727, 729, 730, 731, 732, 733, 734, 735, 736, 738, 742, 744, 746, 748, 749, 750, 751, 752, 753, 754, 755, 756, 758, 760, 761, 762, 763, 766, 768, 772, 778, 779, 780, 784, 785, 786, 787, 788, 789, 790, 791, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 810, 815, 820, 821, 823, 824, 827, 828, 829, 832, 833, 835, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 865, 866, 867, 870, 876, 877, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 895], "bound": [4, 5, 7, 8, 9, 10, 11, 13, 15, 16, 18, 30, 31, 32, 33, 34, 36, 38, 39, 41, 43, 44, 48, 51, 54, 55, 60, 61, 62, 73, 74, 117, 133, 143, 156, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 194, 201, 203, 217, 224, 228, 229, 233, 234, 241, 249, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 263, 266, 267, 270, 273, 274, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 329, 339, 353, 356, 357, 363, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 385, 401, 402, 410, 411, 417, 418, 419, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 475, 478, 481, 482, 488, 489, 496, 512, 514, 523, 542, 561, 563, 567, 569, 571, 572, 584, 585, 590, 591, 593, 594, 609, 613, 614, 616, 619, 620, 635, 636, 637, 638, 644, 650, 662, 677, 682, 687, 688, 689, 694, 695, 699, 700, 701, 702, 703, 704, 705, 706, 708, 711, 753, 762, 763, 765, 766, 768, 777, 778, 779, 780, 783, 784, 786, 787, 788, 789, 815, 816, 818, 819, 827, 833, 840, 841, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 870, 872, 874, 875, 876, 877, 879, 882, 886], "windowsprofil": 5, "gotopriorityexpress": [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 54, 60, 61, 62, 73, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 194, 201, 203, 224, 228, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 353, 374, 376, 385, 411, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 566, 609, 614, 616, 620, 677, 687, 699, 711, 729, 730, 731, 732, 733, 734, 735, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "other": [6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 19, 30, 31, 33, 34, 37, 39, 40, 41, 45, 53, 61, 62, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 117, 124, 126, 128, 130, 143, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 196, 207, 210, 222, 234, 247, 256, 263, 275, 288, 289, 297, 302, 303, 314, 318, 321, 327, 329, 331, 333, 335, 340, 349, 358, 363, 367, 368, 369, 370, 379, 388, 389, 403, 406, 413, 416, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451, 462, 467, 478, 488, 489, 496, 505, 528, 532, 535, 536, 537, 538, 554, 563, 564, 573, 574, 587, 629, 630, 635, 636, 637, 638, 641, 661, 677, 682, 689, 696, 729, 730, 731, 732, 734, 735, 750, 751, 753, 760, 761, 794, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 833, 837, 838, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877, 882, 886, 890], "evalu": [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 24, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 53, 54, 55, 60, 61, 62, 73, 109, 120, 143, 147, 152, 154, 155, 160, 161, 162, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 191, 194, 196, 201, 202, 203, 222, 224, 226, 227, 228, 229, 230, 243, 263, 266, 270, 271, 272, 273, 276, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 295, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 324, 329, 336, 337, 338, 347, 353, 363, 374, 375, 376, 385, 388, 411, 413, 417, 419, 421, 422, 424, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 462, 520, 536, 566, 573, 587, 589, 608, 609, 611, 612, 614, 616, 617, 618, 620, 677, 685, 687, 699, 711, 713, 729, 730, 731, 732, 733, 734, 735, 750, 751, 752, 753, 754, 757, 758, 762, 763, 764, 766, 768, 769, 776, 778, 779, 780, 782, 784, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 832, 835, 836, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 871, 876, 877, 879], "current": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 51, 54, 60, 61, 62, 73, 134, 135, 141, 146, 150, 151, 153, 155, 158, 160, 162, 167, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 194, 201, 203, 206, 207, 211, 224, 228, 232, 247, 256, 263, 264, 266, 268, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 288, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 322, 327, 329, 338, 350, 353, 374, 376, 379, 385, 411, 419, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 505, 528, 529, 545, 563, 566, 580, 600, 609, 614, 615, 616, 620, 652, 666, 673, 677, 681, 687, 699, 711, 726, 729, 730, 731, 732, 733, 734, 735, 736, 742, 744, 746, 750, 751, 752, 753, 754, 759, 761, 763, 766, 768, 778, 779, 780, 784, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 832, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877, 882, 886], "one": [6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 20, 23, 25, 28, 30, 31, 33, 34, 35, 37, 39, 40, 41, 44, 45, 46, 48, 49, 50, 53, 55, 59, 61, 62, 69, 72, 74, 93, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 227, 233, 234, 241, 243, 247, 256, 262, 263, 265, 267, 269, 272, 274, 275, 276, 288, 289, 293, 295, 297, 302, 303, 314, 318, 321, 329, 332, 343, 350, 352, 359, 360, 366, 370, 375, 378, 379, 383, 384, 386, 388, 395, 404, 410, 412, 413, 415, 417, 419, 421, 422, 423, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 459, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 519, 520, 522, 523, 528, 534, 535, 536, 537, 538, 547, 564, 569, 571, 572, 573, 580, 581, 588, 595, 608, 612, 613, 615, 618, 619, 642, 644, 646, 647, 648, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 677, 679, 681, 685, 686, 689, 695, 701, 706, 712, 714, 717, 723, 729, 730, 731, 732, 734, 735, 736, 746, 749, 750, 751, 753, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 789, 793, 794, 827, 832, 833, 834, 835, 836, 838, 839, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877, 882, 886], "higher": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 59, 61, 62, 73, 109, 133, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 243, 263, 266, 288, 289, 302, 303, 314, 318, 329, 331, 333, 335, 344, 366, 367, 368, 369, 409, 432, 433, 442, 448, 629, 630, 636, 637, 638, 677, 689, 695, 701, 706, 729, 730, 731, 732, 734, 735, 750, 751, 753, 762, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 882, 886], "number": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 56, 59, 61, 62, 69, 70, 72, 73, 74, 81, 93, 97, 103, 109, 117, 119, 121, 123, 124, 126, 127, 128, 130, 131, 133, 136, 137, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 151, 152, 154, 156, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 186, 191, 192, 193, 195, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 221, 222, 225, 226, 227, 231, 239, 241, 243, 246, 247, 248, 261, 263, 266, 267, 269, 272, 274, 275, 288, 289, 302, 303, 314, 318, 323, 326, 327, 328, 329, 330, 331, 333, 334, 335, 342, 343, 344, 345, 347, 352, 358, 359, 361, 363, 365, 366, 367, 368, 369, 371, 372, 373, 374, 375, 376, 379, 380, 381, 383, 384, 386, 389, 394, 398, 399, 400, 403, 408, 409, 410, 417, 419, 420, 421, 422, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 457, 465, 468, 482, 489, 491, 492, 493, 496, 502, 504, 505, 506, 512, 519, 520, 521, 522, 523, 528, 529, 530, 534, 535, 536, 537, 541, 542, 547, 549, 552, 554, 557, 558, 559, 563, 564, 566, 568, 573, 580, 581, 582, 583, 584, 585, 587, 588, 596, 600, 608, 612, 613, 615, 618, 619, 621, 623, 631, 635, 636, 637, 638, 639, 642, 644, 646, 648, 650, 651, 654, 657, 661, 667, 670, 671, 677, 678, 681, 682, 689, 695, 706, 713, 716, 718, 720, 723, 727, 729, 730, 731, 732, 734, 735, 736, 742, 746, 749, 750, 751, 753, 754, 755, 756, 760, 761, 762, 764, 765, 767, 772, 774, 775, 776, 777, 781, 782, 783, 789, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 824, 825, 826, 827, 828, 832, 833, 838, 839, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 865, 866, 867, 870, 876, 877, 879, 882, 886, 888], "use_invocation_result": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 432, 433, 448, 677], "invok": [6, 7, 8, 10, 11, 14, 16, 17, 18, 25, 30, 31, 33, 34, 37, 39, 40, 41, 51, 54, 60, 61, 62, 73, 155, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 181, 182, 183, 194, 201, 203, 224, 228, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 411, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 567, 609, 612, 614, 616, 620, 677, 687, 699, 711, 729, 730, 731, 732, 733, 734, 735, 763, 766, 778, 779, 780, 784, 793, 794], "anoth": [6, 7, 8, 10, 11, 14, 16, 17, 18, 20, 30, 31, 33, 34, 37, 39, 40, 41, 52, 61, 62, 124, 128, 143, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 366, 404, 419, 432, 433, 448, 482, 557, 558, 645, 677, 689, 695, 706, 792, 827, 833, 865], "final": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 97, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 227, 263, 289, 302, 303, 318, 329, 417, 419, 424, 432, 433, 448, 564, 677], "goto": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 432, 433, 448, 677], "ha": [6, 7, 8, 10, 11, 14, 16, 17, 18, 22, 30, 31, 33, 34, 37, 39, 40, 41, 52, 61, 62, 110, 121, 134, 160, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 186, 196, 206, 207, 208, 211, 212, 218, 219, 222, 225, 226, 234, 243, 263, 288, 289, 297, 302, 303, 314, 318, 329, 335, 355, 359, 363, 370, 374, 376, 379, 382, 383, 386, 387, 389, 390, 395, 400, 404, 405, 406, 417, 419, 425, 426, 432, 433, 442, 448, 467, 482, 487, 495, 496, 503, 504, 512, 523, 535, 537, 538, 541, 547, 553, 557, 558, 563, 573, 574, 605, 615, 621, 623, 629, 630, 633, 635, 637, 641, 644, 645, 648, 649, 654, 667, 677, 682, 689, 695, 706, 742, 790, 791, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "stop": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 222, 263, 289, 302, 303, 314, 318, 329, 335, 340, 343, 406, 432, 433, 448, 568, 677, 758, 865], "anyth": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 432, 433, 448, 677], "than": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 45, 61, 62, 97, 109, 160, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 206, 211, 222, 226, 234, 243, 246, 263, 289, 302, 303, 314, 318, 329, 330, 335, 347, 350, 352, 360, 363, 366, 374, 375, 376, 386, 390, 417, 419, 432, 433, 442, 448, 459, 503, 519, 528, 532, 534, 535, 536, 547, 563, 566, 568, 569, 571, 572, 600, 641, 661, 677, 681, 682, 689, 695, 701, 706, 742, 750, 751, 753, 760, 761, 794, 827, 833, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877, 882, 886], "perform": [6, 7, 8, 10, 11, 14, 16, 17, 18, 19, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 97, 124, 126, 127, 128, 130, 131, 134, 137, 138, 140, 143, 144, 145, 147, 149, 152, 154, 159, 160, 161, 163, 168, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 192, 193, 202, 222, 227, 234, 262, 263, 264, 265, 268, 271, 272, 288, 289, 302, 303, 314, 318, 329, 336, 337, 344, 355, 363, 371, 372, 373, 374, 375, 376, 407, 417, 419, 421, 424, 432, 433, 442, 448, 467, 470, 471, 473, 485, 523, 528, 536, 538, 547, 570, 573, 589, 600, 611, 612, 617, 618, 635, 652, 653, 654, 666, 677, 682, 685, 689, 695, 706, 713, 723, 740, 741, 742, 762, 769, 776, 782, 789], "you": [6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 33, 34, 35, 37, 39, 40, 41, 42, 50, 53, 61, 62, 89, 97, 109, 116, 121, 147, 161, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 189, 201, 217, 218, 219, 222, 224, 225, 226, 227, 233, 234, 241, 246, 257, 259, 263, 265, 269, 276, 288, 289, 295, 302, 303, 314, 318, 323, 326, 327, 328, 329, 331, 333, 334, 335, 336, 337, 340, 342, 343, 344, 347, 349, 351, 352, 356, 357, 358, 359, 360, 366, 370, 375, 388, 389, 390, 392, 400, 403, 404, 405, 413, 417, 419, 425, 426, 432, 433, 442, 448, 462, 467, 470, 471, 472, 473, 475, 481, 482, 485, 487, 488, 489, 495, 496, 503, 504, 512, 513, 523, 529, 533, 535, 536, 537, 538, 541, 542, 547, 557, 558, 561, 563, 570, 574, 578, 582, 583, 587, 588, 596, 605, 608, 609, 615, 618, 621, 623, 624, 628, 629, 630, 633, 635, 637, 641, 642, 643, 644, 645, 646, 648, 649, 650, 651, 653, 657, 662, 672, 673, 677, 682, 683, 685, 689, 693, 695, 706, 714, 716, 726, 749, 750, 751, 753, 755, 757, 764, 769, 774, 776, 779, 780, 782, 786, 787, 788, 789, 790, 791, 793, 794, 825, 827, 833, 834, 836, 839, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 876, 877, 879, 882, 884, 885, 886, 887, 890], "determin": [6, 7, 8, 10, 11, 14, 16, 17, 18, 20, 22, 30, 31, 33, 34, 37, 39, 40, 41, 52, 61, 62, 72, 119, 137, 140, 143, 144, 149, 152, 154, 159, 163, 168, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 192, 202, 222, 263, 265, 272, 288, 289, 302, 303, 318, 329, 343, 365, 366, 369, 370, 375, 386, 395, 404, 409, 417, 419, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451, 482, 489, 497, 498, 528, 563, 564, 602, 612, 629, 630, 634, 635, 637, 645, 648, 649, 677, 750, 751, 753, 759, 776, 782, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877, 882, 886, 889], "larger": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 222, 344, 365, 366, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 446, 447, 448, 449, 450, 451, 677, 682, 689, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "largest": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 234, 600, 677, 789, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "undef": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 53, 61, 62, 109, 147, 152, 154, 161, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 202, 263, 271, 272, 289, 302, 303, 318, 329, 363, 374, 376, 419, 421, 432, 433, 448, 528, 573, 589, 611, 612, 617, 618, 677, 716, 750, 751, 753, 776, 782, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "event": [6, 7, 8, 10, 11, 14, 16, 17, 18, 22, 30, 31, 33, 34, 37, 39, 40, 41, 44, 52, 53, 61, 62, 109, 123, 124, 126, 128, 130, 147, 152, 154, 161, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 202, 234, 263, 271, 272, 289, 302, 303, 318, 329, 374, 376, 417, 421, 432, 433, 448, 568, 612, 617, 618, 641, 647, 677, 680, 689, 706, 742, 750, 751, 753, 776, 782, 827, 833, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "trigger": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 117, 119, 120, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 234, 263, 289, 302, 303, 318, 329, 374, 375, 376, 432, 433, 442, 448, 535, 613, 677, 682, 689, 695, 706, 750, 751, 753, 775, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "invalid": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 222, 226, 227, 263, 289, 302, 303, 318, 329, 432, 433, 448, 534, 535, 564, 608, 677, 681, 695, 706, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "numer": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 121, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 368, 432, 433, 448, 459, 528, 532, 573, 582, 583, 587, 635, 636, 677, 742, 750, 751, 753, 760, 761, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "lower": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 59, 73, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 222, 228, 243, 263, 288, 289, 302, 303, 314, 318, 329, 331, 333, 335, 344, 366, 409, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 563, 629, 630, 641, 677, 742, 750, 751, 753, 762, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "sai": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 432, 433, 442, 448, 677, 726, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "30": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 44, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 206, 208, 211, 212, 213, 231, 263, 289, 302, 303, 318, 329, 432, 433, 448, 488, 677, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "highest": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 234, 243, 263, 289, 302, 303, 314, 318, 329, 333, 366, 432, 433, 442, 448, 564, 677, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877], "100": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 234, 263, 264, 289, 302, 303, 314, 318, 329, 354, 419, 424, 432, 433, 442, 448, 496, 535, 573, 582, 586, 596, 677, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "doe": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 35, 37, 39, 40, 41, 61, 62, 97, 109, 146, 153, 169, 170, 171, 172, 173, 174, 175, 178, 180, 181, 182, 183, 184, 185, 187, 188, 189, 191, 215, 222, 226, 263, 264, 268, 288, 289, 302, 303, 314, 318, 329, 335, 340, 363, 368, 375, 395, 404, 406, 407, 410, 417, 419, 421, 432, 433, 442, 448, 465, 482, 489, 496, 535, 536, 564, 568, 583, 587, 608, 615, 634, 636, 645, 657, 664, 677, 681, 682, 689, 695, 701, 706, 716, 736, 742, 746, 750, 751, 753, 755, 756, 760, 761, 794, 827, 833, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "match": [6, 7, 8, 10, 11, 12, 14, 16, 17, 18, 25, 30, 31, 33, 34, 35, 37, 39, 40, 41, 49, 53, 55, 59, 61, 62, 72, 74, 97, 98, 109, 117, 121, 127, 131, 134, 135, 137, 140, 141, 144, 147, 149, 150, 152, 154, 156, 159, 161, 162, 163, 164, 168, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 186, 192, 193, 195, 202, 204, 210, 215, 217, 222, 226, 227, 229, 234, 243, 244, 247, 256, 262, 263, 265, 267, 269, 272, 274, 288, 289, 295, 296, 297, 302, 303, 314, 318, 329, 337, 339, 355, 358, 366, 369, 375, 379, 388, 400, 413, 415, 417, 421, 423, 427, 432, 433, 442, 448, 453, 456, 462, 465, 467, 468, 469, 482, 489, 498, 501, 502, 504, 505, 508, 512, 523, 547, 549, 555, 557, 558, 567, 570, 584, 587, 590, 593, 594, 595, 612, 613, 615, 618, 619, 621, 623, 635, 637, 641, 648, 649, 655, 657, 661, 664, 665, 667, 671, 677, 682, 685, 686, 689, 695, 701, 706, 723, 736, 746, 750, 751, 753, 757, 759, 762, 764, 765, 769, 776, 777, 782, 783, 789, 793, 794, 834, 836, 839, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 876, 877, 882, 886, 890, 894], "85": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 289, 302, 303, 318, 329, 432, 433, 448, 677, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "assum": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 44, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 246, 263, 289, 302, 303, 318, 329, 405, 432, 433, 448, 460, 461, 482, 495, 564, 677, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "increment": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 302, 303, 318, 329, 419, 432, 433, 442, 448, 560, 563, 564, 677, 750, 751, 753, 776, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "10": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 151, 153, 160, 162, 167, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 222, 226, 232, 233, 234, 263, 289, 293, 302, 303, 314, 318, 329, 379, 417, 419, 427, 432, 433, 442, 445, 448, 463, 464, 488, 523, 542, 552, 559, 563, 564, 566, 568, 573, 585, 587, 615, 633, 635, 643, 648, 659, 677, 682, 736, 742, 746, 750, 751, 753, 754, 760, 761, 827, 832, 833, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "everi": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 52, 61, 62, 97, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 222, 234, 263, 289, 302, 303, 318, 329, 370, 387, 398, 399, 419, 424, 427, 432, 433, 448, 552, 641, 654, 677, 682, 689, 695, 706, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "success": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 143, 151, 155, 162, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 181, 182, 183, 191, 263, 288, 289, 302, 303, 314, 318, 329, 343, 363, 417, 419, 432, 433, 442, 448, 563, 564, 641, 677, 729, 730, 731, 732, 733, 734, 735, 749, 750, 751, 753, 797, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "therefor": [6, 7, 8, 10, 11, 14, 16, 17, 18, 30, 31, 33, 34, 37, 39, 40, 41, 61, 62, 169, 170, 171, 172, 173, 175, 178, 180, 181, 182, 183, 263, 264, 289, 302, 303, 318, 329, 432, 433, 448, 587, 677, 716, 750, 751, 753, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 876, 877], "groupnam": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 27, 225, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 736, 737, 738, 739], "integ": [7, 8, 9, 13, 15, 16, 18, 20, 26, 29, 30, 31, 32, 36, 38, 39, 41, 50, 59, 73, 93, 109, 110, 121, 124, 126, 128, 130, 143, 158, 167, 186, 191, 215, 217, 218, 219, 220, 222, 223, 225, 231, 233, 234, 239, 241, 243, 263, 288, 289, 314, 333, 344, 359, 366, 367, 368, 369, 375, 389, 390, 400, 403, 405, 417, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451, 453, 456, 459, 492, 495, 503, 504, 505, 512, 517, 523, 537, 538, 547, 557, 558, 559, 561, 563, 567, 568, 569, 570, 571, 572, 573, 577, 580, 581, 587, 596, 600, 621, 623, 629, 630, 633, 635, 637, 638, 645, 648, 649, 667, 689, 706, 716, 717, 726, 755, 756, 760, 761, 762, 774, 781, 789, 790, 791, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 825, 826, 827, 830, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 880, 881, 882, 883, 884, 885, 886, 887, 890, 891, 892, 893], "A": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 52, 59, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 131, 133, 143, 158, 210, 218, 222, 226, 243, 248, 288, 314, 324, 331, 335, 336, 341, 344, 347, 350, 360, 364, 365, 366, 368, 375, 416, 417, 419, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451, 458, 459, 482, 488, 489, 499, 528, 532, 535, 537, 538, 542, 549, 563, 564, 568, 573, 584, 590, 599, 600, 615, 630, 633, 634, 635, 636, 641, 643, 651, 666, 681, 682, 689, 695, 703, 706, 716, 755, 756, 758, 762, 789, 794, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 890, 891, 892, 893], "order": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 59, 73, 93, 133, 151, 160, 263, 288, 325, 331, 333, 335, 337, 363, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 410, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 482, 489, 563, 564, 636, 637, 638, 641, 648, 689, 713, 714, 716, 762, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "maximum": [7, 8, 9, 13, 15, 16, 18, 20, 21, 22, 26, 29, 30, 31, 32, 36, 38, 39, 41, 89, 93, 97, 98, 102, 103, 109, 117, 119, 143, 160, 186, 205, 206, 208, 211, 212, 213, 214, 222, 225, 226, 227, 234, 314, 329, 335, 350, 354, 366, 369, 374, 375, 376, 406, 413, 417, 419, 424, 427, 442, 482, 488, 489, 496, 505, 523, 532, 534, 535, 542, 547, 549, 559, 562, 563, 564, 567, 568, 573, 575, 578, 580, 587, 589, 600, 608, 611, 617, 635, 637, 639, 671, 681, 682, 689, 706, 713, 714, 742, 746, 760, 761, 789, 797, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 835, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "syntax": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 123, 224, 528, 532, 536, 573, 586, 608, 615, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "2147483647": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "classic": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 515, 516, 586, 605, 757, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "64000": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 573, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "bindpoint": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 270, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 353, 374, 376, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 616, 711, 753, 815, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "udp_request": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41], "dns_request": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41], "icmp_request": [7, 8, 9, 13, 15, 16, 18, 30, 31, 32, 36, 38, 39, 41], "get": [9, 13, 15, 26, 32, 36, 38, 42, 51, 54, 60, 73, 97, 109, 151, 153, 155, 158, 160, 174, 176, 177, 179, 184, 185, 187, 188, 189, 194, 201, 203, 210, 215, 222, 224, 225, 227, 228, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 290, 291, 292, 296, 299, 300, 301, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 319, 338, 353, 374, 376, 385, 392, 411, 422, 429, 430, 431, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 449, 450, 451, 496, 566, 587, 607, 609, 614, 616, 620, 629, 633, 642, 681, 682, 687, 699, 711, 733, 749, 752, 763, 766, 768, 778, 779, 780, 784, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 833, 865], "numaddr": [10, 33, 810, 863], "start": [10, 20, 33, 49, 69, 70, 97, 100, 109, 143, 186, 264, 288, 314, 349, 360, 379, 419, 424, 442, 498, 535, 563, 564, 568, 585, 615, 641, 719, 726, 758, 865], "netmask": [11, 27, 34, 218, 219, 248, 359, 375, 380, 381, 426, 442, 463, 464, 470, 471, 492, 497, 509, 510, 513, 523, 538, 623, 628, 630, 633, 645, 790, 791, 810, 811, 825, 827, 833, 864, 891, 892], "binding_memb": [12, 35, 49, 53, 55, 72, 74, 97, 154, 156, 186, 193, 195, 202, 204, 210, 217, 227, 229, 234, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 337, 339, 358, 366, 369, 375, 379, 400, 413, 415, 417, 421, 423, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 549, 555, 567, 570, 584, 590, 593, 612, 613, 618, 619, 621, 623, 635, 637, 648, 655, 657, 661, 665, 685, 686, 689, 695, 701, 706, 736, 746, 764, 765, 776, 777, 782, 783, 789, 865, 882, 886, 890, 894], "member": [12, 35, 49, 53, 55, 72, 74, 97, 143, 154, 156, 186, 193, 195, 202, 204, 210, 217, 220, 227, 229, 234, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 337, 339, 358, 366, 367, 368, 369, 375, 379, 400, 413, 415, 417, 419, 421, 423, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 549, 555, 561, 567, 570, 584, 590, 593, 612, 613, 618, 619, 621, 623, 635, 636, 637, 638, 641, 644, 648, 655, 657, 661, 665, 685, 686, 689, 695, 701, 706, 736, 746, 764, 765, 776, 777, 782, 783, 789, 865, 882, 886, 890, 894], "remov": [12, 35, 49, 53, 55, 66, 68, 72, 74, 97, 98, 112, 114, 115, 121, 143, 151, 154, 156, 160, 167, 186, 193, 195, 202, 204, 210, 215, 217, 221, 222, 227, 229, 234, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 323, 325, 326, 327, 328, 331, 333, 334, 337, 339, 342, 343, 344, 347, 352, 358, 363, 366, 368, 369, 375, 379, 400, 413, 415, 417, 419, 421, 423, 442, 453, 456, 458, 465, 467, 469, 482, 487, 488, 489, 496, 498, 501, 504, 505, 508, 512, 549, 555, 563, 567, 570, 584, 587, 590, 593, 612, 613, 618, 619, 621, 623, 626, 629, 630, 634, 635, 636, 637, 648, 655, 657, 659, 661, 665, 666, 685, 686, 689, 695, 701, 706, 736, 742, 746, 764, 765, 776, 777, 782, 783, 789, 827, 833, 865, 882, 886, 889, 890, 894], "necessari": [12, 35, 49, 53, 55, 72, 74, 97, 151, 154, 156, 186, 193, 195, 202, 204, 210, 217, 227, 229, 234, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 337, 339, 358, 366, 369, 375, 379, 400, 413, 415, 417, 419, 421, 423, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 549, 555, 567, 570, 584, 585, 590, 593, 612, 613, 618, 619, 621, 623, 635, 637, 648, 655, 657, 661, 665, 685, 686, 689, 695, 701, 706, 736, 746, 764, 765, 776, 777, 782, 783, 789, 865, 882, 886, 890, 894], "unbind": [12, 35, 49, 53, 55, 72, 74, 97, 154, 156, 186, 193, 195, 202, 204, 206, 207, 208, 210, 211, 212, 217, 227, 229, 234, 244, 247, 256, 265, 267, 272, 274, 288, 295, 297, 314, 337, 339, 358, 366, 369, 375, 379, 400, 413, 415, 417, 419, 421, 423, 442, 453, 456, 467, 469, 482, 489, 498, 501, 504, 505, 508, 512, 549, 555, 567, 570, 584, 590, 593, 612, 613, 618, 619, 621, 623, 635, 637, 648, 655, 657, 661, 663, 665, 685, 686, 689, 695, 701, 706, 736, 746, 764, 765, 776, 777, 782, 783, 789, 865, 882, 886, 890, 894], "must": [12, 22, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 52, 53, 55, 59, 70, 72, 73, 74, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 171, 172, 173, 175, 178, 180, 182, 183, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 222, 225, 226, 227, 229, 230, 241, 243, 247, 262, 264, 265, 267, 268, 269, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 322, 323, 325, 326, 327, 328, 330, 331, 332, 333, 334, 336, 337, 342, 343, 344, 347, 350, 352, 358, 360, 366, 367, 368, 369, 370, 375, 383, 384, 386, 388, 389, 392, 394, 395, 396, 400, 403, 404, 410, 412, 415, 417, 421, 422, 423, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 456, 459, 460, 461, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 520, 522, 523, 527, 528, 530, 532, 535, 536, 537, 538, 542, 547, 548, 549, 550, 551, 554, 555, 556, 557, 558, 561, 563, 564, 565, 573, 578, 580, 581, 584, 586, 587, 588, 590, 592, 593, 595, 598, 600, 605, 608, 612, 613, 615, 618, 619, 621, 623, 624, 633, 635, 637, 638, 640, 644, 645, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 661, 663, 664, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 706, 712, 714, 716, 723, 736, 742, 746, 749, 754, 755, 756, 757, 758, 759, 762, 764, 765, 767, 769, 773, 774, 775, 776, 777, 781, 782, 783, 786, 787, 788, 789, 794, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 825, 827, 832, 833, 835, 836, 838, 839, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 890], "begin": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 222, 227, 229, 230, 241, 243, 262, 264, 265, 267, 268, 269, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 331, 359, 360, 366, 369, 370, 375, 383, 384, 386, 388, 394, 400, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 520, 522, 528, 532, 535, 536, 542, 548, 549, 550, 551, 555, 556, 557, 558, 564, 573, 580, 581, 585, 586, 587, 588, 590, 592, 593, 595, 598, 600, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 652, 653, 654, 655, 656, 657, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 773, 774, 775, 776, 777, 781, 782, 783, 789, 794, 832, 833, 835, 836, 838, 839, 865], "letter": [12, 23, 25, 28, 35, 59, 72, 74, 97, 109, 117, 123, 124, 127, 128, 131, 133, 136, 137, 139, 140, 142, 143, 144, 145, 147, 148, 149, 151, 152, 154, 156, 158, 159, 160, 161, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 267, 269, 272, 274, 275, 358, 359, 383, 384, 386, 389, 394, 400, 403, 410, 421, 422, 423, 502, 512, 520, 522, 535, 536, 542, 554, 564, 586, 587, 588, 590, 592, 593, 595, 608, 612, 613, 615, 618, 619, 621, 623, 642, 644, 646, 648, 650, 651, 664, 723, 736, 742, 746, 762, 764, 765, 767, 773, 775, 776, 777, 781, 782, 783, 789, 838, 839], "underscor": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 269, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 344, 359, 366, 369, 370, 375, 383, 384, 386, 388, 400, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 520, 522, 528, 532, 535, 536, 542, 548, 549, 550, 551, 555, 556, 557, 558, 564, 573, 580, 581, 586, 587, 588, 590, 592, 593, 595, 598, 600, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 773, 774, 775, 776, 777, 781, 782, 783, 789, 794, 832, 833, 835, 836, 838, 839, 865], "charact": [12, 23, 24, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 92, 94, 95, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 269, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 336, 337, 347, 358, 359, 366, 369, 370, 375, 383, 384, 386, 388, 389, 394, 400, 403, 410, 412, 413, 415, 417, 419, 421, 422, 423, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 520, 522, 528, 532, 535, 536, 542, 548, 549, 550, 551, 554, 555, 556, 557, 558, 564, 573, 580, 581, 584, 586, 587, 588, 590, 591, 592, 593, 594, 595, 598, 600, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 642, 643, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 664, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 773, 774, 775, 776, 777, 781, 782, 783, 789, 793, 794, 832, 833, 834, 835, 836, 838, 839, 865], "_": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 269, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 344, 358, 359, 366, 369, 370, 375, 383, 384, 386, 388, 389, 394, 400, 403, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 520, 522, 528, 532, 535, 536, 542, 548, 549, 550, 551, 554, 555, 556, 557, 558, 564, 573, 580, 581, 586, 587, 588, 590, 592, 593, 595, 598, 600, 602, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 773, 774, 775, 776, 777, 781, 782, 783, 789, 794, 832, 833, 835, 836, 838, 839, 865], "consist": [12, 23, 25, 70, 93, 97, 104, 107, 109, 127, 131, 142, 210, 215, 269, 359, 394, 400, 482, 502, 512, 542, 586, 587, 588, 593, 615, 621, 623, 641, 642, 644, 646, 650, 651, 663, 666, 703, 717, 736, 742, 746, 773, 789, 794, 833], "hyphen": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 359, 366, 369, 370, 375, 383, 384, 386, 388, 400, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 520, 522, 535, 536, 548, 549, 550, 551, 555, 556, 557, 558, 564, 588, 598, 600, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 775, 776, 777, 781, 782, 783, 789, 794, 825, 832, 833, 835, 836, 838, 839, 865], "period": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 330, 343, 352, 358, 359, 363, 366, 369, 370, 375, 383, 384, 386, 387, 388, 389, 394, 400, 403, 410, 412, 413, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 453, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 505, 512, 520, 522, 535, 536, 548, 549, 550, 551, 554, 555, 556, 557, 558, 564, 573, 574, 577, 588, 598, 600, 602, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 695, 701, 706, 712, 714, 723, 726, 736, 742, 746, 749, 754, 755, 756, 757, 758, 759, 762, 764, 765, 767, 769, 774, 775, 776, 777, 781, 782, 783, 789, 794, 827, 832, 833, 835, 836, 838, 839, 865], "pound": [12, 23, 25, 35, 59, 72, 74, 97, 123, 124, 127, 128, 131, 133, 136, 137, 139, 140, 142, 143, 144, 145, 148, 149, 151, 154, 156, 158, 159, 160, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 202, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 267, 272, 359, 383, 384, 386, 400, 421, 502, 512, 522, 612, 621, 623, 644, 646, 648, 650, 651, 664, 762, 764, 765, 767, 776, 782, 789], "space": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 92, 94, 95, 97, 109, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 222, 227, 229, 230, 233, 234, 241, 243, 262, 265, 267, 268, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 336, 337, 350, 358, 359, 366, 369, 370, 375, 383, 384, 386, 388, 389, 394, 400, 403, 410, 412, 413, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 459, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 504, 512, 520, 522, 531, 535, 536, 546, 548, 549, 550, 551, 554, 555, 556, 557, 558, 564, 568, 580, 581, 588, 598, 600, 608, 612, 613, 615, 618, 619, 621, 623, 633, 635, 637, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 682, 685, 686, 689, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 775, 776, 777, 781, 782, 783, 789, 793, 794, 832, 833, 834, 835, 836, 838, 839, 865, 880, 881, 884, 885], "equal": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 117, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 222, 227, 229, 230, 234, 241, 243, 262, 265, 267, 268, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 359, 363, 366, 369, 370, 374, 375, 376, 383, 384, 386, 388, 400, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 519, 520, 522, 535, 536, 548, 549, 550, 551, 555, 556, 557, 558, 564, 566, 588, 598, 600, 608, 612, 613, 615, 618, 619, 621, 623, 629, 630, 633, 635, 637, 641, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 725, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 775, 776, 777, 781, 782, 783, 789, 794, 832, 833, 835, 836, 838, 839, 865], "cannot": [12, 23, 25, 28, 35, 45, 59, 97, 103, 109, 123, 124, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 191, 192, 193, 195, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 222, 226, 234, 241, 269, 274, 275, 276, 288, 295, 314, 321, 335, 340, 359, 360, 370, 374, 375, 376, 383, 384, 386, 394, 400, 417, 442, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 502, 512, 528, 532, 535, 536, 537, 538, 557, 558, 564, 569, 571, 572, 573, 584, 585, 587, 590, 598, 600, 613, 619, 621, 623, 633, 635, 641, 644, 654, 656, 661, 665, 666, 667, 671, 674, 681, 682, 685, 686, 689, 695, 701, 706, 712, 716, 723, 736, 742, 746, 749, 754, 755, 756, 757, 758, 759, 762, 767, 769, 777, 783, 789, 794, 827, 832, 833, 835, 836, 865], "appli": [12, 23, 25, 28, 35, 37, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 120, 122, 123, 124, 127, 128, 129, 131, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 189, 191, 192, 193, 195, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 221, 227, 234, 243, 246, 262, 265, 267, 272, 274, 276, 278, 286, 288, 289, 290, 293, 295, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 323, 326, 327, 328, 331, 333, 334, 335, 340, 342, 343, 344, 347, 359, 360, 375, 383, 384, 386, 388, 395, 404, 406, 407, 409, 410, 413, 417, 419, 421, 422, 423, 442, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 508, 520, 522, 523, 528, 535, 542, 547, 564, 577, 587, 591, 608, 612, 613, 615, 618, 619, 635, 641, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 678, 679, 681, 682, 684, 685, 686, 689, 706, 712, 716, 729, 730, 731, 732, 733, 734, 735, 736, 742, 746, 749, 752, 754, 755, 757, 758, 759, 762, 764, 765, 767, 768, 769, 776, 777, 782, 783, 793, 794, 815, 820, 827, 832, 833, 834, 835, 836, 838, 839, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 865, 876, 877, 879], "cli": [12, 22, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 222, 227, 241, 243, 262, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 336, 337, 359, 360, 366, 370, 375, 383, 384, 386, 388, 392, 410, 412, 413, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 512, 520, 522, 523, 535, 536, 564, 580, 581, 588, 608, 610, 612, 613, 615, 618, 619, 635, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 793, 794, 832, 833, 834, 835, 836, 838, 839, 865], "enclos": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 92, 94, 95, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 227, 241, 243, 262, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 327, 336, 337, 347, 350, 359, 366, 370, 375, 383, 384, 386, 388, 410, 412, 413, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 459, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 522, 535, 536, 564, 580, 581, 588, 608, 612, 613, 615, 618, 619, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 793, 794, 832, 833, 834, 835, 836, 838, 839, 865], "doubl": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 92, 94, 95, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 227, 241, 243, 262, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 327, 336, 337, 347, 350, 359, 366, 370, 375, 383, 384, 386, 388, 398, 399, 410, 412, 413, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 459, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 522, 535, 536, 564, 568, 580, 581, 584, 588, 608, 612, 613, 615, 618, 619, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 793, 794, 826, 832, 833, 834, 835, 836, 838, 839, 865], "singl": [12, 20, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 227, 241, 243, 262, 264, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 327, 335, 336, 337, 347, 359, 366, 370, 375, 383, 384, 386, 388, 410, 412, 413, 415, 417, 419, 421, 422, 423, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 522, 535, 536, 563, 564, 573, 580, 581, 588, 600, 608, 612, 613, 615, 618, 619, 635, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 689, 695, 701, 706, 712, 714, 723, 736, 746, 749, 754, 755, 756, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 793, 794, 797, 827, 832, 833, 834, 835, 836, 837, 838, 839, 865], "quotat": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 227, 241, 243, 262, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 327, 336, 337, 347, 350, 359, 366, 370, 375, 383, 384, 386, 388, 410, 412, 413, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 459, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 522, 535, 536, 564, 580, 581, 588, 608, 612, 613, 615, 618, 619, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 793, 794, 832, 833, 834, 835, 836, 838, 839, 865], "mark": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 227, 241, 243, 262, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 327, 332, 336, 337, 347, 350, 359, 363, 366, 369, 370, 375, 379, 383, 384, 386, 388, 410, 412, 413, 415, 417, 419, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 459, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 522, 534, 535, 536, 564, 580, 581, 588, 608, 612, 613, 615, 618, 619, 635, 637, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 664, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 776, 777, 782, 783, 793, 794, 832, 833, 834, 835, 836, 838, 839, 865, 871, 888], "my": [12, 23, 25, 28, 35, 44, 45, 46, 48, 49, 50, 53, 55, 59, 72, 74, 97, 109, 123, 124, 127, 128, 131, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 186, 191, 192, 193, 195, 199, 200, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 241, 243, 262, 265, 267, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 359, 366, 370, 375, 383, 384, 386, 388, 410, 412, 415, 417, 421, 422, 423, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 520, 522, 535, 536, 564, 580, 581, 588, 608, 612, 613, 615, 618, 619, 642, 644, 646, 648, 650, 651, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 674, 679, 681, 685, 686, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 762, 764, 765, 767, 769, 774, 777, 783, 794, 832, 833, 835, 836, 838, 839, 865], "loggedin": [12, 35, 322], "displai": [12, 97, 119, 201, 225, 246, 322, 323, 326, 327, 328, 331, 333, 334, 342, 343, 344, 347, 349, 360, 369, 465, 492, 495, 523, 544, 545, 586, 592, 595, 596, 602, 603, 609, 630, 633, 635, 637, 664, 689, 695, 706, 736, 742, 744, 746, 755, 756, 779, 780, 824, 827, 833, 837, 838, 882, 886], "who": [12, 151, 314, 369, 635, 637, 644, 664, 827, 833], "larg": [12, 52, 93, 97, 102, 103, 470, 471, 473, 485, 682, 689], "mai": [12, 147, 268, 272, 379, 386, 536, 538, 563, 568, 587, 600, 608, 612, 615, 617, 618, 827, 833], "partial": [12, 97, 349, 379, 519, 563, 564, 641], "weight": [12, 133, 146, 288, 344, 365, 366, 367, 368, 369, 372, 375, 416, 417, 442, 445, 446, 629, 630, 634, 635, 636, 637, 638, 725], "respect": [12, 141, 324, 330, 416, 417, 641], "intranetappl": [14, 37, 817, 825, 873], "urlnam": [17, 40, 822, 837, 878], "cacert": [19, 245, 657, 667, 813], "usercert": 19, "do": [19, 35, 50, 53, 93, 97, 103, 116, 117, 119, 121, 147, 160, 161, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 189, 206, 207, 211, 218, 219, 222, 226, 227, 234, 246, 262, 265, 271, 276, 288, 295, 314, 335, 336, 337, 349, 359, 360, 366, 369, 375, 388, 389, 390, 392, 400, 405, 407, 413, 417, 419, 425, 426, 442, 462, 467, 470, 471, 472, 473, 495, 496, 503, 504, 512, 513, 523, 529, 537, 538, 557, 558, 608, 617, 618, 621, 623, 628, 629, 630, 633, 635, 637, 641, 645, 648, 649, 657, 664, 671, 682, 685, 689, 706, 717, 741, 757, 758, 764, 769, 776, 782, 790, 791, 793, 794, 827, 833, 834, 835, 836, 837, 838, 839, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 865, 876, 877, 879, 890], "pkinit": 19, "backchannel": 19, "delegatedus": 19, "enterpriserealm": 19, "enterpris": [19, 151, 521, 648, 649, 792], "realm": [19, 417, 527, 716], "given": [19, 27, 133, 146, 148, 156, 160, 211, 232, 264, 293, 314, 325, 337, 364, 366, 419, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 463, 464, 498, 523, 535, 542, 547, 559, 563, 568, 595, 655, 656, 657, 663, 664, 666, 771, 832], "certain": [19, 226, 234, 335, 726, 759, 827, 833, 865], "kdc": [19, 148], "deploy": [19, 52, 59, 116, 134, 151, 222, 226, 238, 239, 288, 406, 442, 482, 487, 842, 865, 868], "expect": [19, 314, 417, 442, 528], "instead": [19, 52, 97, 160, 314, 335, 343, 359, 369, 375, 417, 487, 489, 535, 536, 547, 564, 570, 608, 612, 615, 633, 637, 645, 667, 682, 689, 716, 717, 761, 789, 827, 833, 835, 865, 882, 886], "princip": [19, 148, 160], "kcdaccount": [19, 321, 417, 755, 756, 758, 827, 833, 835], "kcd": [19, 149, 321, 417, 827, 833], "kcdpassword": 19, "keytab": [19, 148, 245], "realmstr": 19, "servicespn": 19, "spn": 19, "fetch": [19, 22, 143, 151, 160, 162, 167, 602, 667, 716, 837, 838], "construct": [19, 370, 536], "fqdn": [19, 124, 128, 133, 135, 141, 143, 148, 158, 160, 166, 239, 242, 314, 417, 442, 602, 812, 826, 827, 833, 868], "privat": [19, 160, 264, 330, 349, 366, 367, 368, 369, 370, 375, 390, 399, 405, 407, 657, 661, 663, 664, 672, 683, 689, 690, 693, 695, 706, 718, 745, 792], "userrealm": 19, "authtimeout": [20, 26, 29, 143, 158, 167], "second": [20, 26, 29, 44, 52, 109, 117, 119, 122, 124, 128, 143, 158, 160, 167, 196, 206, 210, 212, 215, 221, 222, 241, 246, 288, 314, 323, 325, 326, 327, 328, 330, 331, 333, 334, 335, 342, 343, 344, 347, 363, 366, 369, 370, 371, 375, 379, 396, 398, 399, 406, 410, 417, 419, 427, 442, 458, 462, 465, 482, 489, 490, 494, 496, 505, 518, 525, 535, 536, 552, 557, 558, 563, 564, 565, 567, 573, 577, 578, 579, 580, 582, 583, 587, 595, 599, 600, 633, 635, 637, 641, 645, 671, 681, 689, 695, 701, 706, 716, 717, 736, 742, 746, 760, 761, 826, 827, 882, 886, 888, 889], "wait": [20, 26, 29, 119, 124, 128, 143, 158, 167, 206, 241, 264, 335, 343, 363, 369, 386, 417, 427, 489, 535, 563, 582, 583, 633, 637, 645, 671, 681, 760, 761, 882, 886], "groupattrnam": [20, 29, 143, 167], "groupnameidentifi": [20, 143], "two": [20, 136, 143, 160, 314, 344, 347, 417, 442, 482, 664, 667, 714, 758, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "same": [20, 44, 52, 66, 68, 73, 97, 108, 110, 112, 114, 115, 119, 160, 162, 171, 172, 173, 175, 178, 180, 182, 183, 222, 247, 269, 314, 321, 322, 323, 326, 327, 328, 331, 333, 334, 342, 343, 344, 347, 360, 366, 370, 374, 375, 376, 408, 442, 460, 461, 467, 478, 489, 512, 523, 528, 532, 553, 557, 558, 563, 569, 571, 572, 573, 587, 615, 623, 630, 640, 644, 648, 650, 667, 689, 695, 701, 706, 714, 741, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "groupsearchattribut": [20, 143], "design": [20, 57, 72, 75, 79, 85, 92, 94, 95, 97, 100, 109, 413, 462, 681], "parent": [20, 352, 363, 370, 442], "search": [20, 138, 143, 148, 417, 615, 667], "groupsearchfilt": [20, 143], "groupsearchsubattribut": [20, 143], "subattribut": [20, 143], "ldapbas": [20, 143], "dc": [20, 143], "ldapbinddn": [20, 143], "complet": [20, 44, 97, 200, 314, 360, 366, 369, 442, 535, 563, 615, 635, 637, 641, 681, 689, 706, 716, 749, 797, 865], "distinguish": [20, 134, 143, 417, 654, 657, 661, 664, 667], "ldapbinddnpassword": [20, 143], "ldaploginnam": [20, 143], "queri": [20, 44, 52, 97, 124, 128, 143, 151, 222, 321, 332, 335, 340, 349, 375, 417, 442, 523, 536, 570, 582, 583, 587, 633, 636, 637, 638, 642, 645, 681, 717, 760, 761], "extern": [20, 28, 35, 103, 124, 126, 128, 130, 143, 288, 314, 332, 335, 354, 370, 407, 442, 467, 499, 537, 661, 674, 742, 746], "directori": [20, 132, 143, 148, 199, 200, 245, 417, 519, 604, 657, 664, 667], "maxnestinglevel": [20, 143], "level": [20, 22, 97, 117, 119, 123, 124, 126, 128, 130, 133, 143, 210, 263, 264, 314, 413, 419, 442, 458, 482, 487, 523, 525, 530, 535, 537, 538, 560, 563, 565, 570, 641, 644, 647, 648, 649, 650, 664, 667, 673, 689, 695, 701, 706, 722, 724, 741, 742, 827, 833, 865], "up": [20, 119, 143, 206, 222, 234, 246, 247, 256, 268, 288, 314, 347, 349, 366, 369, 375, 379, 394, 398, 399, 403, 417, 419, 442, 523, 527, 532, 537, 538, 547, 549, 563, 564, 565, 582, 583, 602, 634, 635, 637, 682, 689, 695, 706, 714, 722, 827, 833, 865, 882, 886], "nest": [20, 93, 97, 103, 143, 442], "nestedgroupextract": [20, 143], "belong": [20, 52, 143, 222, 225, 233, 234, 314, 323, 326, 327, 328, 331, 332, 333, 334, 342, 343, 344, 347, 349, 366, 369, 426, 442, 470, 471, 472, 473, 495, 583, 644, 760, 761, 827, 833], "ON": [20, 21, 22, 26, 29, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 136, 143, 153, 158, 160, 162, 167, 186, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 225, 234, 264, 288, 314, 379, 389, 406, 408, 419, 442, 526, 528, 534, 568, 635, 637, 639, 654, 754, 755, 756, 758, 767, 794, 825, 826, 827, 832, 833, 835, 837, 838, 865], "off": [20, 21, 22, 26, 29, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 136, 143, 153, 158, 160, 162, 167, 186, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 225, 234, 264, 288, 314, 321, 379, 389, 419, 442, 523, 526, 528, 530, 534, 547, 635, 637, 639, 754, 755, 756, 758, 767, 792, 794, 825, 826, 827, 832, 833, 835, 837, 838, 865], "passwdchang": [20, 143], "accept": [20, 26, 97, 124, 126, 128, 130, 143, 151, 158, 167, 186, 191, 243, 264, 314, 375, 419, 424, 442, 496, 528, 535, 563, 564, 633, 635, 645, 647, 682, 689, 706, 794, 865], "enabl": [20, 22, 26, 42, 44, 49, 52, 93, 97, 109, 110, 122, 124, 126, 128, 130, 134, 136, 138, 143, 148, 151, 158, 160, 186, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 231, 234, 238, 246, 256, 262, 264, 288, 294, 314, 321, 330, 332, 335, 340, 349, 352, 359, 363, 365, 366, 368, 369, 370, 375, 379, 383, 386, 387, 389, 390, 392, 396, 398, 399, 403, 405, 406, 407, 408, 413, 417, 418, 419, 424, 427, 442, 467, 482, 484, 486, 487, 488, 489, 494, 496, 503, 512, 518, 523, 526, 528, 529, 530, 531, 534, 535, 536, 537, 538, 546, 547, 563, 564, 568, 570, 577, 580, 600, 602, 604, 621, 623, 627, 629, 630, 633, 634, 635, 636, 637, 641, 647, 648, 654, 661, 667, 671, 675, 676, 680, 681, 682, 689, 695, 701, 706, 713, 719, 727, 736, 742, 746, 755, 756, 774, 789, 827, 829, 833, 865, 882, 886, 888, 889, 890], "disabl": [20, 22, 26, 42, 44, 49, 52, 93, 97, 109, 110, 122, 124, 126, 128, 130, 134, 136, 138, 143, 151, 158, 186, 206, 207, 208, 209, 211, 212, 213, 214, 215, 217, 231, 234, 241, 246, 256, 262, 264, 288, 294, 314, 321, 332, 335, 340, 349, 359, 363, 365, 366, 368, 369, 370, 375, 379, 383, 386, 387, 389, 390, 396, 398, 399, 403, 405, 406, 407, 408, 413, 416, 417, 419, 424, 427, 442, 467, 482, 484, 486, 487, 488, 489, 494, 496, 503, 512, 518, 523, 526, 528, 531, 534, 535, 536, 537, 538, 542, 546, 547, 552, 563, 564, 568, 570, 580, 600, 602, 604, 621, 623, 627, 629, 630, 633, 634, 635, 636, 637, 641, 647, 648, 654, 661, 667, 671, 680, 681, 682, 689, 695, 701, 706, 713, 716, 717, 719, 727, 736, 742, 746, 755, 774, 789, 827, 829, 833, 865, 882, 886, 888, 889, 890], "searchfilt": [20, 143], "combin": [20, 143, 205, 210, 211, 212, 222, 297, 352, 408, 417, 442, 568, 689, 695, 701, 706, 827, 833], "execut": [20, 22, 272, 360, 379, 417, 488, 530, 535, 573, 574, 631, 742], "vpnallow": [20, 143], "ldaploginam": 20, "samaccount": [20, 143], "suppli": [20, 143, 327, 333, 602, 641], "bob": [20, 143], "yield": [20, 141, 143, 563, 564, 574], "sectyp": [20, 143], "secur": [20, 49, 52, 69, 97, 109, 143, 160, 245, 335, 417, 419, 424, 522, 523, 528, 537, 538, 547, 553, 568, 635, 644, 649, 650, 657, 661, 664, 673, 674, 682, 689, 695, 701, 706, 755, 756, 814, 826, 827, 833, 835, 837, 838, 865, 869], "plaintext": [20, 143, 528, 598, 835], "tl": [20, 143, 158, 160, 211, 417, 512, 682, 689, 706], "serverip": [20, 26, 29, 124, 126, 128, 130, 143, 158, 167, 191, 268, 269, 540, 578], "your": [20, 26, 29, 42, 97, 392, 664, 825, 835], "serverport": [20, 26, 29, 124, 126, 128, 130, 143, 158, 167, 191, 268, 269], "listen": [20, 26, 29, 50, 158, 167, 243, 288, 314, 344, 366, 417, 442, 517, 602, 604, 641, 647, 648, 649, 719, 865], "ssonameattribut": [20, 143], "altern": [20, 53, 117, 119, 143, 147, 161, 227, 265, 276, 295, 336, 337, 375, 388, 403, 413, 442, 535, 565, 618, 645, 657, 664, 681, 685, 695, 706, 757, 764, 769, 776, 782, 793, 813, 834, 836, 839], "subattributenam": [20, 143], "svrtype": [20, 143], "nd": [20, 143, 537, 629], "otp": [21, 134, 143], "secret": [21, 109, 134, 135, 143, 151, 153, 157, 198, 237, 417, 599, 675, 676, 689], "maxotpdevic": 21, "regist": [21, 132, 134, 417, 463, 464, 522, 664], "max": [21, 22, 30, 31, 32, 36, 38, 39, 41, 93, 102, 103, 128, 234, 335, 375, 379, 386, 419, 442, 523, 573], "255": [21, 97, 314, 347, 442, 463, 464, 523, 532, 538, 568, 630, 645, 681], "aaadloglevel": 22, "aaad": 22, "nsvpn": 22, "avail": [22, 45, 57, 61, 62, 73, 97, 117, 124, 126, 128, 130, 148, 194, 201, 203, 222, 226, 234, 245, 246, 262, 264, 268, 269, 270, 271, 273, 275, 288, 289, 297, 314, 323, 326, 327, 328, 331, 333, 334, 335, 342, 343, 344, 347, 349, 359, 363, 369, 370, 375, 379, 389, 410, 411, 413, 417, 419, 421, 422, 423, 431, 432, 433, 439, 440, 442, 447, 448, 460, 461, 467, 482, 487, 489, 496, 504, 512, 515, 516, 519, 528, 529, 535, 536, 538, 573, 575, 587, 595, 608, 609, 611, 614, 616, 617, 620, 623, 635, 637, 639, 661, 667, 674, 682, 685, 689, 695, 706, 742, 763, 766, 775, 778, 779, 780, 784, 797, 827, 833, 865, 882, 886], "emerg": [22, 123, 124, 126, 128, 130, 297, 647, 742], "immedi": [22, 123, 124, 126, 128, 130, 222, 264, 360, 489, 563, 564, 633, 671, 742], "crisi": [22, 123, 124, 126, 128, 130, 742], "alert": [22, 70, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 123, 124, 126, 128, 130, 539, 647, 661, 742], "might": [22, 45, 123, 124, 126, 128, 130, 366, 375, 417, 419, 424, 442, 482, 602, 608, 653, 657, 661, 667, 742, 774, 865], "critic": [22, 123, 124, 126, 128, 130, 327, 641, 647, 648, 724, 742, 827, 833], "immin": [22, 123, 124, 126, 128, 130, 742], "some": [22, 44, 123, 124, 126, 128, 130, 160, 234, 272, 288, 314, 442, 482, 488, 496, 523, 537, 538, 547, 563, 612, 617, 618, 664, 742, 865], "warn": [22, 123, 124, 126, 128, 130, 360, 442, 568, 641, 647, 648, 664, 689, 695, 706, 724, 742, 827, 833], "futur": [22, 123, 124, 126, 128, 130, 742], "notic": [22, 123, 124, 126, 128, 130, 647, 742], "administr": [22, 123, 124, 126, 128, 130, 146, 231, 629, 630, 646, 664, 742, 749, 797], "know": [22, 123, 124, 126, 128, 130, 742], "about": [22, 42, 49, 51, 53, 57, 66, 68, 72, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 110, 112, 114, 115, 123, 124, 126, 128, 130, 147, 152, 153, 154, 156, 161, 164, 202, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 216, 222, 224, 269, 272, 274, 293, 314, 352, 369, 385, 388, 392, 405, 410, 421, 423, 520, 530, 584, 585, 587, 590, 591, 592, 595, 608, 610, 612, 613, 615, 618, 619, 633, 635, 637, 661, 664, 717, 726, 742, 744, 762, 764, 767, 769, 775, 776, 777, 781, 782, 783, 839], "all": [22, 27, 35, 44, 49, 97, 109, 121, 123, 124, 126, 128, 130, 151, 153, 160, 162, 171, 172, 173, 175, 178, 180, 182, 183, 207, 217, 220, 222, 226, 234, 241, 245, 256, 264, 288, 297, 314, 322, 323, 325, 326, 327, 328, 331, 333, 334, 335, 340, 342, 343, 344, 345, 347, 349, 359, 360, 366, 369, 370, 371, 375, 378, 379, 389, 395, 404, 405, 406, 409, 417, 418, 419, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 447, 448, 449, 450, 451, 467, 475, 482, 487, 488, 489, 495, 496, 499, 512, 523, 528, 530, 537, 538, 542, 547, 557, 558, 560, 568, 570, 573, 578, 588, 592, 595, 603, 608, 611, 615, 617, 623, 624, 626, 633, 635, 637, 642, 644, 648, 654, 665, 667, 680, 682, 688, 689, 694, 696, 700, 705, 706, 713, 717, 726, 736, 741, 742, 744, 754, 755, 756, 789, 824, 825, 827, 828, 832, 833, 835, 865, 882, 886, 890, 897], "low": [22, 117, 123, 124, 126, 128, 130, 207, 234, 525, 641, 713, 742], "debug": [22, 123, 124, 126, 128, 130, 360, 463, 464, 530, 647, 742, 827, 833], "extrem": [22, 123, 124, 126, 128, 130, 742], "aaadnatip": 22, "sent": [22, 26, 44, 49, 52, 97, 121, 124, 126, 128, 130, 134, 139, 141, 142, 146, 151, 153, 158, 160, 162, 206, 222, 234, 246, 269, 288, 330, 335, 340, 367, 368, 369, 375, 379, 386, 389, 392, 398, 399, 404, 405, 417, 427, 442, 467, 497, 498, 502, 512, 523, 536, 542, 563, 564, 578, 583, 587, 588, 595, 599, 600, 602, 613, 635, 636, 637, 638, 639, 641, 647, 648, 649, 654, 671, 689, 695, 696, 701, 706, 707, 716, 754, 755, 756, 758, 760, 761, 777, 783, 786, 787, 788, 827, 832, 833, 835, 865, 888], "aaasessionloglevel": 22, "audit": [22, 123, 124, 125, 126, 127, 128, 129, 130, 131, 297, 482, 530, 536, 647, 742, 827, 833], "apitokencach": 22, "defaultauthtyp": 22, "defaultcsphead": 22, "csp": [22, 231], "dynaddr": 22, "wa": [22, 52, 160, 186, 199, 222, 327, 333, 360, 379, 419, 496, 565, 595, 615, 657, 661, 865], "enableenhancedauthfeedback": 22, "enhanc": [22, 234, 392, 661, 667, 674], "auth": [22, 44, 156, 195, 417, 689, 706], "feedback": [22, 528], "reason": [22, 340, 496, 563, 608, 696, 755, 756, 827, 833], "failur": [22, 143, 234, 379, 398, 399, 417, 641, 716, 827, 833], "NO": [22, 52, 117, 123, 124, 126, 128, 130, 143, 146, 211, 222, 224, 225, 226, 231, 238, 240, 241, 246, 247, 256, 264, 288, 314, 321, 335, 337, 349, 366, 369, 382, 387, 390, 395, 404, 417, 419, 424, 442, 462, 503, 505, 518, 519, 522, 523, 527, 537, 538, 545, 553, 574, 577, 578, 579, 602, 608, 633, 635, 637, 641, 661, 667, 681, 682, 689, 695, 701, 706, 716, 722, 755, 756, 889], "ye": [22, 52, 117, 123, 124, 126, 128, 130, 143, 146, 211, 222, 224, 225, 226, 231, 238, 240, 241, 246, 247, 256, 264, 288, 314, 321, 335, 337, 349, 366, 369, 382, 387, 390, 392, 395, 404, 417, 419, 424, 442, 462, 503, 505, 518, 519, 522, 523, 527, 537, 538, 545, 553, 574, 577, 578, 579, 602, 608, 633, 635, 637, 661, 667, 681, 682, 689, 695, 701, 706, 716, 722, 755, 756, 889], "enablesessionsticki": 22, "sticki": [22, 256, 321, 379, 641], "enablestaticpagecach": 22, "failedlogintimeout": [22, 186, 865], "minut": [22, 70, 151, 160, 162, 186, 196, 212, 247, 288, 314, 330, 366, 371, 375, 396, 413, 417, 442, 453, 482, 523, 535, 547, 567, 595, 667, 713, 754, 755, 756, 758, 827, 832, 833, 835, 865], "lock": [22, 186, 865], "exce": [22, 117, 186, 225, 375, 442, 465, 496, 499, 535, 573, 584, 641, 681, 742, 865], "permiss": [22, 186, 335, 642, 827, 833, 865], "attempt": [22, 109, 137, 140, 143, 144, 149, 154, 159, 163, 168, 186, 192, 215, 222, 226, 335, 343, 398, 399, 563, 689, 865], "ftmode": 22, "first": [22, 27, 117, 119, 143, 206, 207, 208, 211, 212, 232, 267, 275, 288, 314, 335, 358, 375, 389, 390, 403, 405, 410, 413, 419, 442, 459, 462, 467, 482, 489, 525, 528, 530, 535, 536, 539, 554, 564, 573, 595, 608, 633, 674, 762, 826], "shown": [22, 146, 871], "gui": [22, 199, 200, 240, 366, 442, 537, 538, 610, 736, 746], "httponlycooki": [22, 755, 756], "reset": [22, 84, 117, 147, 152, 205, 206, 207, 210, 211, 212, 226, 227, 234, 268, 271, 272, 363, 406, 419, 421, 525, 535, 536, 563, 564, 611, 612, 617, 618, 635, 637, 682, 685, 711, 716, 742, 758, 776], "httponli": [22, 97, 419, 424], "flag": [22, 52, 97, 104, 107, 109, 110, 143, 215, 226, 246, 264, 278, 279, 280, 281, 282, 283, 284, 290, 291, 299, 300, 301, 304, 305, 306, 307, 308, 309, 315, 316, 319, 327, 329, 333, 335, 338, 340, 379, 392, 407, 505, 523, 535, 541, 547, 563, 564, 579, 582, 583, 615, 682, 689, 695, 696, 699, 706, 707, 711, 755, 756, 827, 833], "nsc_aaac": 22, "nsc_tma": 22, "cooki": [22, 44, 49, 52, 69, 70, 78, 80, 82, 97, 99, 109, 133, 186, 210, 211, 215, 222, 314, 366, 369, 371, 375, 413, 419, 424, 442, 518, 523, 547, 563, 564, 602, 604, 641, 755, 756, 758, 762, 794, 797, 827, 833, 865], "nfactor": [22, 153, 162, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 865], "loginencrypt": 22, "flow": [22, 51, 52, 54, 151, 153, 162, 186, 224, 228, 234, 263, 266, 268, 288, 314, 359, 366, 375, 396, 442, 482, 487, 535, 568, 600, 677, 687, 865], "maxaaaus": [22, 366, 865], "concurr": [22, 117, 335, 366, 419, 496, 535, 549, 865], "simultan": [22, 369, 635, 637], "maxkbquest": 22, "question": [22, 143, 664, 813], "ask": [22, 582], "kb": [22, 442, 564, 813], "maxloginattempt": [22, 186, 865], "maxsamldeflates": 22, "deflat": [22, 262], "size": [22, 97, 102, 103, 117, 128, 210, 222, 225, 234, 264, 330, 335, 352, 354, 392, 398, 399, 482, 489, 528, 532, 535, 536, 562, 563, 564, 566, 568, 573, 575, 582, 583, 596, 600, 670, 671, 682, 689, 693, 695, 706, 713, 789, 797], "persistentloginattempt": 22, "storag": [22, 222, 226, 664], "unsuccess": 22, "pwdexpirynotificationdai": 22, "threshold": [22, 70, 117, 206, 212, 234, 264, 314, 335, 354, 365, 366, 368, 375, 386, 395, 404, 407, 416, 417, 442, 525, 535, 542, 563, 564, 566, 634, 635, 636, 641, 682, 713, 889], "dai": [22, 222, 231, 330, 641, 657, 661, 667, 726, 772], "expiri": [22, 222, 264, 330, 343, 539, 641, 654], "mean": [22, 158, 160, 379, 383, 417, 462, 535, 552, 553, 563, 564, 566, 573, 659, 711, 865], "samesit": [22, 97, 186, 419, 424, 827, 865], "gener": [22, 52, 97, 109, 110, 117, 123, 151, 186, 199, 215, 234, 314, 327, 330, 333, 335, 347, 349, 360, 366, 367, 368, 369, 407, 413, 417, 419, 424, 427, 442, 482, 518, 528, 529, 532, 534, 535, 538, 549, 563, 568, 578, 587, 598, 599, 602, 623, 624, 641, 648, 649, 657, 661, 667, 670, 672, 689, 693, 695, 706, 827, 833, 865, 884, 885, 886, 887, 890], "aaatm": [22, 156, 186], "context": [22, 160, 186, 462, 566, 827, 865], "append": [22, 143, 186, 330, 346, 419, 424, 520, 528, 602, 608, 666, 667, 827, 833, 865], "ns_cookies_samesit": [22, 186, 827, 865], "none": [22, 60, 61, 62, 77, 84, 97, 98, 109, 110, 124, 126, 128, 130, 162, 186, 205, 206, 207, 210, 211, 212, 239, 246, 247, 263, 314, 327, 353, 366, 367, 368, 369, 375, 413, 417, 419, 424, 442, 458, 525, 528, 529, 537, 538, 542, 563, 667, 689, 713, 717, 754, 827, 832, 833, 865, 882, 886, 889], "lax": [22, 97, 186, 827, 865], "strict": [22, 97, 160, 186, 246, 256, 379, 404, 419, 424, 535, 682, 689, 706, 827, 833, 865], "tokenintrospectioninterv": 22, "frequenc": [22, 44, 563, 567, 599], "verifi": [22, 134, 151, 160, 162, 532, 577, 610, 654, 671, 681, 754, 832], "despit": 22, "found": [22, 97, 143, 226, 417, 563, 608], "localhost": [22, 52, 67, 71, 111, 113, 222, 226, 227, 229, 231, 232, 234, 245, 293, 314, 326, 334, 379, 395, 400, 407, 409, 417, 419, 442, 445, 461, 463, 464, 505, 512, 523, 527, 531, 533, 535, 537, 538, 547, 559, 564, 574, 575, 630, 632, 633, 635, 637, 644, 648, 650, 651, 657, 659, 661, 695, 716, 736, 742, 746, 785, 789, 827], "gather_fact": [22, 52, 67, 71, 111, 113, 222, 226, 227, 229, 231, 232, 234, 293, 314, 326, 334, 379, 395, 400, 407, 409, 417, 419, 442, 445, 461, 463, 464, 505, 512, 523, 527, 531, 533, 535, 537, 538, 547, 559, 564, 574, 575, 630, 632, 633, 635, 637, 644, 648, 650, 651, 657, 659, 661, 695, 716, 736, 742, 746, 785, 789, 827], "task": [22, 52, 67, 71, 111, 113, 222, 226, 227, 229, 231, 232, 234, 293, 314, 326, 334, 379, 395, 400, 407, 409, 417, 419, 442, 445, 461, 463, 464, 505, 512, 523, 527, 531, 533, 535, 537, 538, 547, 559, 564, 574, 575, 630, 632, 633, 635, 637, 644, 648, 650, 651, 657, 659, 661, 695, 716, 736, 742, 746, 785, 789, 827, 833], "delegate_to": [22, 52, 67, 71, 111, 113, 222, 226, 227, 229, 231, 232, 234, 293, 314, 326, 334, 379, 395, 400, 407, 409, 417, 419, 442, 445, 461, 463, 464, 505, 512, 523, 527, 531, 533, 535, 537, 538, 547, 559, 564, 574, 575, 630, 632, 633, 635, 637, 644, 648, 650, 651, 657, 659, 661, 695, 716, 736, 742, 746, 785, 789, 827], "4294967295": 22, "defaultepagroup": [23, 142], "deletefil": [23, 24, 142], "endpoint": [23, 26, 44, 121, 134, 135, 142, 151, 153, 158, 160, 162, 166, 221, 350, 465, 467, 482, 496, 504, 564, 600, 861], "analysi": [23, 24, 142, 861], "tool": [23, 24, 142], "killprocess": [23, 24, 142], "process": [23, 24, 103, 142, 160, 210, 226, 234, 243, 297, 314, 333, 335, 360, 363, 366, 374, 376, 379, 419, 442, 535, 547, 565, 589, 594, 611, 617, 621, 628, 635, 671, 681, 689, 696, 702, 707, 708, 713, 719, 742, 749, 776, 797, 827, 833, 837, 838, 865, 882, 886], "termin": [23, 24, 27, 60, 61, 62, 73, 109, 142, 153, 194, 201, 203, 210, 215, 270, 288, 297, 314, 366, 369, 411, 417, 419, 422, 442, 565, 568, 603, 604, 605, 609, 614, 616, 635, 637, 664, 671, 689, 695, 706, 717, 744, 758, 763, 766, 778, 779, 780, 784, 824, 827], "preauthent": [23, 25, 871], "preauthenticationact": [23, 24], "deni": [23, 24, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 162, 193, 207, 383, 418, 557, 558, 641, 682, 689, 696, 723, 755, 756, 792, 827, 833], "logon": [23, 147, 417, 749, 755, 756, 797, 827, 833, 865, 871], "result": [23, 24, 97, 141, 143, 147, 152, 154, 160, 161, 202, 208, 209, 226, 227, 263, 269, 271, 272, 314, 335, 374, 376, 417, 421, 442, 458, 566, 570, 573, 587, 612, 615, 617, 618, 685, 713, 716, 717, 776, 782, 792, 865, 884, 885, 886, 887], "1023": [24, 151, 496], "basi": [24, 370, 442, 537, 538, 570, 641, 682, 689, 695, 706], "point": [24, 51, 52, 60, 61, 62, 73, 160, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 199, 201, 207, 224, 263, 278, 286, 289, 290, 299, 302, 303, 305, 318, 329, 385, 417, 432, 433, 439, 448, 586, 609, 667, 677, 711, 743, 763, 768, 779, 780, 827, 833, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 865, 876, 877, 879], "reqact": [25, 137, 144, 149, 159, 163, 168, 685], "refus": [26, 158], "authservretri": [26, 158], "retri": [26, 117, 158, 206, 335, 343, 398, 399, 417, 427, 563, 599, 600, 635], "callingstationid": [26, 158], "station": [26, 158, 417], "its": [26, 151, 158, 226, 327, 333, 347, 360, 366, 375, 413, 419, 442, 458, 475, 481, 482, 496, 512, 529, 538, 573, 574, 633, 634, 635, 645, 661, 827, 833, 865, 882, 886], "ipattributetyp": [26, 158], "ipvendorid": [26, 158], "vendor": [26, 110, 158, 417], "encod": [26, 97, 158, 264, 417, 419, 424, 442, 498, 528, 529, 532, 587, 591, 594, 598, 654, 661, 667, 682, 689, 728, 827, 833], "passencod": [26, 158], "packet": [26, 52, 121, 158, 221, 234, 246, 264, 267, 268, 274, 275, 314, 335, 337, 359, 363, 375, 379, 387, 389, 390, 395, 396, 403, 404, 405, 406, 417, 419, 424, 427, 442, 458, 465, 467, 468, 482, 487, 496, 497, 498, 499, 502, 503, 515, 516, 518, 523, 529, 535, 538, 547, 552, 557, 558, 563, 564, 568, 573, 578, 582, 583, 599, 600, 615, 621, 623, 624, 629, 635, 654, 671, 682, 689, 695, 706, 713, 716, 760, 761, 773, 786, 787, 788, 789, 829, 865, 888, 890, 893], "pap": [26, 158], "chap": [26, 158], "mschapv1": [26, 158], "mschapv2": [26, 158], "pwdattributetyp": [26, 158], "pwdvendorid": [26, 158], "radattributetyp": [26, 158], "radgroupsepar": [26, 158], "separ": [26, 97, 106, 143, 151, 158, 160, 167, 233, 234, 442, 465, 468, 488, 504, 530, 536, 568, 595, 602, 714, 749, 797, 827, 833, 835, 880, 881, 884, 885], "delimit": [26, 142, 153, 158, 535, 592, 595, 615], "within": [26, 73, 103, 141, 158, 215, 263, 267, 297, 352, 363, 375, 386, 442, 535, 536, 542, 563, 573, 595, 623, 624, 657, 661, 664, 716, 762, 827, 833], "radgroupsprefix": [26, 158], "preced": [26, 97, 151, 158, 222, 288, 314, 350, 459, 565, 587, 615, 681], "radkei": [26, 158, 417, 601], "share": [26, 29, 139, 158, 167, 198, 264, 288, 314, 383, 399, 404, 413, 417, 442, 488, 523, 537, 538, 547, 549, 601, 602, 604, 654, 664, 689, 695, 701, 706, 789, 825, 865, 882, 886, 888], "radnasid": [26, 158, 417], "nasid": [26, 158], "radnasip": [26, 158, 417], "nasip": [26, 158], "radvendorid": [26, 158], "tunnelendpointclientip": [26, 158], "iip": 27, "rang": [27, 44, 97, 186, 233, 234, 264, 288, 314, 354, 379, 442, 453, 459, 465, 468, 482, 488, 489, 494, 496, 497, 513, 514, 523, 538, 547, 585, 596, 623, 624, 625, 736, 742, 746, 810, 811, 825, 827, 833, 863, 864, 865, 895], "mask": [27, 97, 218, 219, 314, 359, 363, 375, 403, 413, 442, 470, 471, 492, 497, 509, 510, 538, 585, 623, 628, 630, 645, 790, 791, 825, 827, 833, 891, 892], "nodeid": [27, 121, 221, 225, 231, 247, 248, 261, 323, 326, 327, 328, 331, 333, 334, 342, 343, 344, 345, 347, 361, 420, 457, 491, 492, 493, 504, 521, 541, 568, 596, 631, 716, 720, 727, 824, 828], "sessionkei": 27, "show": [27, 35, 51, 59, 227, 329, 369, 385, 392, 417, 530, 544, 592, 595, 635, 637, 827, 833], "ascii": [28, 44, 45, 46, 48, 49, 50, 53, 55, 132, 134, 135, 138, 141, 146, 147, 150, 152, 153, 157, 161, 162, 199, 200, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 269, 276, 288, 293, 295, 297, 314, 321, 366, 369, 370, 375, 384, 388, 412, 415, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 542, 548, 549, 550, 551, 555, 556, 557, 558, 580, 581, 586, 587, 590, 591, 592, 593, 594, 595, 598, 600, 615, 623, 633, 635, 637, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 746, 749, 754, 755, 757, 758, 759, 769, 773, 774, 794, 832, 833, 835, 836, 865], "alphabet": [28, 44, 48, 49, 50, 53, 55, 222, 227, 229, 230, 243, 262, 265, 267, 268, 369, 384, 388, 557, 558, 623, 633, 635, 637, 652, 653, 769, 794, 833, 835, 836, 865], "alphanumer": [28, 44, 45, 46, 48, 49, 50, 53, 55, 92, 94, 95, 132, 134, 135, 138, 141, 146, 147, 150, 152, 153, 157, 160, 161, 162, 199, 200, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 269, 276, 288, 293, 295, 297, 314, 321, 366, 369, 370, 375, 384, 388, 412, 415, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 542, 548, 549, 550, 551, 555, 556, 557, 558, 580, 581, 586, 587, 590, 592, 593, 595, 598, 600, 615, 623, 633, 635, 637, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 712, 714, 723, 736, 746, 749, 754, 755, 757, 758, 759, 769, 773, 774, 794, 832, 833, 835, 836, 865], "hash": [28, 44, 45, 46, 48, 49, 50, 53, 55, 117, 132, 134, 135, 138, 141, 146, 147, 150, 152, 153, 154, 157, 161, 162, 199, 200, 202, 204, 210, 222, 227, 229, 230, 241, 243, 262, 265, 267, 268, 272, 274, 275, 276, 288, 293, 295, 297, 314, 321, 366, 367, 368, 369, 370, 375, 384, 388, 398, 399, 410, 412, 415, 417, 419, 421, 422, 423, 424, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 485, 488, 489, 495, 496, 497, 498, 499, 500, 501, 520, 532, 535, 536, 544, 548, 549, 550, 551, 555, 556, 557, 558, 564, 588, 598, 600, 608, 612, 613, 615, 618, 619, 623, 633, 635, 636, 637, 638, 652, 653, 654, 655, 656, 658, 659, 661, 663, 665, 666, 667, 668, 669, 671, 674, 679, 681, 685, 686, 689, 695, 701, 706, 712, 714, 723, 736, 742, 746, 749, 754, 755, 757, 758, 759, 769, 774, 775, 776, 777, 781, 782, 783, 794, 832, 833, 835, 836, 838, 839, 865], "auditfailedcmd": [29, 167], "stream": [29, 52, 97, 167, 257, 259, 297, 314, 528, 535, 568, 600, 602, 713, 715], "tacacssecret": [29, 167], "admserviceconnect": 42, "help": [42, 153, 162, 375, 392, 400, 419, 424, 502, 512, 534, 535, 621, 623, 644, 646, 651, 671, 689, 695, 701, 706, 789], "discov": [42, 97, 344, 392], "effortlessli": [42, 392], "insight": [42, 49, 52, 386, 392], "curat": [42, 392], "machin": [42, 207, 392, 568], "recommend": [42, 70, 97, 246, 392, 442, 667, 689, 695, 706, 827, 833], "infrastructur": [42, 160, 392], "let": [42, 392, 542], "automat": [42, 234, 263, 330, 360, 363, 370, 379, 382, 383, 392, 442, 482, 529, 564, 682, 689, 695, 706, 755, 756, 827, 833], "usag": [42, 52, 234, 392, 395, 404, 407, 419, 424, 641, 695, 706], "telemetri": [42, 52, 392], "doc": [42, 391, 392], "en": [42, 392], "u": [42, 97, 124, 126, 128, 130, 211, 233, 234, 247, 392, 459, 563, 664, 716, 717, 736, 742, 746], "13": [42, 167, 392], "govern": [42, 392, 664], "subject": [42, 97, 136, 347, 392, 654, 657, 664, 682, 689], "serviceagr": [42, 392], "bui": [42, 392], "licens": [42, 215, 245, 378, 392, 519, 521, 539, 540, 541, 574, 641, 742, 865], "agreement": [42, 392], "allhttphead": 44, "On": [44, 49, 52, 155, 176, 177, 179, 234, 335, 336, 337, 672, 682, 683, 689, 693, 695, 701, 706, 729, 730, 731, 732, 733, 734, 735], "analyticsauthtoken": [44, 52], "particular": [44, 70, 117, 222, 223, 225, 233, 234, 395, 404, 512, 523, 534, 535, 547, 623, 651, 665, 666, 689, 696, 706, 707], "eg": [44, 105, 211, 568], "splunk": 44, "authorizaiton": 44, "analyticsendpointcontenttyp": 44, "By": [44, 52, 246, 263, 288, 314, 337, 387, 424, 442, 475, 481, 482, 488, 530, 563, 582, 623, 624, 635, 647, 648, 713, 716, 736, 742, 746], "overridden": [44, 343, 383, 404, 547], "analyticsendpointmetadata": 44, "metadata": [44, 153, 160, 162, 350, 595], "analyticsendpointurl": 44, "upload": [44, 97, 109, 608, 641], "auditlog": [44, 52, 128], "rest": [44, 50, 97, 528, 532, 573], "consid": [44, 117, 226, 314, 330, 343, 363, 366, 375, 410, 417, 419, 421, 442, 467, 502, 523, 528, 535, 563, 573, 681, 716], "logstream": [44, 50, 52, 241, 442, 635, 637], "5557": 44, "taken": [44, 117, 196, 205, 206, 207, 210, 211, 212, 442, 523, 565, 566, 582, 583, 671, 718, 760, 761], "properti": [44, 314, 327, 442, 466, 635, 689, 706], "cqareport": [44, 52], "cqa": [44, 52, 129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "grpcstatu": 44, "statu": [44, 97, 222, 225, 246, 288, 314, 370, 375, 379, 417, 442, 563, 608, 641, 681, 689, 695, 701, 706, 865, 882, 886], "httpauthent": 44, "httpclientsidemeasur": 44, "insert": [44, 49, 153, 208, 210, 213, 222, 226, 262, 264, 288, 314, 366, 369, 371, 375, 390, 413, 417, 442, 503, 523, 534, 535, 536, 547, 587, 608, 615, 635, 637, 648, 654, 682, 689], "javascript": [44, 208, 210, 215, 352, 354, 794], "side": [44, 162, 321, 390, 407, 408, 442, 503, 518, 520, 534, 563, 568, 635, 637, 742, 754, 827, 832, 833], "httpcontenttyp": [44, 52], "length": [44, 59, 89, 93, 97, 98, 102, 103, 106, 119, 143, 151, 160, 167, 186, 206, 215, 335, 350, 390, 405, 419, 442, 498, 499, 528, 529, 532, 535, 568, 587, 591, 598, 681, 682, 689, 714, 717, 736, 742, 746, 760, 761], "httpcooki": [44, 52, 518], "httpdomainnam": 44, "httphost": [44, 52, 518], "httplocat": [44, 52], "httpmethod": [44, 52, 225, 518, 587, 681], "method": [44, 52, 57, 97, 143, 151, 171, 172, 173, 175, 178, 180, 182, 183, 225, 227, 314, 366, 367, 368, 369, 370, 375, 408, 417, 419, 424, 442, 459, 484, 518, 528, 529, 568, 587, 602, 635, 636, 637, 638, 667, 681, 682, 689, 717, 749, 797, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "httppagetrack": 44, "embed": [44, 92, 94, 95, 498, 664], "togeth": [44, 478, 489, 681], "httprefer": [44, 52, 518], "refer": [44, 52, 72, 97, 134, 151, 160, 247, 352, 482, 518, 523, 573, 591, 594, 608, 641, 685, 717], "httpsetcooki": [44, 52], "httpsetcookie2": [44, 52], "cookie2": 44, "httpurl": [44, 52, 518], "httpurlqueri": 44, "httpuserag": [44, 52, 518], "agent": [44, 52, 210, 269, 417, 518, 536, 587, 827, 833], "httpvia": [44, 52], "via": [44, 160, 171, 172, 173, 175, 178, 180, 182, 183, 222, 226, 232, 288, 293, 314, 383, 392, 419, 427, 442, 445, 463, 464, 559, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "httpxforwardedforhead": 44, "x": [44, 97, 111, 139, 160, 233, 234, 442, 456, 467, 535, 566, 568, 654, 657, 664, 726, 794], "integratedcach": [44, 129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "metricsexportfrequ": 44, "export": [44, 49, 52, 56, 69, 124, 126, 128, 130, 575, 595, 654, 658, 683, 689, 695, 706], "300": [44, 736, 742, 746], "outputmod": 44, "post": [44, 97, 151, 160, 162, 225, 226, 587, 681, 689, 706, 749, 797], "bodi": [44, 97, 160, 206, 222, 226, 352, 586, 587, 615, 767, 775], "depend": [44, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 246, 262, 314, 350, 360, 417, 458, 467, 482, 489, 522, 538, 542, 582, 583, 654, 681, 682, 825, 827, 833, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 865, 876, 877, 879], "consum": [44, 162, 375, 442, 549, 682], "avro": 44, "prometheu": 44, "influx": 44, "schemafil": 44, "counter": [44, 52, 535, 560, 726, 776, 827, 833], "metricscollector": 44, "servemod": 44, "how": [44, 419, 424, 442, 460, 461, 528, 568, 634, 635, 646, 682, 689, 761, 797, 827, 833], "pull": 44, "tcpburstreport": 44, "burst": [44, 563, 564, 600], "what": [44, 608], "webinsight": [44, 49], "tcpinsight": 44, "securityinsight": [44, 49], "videoinsight": [44, 49, 52], "hdxinsight": [44, 387], "gatewayinsight": 44, "timeseri": 44, "lsninsight": 44, "botinsight": [44, 49], "ciinsight": [44, 49], "udpinsight": 44, "urlcategori": [44, 52], "categori": [44, 52, 110, 207], "spec": [45, 46], "hard": [45, 641, 661, 663], "disk": [45, 568, 641, 661, 663, 740, 794], "drive": [45, 383, 602, 641, 661, 663], "solid": [45, 661, 663], "caus": [45, 124, 126, 128, 130, 143, 222, 225, 442, 589, 611, 617, 661], "inconsist": [45, 641, 661], "high": [45, 117, 234, 359, 386, 389, 460, 461, 482, 487, 529, 623, 641, 661, 882, 886], "setup": [45, 358, 360, 370, 379, 460, 461, 495, 529, 574, 635, 637, 648, 661, 865, 882, 886], "input": [45, 160, 383, 419, 424, 523, 528, 657, 661, 667, 674, 676, 683, 684], "three": [45, 247, 327, 398, 399, 525, 591, 600, 661, 827, 833, 865], "support": [45, 97, 124, 126, 128, 130, 143, 151, 160, 167, 169, 170, 171, 172, 173, 174, 175, 178, 180, 181, 182, 183, 184, 185, 187, 188, 189, 234, 268, 288, 297, 314, 335, 340, 350, 366, 391, 417, 423, 442, 482, 535, 536, 563, 564, 591, 594, 595, 602, 604, 615, 619, 633, 635, 637, 645, 652, 661, 667, 672, 673, 674, 682, 689, 695, 701, 706, 713, 757, 761, 827, 833], "proto": [45, 97], "oa": 45, "swagger": 45, "graphql": 45, "src": [46, 56, 66, 68, 108, 110, 112, 114, 115, 118, 216, 330, 336, 460, 461, 530, 536, 587, 592, 610, 658, 659, 668, 669, 679, 714, 745], "spec_fil": 46, "pptpgreidletimeout": 47, "interv": [47, 52, 134, 151, 153, 157, 160, 162, 211, 212, 215, 231, 246, 379, 386, 387, 398, 399, 406, 417, 419, 442, 458, 505, 518, 539, 542, 547, 563, 564, 565, 567, 577, 595, 635, 641, 667, 713, 758, 888], "sec": [47, 246, 417, 567, 568, 689], "pptp": [47, 241, 482, 635, 637], "gre": [47, 241, 247, 403, 635, 637], "clear": [47, 375, 520, 523, 560, 563, 635, 661, 689, 695, 706, 742, 827, 833], "clientsidemeasur": [49, 352], "render": [49, 146, 156], "mainpag": 49, "In": [49, 52, 151, 153, 162, 226, 234, 263, 288, 297, 325, 340, 343, 349, 358, 366, 369, 408, 442, 460, 461, 462, 467, 482, 488, 489, 523, 557, 558, 563, 574, 577, 578, 608, 615, 637, 648, 689, 695, 742, 767, 827, 833, 865, 882, 886], "word": [49, 269, 467, 489, 528, 532, 535, 542, 573, 586, 587, 593, 827, 833], "util": [49, 160, 263, 336, 337, 360, 534, 535, 578, 682, 689, 865], "distributionalgorithm": 49, "distribut": [49, 52, 207, 234, 419, 424, 442, 635, 667, 725], "among": [49, 333, 366, 369, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 578, 635, 637], "els": [49, 374, 376, 406, 716], "metricslog": 49, "turn": [49, 97, 246, 314, 405, 424, 442, 530, 635, 865], "newnam": [49, 50, 53, 55, 72, 74, 147, 152, 154, 156, 161, 186, 193, 195, 197, 202, 204, 227, 229, 262, 265, 267, 272, 274, 276, 288, 293, 295, 297, 314, 339, 366, 369, 375, 384, 388, 410, 413, 421, 423, 442, 520, 567, 608, 612, 613, 615, 618, 619, 623, 633, 635, 637, 652, 653, 764, 765, 769, 775, 776, 777, 781, 782, 783, 838, 839, 865], "pagetrack": 49, "track": [49, 97, 109, 210, 211, 215, 392, 542, 682, 689, 713, 882, 883, 886, 887], "waterfal": 49, "chart": 49, "ns_esn": 49, "transactionlog": 49, "anomal": [49, 207], "transact": [49, 52, 134, 160, 162, 264, 268, 314, 325, 366, 369, 419, 424, 442, 535, 536, 542, 563, 573, 575, 635, 637, 654, 681, 682, 689, 695, 701, 706, 713, 754, 832, 865], "videoanalyt": 49, "ipaddress": [50, 121, 218, 219, 223, 231, 241, 247, 288, 314, 325, 326, 362, 366, 379, 401, 402, 417, 442, 453, 463, 464, 509, 510, 517, 522, 523, 538, 553, 581, 587, 633, 635, 645, 774, 790, 791, 827, 833, 891, 892], "ipv4": [50, 77, 84, 205, 214, 241, 247, 248, 288, 314, 324, 325, 326, 335, 342, 359, 363, 375, 380, 381, 389, 390, 403, 405, 407, 413, 442, 470, 471, 488, 495, 497, 498, 499, 502, 503, 513, 517, 537, 538, 558, 568, 584, 585, 587, 604, 623, 624, 628, 630, 633, 635, 645, 648, 649, 774, 814, 826, 827, 833, 865, 869, 890], "four": [50, 234, 349, 557, 558], "coll": 50, "either": [50, 97, 136, 143, 162, 193, 194, 199, 200, 231, 243, 288, 297, 314, 323, 326, 327, 328, 330, 331, 333, 334, 342, 343, 344, 347, 349, 360, 370, 375, 379, 382, 390, 442, 465, 496, 503, 522, 578, 608, 629, 630, 657, 664, 689, 706, 754, 832, 835, 865], "ipfix": [50, 52, 241, 442, 486, 518, 635, 637, 865], "globalbindtyp": [51, 60, 125, 129, 201, 224, 263, 270, 329, 353, 385, 411, 609, 616, 677, 729, 730, 731, 732, 733, 734, 735, 753, 763, 768, 779, 780, 815], "system_glob": [51, 60, 125, 129, 201, 224, 263, 270, 329, 353, 385, 411, 609, 616, 677, 729, 730, 731, 732, 733, 734, 735, 753, 763, 768, 779, 780, 815], "vpn_global": [51, 60, 125, 129, 201, 224, 263, 270, 329, 353, 385, 411, 609, 616, 677, 729, 730, 731, 732, 733, 734, 735, 753, 763, 768, 779, 780, 815], "rnat_glob": [51, 60, 125, 129, 201, 224, 263, 270, 329, 353, 385, 411, 609, 616, 677, 729, 730, 731, 732, 733, 734, 735, 753, 763, 768, 779, 780, 815], "appfw_glob": [51, 60, 125, 129, 201, 224, 263, 270, 329, 353, 385, 411, 609, 616, 677, 729, 730, 731, 732, 733, 734, 735, 753, 763, 768, 779, 780, 815], "labelnam": [51, 54, 55, 60, 61, 62, 73, 74, 155, 156, 194, 195, 201, 203, 204, 224, 228, 229, 263, 266, 267, 270, 273, 274, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 297, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 339, 411, 422, 423, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 609, 613, 614, 616, 619, 620, 677, 686, 687, 699, 711, 763, 765, 766, 777, 778, 779, 780, 783, 784], "labeltyp": [51, 54, 60, 61, 62, 73, 194, 201, 203, 224, 228, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 411, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 609, 614, 616, 620, 677, 687, 699, 711, 763, 766, 778, 779, 780, 784], "policylabel": [51, 54, 55, 60, 61, 62, 73, 74, 194, 201, 203, 224, 228, 263, 266, 267, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 296, 297, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 329, 338, 339, 411, 422, 423, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 609, 614, 616, 620, 677, 687, 699, 711, 763, 765, 766, 778, 779, 780, 784], "policynam": [51, 54, 60, 61, 62, 73, 125, 129, 155, 194, 201, 203, 227, 228, 263, 266, 270, 273, 276, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 295, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319, 329, 338, 353, 374, 376, 385, 411, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 566, 609, 614, 616, 620, 677, 687, 699, 711, 723, 729, 730, 731, 732, 733, 734, 735, 738, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823], "req_overrid": [51, 60, 61, 62, 201, 224, 263, 270, 329, 353, 411, 609, 616, 753, 763, 768, 779, 780, 815], "req_default": [51, 60, 61, 62, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 201, 224, 263, 270, 329, 353, 411, 609, 616, 753, 763, 768, 779, 780, 815, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 876, 877, 879], "overrid": [51, 201, 332, 407, 475, 481, 512, 602, 609, 635, 661, 666, 763], "othertcp_req_overrid": [51, 411, 609, 616], "othertcp_req_default": [51, 411, 609, 616], "mssql_req_overrid": [51, 411, 609], "mssql_req_default": [51, 411, 609], "mysql_req_overrid": [51, 411, 609], "mysql_req_default": [51, 411, 609], "ica_req_overrid": [51, 385], "ica_req_default": [51, 385], "oracle_req_overrid": [51, 411], "oracle_req_default": [51, 411], "httpquic_req_overrid": [51, 60, 61, 62, 224, 263, 353, 411, 609, 616, 763], "httpquic_req_default": [51, 60, 61, 62, 224, 263, 353, 411, 609, 616, 763], "aaausernam": 52, "appnamerefresh": 52, "appnam": [52, 116], "cacheinsight": 52, "ic": [52, 129, 222, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "l7": [52, 117, 386, 387, 535], "clienttrafficonli": [52, 518], "connectionchain": 52, "so": [52, 97, 109, 119, 124, 126, 128, 130, 160, 211, 271, 363, 379, 410, 419, 421, 442, 482, 489, 496, 528, 596, 611, 615, 617, 645, 648, 682, 741, 742, 827, 833], "also": [52, 103, 207, 222, 225, 232, 241, 272, 293, 314, 332, 335, 370, 383, 417, 419, 442, 445, 463, 464, 482, 496, 497, 498, 523, 538, 559, 560, 563, 566, 602, 612, 618, 644, 654, 657, 664, 685, 716, 742, 786, 787, 788, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 837, 838, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 890, 891, 892, 893], "propag": [52, 379, 382, 523, 529, 574], "across": [52, 171, 172, 173, 175, 178, 180, 182, 183, 288, 335, 419, 496, 542, 568, 573, 789, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "multi": [52, 143, 151, 160, 167, 417, 865], "environ": [52, 232, 293, 314, 419, 442, 445, 463, 464, 559, 568, 574, 682, 827, 833, 865, 897], "logic": [52, 234], "knob": [52, 340], "distributedtrac": 52, "trace": [52, 97, 530, 535, 568, 827, 833], "templat": [52, 116, 518, 523, 837], "disttracingsamplingr": 52, "emailaddress": [52, 141, 162, 231, 664, 754, 832], "flowrecordinterv": 52, "gxsessionreport": 52, "httpauthor": 52, "receiv": [52, 143, 160, 167, 225, 234, 314, 332, 335, 363, 375, 379, 383, 389, 390, 404, 405, 417, 419, 427, 442, 458, 465, 467, 482, 489, 496, 535, 536, 542, 563, 564, 565, 568, 578, 600, 602, 615, 636, 637, 638, 639, 681, 689, 695, 701, 706, 716, 718, 760, 761, 789, 827, 833, 865, 888, 889], "httpdomain": 52, "httpquerywithurl": 52, "segment": [52, 221, 442, 563, 564], "along": [52, 148, 225, 537, 538, 560, 564, 568, 646, 689, 706, 754, 827, 832, 833], "last": [52, 97, 124, 128, 153, 222, 314, 390, 405, 417, 442, 459, 528, 563, 564, 595, 645, 689, 695, 706, 726], "visit": 52, "through": [52, 72, 121, 124, 126, 128, 130, 160, 186, 207, 226, 243, 247, 288, 335, 340, 356, 357, 358, 363, 370, 375, 383, 395, 404, 405, 417, 419, 442, 467, 495, 496, 504, 523, 527, 533, 537, 538, 542, 547, 563, 568, 574, 585, 600, 602, 629, 630, 713, 717, 736, 746, 825, 827, 833], "httpxforwardedfor": 52, "origin": [52, 69, 83, 97, 124, 126, 128, 130, 222, 247, 256, 266, 276, 288, 359, 397, 417, 419, 467, 527, 563, 689, 865, 882, 886], "identifiernam": [52, 257, 259], "identifiersessionnam": 52, "logstreamovernsip": 52, "snip": [52, 128, 370, 379, 389, 404, 417, 442, 523, 537, 538, 637, 648], "lsnlog": 52, "scale": [52, 369, 470, 471, 473, 485, 563, 564, 637], "observationdomainid": 52, "observ": [52, 70, 386], "etc": [52, 245, 563, 608, 742, 813], "each": [52, 97, 124, 126, 128, 130, 167, 206, 207, 208, 212, 222, 234, 246, 288, 321, 331, 344, 347, 350, 358, 366, 367, 368, 369, 379, 383, 395, 404, 406, 442, 459, 475, 481, 482, 489, 496, 528, 531, 532, 546, 556, 563, 564, 568, 573, 587, 595, 602, 608, 615, 623, 624, 633, 635, 637, 638, 644, 657, 681, 689, 706, 714, 755, 756, 758, 761, 827, 833, 835], "observationdomainnam": 52, "observationpointid": 52, "securityinsightrecordinterv": 52, "securityinsighttraff": 52, "individu": [52, 103, 222, 343, 544, 547, 565, 635, 637, 648, 665, 666, 689, 691, 692, 697, 698, 703, 709, 710, 755, 863, 864], "skipcacheredirectionhttptransact": 52, "skip": [52, 143, 417, 568, 689, 722, 792], "miss": [52, 288, 418, 608, 641], "initi": [52, 162, 297, 363, 379, 406, 419, 427, 442, 482, 489, 496, 512, 528, 535, 538, 563, 564, 573, 600, 602, 623, 635, 637, 673, 674, 682, 689, 695, 701, 706, 716, 758, 827, 833], "subscriberawar": 52, "msisdn": 52, "l4": [52, 408], "subscriberidobfusc": 52, "obfusc": 52, "subscriberidobfuscationalgo": 52, "algorithm": [52, 134, 151, 153, 160, 162, 330, 398, 399, 419, 424, 563, 564, 577, 598, 600, 623, 624, 629, 630, 644, 650, 654, 664, 670, 672, 682, 683, 693, 742, 754, 776, 832], "md5": [52, 532, 650, 654, 682], "sha256": [52, 160, 162, 532, 654, 664, 682, 754, 832], "tcpattackcounterinterv": 52, "attack": [52, 93, 97, 103, 117, 206, 207, 222, 335, 419, 424, 496, 564, 577, 641, 671, 681], "templaterefresh": [52, 518], "refresh": [52, 153, 157, 222, 343, 418, 518, 539, 577, 667, 689, 695, 706, 827, 833], "becaus": [52, 171, 172, 173, 175, 178, 180, 182, 183, 278, 286, 289, 290, 343, 375, 417, 442, 482, 489, 496, 528, 570, 615, 667, 682, 689, 695, 696, 706, 794, 827, 833], "transmiss": [52, 234, 496, 563, 564, 568, 600, 789], "udp": [52, 128, 158, 241, 243, 247, 297, 314, 332, 335, 337, 344, 366, 369, 375, 379, 390, 396, 403, 417, 419, 442, 465, 467, 475, 481, 482, 487, 490, 494, 495, 496, 503, 517, 518, 537, 538, 552, 557, 558, 568, 600, 609, 621, 623, 635, 637, 648, 761, 824, 825, 830, 890], "resent": [52, 716], "regular": [52, 57, 59, 63, 64, 65, 67, 71, 75, 76, 78, 79, 80, 82, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 98, 99, 100, 102, 103, 104, 105, 106, 107, 111, 113, 333, 515, 516, 528, 532, 573, 615, 713, 716, 723, 762, 794], "timeseriesovernsip": 52, "seri": [52, 186], "udppmtu": [52, 518], "mtu": [52, 234, 390, 503, 505, 518, 523, 547, 582, 789], "byte": [52, 93, 97, 109, 143, 151, 160, 167, 206, 222, 226, 234, 264, 354, 442, 523, 528, 532, 535, 564, 573, 582, 583, 591, 594, 596, 600, 615, 749, 760, 761, 786, 787, 788, 789, 797, 865], "usagerecordinterv": 52, "bandwidth": [52, 119, 234, 288, 314, 366, 369, 375, 442, 521, 542, 549, 635, 637, 713, 889], "websaasappusagereport": 52, "saa": [52, 837, 838], "app": [52, 798, 842, 865], "2370493962": 52, "against": [53, 93, 97, 102, 103, 105, 120, 133, 156, 172, 222, 227, 267, 274, 276, 295, 314, 336, 337, 375, 388, 413, 421, 431, 432, 433, 439, 440, 442, 447, 448, 465, 468, 557, 558, 564, 594, 618, 671, 685, 689, 695, 701, 757, 764, 769, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 836, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "entir": [53, 105, 147, 160, 161, 227, 265, 276, 295, 336, 337, 375, 388, 413, 442, 608, 618, 654, 685, 757, 764, 769, 776, 782, 793, 834, 836, 839], "itself": [53, 124, 126, 128, 130, 147, 161, 227, 265, 276, 295, 336, 337, 375, 388, 413, 442, 585, 615, 618, 685, 757, 764, 769, 776, 782, 793, 834, 836, 839], "escap": [53, 147, 161, 227, 265, 276, 295, 336, 337, 375, 388, 413, 442, 608, 618, 685, 757, 764, 769, 776, 782, 793, 834, 836, 839], "undefact": [53, 109, 147, 152, 154, 161, 202, 226, 227, 271, 272, 363, 419, 421, 611, 612, 617, 618, 685, 776, 782], "occur": [53, 109, 234, 288, 314, 335, 375, 442, 482, 528, 535, 595, 689, 706], "invoke_labelnam": [54, 73, 194, 203, 228, 266, 273, 296, 338, 422, 614, 620, 687, 766, 778, 784], "policylabeltyp": [55, 74, 423, 613, 765, 777, 783], "othertcp": [55, 423, 613, 777, 783], "http_quic": [55, 241, 297, 314, 423, 442, 535, 568, 609, 613, 763], "tar": [56, 97], "omit": [56, 221, 557, 558, 681], "preserv": [57, 66, 68, 72, 92, 94, 95, 110, 112, 114, 115, 147, 152, 154, 156, 161, 164, 204, 216, 269, 274, 423, 520, 530, 584, 585, 587, 590, 591, 592, 595, 610, 613, 615, 618, 619, 762, 764, 767, 769, 777, 783, 839], "fieldnam": [57, 76], "isregex": [57, 63, 64, 65, 67, 71, 80, 104, 107, 111, 113], "regex": [57, 59, 63, 64, 65, 67, 71, 75, 76, 78, 80, 82, 87, 88, 89, 90, 91, 92, 94, 95, 99, 104, 107, 111, 113, 160, 213, 615], "notregex": [57, 63, 64, 65, 67, 71, 75, 76, 78, 80, 82, 87, 88, 89, 90, 91, 92, 94, 95, 99, 104, 107, 111, 113], "liter": [57, 76, 77, 84, 91, 153, 587, 608, 615, 726], "intend": [59, 97, 264, 528, 532], "nocharmap": 59, "posit": [59, 73, 93, 222, 227, 263, 375, 498, 537, 538, 563, 564, 573, 629, 630, 762, 789, 890, 891, 892, 893], "pcre": [59, 76, 77, 84, 91, 93, 104, 107, 615, 762], "invoc": [60, 194, 201, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 290, 291, 296, 299, 300, 301, 304, 305, 306, 307, 308, 309, 315, 316, 319, 329, 338, 411, 429, 430, 434, 435, 436, 437, 438, 441, 443, 444, 449, 450, 451, 609, 616, 620, 687, 699, 711, 763, 766, 779, 780], "reqvserv": [60, 61, 62, 73, 194, 224, 228, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 411, 422, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 614, 616, 620, 763, 766, 778, 784], "smaller": [61, 62, 347, 374, 376, 573, 713], "unnam": [61, 62, 73, 203, 228, 411, 422, 614, 778, 784], "grpccontenttypevalu": 63, "classifi": [63, 64, 65, 67, 71, 111, 113], "grpcwebjsoncontenttypevalu": 64, "grpcwebtextcontenttypevalu": 65, "overwrit": [66, 68, 97, 108, 110, 112, 114, 115, 216, 530, 592, 595, 610], "jsoncontenttypevalu": 67, "as_scan_location_sql": [69, 99], "sql": [69, 70, 94, 97, 99, 104, 207, 297, 417, 442, 608, 609, 613, 641], "inject": [69, 70, 78, 92, 94, 97, 99, 104, 107, 207, 288, 314, 442, 865], "except": [69, 78, 82, 97, 99, 104, 107, 222, 297, 340, 369, 379, 419, 523, 535, 615, 623, 624, 637, 696, 744, 792, 827, 833], "formfield": [69, 78, 82, 99], "as_scan_location_xss": [69, 82], "cross": [69, 70, 82, 97, 107, 143, 151, 160, 167, 207, 211, 419, 424, 542, 563], "script": [69, 70, 82, 97, 107, 207, 360, 417, 419, 424, 755, 756, 794, 827, 833], "as_value_expr_sql": [69, 99], "consistitut": [69, 95], "keyword": [69, 76, 78, 91, 92, 94, 95, 97, 99, 592, 641], "specialstr": [69, 78, 92, 94, 95, 99], "wildchar": [69, 94, 99], "as_value_expr_xss": [69, 82], "xss": [69, 95, 97, 107, 641], "tag": [69, 70, 82, 87, 95, 97, 160, 165, 234, 241, 327, 352, 403, 417, 523, 537, 538, 633, 635, 637, 641, 786, 787, 788, 890], "as_value_type_sql": [69, 99], "as_value_type_xss": [69, 82], "exclud": [69, 81, 86, 97, 234, 336, 568, 644, 651, 742, 789], "safe": [69, 81, 97, 98, 641, 865], "commerc": [69, 81, 641], "creditcardnumberurl": [69, 81], "credit": [69, 70, 81, 97], "card": [69, 70, 81, 97, 641, 664, 682], "bypass": [69, 77, 81, 97, 123, 226, 268, 337, 442, 536, 608, 641, 682, 685, 711, 760, 761, 827, 833], "csrfformoriginurl": 69, "csrf": [69, 70, 97, 641], "formactionurl_ff": [69, 89], "formactionurl_ffc": [69, 88], "formactionurl_sql": [69, 99], "formactionurl_xss": [69, 82], "profilenam": [69, 70, 72, 196, 202, 269, 762, 764, 793, 794], "securitycheck": 69, "xmldoscheck": 69, "xmlwsicheck": [69, 106], "xmlattachmentcheck": 69, "totalxmlrequest": 69, "filenam": [69, 417, 568, 592, 602, 722, 728, 743, 795], "total": [69, 97, 103, 109, 143, 151, 160, 167, 226, 314, 417, 519, 542, 560, 713, 742, 865, 882, 886], "attach": [69, 70, 97, 102, 107, 117, 268, 294, 314, 442, 486, 523, 547, 641, 665, 760, 761], "denial": [69, 93, 97, 103, 222], "maxattribut": 69, "maxattributenamelength": 69, "maxattributevaluelength": 69, "maxelementnamelength": 69, "maxfiles": 69, "minfiles": 69, "maxcdatalength": 69, "maxel": 69, "maxelementdepth": 69, "maxelementchildren": 69, "numdtd": 69, "numprocessinginstruct": 69, "numexternalent": 69, "maxentityexpans": 69, "maxentityexpansiondepth": 69, "maxnamespac": 69, "maxnamespaceurilength": 69, "maxsoaparrays": 69, "maxsoaparrayrank": 69, "interoper": [69, 70, 97], "contenttypeautodeploygraceperiod": 70, "hit": [70, 222, 225, 226, 641], "deploi": [70, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 349, 370, 641], "contenttypeminthreshold": 70, "minimum": [70, 89, 97, 103, 160, 222, 225, 234, 264, 323, 326, 327, 328, 330, 331, 333, 334, 335, 342, 343, 344, 347, 369, 375, 386, 442, 505, 523, 535, 536, 547, 549, 563, 564, 567, 578, 580, 582, 591, 600, 635, 637, 645, 713, 742, 761], "contenttypepercentthreshold": 70, "percent": [70, 97, 222, 442, 713], "cookieconsistencyautodeploygraceperiod": 70, "cookieconsistencyminthreshold": 70, "cookieconsistencypercentthreshold": 70, "percentag": [70, 97, 212, 264, 288, 354, 367, 368, 369, 375, 395, 404, 417, 442, 523, 547, 636, 637, 638, 682, 785], "creditcardnumberminthreshold": 70, "creditcardnumberpercentthreshold": 70, "crosssitescriptingautodeploygraceperiod": 70, "crosssitescriptingminthreshold": 70, "crosssitescriptingpercentthreshold": 70, "csrftagautodeploygraceperiod": 70, "csrftagminthreshold": 70, "forgeri": [70, 97], "csrftagpercentthreshold": 70, "fieldconsistencyautodeploygraceperiod": 70, "fieldconsistencyminthreshold": 70, "fieldconsistencypercentthreshold": 70, "fieldformatautodeploygraceperiod": 70, "fieldformatminthreshold": 70, "fieldformatpercentthreshold": 70, "sqlinjectionautodeploygraceperiod": 70, "sqlinjectionminthreshold": 70, "sqlinjectionpercentthreshold": 70, "starturlautodeploygraceperiod": 70, "starturlminthreshold": 70, "starturlpercentthreshold": 70, "xmlattachmentminthreshold": 70, "xmlattachmentpercentthreshold": 70, "xmlwsiminthreshold": 70, "wsi": [70, 97, 641], "xmlwsipercentthreshold": 70, "multipart_form": 71, "multipartformcontenttypevalu": 71, "later": [72, 351, 392, 487, 488, 615, 689, 695, 706], "logact": [72, 147, 152, 154, 161, 197, 202, 272, 276, 295, 337, 388, 421, 536, 612, 618, 764, 769, 776, 782, 839], "filter": [72, 97, 109, 124, 126, 128, 130, 143, 215, 289, 341, 417, 467, 482, 489, 542, 568, 772], "http_req": [74, 619, 765], "httpquic_req": [74, 229, 267, 619, 765], "alertonli": [75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "cffield_url": 75, "purpos": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 210, 635, 827, 833], "confidfield": 75, "isautodeploi": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "autodeploi": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "notautodeploi": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "isregex_cffield": 75, "fake": [75, 87, 97], "exempt": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "resourceid": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "ruletyp": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "as_blockkeyword_formurl": 76, "as_fieldname_isregex_blockkeyword": 76, "block": [76, 91, 97, 98, 103, 109, 110, 238, 387, 482, 489, 496, 528, 532, 535, 537, 538, 641, 741, 742, 792, 827, 833], "blockkeywordtyp": 76, "as_bypass_list": 77, "as_bypass_list_act": 77, "as_bypass_list_loc": 77, "scan": [77, 84, 207, 827, 865], "as_bypass_list_value_typ": 77, "as_scan_location_cmd": 78, "as_value_expr_cmd": 78, "as_value_type_cmd": 78, "relax": [78, 92, 94, 95, 97, 104, 107, 109, 246, 559, 641], "formactionurl_cmd": 78, "isregex_cmd": 78, "isvalueregex_cmd": 78, "isregex_xss": 82, "isvalueregex_xss": 82, "csrfformactionurl": 83, "as_deny_list": 84, "as_deny_list_act": 84, "as_deny_list_loc": 84, "as_deny_list_value_typ": 84, "repres": [86, 93, 97, 151, 153, 160, 162, 231, 233, 234, 247, 268, 327, 333, 350, 366, 495, 536, 678, 754, 832, 837, 838], "formexpress": 87, "formurl_fad": 87, "isfieldnameregex": 87, "isregex_ffc": 88, "fieldformatmaxlength": 89, "fieldformatminlength": 89, "fieldtyp": 89, "isregex_ff": 89, "as_fileuploadtypes_url": 90, "filetyp": 90, "pdf": 90, "msdoc": 90, "imag": [90, 352, 354], "isnameregex": 90, "isregex_fileuploadtypes_url": 90, "iskeyregex_json_blockkeyword": 91, "jsonblockkeywordtyp": 91, "jsonblockkeywordurl": 91, "keyname_json_blockkeyword": 91, "keynam": [91, 92, 94, 330, 349], "as_value_expr_json_cmd": 92, "cmd": [92, 97, 233, 641], "as_value_type_json_cmd": 92, "iskeyregex_json_cmd": 92, "isvalueregex_json_cmd": 92, "violat": [92, 94, 95, 96, 97, 209, 641], "quot": [92, 94, 95, 535, 568, 608], "ensur": [92, 94, 95, 97, 160, 162, 390, 405, 442, 482, 489, 519, 689, 706, 716], "non": [92, 94, 95, 97, 105, 143, 256, 288, 314, 335, 352, 369, 375, 387, 390, 392, 442, 462, 496, 503, 535, 563, 565, 609, 613, 615, 619, 648, 654, 674, 713, 757, 777, 783, 827, 833, 865, 889], "keyname_json_cmd": 92, "we": [93, 151, 314, 325, 335, 409, 442, 482, 646], "enforc": [93, 103, 387, 442, 689, 706], "jsondo": [93, 97], "item": [93, 104, 107, 367, 368, 369, 827, 833], "toggl": [93, 97, 375, 442], "depth": [93, 103, 117, 681, 827, 833], "count": [93, 109, 117, 366, 375, 386, 689, 695, 706, 713, 865], "arrai": [93, 103, 442, 482], "jsonmaxarraylength": 93, "jsonmaxarraylengthcheck": 93, "jsonmaxcontainerdepth": 93, "excess": [93, 103, 713], "hierarchi": [93, 103], "jsonmaxcontainerdepthcheck": 93, "jsonmaxdocumentlength": 93, "jsonmaxdocumentlengthcheck": 93, "jsonmaxobjectkeycount": 93, "jsonmaxobjectkeycountcheck": 93, "jsonmaxobjectkeylength": 93, "jsonmaxobjectkeylengthcheck": 93, "jsonmaxstringlength": 93, "jsonmaxstringlengthcheck": 93, "as_value_expr_json_sql": 94, "as_value_type_json_sql": 94, "iskeyregex_json_sql": 94, "isvalueregex_json_sql": 94, "keyname_json_sql": 94, "as_value_expr_json_xss": 95, "json_xss": 95, "as_value_type_json_xss": 95, "iskeyregex_json_xss": 95, "isvalueregex_json_xss": 95, "keyname_json_xss": 95, "as_logexpress": 96, "happen": [96, 209, 602], "appfw": [96, 97, 109, 129, 531, 568, 591, 641, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "addcookieflag": 97, "add": [97, 117, 121, 222, 234, 244, 246, 247, 313, 323, 325, 326, 327, 328, 331, 333, 334, 336, 337, 342, 343, 344, 347, 379, 417, 419, 424, 427, 442, 488, 497, 498, 499, 500, 501, 504, 520, 536, 537, 538, 541, 542, 563, 595, 602, 629, 630, 645, 653, 655, 656, 666, 685, 716, 722, 742, 773, 792, 827, 833, 884, 885, 886, 887], "prevent": [97, 117, 207, 268, 360, 363, 383, 489, 564, 577, 595, 681, 696, 827, 833], "both": [97, 136, 143, 160, 162, 171, 172, 173, 175, 178, 180, 182, 183, 231, 234, 288, 314, 335, 375, 379, 442, 460, 461, 482, 487, 496, 528, 532, 560, 635, 644, 681, 682, 689, 716, 717, 736, 742, 746, 754, 757, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 825, 827, 832, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "archivenam": 97, "as_prof_bypass_list_en": 97, "as_prof_deny_list_en": 97, "augment": 97, "dure": [97, 119, 146, 151, 160, 206, 211, 222, 246, 327, 330, 333, 335, 343, 352, 363, 369, 379, 410, 417, 418, 475, 481, 482, 542, 600, 602, 635, 637, 661, 664, 682, 683, 689, 695, 696, 701, 706, 711, 713, 722, 755, 756, 825, 827, 833, 865], "blockkeywordact": 97, "statist": [97, 117, 352, 419, 596, 713, 827, 833], "bufferoverflowact": 97, "One": [97, 191, 205, 206, 207, 211, 212, 230, 323, 326, 401, 402, 419, 482, 587, 608, 667], "overflow": [97, 103, 641], "bufferoverflowmaxcookielength": 97, "longer": [97, 343, 535, 600], "bufferoverflowmaxheaderlength": 97, "bufferoverflowmaxquerylength": 97, "bufferoverflowmaxtotalheaderlength": 97, "maxheaderlen": [97, 535], "httpprofil": [97, 535], "bufferoverflowmaxurllength": 97, "canonicalizehtmlrespons": 97, "special": [97, 366, 367, 368, 369, 528, 532, 549, 642, 654, 689, 695, 706, 742], "ceflog": [97, 109], "cef": [97, 109], "checkrequesthead": 97, "well": [97, 143, 151, 482, 496, 528, 535, 713, 716], "clientipexpress": [97, 210], "cmdinjectionact": 97, "cmdinjectiongrammar": 97, "grammar": 97, "cmdinjectiontyp": 97, "cmdsplchar": 97, "char": 97, "cmdkeyword": 97, "cmdsplcharandkeyword": 97, "cmdsplcharorkeyword": 97, "anyon": 97, "contenttypeact": 97, "cookieconsistencyact": 97, "cookieencrypt": 97, "decrypt": [97, 148, 151, 528, 529, 568, 635, 674, 682, 689], "perman": [97, 827, 833], "decryptonli": 97, "encryptsessiononli": 97, "encryptal": 97, "cookiehijackingact": 97, "hijack": 97, "tlsv1": [97, 689, 695, 701, 706], "cookieproxi": 97, "sessiononli": 97, "cookiesamesiteattribut": 97, "cookietransform": 97, "browser": [97, 119, 147, 210, 268, 271, 272, 352, 536, 611, 612, 617, 618, 654, 664, 689, 695, 706, 794, 827, 833, 865], "possibli": 97, "them": [97, 109, 124, 126, 128, 130, 186, 215, 352, 489, 570, 587, 648, 650, 835], "caution": [97, 143, 314, 695, 706, 794], "sure": [97, 143, 314, 349, 442, 519, 541, 755], "regardless": [97, 109, 226, 314, 382, 405, 442, 467, 538, 689, 706], "creditcard": 97, "visa": 97, "mastercard": 97, "amex": 97, "jcb": 97, "dinersclub": 97, "creditcardact": 97, "creditcardmaxallow": 97, "appear": [97, 224, 442, 615, 681, 689, 695, 706, 827, 833, 837, 838], "serv": [97, 117, 222, 226, 288, 335, 340, 343, 375, 442], "creditcardxout": 97, "replac": [97, 141, 256, 333, 335, 343, 352, 366, 370, 482, 563, 588, 602, 615, 623, 624, 682, 736, 742, 746], "digit": [97, 160], "crosssitescriptingact": 97, "crosssitescriptingcheckcompleteurl": 97, "just": [97, 442, 534, 535, 717], "portion": [97, 162, 442, 754, 832], "crosssitescriptingtransformunsafehtml": 97, "danger": 97, "csrftagact": 97, "customset": 97, "defaultcharset": 97, "alreadi": [97, 232, 369, 488, 495, 573, 592, 617, 635, 637], "iso": [97, 124, 126, 128, 130, 528, 664], "8859": 97, "english": 97, "big5": 97, "chines": 97, "tradit": 97, "gb2312": 97, "simplifi": 97, "sji": 97, "japanes": 97, "shift": 97, "ji": 97, "euc": 97, "jp": [97, 211], "9": [97, 167, 264, 528, 532, 534, 535, 566, 573], "turkish": 97, "utf": [97, 591, 594, 682, 689], "8": [97, 167, 222, 233, 234, 398, 399, 497, 498, 528, 542, 591, 594, 672, 682, 684, 689, 693, 742], "unicod": [97, 682, 689], "kr": [97, 211], "korean": 97, "defaultfieldformatmaxlength": 97, "enter": [97, 146, 166, 288, 343, 363, 375, 442, 523, 536, 547, 563, 591, 594, 633, 657, 672, 683, 693, 742, 865], "defaultfieldformatminlength": 97, "zero": [97, 314, 335, 375, 390, 398, 399, 416, 417, 419, 442, 503, 532, 535, 536, 549, 552, 563, 565, 664, 682, 689, 695, 706, 716, 717], "defaultfieldformattyp": 97, "explicitli": [97, 363, 827, 833], "standard": [97, 234, 297, 521, 528, 615, 689, 695, 706, 827, 833, 865], "littl": 97, "further": [97, 109, 215, 268, 374, 376, 589, 611, 617, 776], "advanc": [97, 146, 153, 154, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 264, 417, 528, 586, 587, 689, 694, 695, 696, 697, 698, 699, 701, 706, 711, 729, 730, 731, 732, 733, 734, 735, 750, 751, 753, 757, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 827, 833, 840, 844, 845, 846, 847, 848, 849, 851, 853, 854, 856, 857, 858, 865, 871, 876, 877], "signific": 97, "heavili": 97, "cve": 97, "denyurlact": 97, "take": [97, 117, 147, 151, 222, 226, 233, 234, 247, 256, 288, 314, 326, 375, 379, 383, 417, 442, 523, 535, 564, 565, 587, 654, 717, 722, 742, 865], "over": [97, 160, 247, 288, 314, 344, 375, 379, 409, 417, 427, 442, 482, 549, 565, 568, 587, 602, 629, 630, 713, 789, 890], "even": [97, 288, 314, 335, 360, 375, 379, 406, 419, 442, 496, 529, 538, 563, 564, 647, 681, 689, 695, 696, 706, 716, 742, 827, 833, 865, 871], "would": [97, 105, 132, 141, 143, 151, 153, 160, 162, 191, 208, 288, 314, 360, 379, 442, 453, 523, 536, 542, 563, 587, 595, 716, 726, 754, 832, 865, 871], "otherwis": [97, 143, 234, 324, 370, 406, 442, 587, 615, 648, 649, 827, 833, 882, 886], "dosecurecreditcardlog": 97, "dynamiclearn": 97, "enableformtag": 97, "errorurl": [97, 210], "excludefileuploadfromcheck": 97, "exemptclosureurlsfromsecuritycheck": 97, "pass": [97, 105, 337, 386, 419, 523, 529, 535, 547, 650, 657, 661, 663, 664, 672, 682, 683, 689, 693, 755, 756, 827, 833], "closur": [97, 563], "fakeaccountdetect": 97, "fieldconsistencyact": 97, "fieldformatact": 97, "suggest": 97, "fileuploadmaxnum": 97, "per": [97, 103, 109, 117, 146, 205, 206, 208, 211, 213, 214, 335, 352, 375, 398, 399, 407, 419, 442, 487, 535, 542, 552, 562, 563, 564, 568, 682, 689, 713, 742, 746, 760, 761], "submiss": 97, "65535": [97, 329, 630], "unlimit": [97, 523, 547, 549], "fileuploadtypesact": 97, "fileuploadtypeact": 97, "geolocationlog": [97, 109], "geo": [97, 109], "grpcaction": 97, "htmlerrorobject": 97, "htmlerrorstatuscod": 97, "code": [97, 141, 151, 207, 222, 239, 288, 314, 417, 442, 519, 522, 534, 608, 664, 671, 716, 865], "empti": [97, 160, 375, 529, 535, 608], "htmlerrorstatusmessag": 97, "importprofilenam": 97, "updat": [97, 109, 118, 160, 206, 207, 208, 211, 212, 215, 263, 314, 321, 363, 406, 442, 535, 563, 564, 595, 641, 661, 717, 741, 772, 889], "infercontenttypexmlpayloadact": 97, "infer": [97, 151], "payload": [97, 398, 399, 403, 442, 482, 535, 547, 564, 600], "mismatch": [97, 143, 641, 689, 695, 706], "pleas": [97, 146, 151, 337, 419, 424, 535], "insertcookiesamesiteattribut": 97, "inspectcontenttyp": 97, "gwt": 97, "inspectquerycontenttyp": 97, "invalidpercenthandl": 97, "handl": [97, 147, 264, 268, 272, 288, 314, 335, 379, 442, 536, 612, 618, 689, 711, 773, 794, 838], "asp_mod": 97, "microsoft": [97, 134, 151, 297, 442, 609, 613, 827, 833], "asp": 97, "secure_mod": 97, "jsonblockkeywordact": 97, "jsoncmdinjectionact": 97, "jsoncmdinjectiongrammar": 97, "jsoncmdinjectiontyp": 97, "jsondosact": 97, "jsonerrorobject": 97, "jsonerrorstatuscod": 97, "jsonerrorstatusmessag": 97, "jsonsqlinjectionact": 97, "jsonsqlinjectiongrammar": 97, "jsonsqlinjectiontyp": 97, "sqlsplchar": 97, "sqlkeyword": 97, "sqlsplcharandkeyword": 97, "sqlsplcharorkeyword": 97, "jsonxssact": 97, "logeverypolicyhit": 97, "matchurlstr": 97, "multipleheaderact": 97, "multipl": [97, 142, 210, 230, 233, 234, 247, 314, 321, 331, 335, 340, 344, 351, 375, 419, 442, 467, 478, 487, 489, 504, 528, 531, 535, 542, 546, 557, 558, 563, 569, 571, 572, 582, 583, 584, 590, 602, 615, 623, 624, 644, 674, 689, 695, 701, 706, 789, 825, 827, 833, 865, 880, 881, 884, 885], "keeplast": 97, "keep": [97, 379, 482, 536, 564, 634, 635, 637, 695, 701, 706, 713], "optimizepartialreq": 97, "those": [97, 160, 335, 419, 442, 563, 602, 789], "backend": [97, 117, 288, 321, 335, 340, 383, 417, 514, 535, 568, 625, 633, 689, 695, 827], "most": [97, 151, 585, 630, 664, 713, 827, 833], "full": [97, 143, 222, 419, 442, 489, 523, 536, 568, 587, 664, 722, 742, 827, 833], "purg": [97, 716], "percentdecoderecurs": 97, "recurs": [97, 103, 332, 335, 442], "decod": [97, 535, 598, 600], "postbodylimit": [97, 641], "10gb": 97, "20mb": 97, "postbodylimitact": 97, "postbodylimitsignatur": 97, "http_post_bodi": 97, "could": [97, 716, 717], "impact": 97, "cpu": [97, 264, 395, 404, 574, 641, 682, 689, 695, 701, 706], "protofileobject": 97, "refererheadercheck": 97, "came": [97, 288, 689], "outsid": [97, 499], "although": 97, "if_pres": 97, "alwaysexceptstarturl": 97, "alwaysexceptfirstrequest": 97, "relaxationrul": 97, "replaceurlstr": 97, "while": [97, 128, 129, 135, 151, 160, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 246, 275, 288, 314, 335, 363, 417, 442, 462, 467, 482, 535, 536, 541, 557, 558, 563, 591, 689, 695, 696, 706, 707, 729, 730, 731, 732, 733, 734, 735, 741, 752, 768, 815, 820, 827, 833, 882, 886], "requestcontenttyp": 97, "responsecontenttyp": 97, "restact": 97, "rfcprofil": 97, "rfc": [97, 124, 126, 128, 130, 222, 327, 442, 564, 682, 689], "semicolonfieldsepar": 97, "sessioncookienam": [97, 109, 210, 215], "31": [97, 109, 210, 215, 234, 409, 419, 424, 538, 630, 642, 644, 648, 650, 651, 789], "symbol": [97, 109, 117, 210, 215, 344, 375, 442, 760, 761, 789], "sessionlessfieldconsist": 97, "sessionless": [97, 442], "postonli": 97, "sessionlessurlclosur": 97, "less": [97, 206, 222, 226, 234, 246, 329, 330, 352, 363, 417, 519, 528, 532, 535, 547, 563, 566, 568], "sqlinjectionact": 97, "sqlinjectionchecksqlwildchar": 97, "wild": 97, "sqlinjectiongrammar": 97, "sqlinjectiononlycheckfieldswithsqlchar": 97, "without": [97, 109, 119, 138, 143, 147, 160, 162, 166, 210, 215, 223, 268, 271, 272, 288, 314, 360, 363, 377, 379, 382, 419, 421, 427, 442, 460, 461, 482, 489, 496, 523, 528, 535, 536, 542, 549, 563, 589, 605, 611, 612, 617, 618, 633, 717, 742, 755, 756, 776, 827, 833], "harmless": 97, "sqlinjectionparsecom": 97, "pars": [97, 103, 109, 512, 661, 749, 773, 797], "ansi": 97, "mozilla": 97, "style": [97, 124, 126, 128, 130], "checkal": 97, "ansinest": 97, "sqlinjectionruletyp": 97, "sqlinjectiontransformspecialchar": 97, "sinc": [97, 222, 496], "sqlinjectiontyp": 97, "starturlact": 97, "starturlclosur": 97, "convert": [97, 352, 354, 683, 684, 689, 695, 706], "chunk": 97, "atleast": [97, 742], "stripcom": 97, "strip": 97, "striphtmlcom": 97, "exclude_script_tag": 97, "stripxmlcom": 97, "atom": 97, "feed": 97, "blog": 97, "urldecoderequestcooki": 97, "usehtmlerrorobject": 97, "verboseloglevel": [97, 210], "verbos": [97, 210, 360, 760, 761], "patternpayload": 97, "patternpayloadhead": 97, "xmlattachmentact": 97, "xmldosact": 97, "xdo": 97, "xmlerrorobject": 97, "xmlerrorstatuscod": 97, "xmlerrorstatusmessag": 97, "xmlformatact": 97, "xmlsoapfaultact": 97, "soap": [97, 103, 105, 641], "fault": [97, 641], "xmlsqlinjectionact": 97, "xmlsqlinjectionchecksqlwildchar": 97, "xmlsqlinjectiononlycheckfieldswithsqlchar": 97, "xmlsqlinjectionparsecom": 97, "section": [97, 340, 535, 615, 664], "xmlsqlinjectiontyp": 97, "xmlvalidationact": 97, "xmlwsiaction": 97, "xmlxssaction": 97, "xout": 98, "as_express": 98, "maxmatchlength": 98, "isregex_sql": 99, "isvalueregex_sql": 99, "trust": [101, 132, 134, 141, 239, 577], "xmlattachmentcontenttyp": 102, "xmlattachmentcontenttypecheck": 102, "illeg": 102, "xmlmaxattachments": 102, "xmlmaxattachmentsizecheck": 102, "xmlblockdtd": 103, "dtd": 103, "expans": 103, "xmlblockexternalent": 103, "xxe": 103, "forc": [103, 160, 207, 222, 360, 377, 379, 382, 523, 549, 563, 573, 577, 595, 742, 758, 827, 833], "untrust": 103, "xmlblockpi": 103, "pi": [103, 536, 608], "instruct": 103, "xmlmaxattributenamelength": 103, "longest": [103, 314, 442], "xmlmaxattributenamelengthcheck": 103, "xmlmaxattribut": 103, "xmlmaxattributescheck": 103, "xmlmaxattributevaluelength": 103, "xmlmaxattributevaluelengthcheck": 103, "atribut": 103, "xmlmaxchardatalength": 103, "cdata": 103, "quantiti": 103, "unpars": 103, "xmlmaxchardatalengthcheck": 103, "xmlmaxelementchildren": 103, "children": [103, 363], "xmlmaxelementchildrencheck": 103, "xmlmaxelementdepth": 103, "xmlmaxelementdepthcheck": 103, "xmlmaxelementnamelength": 103, "expand": [103, 576], "xmlmaxelementnamelengthcheck": 103, "xmlmaxel": 103, "xmlmaxelementscheck": 103, "xmlmaxentityexpansiondepth": 103, "aganist": 103, "xmlmaxentityexpansiondepthcheck": 103, "xmlmaxentityexpans": 103, "xmlmaxentityexpansionscheck": 103, "xmlmaxfiles": 103, "xmlmaxfilesizecheck": 103, "xmlmaxnamespac": 103, "xmlmaxnamespacescheck": 103, "xmlmaxnamespaceurilength": 103, "uri": [103, 162, 417, 536, 657, 664, 754, 832], "xmlmaxnamespaceurilengthcheck": 103, "xmlmaxnod": 103, "xmlmaxnodescheck": 103, "xmlmaxsoaparrayrank": 103, "rank": [103, 525], "dimens": [103, 352], "xmlmaxsoaparrays": 103, "abus": 103, "xmlminfiles": 103, "xmlminfilesizecheck": 103, "min": [103, 151, 153, 160, 162, 417, 525, 567, 754, 832], "xmlsoaparraycheck": 103, "as_scan_location_xmlsql": 104, "isregex_xmlsql": 104, "fix": [104, 107, 160, 241, 442, 564, 568, 635, 637], "xmladditionalsoaphead": 105, "addtion": 105, "xmlendpointcheck": 105, "behaviour": [105, 574, 742, 827, 833, 865], "w": [105, 106, 211, 563, 564, 760, 761], "r": [105, 211, 405, 536, 608, 760, 761], "absolut": [105, 460, 461, 767], "mention": [105, 227, 234, 602, 647], "org": [105, 417, 461], "exampleservic": 105, "relaiv": 105, "hostnam": [105, 133, 143, 160, 226, 288, 323, 326, 417, 533, 582, 583, 736, 742, 746, 825], "rel": [105, 222, 289, 367, 368, 369, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 446, 447, 448, 449, 450, 451, 636, 637, 638, 767, 797, 882, 886], "xmlrequestschema": 105, "xmlresponseschema": 105, "xmlvalidaterespons": 105, "xmlvalidatesoapenvelop": 105, "evelop": 105, "xmlwsdl": 105, "comma": [106, 142, 160, 530, 595, 827, 833, 865], "relev": [106, 146, 340, 689, 699, 711], "r1140": 106, "r1141": 106, "as_scan_location_xmlxss": 107, "isregex_xmlxss": 107, "centralizedlearn": 109, "central": [109, 522], "clientiplogginghead": 109, "cookiepostencryptprefix": 109, "prepend": [109, 344], "defaultprofil": [109, 215, 682], "appfw_bypass": 109, "unmatch": [109, 215], "back": [109, 215, 234, 247, 256, 370, 379, 442, 682, 722, 741], "entitydecod": 109, "multibyt": 109, "half": [109, 226, 563, 564, 565], "width": [109, 352], "importsizelimit": 109, "cumul": 109, "learnratelimit": 109, "examin": 109, "drop": [109, 117, 147, 152, 205, 206, 207, 210, 211, 212, 268, 271, 272, 314, 325, 335, 337, 340, 363, 366, 375, 395, 404, 407, 419, 421, 442, 467, 496, 534, 535, 536, 557, 558, 563, 564, 568, 602, 611, 612, 617, 618, 635, 641, 648, 649, 682, 685, 689, 776, 882, 886], "abov": [109, 147, 154, 161, 206, 272, 288, 386, 418, 419, 424, 442, 530, 612, 618, 634, 635, 648, 711, 776, 782], "logmalformedreq": 109, "malform": 109, "doesn": 109, "malformedreqact": 109, "proxypassword": [109, 215, 607], "proxyport": [109, 215, 607], "aw": [109, 211, 215, 239], "proxyserv": [109, 215, 607], "proxyusernam": [109, 215, 607], "sessionlifetim": 109, "amount": [109, 222, 226, 246, 288, 351, 363, 417, 487, 563, 600, 645, 681, 682, 689, 835], "remain": [109, 363, 379, 442, 535, 539, 600, 689, 755, 756, 758, 827, 833, 882, 886], "continu": [109, 146, 222, 256, 268, 288, 314, 369, 375, 406, 417, 419, 442, 482, 563, 637, 689, 695, 706], "establish": [109, 135, 151, 375, 396, 417, 442, 482, 487, 489, 514, 535, 563, 564, 600, 604, 625, 682, 689, 695, 701, 706, 716, 792, 827, 833], "open": [109, 117, 366, 369, 496, 549, 559, 635, 637, 689, 706, 827, 833, 835], "sessionlimit": 109, "max_limit": 109, "reach": [109, 117, 225, 314, 335, 366, 383, 417, 419, 442, 496, 519, 554, 563, 589, 611, 617, 639, 827, 833, 889], "sessiontimeout": [109, 210, 215, 465, 496], "signatureautoupd": [109, 215], "signatureurl": [109, 215], "download": [109, 215, 222, 245, 352, 602, 682, 689], "undefin": [109, 147, 152, 154, 161, 202, 227, 271, 272, 421, 573, 612, 617, 618, 682, 685, 776, 782], "condit": [109, 147, 152, 154, 161, 202, 271, 272, 363, 370, 419, 421, 472, 473, 482, 502, 535, 564, 611, 612, 617, 618, 641, 776, 782], "appfw_block": 109, "useconfigurablesecretkei": 109, "autoenablenewsignatur": 110, "merg": [110, 568, 689, 695, 706], "mergedefault": 110, "preservedefact": 110, "def": 110, "ruleid": 110, "sha1": [110, 160, 162, 532, 654, 664, 682, 754, 832], "vendortyp": 110, "third": [110, 442, 462, 525, 564, 580], "parti": [110, 134, 141, 153, 162, 580, 754, 758, 832, 835], "waf": 110, "snort": 110, "xslt": 110, "urlencodedformcontenttypevalu": 111, "xmlcontenttypevalu": 113, "apptemplatefilenam": 116, "appexpert": 116, "deploymentfilenam": 116, "altcontentpath": 117, "ac": 117, "altcontentsvcnam": 117, "customfil": 117, "delai": [117, 241, 247, 288, 363, 369, 525, 563, 564, 600, 633, 635, 637, 681, 682, 689, 695, 706, 882, 886], "microsecond": 117, "gather": 117, "lowest": [117, 243, 247, 314, 331, 333, 366, 375, 442, 630, 865], "dosact": 117, "under": [117, 206, 222, 246, 335, 370, 417, 424, 442, 602, 635, 664, 736, 746], "correspond": [117, 160, 186, 264, 314, 324, 335, 375, 410, 418, 442, 487, 523, 525, 527, 566, 568, 602, 716, 865], "mandatori": [117, 141, 151, 231, 275, 330, 418, 523, 536, 538, 557, 558, 646, 654, 656, 689, 695, 696, 702, 706, 707, 813], "simplerespons": 117, "hicrespons": 117, "dostrigexpress": 117, "maxconn": [117, 523, 547, 549], "argument": [117, 146, 264, 269, 275, 330, 417, 442, 529, 530, 536, 542, 547, 561, 563, 564, 574, 580, 605, 633, 646, 654, 736, 742, 746], "numretri": 117, "polqdepth": 117, "queu": [117, 222, 535, 639, 671, 682, 689], "increas": [117, 212, 351, 398, 419, 424, 442, 487, 535, 563, 564, 641, 648, 689, 706], "subsequ": [117, 375, 442, 467, 570, 595, 682, 827, 833], "until": [117, 206, 335, 340, 366, 417, 419, 442, 482, 489, 682, 882, 886], "again": [117, 206, 207, 208, 211, 212, 335, 340, 379, 716, 827, 833], "medium": [117, 525], "priqdepth": 117, "priorirti": 117, "qdepth": 117, "respondwith": [117, 608], "retryonreset": 117, "retryontimeout": 117, "millisec": 117, "upon": [117, 151, 222, 264, 360, 406, 586], "tcpprofil": [117, 564], "l2": [117, 246, 288, 314, 406, 546], "l3": [117, 246, 546], "avgwaitingcli": 119, "averag": [119, 207, 417, 442, 641], "sit": 119, "dosattackthresh": 119, "mitig": [119, 207, 210, 212, 419, 424], "maxaltrespbandwidth": 119, "sessionlif": 119, "window": [119, 160, 321, 398, 399, 417, 535, 563, 564, 713, 825, 827, 833], "onc": [119, 325, 335, 370, 427, 482, 535, 563, 682, 717, 741], "ifnum": [121, 221, 233, 234, 356, 357, 393, 454, 455, 457, 504, 523, 786, 787, 788, 880, 881, 884, 885], "slot": [121, 356, 357, 504, 786, 787, 788, 880, 881, 884, 885], "notat": [121, 233, 234, 314, 350, 356, 357, 442, 459, 504, 585, 786, 787, 788, 880, 881, 884, 885], "want": [121, 146, 186, 201, 218, 219, 233, 241, 257, 259, 288, 314, 344, 347, 356, 357, 359, 360, 366, 375, 389, 390, 400, 405, 409, 417, 419, 425, 426, 442, 470, 471, 475, 481, 485, 503, 504, 512, 513, 536, 537, 538, 542, 557, 558, 561, 609, 621, 623, 628, 629, 630, 633, 635, 637, 641, 642, 644, 645, 648, 649, 651, 653, 774, 779, 780, 790, 791], "mac": [121, 221, 234, 288, 359, 404, 406, 408, 417, 419, 442, 504, 549, 570, 584, 671, 827, 833, 865], "ownernod": [121, 356, 357, 358, 409, 488, 527, 533, 537, 538, 574, 643, 646, 882, 886], "owner": [121, 218, 219, 256, 363, 394, 403, 409, 537, 538, 621, 622, 623, 629, 630, 689, 706, 786, 787, 788, 790, 791, 882, 886], "td": [121, 186, 211, 218, 219, 288, 314, 359, 389, 390, 400, 405, 425, 426, 442, 467, 470, 471, 472, 473, 492, 495, 503, 504, 512, 537, 538, 557, 558, 569, 570, 571, 572, 588, 621, 623, 629, 630, 633, 635, 637, 648, 649, 790, 791], "becom": [121, 186, 211, 218, 219, 234, 246, 247, 256, 288, 314, 359, 375, 379, 389, 390, 400, 405, 425, 426, 427, 442, 470, 471, 472, 473, 503, 504, 512, 523, 537, 538, 557, 558, 621, 623, 629, 630, 633, 635, 637, 648, 649, 664, 755, 756, 758, 790, 791, 827, 833, 882, 886, 889], "vtep": [121, 221, 504], "reachabl": [121, 405, 495, 504, 505], "spoofvalid": 122, "spoof": [122, 210, 564, 827, 833], "out": [122, 221, 288, 314, 335, 369, 386, 406, 417, 464, 467, 487, 536, 563, 564, 583, 635, 637, 689, 706, 742, 827, 833, 865], "ag": [122, 211, 222, 335, 417], "previous": [122, 146, 221, 232, 325, 406, 419, 467, 827, 833], "expir": [122, 141, 221, 222, 330, 343, 369, 406, 417, 418, 557, 558, 573, 635, 637, 654, 661, 716, 865], "bypasssafetycheck": [123, 608], "safeti": [123, 608], "unsaf": [123, 608], "loglevel": [123, 124, 126, 128, 130, 530, 724], "sever": [123, 288, 641, 647, 648], "logtonewnslog": 123, "nslog": [123, 124, 125, 126, 127, 417, 482], "stringbuilderexpr": [123, 615], "appflowexport": [124, 126, 128, 130], "contentinspectionlog": [124, 126, 128, 130], "dateformat": [124, 126, 128, 130], "date": [124, 126, 128, 130, 418, 654, 667, 689, 695, 706, 736, 742, 746], "mmddyyyi": [124, 126, 128, 130], "month": [124, 126, 128, 130, 726], "year": [124, 126, 128, 130, 726], "ddmmyyyi": [124, 126, 128, 130], "european": [124, 126, 128, 130], "yyyymmdd": [124, 126, 128, 130], "domainresolvenow": [124, 128, 633], "resolv": [124, 128, 245, 288, 332, 335, 340, 346, 417, 442, 633, 645, 716, 825], "domainresolveretri": [124, 128, 633, 645], "logfacil": [124, 126, 128, 130], "facil": [124, 126, 128, 130, 615], "3164": [124, 126, 128, 130], "7": [124, 126, 128, 130, 167, 264, 528, 535], "local0": [124, 126, 128, 130], "local7": [124, 126, 128, 130], "local1": [124, 126, 128, 130], "local2": [124, 126, 128, 130], "local3": [124, 126, 128, 130], "local4": [124, 126, 128, 130], "local5": [124, 126, 128, 130], "local6": [124, 126, 128, 130], "serverdomainnam": [124, 128], "auditserv": 124, "mutual": [124, 128, 143, 158, 222, 269, 314, 347, 349, 360, 442, 587, 716], "exclus": [124, 128, 143, 158, 222, 269, 314, 347, 349, 360, 442, 587, 716], "sslintercept": [124, 126, 128, 129, 130, 531, 591, 689, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "intercept": [124, 126, 128, 288, 682, 685, 689, 690, 711, 825, 827, 833], "subscriberlog": [124, 126, 128, 130], "timezon": [124, 126, 128, 130, 523, 547, 722], "timestamp": [124, 126, 128, 130, 564, 722, 726], "gmt_time": [124, 126, 128, 130], "coordin": [124, 126, 128, 130, 222, 244, 247], "univers": [124, 126, 128, 130, 222, 664], "local_tim": [124, 126, 128, 130], "userdefinedauditlog": [124, 126, 128, 130], "ignor": [124, 126, 128, 130, 222, 225, 340, 375, 390, 395, 404, 417, 442, 503, 534, 536, 605, 671, 682, 689, 695, 706, 767], "meet": [124, 126, 128, 130, 528, 538], "criteria": [124, 126, 128, 130, 226, 324, 417, 615, 797, 834, 839], "info": [128, 487, 512, 547, 647, 724, 827, 833], "syslog": [128, 129, 130, 131, 245, 417, 482, 641, 721], "lbvservernam": 128, "servernam": [128, 143, 158, 268, 269, 366, 367, 369, 522, 540, 541, 561, 578, 635, 637, 638], "maxlogdatasizetohold": 128, "held": 128, "nsb": 128, "tcpprofilenam": [128, 288, 314, 442, 635, 637, 865], "whose": [128, 151, 153, 156, 160, 201, 209, 221, 222, 225, 232, 234, 243, 314, 352, 359, 366, 369, 375, 416, 417, 420, 442, 470, 471, 472, 473, 485, 502, 513, 537, 538, 575, 609, 621, 628, 635, 637, 706, 779, 780, 865, 890], "tune": [128, 407, 408], "wl": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "weblog": [129, 531, 535, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "sp": [129, 160, 162, 531, 591, 635, 637, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "surgeprotect": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "loadbalanc": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "contentswitch": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "cacheredirect": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "sc": [129, 211, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "sureconnect": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "cmpcntl": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "compressioncontrol": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "pq": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "priorityqueu": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "hdosp": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "httpdosprotect": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "globalserverloadbalanc": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ssloffload": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "cf": [129, 211, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "contentfilt": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ospf": [129, 531, 537, 538, 591, 629, 630, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ospfrout": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "rip": [129, 531, 538, 591, 629, 630, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "riprout": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "bgp": [129, 531, 538, 591, 629, 630, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "bgprout": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ipv6pt": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ipv6protocoltransl": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "applicationfirewal": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "nspush": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "netscalerpush": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "cloudbridg": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "isi": [129, 531, 591, 629, 630, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "isisrout": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ch": [129, 211, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "contentacceler": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "rise": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "largescalenat": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "rdpproxi": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "rep": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "forwardproxi": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "adaptivetcp": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ci": [129, 211, 269, 275, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "apigatewai": [129, 531, 591, 729, 730, 731, 732, 733, 734, 735, 752, 768, 815, 820], "ifnorm": 130, "interceptionn": 130, "certkeynam": [132, 186, 418, 656, 660, 696, 702, 707, 813, 865], "adf": [132, 442], "act": [132, 207, 223, 256, 335, 482, 563, 682], "serverurl": [132, 135, 139, 141, 166], "fulli": [132, 141, 288, 346, 442, 522, 540, 541, 578, 587, 602, 664, 682, 865], "qualifi": [132, 141, 222, 269, 346, 350, 442, 459, 462, 522, 540, 541, 568, 578, 586, 587, 593, 602, 664, 865], "authenticationdomain": [133, 186], "unspecifi": [133, 160, 162, 754, 832], "authenticationhost": [133, 314, 442], "authenticationlevel": 133, "authnvsnam": [133, 314, 442], "obtain": [134, 146, 151, 153, 160, 162, 199, 327, 333, 335, 340, 347, 375, 405, 417, 419, 442, 535, 563, 667, 717, 754, 758, 832, 835], "clientid": [134, 139, 141, 151, 153, 157, 199, 419, 424], "reli": [134, 141, 153, 162, 758, 835], "clientsecret": [134, 141, 151, 153, 157, 199], "pushservic": [134, 143], "refreshinterv": [134, 151, 153, 157], "servicekeynam": 134, "friendli": [134, 162, 754, 832], "comput": [134, 160, 162, 363, 383, 419, 532, 563, 654, 754, 832], "signaturealg": [134, 153, 160, 162, 754, 832], "rs256": [134, 151, 153], "tenantid": [134, 151, 199], "usual": [134, 151, 288, 482, 657, 664, 865], "tokenendpoint": [134, 151, 199], "vaultnam": 134, "portal": [134, 190, 199, 200, 819, 875], "secretkei": 135, "gatewai": [135, 166, 378, 417, 482, 523, 537, 538, 602, 629, 630, 792, 794, 825, 826, 827, 833, 834, 837, 838, 865], "sitekei": 135, "issuer": [136, 151, 153, 162, 654, 661, 664, 667, 682, 689], "certifc": 136, "twofactor": 136, "factor": [136, 146, 156, 160, 386, 442, 563, 564, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879, 889], "authenticationtyp": 138, "implement": [138, 151, 288, 366, 367, 368, 369, 375, 419, 427, 442, 528, 574], "connector": [138, 239], "citrixconnector": 138, "athena": [138, 141, 151], "exchang": [139, 151, 331, 363, 369, 370, 375, 417, 563, 635, 637, 641, 661, 689, 695, 701, 706], "passphras": [139, 330, 419, 424, 661], "deliv": [141, 331], "mail": [141, 331, 661, 664, 667, 674], "destin": [141, 221, 222, 226, 234, 246, 288, 314, 359, 390, 397, 403, 405, 406, 408, 417, 419, 424, 425, 427, 442, 465, 467, 468, 475, 482, 489, 494, 495, 497, 498, 502, 523, 547, 557, 558, 570, 595, 630, 635, 639, 648, 716, 760, 761, 825, 827, 833, 865, 890], "smtp": [141, 207, 417], "like": [141, 563, 685, 726, 742, 813, 835], "25": [141, 264], "emailid": 141, "csecexpr": 142, "hold": [142, 563, 716], "clientsecurityexpress": 142, "quarantinegroup": 142, "quarantin": 142, "alternateemailattr": 143, "alternat": 143, "attribute1": [143, 151, 160, 162, 167, 191, 754, 832], "attribute10": [143, 151, 160, 162, 167, 191, 754, 832], "attribute11": [143, 151, 160, 162, 167, 191, 754, 832], "attribute12": [143, 151, 160, 162, 167, 191, 754, 832], "attribute13": [143, 151, 160, 162, 167, 191, 754, 832], "attribute14": [143, 151, 160, 162, 167, 191, 754, 832], "attribute15": [143, 151, 160, 162, 167, 191, 754, 832], "attribute16": [143, 151, 160, 162, 167, 191, 754, 832], "attribute2": [143, 151, 160, 162, 167, 191, 754, 832], "attribute3": [143, 151, 160, 162, 167, 191, 754, 832], "attribute4": [143, 151, 160, 162, 167, 191, 754, 832], "attribute5": [143, 151, 160, 162, 167, 191, 754, 832], "attribute6": [143, 151, 160, 162, 167, 191, 754, 832], "attribute7": [143, 151, 160, 162, 167, 191, 754, 832], "attribute8": [143, 151, 160, 162, 167, 191, 754, 832], "attribute9": [143, 151, 160, 162, 167, 191, 754, 832], "preceed": [143, 160, 167], "trail": [143, 151, 160, 167, 314, 442], "127": [143, 151, 153, 160, 167, 568, 584, 646, 695, 742, 825], "2047": [143, 160, 167], "primari": [143, 171, 172, 173, 175, 178, 180, 182, 183, 186, 288, 314, 343, 363, 375, 379, 442, 482, 487, 574, 641, 755, 756, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "secondari": [143, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 222, 225, 226, 343, 359, 379, 382, 389, 396, 417, 442, 482, 487, 529, 623, 641, 755, 756, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "cloudattribut": 143, "followreferr": 143, "referr": [143, 335, 340], "g1": 143, "direct": [143, 264, 288, 314, 375, 413, 417, 419, 442, 535, 827, 833], "Be": 143, "kbattribut": 143, "knowledgebasedauthent": 143, "kba": 143, "retriev": [143, 222, 610, 667], "preconfigur": 143, "answer": [143, 206, 340, 615, 761, 813], "knowledg": 143, "cn": [143, 211, 689, 695, 701], "ldaphostnam": 143, "validateservercert": 143, "maxldapreferr": 143, "mssrvrecordloc": 143, "mssrv": 143, "srv": [143, 341, 344, 633], "pertain": 143, "domainnam": [143, 310, 314, 337, 371, 372, 375], "_msdc": 143, "_ldap": 143, "_tcp": 143, "otpsecret": 143, "onetimepassword": 143, "referraldnslookup": 143, "lookup": [143, 226, 335, 344, 419, 664, 682, 717], "rec": 143, "requireus": 143, "usersearch": 143, "sshpublickei": 143, "ssh": [143, 245, 537, 538, 568, 742, 745], "publickei": [143, 330, 399], "rba": [143, 156, 523, 742], "signon": 143, "sub": [143, 520], "authenticationschema": 146, "read": [146, 330, 460, 461], "ui": [146, 156, 211, 591, 594, 827], "abl": [146, 654], "noschema": [146, 156], "loginschema": [146, 147, 156], "authenticationstrength": 146, "wai": [146, 153, 162, 223, 726], "passwdexpress": [146, 758, 835], "passwordcredentialindex": 146, "index": [146, 160, 167, 207, 556, 585, 587, 591, 667], "ssocredenti": [146, 755, 756, 827, 833], "singlesignon": [146, 758, 835], "usercredentialindex": 146, "userexpress": [146, 758, 835], "noop": [147, 325, 608, 611, 612, 615, 682, 685], "implicitli": [147, 529], "go": [147, 222, 246, 268, 360, 379, 417, 424, 442, 635, 654, 716], "close": [147, 241, 268, 272, 419, 496, 527, 536, 563, 564, 565, 612, 618, 633, 635, 637, 682, 689, 695, 701, 706, 758, 776, 827, 833, 865], "program": [147, 268, 272, 536, 612, 618], "resend": [147, 268, 271, 272, 363, 419, 421, 536, 611, 612, 617, 618, 671], "messagelog": [147, 152, 154, 161, 202, 272, 337, 388, 421, 612, 618, 769, 776, 782, 839], "select": [147, 151, 162, 226, 247, 256, 269, 288, 314, 324, 344, 360, 363, 373, 375, 395, 398, 399, 403, 404, 410, 442, 446, 459, 502, 520, 535, 563, 564, 602, 611, 615, 617, 623, 624, 667, 672, 674, 693, 713, 754, 827, 832, 833, 865], "loginschemapolici": 147, "choos": [147, 160, 161, 262, 265, 400, 502, 512, 514, 535, 563, 578, 621, 623, 625, 644, 646, 651, 652, 653, 662, 769, 789, 827, 833], "represnt": 148, "domainus": 148, "domainuserpasswd": 148, "ntlmpath": 148, "ntlm": [148, 755, 756, 827, 833], "fallback": 148, "ou": 148, "organiz": 148, "unit": [148, 234, 330, 375, 417, 442, 458, 521, 567, 664, 726, 789], "allowedalgorithm": 151, "multivalu": 151, "verif": [151, 610, 654, 681, 682, 829], "hs256": 151, "rs512": [151, 153], "audienc": [151, 153, 160, 162, 754, 832], "typic": [151, 153, 160, 162, 343, 349, 442, 499, 608, 664, 689, 695, 706, 754, 832], "recipi": [151, 153, 754, 832], "authorizationendpoint": 151, "unauthent": [151, 865], "oauthact": 151, "certendpoint": 151, "jwk": 151, "jwt": 151, "certfilepath": 151, "granttyp": 151, "grant": [151, 199, 523, 547], "graphendpoint": 151, "graph": 151, "mobil": [151, 160, 207, 210, 827, 833, 865], "em": [151, 689], "idtokendecryptendpoint": 151, "idtoken": [151, 153, 157], "introspecturl": 151, "metadataurl": [151, 160, 162], "known": [151, 207, 482, 496, 577, 588, 654, 682, 689], "oauthtyp": 151, "intun": 151, "pkce": 151, "resourceuri": 151, "skewtim": [151, 153, 160, 162, 754, 832], "clock": [151, 160, 681], "skew": [151, 160], "incom": [151, 160, 162, 222, 226, 268, 288, 314, 375, 390, 419, 424, 442, 465, 468, 503, 536, 557, 558, 563, 570, 635, 827, 833], "ie": [151, 153, 160, 162, 211, 754, 832], "20min": [151, 153, 160, 162, 754, 832], "tokenendpointauthmethod": 151, "variant": 151, "client_secret_post": 151, "client_secret_jwt": 151, "private_key_jwt": 151, "client_secret_bas": 151, "userinfourl": 151, "oauthidppolici": 152, "value_expr": 153, "name2": [153, 749, 797], "value2_expr": 153, "configservic": 153, "decid": [153, 162, 226, 288, 442, 536, 682, 711, 792, 827, 833], "right": [153, 162, 520, 615, 650], "relai": [153, 162, 499], "is_member_of": [153, 162], "default_auth_group": [153, 162], "encrypttoken": 153, "redirecturl": [153, 288, 314, 889], "relyingpartymetadataurl": 153, "rp": 153, "jwks_uri": 153, "public": [153, 160, 207, 288, 330, 349, 366, 367, 368, 369, 370, 389, 399, 403, 578, 623, 624, 664, 689, 693, 695, 701, 706, 742, 745, 865], "sendpassword": [153, 162, 754, 832], "openid": 153, "signatureservic": [153, 162, 832], "offload": [153, 349, 564, 689, 695, 706, 865], "durat": [153, 206, 222, 417, 458, 535, 563, 564, 587], "nextfactor": [155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 729, 730, 731, 732, 733, 734, 735], "intervent": 156, "aaatm_req": 156, "rba_req": 156, "customerid": [157, 239], "remot": [158, 160, 221, 268, 297, 360, 363, 370, 394, 403, 418, 536, 600, 602, 641, 696, 758, 792, 827, 833, 835], "targetlbvserv": [158, 293, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 314, 315, 316, 317, 318, 319], "ssl_tcp": [158, 241, 269, 297, 314, 366, 369, 375, 442, 568, 635, 637, 689], "artifactresolutionserviceurl": 160, "artifact": [160, 162], "resolut": [160, 222, 332, 335, 582, 583, 633, 681, 792, 827, 833], "assert": [160, 162, 754, 832], "239": 160, "attributeconsumingserviceindex": 160, "serviceprovid": [160, 162, 754, 832], "authnctxclassref": 160, "internetprotocol": 160, "internetprotocolpassword": 160, "acquir": [160, 526], "mobileonefactorunregist": 160, "explicit": [160, 534, 564], "interact": [160, 314, 689, 695, 706, 717], "mobiletwofactorunregist": 160, "registr": [160, 494], "pin": [160, 222], "mobileonefactorcontract": 160, "reflect": [160, 265, 653, 769], "contract": 160, "procedur": 160, "mobiletwofactorcontract": 160, "unprotect": 160, "passwordprotectedtransport": 160, "previoussess": 160, "had": [160, 442], "past": [160, 418, 563], "x509": [160, 661, 663, 689], "509": [160, 654, 657, 664], "pgp": 160, "spki": 160, "xmldsig": 160, "smartcard": [160, 833, 865], "smartcardpki": 160, "mechan": [160, 162, 314, 442, 563, 564, 827, 833, 835], "softwarepki": 160, "softwar": [160, 417, 605, 682, 825], "telephoni": [160, 297], "provis": [160, 482], "line": [160, 217, 288, 314, 336, 337, 488, 530, 595, 608, 672, 682, 683, 693, 736, 742, 746, 789, 890], "telephon": 160, "adsl": 160, "nomadtelephoni": 160, "roam": 160, "personaltelephoni": 160, "authenticatedtelephoni": 160, "secureremotepassword": 160, "tlsclient": 160, "timesynctoken": 160, "synchron": [160, 245, 359, 360, 378, 379, 382, 389, 482, 487, 578, 623], "customauthnctxclassref": 160, "samlact": [160, 162], "samlact1": 160, "class1": 160, "loa1": 160, "class2": 160, "loa2": 160, "digestmethod": [160, 162, 664, 754, 832], "digest": [160, 162, 532, 654, 664, 682, 754, 755, 756, 827, 832, 833], "enforceusernam": 160, "edit": [160, 263, 521, 827, 833], "forceauthn": 160, "logoutbind": [160, 162], "logouturl": 160, "singlelogout": 160, "logoutrequest": 160, "cleanup": [160, 288, 565, 568], "metadatarefreshinterv": [160, 162], "fill": [160, 264, 582, 583], "samlidpcertnam": [160, 162], "samlredirecturl": 160, "relaystaterul": [160, 754, 832], "actionnam": [160, 324, 325, 337], "relayst": [160, 754, 832], "eq": [160, 227, 337, 417, 568], "contains_ani": 160, "patset_nam": 160, "samlsp": 160, "regex_match": 160, "re": [160, 211, 227, 229, 267, 269, 274, 417, 442, 528, 532, 535, 573, 577, 586, 587, 593, 602, 615, 689], "requestedauthncontext": 160, "statement": [160, 352], "exact": [160, 191, 288, 536, 587, 595], "better": [160, 419, 424, 482, 602, 682, 689], "samlacsindex": 160, "samlbind": [160, 162], "metadateurl": 160, "samlissuernam": [160, 162, 754, 832], "samlrejectunsignedassert": 160, "reject": [160, 162, 635, 637], "unsign": [160, 162, 289, 573], "samlsigningcertnam": [160, 754, 832], "samltwofactor": 160, "samluserfield": 160, "sendthumbprint": 160, "thumbprint": 160, "statecheck": 160, "req": [160, 227, 229, 267, 274, 314, 586, 587, 608, 615, 714], "storesamlrespons": 160, "life": [160, 505, 579, 689], "samlidppolici": 161, "acsurlrul": 162, "come": [162, 223, 247, 256, 288, 314, 547, 736, 746, 882, 886], "assertionconsumerserviceurl": [162, 754, 832], "attribute10expr": [162, 754, 832], "attribute10format": [162, 754, 832], "attribute10friendlynam": [162, 754, 832], "attribute11expr": [162, 754, 832], "attribute11format": [162, 754, 832], "attribute11friendlynam": [162, 754, 832], "attribute12expr": [162, 754, 832], "attribute12format": [162, 754, 832], "attribute12friendlynam": [162, 754, 832], "attribute13expr": [162, 754, 832], "attribute13format": [162, 754, 832], "attribute13friendlynam": [162, 754, 832], "attribute14expr": [162, 754, 832], "attribute14format": [162, 754, 832], "attribute14friendlynam": [162, 754, 832], "attribute15expr": [162, 754, 832], "attribute15format": [162, 754, 832], "attribute15friendlynam": [162, 754, 832], "attribute16expr": [162, 754, 832], "attribute16format": [162, 754, 832], "attribute16friendlynam": [162, 754, 832], "attribute1expr": [162, 754, 832], "attribute1format": [162, 754, 832], "attribute1friendlynam": [162, 754, 832], "attribute2expr": [162, 754, 832], "attribute2format": [162, 754, 832], "attribute2friendlynam": [162, 754, 832], "attribute3expr": [162, 754, 832], "attribute3format": [162, 754, 832], "attribute3friendlynam": [162, 754, 832], "attribute4expr": [162, 754, 832], "attribute4format": [162, 754, 832], "attribute4friendlynam": [162, 754, 832], "attribute5expr": [162, 754, 832], "attribute5format": [162, 754, 832], "attribute5friendlynam": [162, 754, 832], "attribute6expr": [162, 754, 832], "attribute6format": [162, 754, 832], "attribute6friendlynam": [162, 754, 832], "attribute7expr": [162, 754, 832], "attribute7format": [162, 754, 832], "attribute7friendlynam": [162, 754, 832], "attribute8expr": [162, 754, 832], "attribute8format": [162, 754, 832], "attribute8friendlynam": [162, 754, 832], "attribute9expr": [162, 754, 832], "attribute9format": [162, 754, 832], "attribute9friendlynam": [162, 754, 832], "encryptassert": [162, 754, 832], "encryptionalgorithm": [162, 754, 832], "des3": [162, 528, 529, 672, 683, 693, 754, 832], "aes128": [162, 398, 399, 528, 529, 754, 832], "aes192": [162, 398, 399, 528, 529, 754, 832], "aes256": [162, 398, 399, 528, 529, 672, 683, 693, 754, 832], "keytransportalg": 162, "v1_5": 162, "rsa_oaep": 162, "samlidp": 162, "nameidexpr": [162, 754, 832], "nameidentifi": [162, 754, 832], "nameidformat": [162, 754, 832], "x509subjectnam": [162, 754, 832], "windowsdomainqualifiednam": [162, 754, 832], "transient": [162, 754, 832], "rejectunsignedrequest": 162, "arriv": [162, 222, 288, 417, 535, 547, 588, 682, 689], "samlresposn": 162, "samlsigningcertvers": 162, "samlspcertnam": [162, 754, 832], "authnrequest": 162, "samlspcertvers": 162, "serviceproviderid": 162, "scenario": [162, 349, 405, 442, 574], "signassert": [162, 754, 832], "splogouturl": 162, "11": [167, 222, 442, 587], "12": [167, 417, 683, 736, 742, 746], "14": [167, 234, 326, 391, 789], "15": [167, 222, 417, 595, 635], "16": [167, 227, 336, 442, 445, 489, 497, 498, 528, 532, 582, 583, 827, 833], "5": [167, 264, 370, 417, 542, 582, 583, 615, 645, 670], "y": [167, 392, 442, 467, 568], "res_default": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 189, 224, 263, 270, 329, 353, 616, 753, 768, 779, 780, 815, 840, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 860, 862, 876, 877, 879], "ica_request": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "othertcp_request": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "aaa_request": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "aaa_respons": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "groupextract": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "bindind": [169, 170, 171, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189], "multifactor": [171, 172, 173, 175, 178, 180, 182, 183], "afterward": [171, 172, 173, 175, 178, 180, 182, 183], "tertiari": [172, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "succeed": [172, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "appflowlog": [186, 288, 314, 366, 369, 375, 442, 635, 637, 713, 865], "ipv46": [186, 288, 293, 314, 442, 865], "renam": [186, 267, 314, 776, 782], "consecut": [186, 288, 314, 398, 399, 417, 689, 695, 706, 865], "servicetyp": [186, 241, 243, 288, 293, 314, 366, 369, 375, 442, 635, 637, 865], "theme": [190, 819, 827, 875], "webauth": [191, 192], "fullreqexpr": [191, 587], "manual": [191, 234, 405, 442, 536, 587, 825], "scheme": [191, 534, 587], "successrul": 191, "resvserv": [194, 224, 228, 263, 266, 270, 273, 278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 614, 616, 620, 763, 778, 784], "actionscal": 196, "quiettim": 196, "scale_up": 196, "scale_down": 196, "vmdestroygraceperiod": 196, "vm": 196, "kept": [196, 396, 442, 482, 487, 534, 535, 595], "inact": [196, 234, 363, 565, 726, 736, 742, 746, 758], "destroi": 196, "apikei": 198, "sharedsecret": 198, "cloudstack": 198, "insid": [199, 442, 608, 661, 664, 895], "microsoftonlin": 199, "tenant": [199, 237], "vaultresourc": 199, "net": [199, 200, 326, 334, 512, 689, 695, 701, 706], "azurevaultnam": 200, "test": [200, 314, 417, 533, 595, 633, 635, 637, 659], "keyvault": [200, 678], "bot_bind_com": [205, 206, 207, 208, 209, 211, 212, 213, 214], "bot_blacklist": 205, "32": [205, 214, 314, 390, 405, 413, 442, 456, 528, 532, 582], "bot_blacklist_act": 205, "bot_blacklist_en": 205, "disbal": 205, "black": [205, 210], "bot_blacklist_typ": 205, "ipv6_subnet": [205, 214], "bot_blacklist_valu": 205, "logmessag": [205, 206, 207, 208, 209, 211, 212, 213, 214], "bot_captcha_act": 206, "challeng": 206, "bot_captcha_en": 206, "bot_captcha_url": 206, "fingerprint": [206, 210, 215, 654], "captcharesourc": 206, "graceperiod": 206, "successfulli": [206, 360, 528], "muteperiod": 206, "try": 206, "silent": [206, 496, 535, 564, 600], "mute": 206, "requestsizelimit": 206, "avoid": [206, 602, 681, 689, 695, 701, 706, 716, 742], "ddo": [206, 207], "retryattempt": 206, "solv": 206, "waittim": 206, "bot_iprep_act": 207, "combind": 207, "bot_iprep_en": 207, "repuat": 207, "bot_ipreput": 207, "reuput": 207, "ip_bas": 207, "malici": 207, "botnet": 207, "infect": 207, "zombi": [207, 563, 565], "master": [207, 360, 363, 413, 568, 689, 882, 886, 888], "spam_sourc": 207, "spam": 207, "forum": 207, "scanner": 207, "reconnaiss": 207, "probe": [207, 288, 314, 369, 417, 442, 453, 538, 563, 564, 600, 635, 637, 760, 761], "brute": [207, 577], "flood": [207, 335, 563], "malwar": 207, "webroot": 207, "score": [207, 525], "contact": [207, 231, 343, 646, 664], "phish": 207, "kind": [207, 350, 528, 532], "fraud": 207, "click": [207, 263], "game": 207, "anonym": [207, 667], "onion": 207, "aka": 207, "tor": 207, "darknet": 207, "mobile_threat": 207, "harm": 207, "windows_exploit": 207, "offer": 207, "distributig": 207, "shell": [207, 537, 538], "rootkit": 207, "worm": 207, "virus": 207, "web_attack": 207, "ifram": 207, "tor_proxi": 207, "exit": [207, 582, 583], "cloud_aw": 207, "amazon": 207, "cloud_gcp": 207, "googl": [207, 595, 742], "platform": [207, 234, 521, 682, 689, 695, 701, 706], "cloud_azur": 207, "cloud_oracl": 207, "oracl": [207, 241, 297, 314, 366, 369, 375, 417, 423, 442, 635, 637], "cloud_ibm": 207, "ibm": 207, "cloud_salesforc": 207, "salesforc": 207, "bot_km_detection_en": 208, "keyboard": [208, 210, 602, 827, 833], "mous": [208, 210, 827, 833], "bot_km_expression_nam": 208, "bot_km_expression_valu": 208, "vlaue": 208, "bot_log_expression_en": 209, "bot_log_expression_nam": 209, "bot_log_expression_valu": 209, "bot_enable_black_list": 210, "bot_enable_ip_reput": 210, "bot_enable_rate_limit": 210, "bot_enable_tp": 210, "bot_enable_white_list": 210, "white": [210, 214, 535], "devicefingerprint": 210, "devicefingerprintact": 210, "devicefingerprintmobil": 210, "android": [210, 827, 833], "io": [210, 211, 827, 833], "dfprequestlimit": [210, 215], "headlessbrowserdetect": 210, "headless": 210, "kmdetect": 210, "kmeventspostbodylimit": 210, "km": [210, 211], "kmjavascriptnam": 210, "sessioncooki": [210, 215], "signaturemultipleuseragentheaderact": 210, "seen": [210, 349, 396, 535], "checklast": 210, "signaturenouseragentheaderact": 210, "spoofedreqact": 210, "good": [210, 525], "trapact": 210, "trapurl": 210, "whenev": [210, 222, 340, 527], "http_full_head": 210, "bot_rate_limit_act": 211, "bot_rate_limit_en": 211, "bot_rate_limit_typ": 211, "source_ip": [211, 212], "geoloc": [211, 212], "countri": [211, 459, 461, 462, 664], "ja3_fingerprint": 211, "bot_rate_limit_url": 211, "bot_ratelimit": 211, "cookienam": [211, 314, 413, 442], "countrycod": 211, "af": 211, "ax": 211, "al": 211, "dz": 211, "ao": 211, "ai": 211, "aq": 211, "am": [211, 222], "au": 211, "AT": 211, "az": 211, "b": [211, 289, 582, 615, 651], "bh": 211, "bd": 211, "bb": 211, "BY": 211, "BE": 211, "bz": 211, "bj": 211, "bm": 211, "bt": 211, "bo": 211, "bq": 211, "ba": 211, "bw": [211, 641], "br": [211, 497, 498, 499], "bn": 211, "bg": 211, "bf": 211, "bi": 211, "kh": 211, "cm": [211, 482], "cv": 211, "ky": 211, "cl": 211, "cx": 211, "cc": 211, "co": [211, 442], "cg": [211, 238], "cd": 211, "ck": 211, "hr": 211, "cu": 211, "cw": 211, "cy": 211, "cz": 211, "dk": 211, "dj": 211, "dm": 211, "ec": [211, 335, 340, 345, 375], "sv": 211, "gq": 211, "er": 211, "ee": 211, "et": [211, 726, 754], "fk": 211, "fo": 211, "fj": 211, "fr": [211, 546], "gf": 211, "pf": [211, 398, 399, 641], "tf": 211, "ga": 211, "gm": 211, "ge": [211, 568], "de": [211, 528, 529, 650, 672, 683, 693], "gh": 211, "gi": 211, "gr": 211, "gl": 211, "gd": 211, "gp": 211, "gu": 211, "gt": [211, 568], "gg": 211, "gn": 211, "gw": 211, "gy": 211, "ht": 211, "hm": 211, "va": 211, "hn": 211, "hk": 211, "hu": 211, "IN": [211, 641], "ir": 211, "iq": 211, "im": 211, "il": 211, "IT": 211, "jm": 211, "je": 211, "jo": 211, "kz": 211, "ke": 211, "ki": 211, "xk": 211, "kw": 211, "kg": 211, "la": [211, 233, 234, 409, 417], "lv": 211, "l": [211, 392, 456, 523], "lr": [211, 233, 234, 525], "ly": 211, "li": 211, "lt": [211, 568], "lu": 211, "mo": 211, "mk": 211, "mg": 211, "mw": 211, "mv": 211, "ml": 211, "mt": 211, "mh": 211, "mq": 211, "mr": 211, "mu": 211, "yt": 211, "fm": 211, "md": 211, "mc": 211, "mn": 211, "me": [211, 442], "m": [211, 442, 525, 542, 582, 615, 760, 761], "ma": 211, "mz": 211, "mm": 211, "na": [211, 417, 459], "nr": 211, "np": 211, "nl": 211, "nc": 211, "nz": 211, "ni": 211, "ne": [211, 568], "nu": 211, "nf": [211, 568], "kp": 211, "mp": [211, 564], "om": 211, "pk": 211, "pw": 211, "p": [211, 582, 583, 760, 761], "pa": [211, 424], "pg": 211, "py": 211, "pe": [211, 406, 523, 547, 568, 574, 725, 726], "ph": 211, "pn": 211, "pl": 211, "pt": 211, "pr": 211, "qa": 211, "ro": 211, "ru": 211, "rw": 211, "bl": 211, "sh": 211, "kn": 211, "lc": 211, "mf": 211, "pm": [211, 222], "vc": 211, "sm": [211, 833], "st": [211, 689, 706], "sa": [211, 398, 399], "sn": 211, "sl": 211, "sg": 211, "sx": 211, "sk": 211, "si": 211, "sb": 211, "sza": 211, "ss": 211, "lk": 211, "sd": [211, 588], "sr": 211, "sj": 211, "sz": 211, "se": 211, "sy": [211, 528, 532, 573, 736], "tw": 211, "tj": 211, "tz": 211, "th": 211, "tg": 211, "tk": 211, "TO": 211, "tt": 211, "tn": 211, "tr": 211, "tc": 211, "tv": 211, "ug": 211, "ua": 211, "ae": [211, 398, 399, 528, 650, 672, 683, 693], "gb": 211, "um": 211, "uz": 211, "vu": 211, "ve": 211, "vn": 211, "vg": 211, "vi": 211, "wf": 211, "eh": 211, "zm": 211, "zw": 211, "timeslic": [211, 542], "thei": [211, 222, 325, 331, 369, 379, 405, 459, 535, 542, 637, 755, 756, 827, 833, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 865, 866, 867, 870, 876, 877, 879], "bot_tp": 212, "bot_tps_act": 212, "mitigi": 212, "bot_tps_en": 212, "bot_tps_typ": 212, "request_url": 212, "bot_trap_url": 213, "bot_trap_url_insertion_en": 213, "bot_whitelist": 214, "bot_whitelist_en": 214, "bot_whitelist_typ": 214, "bot_whitelist_valu": 214, "defaultnonintrusiveprofil": 215, "nonintrus": 215, "iprep": 215, "cronjob": 215, "24": [215, 442, 528, 667, 736, 742, 746], "hour": [215, 330, 539, 641, 667, 726, 736, 742, 746, 772], "bot_bypass": 215, "bot_stat": 215, "bot_log": 215, "javascriptnam": 215, "trapurlautogener": 215, "trapurlinterv": 215, "trapurllength": 215, "dynamicrout": [217, 407, 537, 538, 789, 890], "ipv6dynamicrout": [217, 407, 789, 890], "work": [217, 288, 332, 347, 452, 453, 482, 523, 568, 789, 827, 833, 890], "vtysh": [217, 789, 890], "ownergroup": [218, 219, 394, 403, 621, 622, 623, 629, 630, 786, 787, 788, 790, 791], "bridgeag": 221, "devicevlan": 221, "multicast": [221, 505], "muticast": 221, "vni": [221, 890, 891, 892, 893], "ethernet": [221, 234, 403, 406, 789, 890], "resid": [221, 246, 379, 523], "absexpiri": 222, "00": [222, 547, 884, 885, 886, 887], "contentgroup": [222, 227], "23": [222, 336], "18": [222, 635], "absexpirygmt": 222, "gmt": [222, 547], "alwaysevalpolici": 222, "prefetch": [222, 226], "cachecontrol": 222, "expireatlastbyt": 222, "receipt": [222, 264, 563, 564], "flashcach": 222, "flash": [222, 641], "poll": [222, 241, 578, 716], "pet": 222, "heurexpiryparam": 222, "heurist": [222, 264, 776], "hitparam": 222, "parameter": 222, "128": [222, 314, 390, 405, 442, 528, 585, 654], "hitselector": 222, "abstract": 222, "pixl": [222, 230], "flush": [222, 314, 335, 340, 341, 345, 366, 369, 420, 442, 535, 547, 561, 563, 564, 635, 637, 717, 742, 865], "restrict": [222, 234, 667, 742, 827, 833], "ignoreparamvaluecas": 222, "compar": [222, 226, 523, 630], "ignorereloadreq": 222, "reload": 222, "guard": 222, "compliant": [222, 535], "behavior": [222, 335, 340, 403, 406, 442, 537, 538, 574, 582, 865], "ignorereqcachinghdr": 222, "pragma": 222, "insertag": 222, "calcul": [222, 234, 363, 387, 390, 416, 417, 458, 503, 535, 563, 564, 713], "insertetag": 222, "etag": [222, 535], "With": [222, 264, 314, 369, 419, 635, 637, 647, 689, 695, 696, 701, 706, 742, 825, 827, 833, 865], "repeat": [222, 419, 835], "insertvia": 222, "invalparam": 222, "invalselector": 222, "invalrestrictedtohost": 222, "lazydnsresolv": 222, "matchcooki": 222, "maxress": 222, "memlimit": [222, 226, 351, 487, 562], "effect": [222, 288, 314, 335, 375, 413, 442, 573, 574, 615, 673, 689, 706, 882, 886], "minhit": 222, "minress": [222, 264], "persistha": 222, "pressur": 222, "polleverytim": 222, "That": [222, 234, 359, 389], "stale": [222, 755, 756, 758, 827, 833], "prefetchmaxpend": [222, 226], "outstand": [222, 226, 241, 563, 564, 637], "prefetchperiod": 222, "prefetchperiodmillisec": 222, "millisecond": [222, 246, 363, 375, 379, 405, 417, 427, 505, 535, 542, 552, 563, 564, 589, 600, 611, 617, 681, 682, 689, 888], "quickaborts": 222, "quick": 222, "abort": 222, "relexpiri": 222, "relexpirymillisec": 222, "removecooki": 222, "selectorvalu": 222, "tosecondari": [222, 225], "mysql": [222, 241, 297, 314, 366, 369, 375, 417, 423, 424, 442, 609, 613, 635, 637], "mssql": [222, 241, 297, 314, 366, 369, 375, 417, 423, 424, 442, 613, 635, 637], "weaknegrelexpiri": 222, "neg": [222, 227, 335, 340, 341, 716], "307": 222, "403": 222, "404": [222, 608], "410": [222, 682], "weakposrelexpiri": 222, "200": [222, 246, 419, 542, 559, 596, 608], "399": 222, "similar": [222, 234, 442, 718], "basefil": [222, 264], "86000": 222, "600": 222, "256": [222, 482, 528, 683], "deltaj": 222, "nsfeo": 222, "1994752": 222, "involv": [223, 442], "precededefrul": 224, "res_overrid": [224, 263, 270, 329, 353, 419, 424, 616, 753, 768, 779, 780, 815], "httpquic_res_overrid": [224, 263, 616], "httpquic_res_default": [224, 263, 616], "httpstatu": 225, "ignoremarkerobject": 225, "marker": 225, "yet": [225, 369, 564, 637], "includenotreadyobject": 225, "onto": 225, "enablebypass": 226, "nocach": [226, 227], "affect": [226, 574], "enablehaobjpersist": 226, "never": [226, 827, 833, 865], "maxpostlen": 226, "practic": [226, 528], "verifyus": 226, "unless": [226, 232, 288, 463, 464, 587, 648], "rogu": 226, "hostname_and_ip": 226, "141": [226, 379], "may_cach": 227, "cachabl": 227, "may_nocach": 227, "inval": 227, "invalgroup": 227, "invalobject": 227, "storeingroup": 227, "_nongetreq": 227, "_cacheablecachecontrolr": 227, "cache_control": 227, "is_publ": 227, "is_max_ag": 227, "is_must_revalid": 227, "is_proxy_revalid": 227, "is_s_maxag": 227, "mssql_req": 229, "mssql_re": 229, "mysql_req": 229, "mysql_r": 229, "httpquic_r": [229, 267, 619], "_reqbuiltindefault": 229, "selectornam": [230, 542, 543, 713], "hbcustominterv": 231, "heartbeat": [231, 234, 246, 379, 539, 641], "proxyauthservic": 231, "proxymod": [231, 349], "first_boot": 232, "boot": [232, 526], "new_password": 232, "demo_netscal": [232, 463, 464], "v2": [232, 398, 399, 417, 463, 464, 512, 547, 642, 648, 649], "netscaler_nsip": [232, 293, 314, 419, 442, 445, 463, 464, 559], "netscaler_nitro_protocol": [232, 293, 314, 419, 442, 445, 463, 464, 559], "netscaler_validate_cert": [232, 293, 314, 419, 442, 445, 463, 464, 559], "netscaler_save_config": [232, 293, 314, 419, 442, 445, 463, 464, 559], "nsroot": [232, 244, 463, 464, 523, 742, 746], "strongpassword": [232, 742], "newverystrongpassword": 232, "cla": [233, 234], "redund": [233, 234], "gbp": [233, 234, 521], "svmcmd": 233, "svm": 233, "fire": 233, "bandwidthhigh": 234, "mbp": [234, 521], "greater": [234, 335, 344, 365, 366, 386, 390, 417, 419, 442, 446, 503, 532, 535, 641, 681, 742], "bandwidthnorm": 234, "normal": [234, 370, 379, 559, 587, 641, 760, 761, 827, 833], "exceed": [234, 375, 386, 442, 496, 641, 713], "conndistr": 234, "flowctl": 234, "frame": [234, 535, 599, 600], "claus": 234, "ieee": 234, "802": [234, 523, 786, 787, 788], "congest": [234, 525, 564, 600], "paus": 234, "peer": [234, 379, 398, 399, 404, 406, 409, 496, 553, 563, 564, 568, 580, 610, 689, 695, 701, 706, 754, 832, 888], "achiev": 234, "rx": [234, 568], "tx": [234, 568], "rxtx": 234, "haheartbeat": 234, "hamonitor": 234, "mon": 234, "ifalia": 234, "alia": [234, 328, 665, 666, 689, 691, 692, 697, 698, 703, 704, 709, 710, 827, 833], "readabl": 234, "lamac": 234, "don": 234, "randomli": 234, "linkredund": 234, "lag": 234, "lrminthroughput": 234, "throughput": [234, 641], "met": [234, 641, 834, 839], "subchannel": 234, "divid": [234, 563, 564, 865], "standbi": 234, "fall": [234, 370, 623, 624, 641], "below": [234, 288, 366, 375, 417, 442, 528, 563, 641, 667], "macdistr": 234, "initit": 234, "measur": [234, 417], "crc": [234, 789], "transmit": [234, 563, 568, 600, 789], "1500": 234, "lesser": 234, "jumbo": [234, 613], "9216": 234, "howev": [234, 335, 340, 379, 417, 418, 512, 635, 689, 695, 706, 713, 789], "9000": [234, 314], "backplan": [234, 247, 641], "78": [234, 314], "plane": [234, 403, 717], "1578": 234, "whatev": 234, "9138": 234, "possibl": [234, 264, 288, 379, 462, 630, 632, 666, 685, 689, 695, 701, 706, 711, 724, 775, 837, 838], "speed": [234, 264, 641, 865], "1000": [234, 542], "10000": [234, 587], "25000": 234, "40000": 234, "50000": 234, "100000": 234, "tagal": 234, "1q": [234, 523, 786, 787, 788], "nativ": 234, "trunk": 234, "deprec": [234, 337, 487, 574], "creator": 235, "rolearn": 236, "iam": 236, "role": [236, 742], "arn": 236, "applicationid": 237, "applicationsecret": 237, "tenantidentifi": 237, "allowdtls12": 238, "dtls1": [238, 695, 706], "allowedudtvers": 238, "udt": 238, "edt": [238, 387], "v4": 238, "v5": 238, "v7": 238, "blockonallowedngstktprof": 238, "createdbi": 238, "allowedngstktprofil": 238, "csvserverticketingdecoupl": 238, "decoupl": 238, "activationcod": [239, 522], "connectorresid": 239, "onprem": [239, 522], "cpx": 239, "controllerfqdn": [239, 242], "sdproxi": 239, "controllerport": 239, "stage": [239, 865], "product": [239, 417, 521], "dev": [239, 568], "instanceid": 239, "resourceloc": [239, 242], "nonftumod": 240, "ftu": 240, "azurepollperiod": 241, "azuretagnam": 241, "azuretagvalu": 241, "boundservicegroupsvctyp": 241, "ftp": [241, 297, 314, 366, 369, 375, 389, 392, 417, 442, 482, 523, 537, 538, 547, 568, 595, 635, 637, 827, 833], "ssl_bridg": [241, 366, 369, 375, 442, 568, 635, 637], "nntp": [241, 288, 366, 369, 375, 417, 442, 568, 635, 637], "rpcsvr": [241, 568, 635, 637], "adn": [241, 323, 326, 327, 328, 331, 333, 334, 340, 342, 343, 344, 347, 349, 370, 568, 635, 637], "rtsp": [241, 297, 314, 366, 369, 375, 417, 442, 479, 482, 490, 491, 535, 568, 635, 637], "dhcpra": [241, 442, 568, 635, 637], "sip_udp": [241, 297, 314, 366, 369, 375, 423, 442, 494, 568, 613, 635, 637], "sip_tcp": [241, 297, 314, 366, 369, 375, 423, 442, 494, 613, 635, 637], "sip_ssl": [241, 314, 366, 369, 375, 442, 635, 637], "dns_tcp": [241, 297, 314, 442, 635, 637], "adns_tcp": [241, 635, 637], "mongo": [241, 314, 442, 635, 637], "mongo_tl": [241, 314, 442, 635, 637], "radiuslisten": [241, 635, 637], "ssl_diamet": [241, 297, 314, 442, 635, 637, 716], "tftp": [241, 389, 442, 482, 635, 637], "syslogtcp": [241, 442, 635, 637], "syslogudp": [241, 442, 635, 637], "ssl_fix": [241, 442, 568, 635, 637], "user_tcp": [241, 442, 635, 637], "user_ssl_tcp": [241, 442, 635, 637], "logstream_ssl": [241, 635, 637], "mqtt": [241, 297, 314, 417, 419, 423, 424, 442, 613, 615, 619, 635, 637], "mqtt_tl": [241, 297, 314, 442, 635, 637], "quic_bridg": [241, 423, 442, 613, 635, 637], "grace": [241, 369, 539, 633, 635, 637], "shutdown": [241, 369, 635, 637], "servicegroupnam": [241, 367, 368, 369, 373, 375, 417, 442, 445, 446, 636, 637, 638, 700, 701, 702, 703, 704], "ssl_push": [241, 314, 442, 889], "azuretag": 241, "vservernam": [241, 412, 452, 705, 706, 707, 708, 709, 710, 711, 837, 838], "vsvrbindsvcport": 241, "subnetresourcelocationmap": 242, "listenpolici": [243, 288, 314, 442, 865], "listenprior": [243, 288, 314, 442, 865], "clip": [244, 370, 527, 537, 538, 574, 646, 648], "cco": [244, 641], "var": [245, 460, 461, 463, 464, 659, 667, 678], "bookmark": [245, 378, 755, 756, 827, 833, 837, 838], "nstemplat": 245, "rc": [245, 378], "conf": [245, 378, 382, 523, 741], "inetd": 245, "httpd": 245, "sshd_config": 245, "enckei": 245, "nslw": 245, "bin": 245, "krb5": 245, "lib": 245, "likewis": 245, "wi": [245, 417], "tomcat": 245, "webapp": 245, "catalina": 245, "java_hom": 245, "jre": 245, "locdb": [245, 460, 461], "misc": [245, 378], "all_plus_misc": [245, 378], "krb": [245, 378], "app_catalog": [245, 378], "all_minus_misc": [245, 378], "backplanebasedview": 246, "bkplane": 246, "clid": 246, "clusterproxyarp": 246, "deadinterv": [246, 379, 888], "down": [246, 247, 256, 288, 314, 363, 366, 369, 370, 371, 375, 379, 417, 419, 442, 496, 527, 537, 538, 563, 564, 595, 602, 633, 635, 637, 716, 865, 882, 886, 888], "hellointerv": [246, 379, 888], "msec": [246, 417, 567], "dfdretainl2param": 246, "ext": 246, "steer": [246, 256, 359, 424, 442, 515, 516, 635], "health": [246, 288, 314, 363, 366, 369, 370, 375, 379, 417, 442, 538, 634, 635, 637, 641, 889], "inc": [246, 379], "nodegroup": [246, 247, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260], "transit": [246, 314, 366, 369, 375, 417, 442, 635, 637], "preemption": [246, 882, 886], "preempt": [246, 247], "spare": 246, "processloc": [246, 359, 424, 442, 635], "quorumtyp": 246, "quorum": [246, 641], "major": [246, 482, 539, 641, 648], "onlin": 246, "retainconnectionsonclust": [246, 442], "retain": [246, 389, 406, 419, 442], "join": [246, 442, 563, 608, 742], "passiv": [246, 247, 288, 314, 368, 442, 537, 538, 563, 634, 636, 865], "syncstatusstrictmod": [246, 379], "accordingli": [246, 314, 442], "tupl": [247, 335, 408, 419, 442, 865], "clearnodegroupconfig": 247, "prefer": [247, 262, 333, 366, 370, 375, 379, 410, 442, 578, 579, 629, 630], "goe": [247, 256, 363, 442, 527, 827, 833, 882, 886], "elect": [247, 882, 886], "tunnelmod": 247, "prempt": 256, "rejoin": 256, "ownership": [256, 349], "till": [256, 398, 535, 716], "pick": [256, 406, 654], "addvaryhead": [262, 264], "vari": [262, 264, 409, 538], "intermedi": [262, 264, 657], "cmptype": 262, "gzip": [262, 264], "nocompress": 262, "deltatyp": 262, "delta": [262, 264], "perurl": 262, "perpolici": 262, "correl": [262, 652], "varyheadervalu": [262, 264], "polic": 263, "drag": 263, "cmpbypasspct": 264, "cmplevel": 264, "best": [264, 528, 563], "bestspe": 264, "bestcompress": 264, "cmponpush": [264, 535], "quantum": [264, 682, 689], "accumul": [264, 681], "externalcach": 264, "heurexpiri": 264, "heurexpiryhistwt": 264, "weightag": 264, "histor": 264, "ratio": 264, "give": [264, 419, 424], "75": 264, "heurexpirythr": 264, "multipli": [264, 419, 458, 563, 564], "125": 264, "smallest": 264, "policytyp": 264, "quantums": [264, 682, 689], "servercmp": 264, "resact": 265, "icapprofilenam": 268, "ifserverdown": 268, "noinspect": [268, 271, 272], "contentisnpect": 268, "resum": [268, 396, 442, 482, 487, 682, 689], "remoteservic": 268, "modif": [268, 288, 335, 523, 547], "inlineinspect": [268, 275], "outgo": [268, 288, 314, 375, 406, 442, 547, 582, 583, 760, 761, 893], "intrus": [268, 442], "mirror": [268, 275, 379, 482], "clone": [268, 275], "captur": [268, 568], "Not": [269, 343, 419, 535, 586, 587, 590, 592, 593, 595, 608, 773], "sensit": [269, 586, 587, 590, 592, 593, 595, 742, 773], "xp": [269, 528, 532, 573, 586, 587, 593, 615], "reserv": [269, 351, 487, 528, 532, 538, 542, 573, 586, 587, 593, 682, 890], "enumer": [269, 586, 587, 593, 827, 833], "dataset": [269, 528, 532, 573, 584, 585, 586, 587, 590, 593, 595, 615], "stringmap": [269, 528, 532, 573, 586, 587], "resultexpr": [269, 587], "istag": 269, "returntyp": [269, 587], "treat": [269, 314, 363, 538, 566, 587, 629, 630, 719], "num": [269, 587], "bool": [269, 587], "notifi": [271, 363, 386, 398, 399, 419, 421, 611, 617, 682, 689, 695, 701, 706], "There": [272, 288, 528, 532, 574, 612, 618, 682, 689], "suspend": [273, 620], "egressinterfac": 275, "egress": 275, "egressvlan": 275, "ingressinterfac": 275, "ingress": 275, "ingressvlan": [275, 554], "targetvserv": [278, 279, 280, 281, 282, 283, 284, 285, 286, 289, 290, 291, 292, 293, 296, 313], "revers": [278, 279, 280, 281, 282, 283, 285, 286, 288, 290, 291, 292, 314, 342, 417, 442, 588, 635, 637, 827, 833], "csw": [284, 289], "backendssl": 288, "backupvserv": [288, 314, 375, 442, 889], "unavail": [288, 314, 335, 427, 442, 635, 637, 742, 889], "cachetyp": [288, 635, 637], "transpar": [288, 417, 442, 564, 635, 637, 689, 825, 827, 833], "cacheabl": [288, 314, 442, 635, 637, 889], "wherea": [288, 383], "hdx": [288, 835], "cachevserv": 288, "clttimeout": [288, 314, 366, 369, 442, 563, 635, 637, 889], "idl": [288, 314, 366, 369, 375, 442, 453, 465, 487, 490, 494, 496, 534, 535, 563, 564, 565, 600, 635, 637, 716, 717, 742, 829, 889], "destinationvserv": 288, "disableprimaryondown": [288, 314, 375, 442], "disallowserviceaccess": 288, "dnsvservernam": [288, 332, 827, 833], "downstateflush": [288, 314, 366, 369, 442, 635, 637, 865], "ghost": 288, "httpprofilenam": [288, 314, 442, 635, 637, 865], "icmpvsrrespons": [288, 314, 442, 865], "criterion": [288, 865], "asterisk": [288, 664], "wildcard": [288, 419, 462, 495, 563, 664], "l2conn": [288, 314, 408, 442, 467, 865], "obsolet": 288, "onpolicymatch": 288, "originusip": 288, "probeport": [288, 314, 442], "monitr": [288, 314, 442], "probeprotocol": [288, 314, 442], "healthcheck": [288, 314, 442, 716], "probesuccessresponsecod": [288, 314, 442], "reus": [288, 467, 534, 535, 536, 573, 689, 695, 701, 706], "rhistat": [288, 314, 442, 537, 538, 865], "hostrout": [288, 314, 537, 538, 865], "sopersistencetimeout": [288, 314, 375, 442, 889], "sothreshold": [288, 314, 375, 442, 889], "dynamicconnect": [288, 314, 375, 442, 889], "kbp": [288, 314, 369, 542, 549, 635, 637, 781, 785], "srcipexpr": 288, "tcpprobeport": [288, 314, 442], "useoriginipportforcach": 288, "useportrang": 288, "dialog": [288, 336, 337, 366, 442, 512, 635, 689, 695, 706], "box": [288, 336, 337, 366, 442, 512, 602, 635, 689, 695, 706], "ut": 289, "incr": 289, "ement": 289, "targetvserverexpr": 293, "nitrous": [293, 314, 419, 442, 445, 559], "netscaler_nitro_us": [293, 314, 419, 442, 445, 559], "verysecretpassword": [293, 314, 419, 442, 445, 463, 464, 559], "netscaler_nitro_pass": [293, 314, 419, 442, 445, 559], "92": 293, "80": [293, 314, 442, 496, 568, 827, 833], "action1": 293, "stateupd": [294, 314], "cspolicylabeltyp": 297, "subtyp": 297, "unencrypt": 297, "multimedia": [297, 602], "internet": [297, 519, 827, 833], "voip": 297, "real": [297, 314, 442, 535, 713], "deliveri": [297, 417], "audio": [297, 383, 602], "video": [297, 602, 775, 776, 777, 781, 782, 783, 785], "media": 297, "dial": 297, "mqtt_jumbo_req": [299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 315, 316, 317, 318, 319, 374, 376, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 447, 448, 449, 450, 451, 596], "v": [299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 315, 316, 317, 318, 319, 582, 760, 761], "cs1": [299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 312, 313, 315, 316, 317, 318, 319, 320], "pol1": [299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 315, 316, 317, 318, 319], "101": [299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 315, 316, 317, 318, 319, 587], "lb1": [299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 311, 313, 315, 316, 317, 318, 319], "backupip": [310, 314, 371, 375], "cookiedomain": [310, 314, 413], "cookietimeout": [310, 314, 366, 371, 375], "live": [310, 314, 323, 325, 326, 327, 328, 330, 331, 333, 334, 335, 342, 343, 344, 347, 371, 372, 375, 547], "ttl": [310, 314, 323, 325, 326, 327, 328, 330, 331, 333, 334, 335, 342, 343, 344, 347, 366, 371, 372, 375, 419, 538, 547, 557, 558, 636, 637, 638, 645, 716, 761], "sitedomainttl": [310, 314, 371, 375], "gslb1": [312, 320], "vpn1": [312, 320], "authn401": [314, 442], "401": [314, 442], "authnprofil": [314, 442, 865], "backuppersistencetimeout": [314, 413, 442], "casesensit": 314, "180": 314, "120": [314, 580], "perist": [314, 413, 442], "dbprofilenam": [314, 442], "dnsprofilenam": [314, 325, 332, 340, 442, 635], "dnsrecordtyp": [314, 375], "aaaa": [314, 335, 341, 375, 417, 442, 615, 633], "httpsredirecturl": [314, 442], "redirectfromport": [314, 442], "insertvserveripport": [314, 442], "vip": [314, 379, 389, 406, 442, 463, 464, 537, 538, 663, 689, 882, 886], "vipaddr": [314, 442], "translat": [314, 366, 367, 368, 369, 389, 390, 405, 442, 485, 499, 502, 503, 568, 633, 742], "v6tov4map": [314, 442], "ipmask": [314, 442], "dot": [314, 350, 442, 459], "decim": [314, 442, 459, 713], "lead": [314, 335, 358, 363, 389, 403, 442, 554], "octet": [314, 442, 564], "240": [314, 442], "bit": [314, 330, 335, 363, 375, 390, 405, 417, 419, 442, 498, 499, 528, 564, 573, 585, 635, 637, 654, 670, 683, 689, 693, 695, 706], "former": [314, 442], "latter": [314, 442], "ippattern": [314, 442], "198": [314, 442], "51": [314, 442], "20": [314, 417, 419, 442, 532, 542, 567, 573, 615, 635], "96": [314, 390, 405, 442, 499], "111": [314, 442, 568], "254": [314, 409, 442], "vs1": [314, 442], "vs2": [314, 442], "224": [314, 442], "extent": [314, 442, 667], "mssqlserververs": [314, 442], "70": [314, 417, 442], "2000": [314, 417, 442, 542], "2000sp1": [314, 417, 442], "2005": [314, 417, 442, 497, 498], "2008": [314, 417, 442], "2008r2": [314, 417, 442], "2012": [314, 417, 442], "2014": [314, 417, 442], "mysqlcharacterset": [314, 442], "mysqlprotocolvers": [314, 442], "mysqlservercap": [314, 442], "capabl": [314, 417, 442, 564, 639], "mysqlserververs": [314, 442], "oracleserververs": [314, 442], "10g": [314, 442], "11g": [314, 442], "persistencebackup": [314, 413, 442], "sourceip": [314, 375, 397, 413, 442], "persistenceid": [314, 375], "persistencetyp": [314, 375, 413, 442], "cookieinsert": [314, 413, 442], "sslsession": [314, 442], "persistmask": [314, 375, 413, 442], "pushlabel": [314, 442], "inlin": [314, 352, 354, 417], "pushmulticli": [314, 442], "pushvserv": [314, 442, 889], "face": [314, 889], "quicprofilenam": [314, 442], "absorb": [314, 442], "redirectportrewrit": [314, 442, 689, 695, 706], "rtspnat": [314, 442], "sobackupact": [314, 375, 442], "usabl": [314, 375, 442], "somethod": [314, 375, 442, 889], "divert": 314, "sopersist": [314, 375, 442, 889], "maintain": [314, 375, 379, 442, 496, 535, 596, 657], "updateonbackendupd": 314, "targettyp": 314, "v6persistmasklen": [314, 375, 413, 442], "viphead": [314, 442], "lbvserver_1": 314, "policy_1": 314, "90": [314, 465, 468, 825], "conmultiplex": [321, 534, 535], "enablecachingconmuxoff": 321, "multiplex": [321, 535], "interpretqueri": 321, "databas": [321, 322, 417, 424, 442, 458, 460, 461, 487, 716, 717, 724, 726], "ecssubnet": [323, 326, 327, 328, 331, 333, 334, 342, 343, 344, 345, 347], "ipv6address": [323, 537, 633], "36000": [323, 326, 327, 328, 331, 333, 334, 342, 343, 344, 347], "3600": [323, 326, 327, 328, 330, 331, 333, 334, 342, 343, 344, 347], "authorit": [323, 326, 327, 328, 331, 333, 334, 335, 340, 342, 343, 344, 347, 349], "excluderul": 324, "elimin": 324, "mappedrul": 324, "synthesi": 324, "rr": [324, 442], "discard": [324, 458, 600, 713], "actiontyp": 325, "viewnam": [325, 337, 348, 364, 366], "gslbprefloc": 325, "cache_bypass": 325, "rewrite_respons": 325, "preferredloclist": [325, 337], "k": [326, 882, 886], "root": [326, 334, 335, 610, 657, 797], "193": 326, "129": 326, "3600000": [326, 334], "recordid": [327, 333, 347], "removedbi": 327, "OR": [327, 333], "issuwild": 327, "iodef": 327, "valuestr": 327, "aliasnam": [328, 570, 789], "canon": [328, 366], "canonicalnam": 328, "rsasha1": 330, "rsasha256": 330, "rsasha512": 330, "filenameprefix": 330, "signer": 330, "d": [330, 485, 492, 495, 736, 742, 746], "produc": [330, 417, 528, 681], "publish": [330, 865], "keysiz": [330, 528], "keytyp": [330, 674, 717], "ksk": 330, "keysigningkei": 330, "zsk": 330, "zonesigningkei": 330, "notificationperiod": [330, 661], "privatekei": [330, 399], "units1": [330, 417], "units2": [330, 417], "zonenam": [330, 349], "pref": 331, "stub": 332, "udp_tcp": 332, "accur": [333, 366, 713], "regexp": 333, "substitut": 333, "nameserv": [334, 636, 637, 638], "cacheecszeroprefix": 335, "scope": [335, 419, 424, 537, 573, 667], "Such": [335, 496, 865], "ti": 335, "cachehitbypass": 335, "cachenoexpir": 335, "frozen": 335, "cacherecord": [335, 340], "dns64timeout": 335, "dnsrootreferr": 335, "unrel": 335, "blank": [335, 336, 337, 531, 546, 764, 769], "dnssec": [335, 349], "ok": [335, 608], "edns0": 335, "opt": [335, 536, 678], "ecsmaxsubnet": 335, "edn": [335, 340, 375], "constraint": [335, 379], "maxcaches": 335, "megabyt": [335, 549, 562, 682], "maxnegativecaches": 335, "maxnegcachettl": 335, "nxdonain": 335, "nodata": [335, 341], "maxpipelin": 335, "clientip": [335, 419, 564], "maxttl": 335, "maxudppackets": 335, "minttl": 335, "namelookupprior": 335, "win": [335, 827, 833, 865], "nxdomainratelimitthreshold": 335, "nxdomain": [335, 341], "breach": [335, 368, 634, 636, 713], "got": [335, 363], "resolutionord": 335, "routin": 335, "onlyaqueri": 335, "onlyaaaaqueri": 335, "athenaaaaqueri": 335, "aaaathenaqueri": 335, "splitpktqueryprocess": 335, "split": [335, 347, 496, 827, 833], "in_sub": 336, "34": 336, "dns_default_act_drop": 337, "dns_default_act_cachebypass": 337, "cachebypass": 337, "preferredloc": [337, 459], "prefloclist": 337, "dns_req": [339, 619], "dns_re": [339, 619], "cacheecsrespons": 340, "cachenegativerespons": 340, "dnsanswerseclog": 340, "dnserrorlog": 340, "encount": 340, "dnsextendedlog": 340, "dnsquerylog": 340, "dropmultiqueryrequest": 340, "nocod": 340, "negrectyp": 341, "proxyrecord": 341, "rrsig": 341, "nsec": [341, 349], "reversedomain": 342, "represent": [342, 442, 884, 885, 886, 887], "addr": [342, 563], "arpa": 342, "whom": 343, "domainadmin": 343, "week": [343, 667], "originserv": 343, "serial": [343, 519, 654, 657, 667, 678], "transfer": [343, 375, 389, 537, 538, 827, 833, 865], "convent": 344, "awar": [344, 487], "_sip": 344, "_udp": 344, "aid": 344, "six": [347, 417], "dnssecoffload": 349, "own": [349, 370, 389, 403, 405, 406, 413, 442, 488, 538, 623, 624, 657], "subset": 349, "endpointkind": 350, "endpointlabelsjson": 350, "16k": 350, "endpointmetadata": 350, "structur": [350, 667], "frontend": [350, 568, 689], "endpointnam": 350, "2mb": [351, 487], "reduc": [351, 352, 354, 487, 534, 535, 563, 681, 682, 882, 886], "cachemaxag": 352, "maxag": [352, 689, 706], "convertimporttolink": 352, "css": [352, 354, 794], "csscombin": 352, "cssimginlin": 352, "small": [352, 682, 689, 827, 833], "2kb": 352, "background": 352, "cssinlin": 352, "main": [352, 657, 664, 889], "cssminifi": 352, "whitespac": 352, "csss": 352, "cssmovetohead": 352, "move": [352, 363, 369, 637, 689, 695, 706, 713], "head": [352, 417, 664, 827], "dnsshard": 352, "domainshard": 352, "htmlminifi": 352, "imggiftopng": 352, "gif": 352, "png": 352, "imginlin": 352, "imglazyload": 352, "scroll": 352, "imgshrinktoattrib": 352, "shrink": 352, "height": 352, "img": 352, "imgtojpegxr": 352, "jpeg": [352, 354], "jxr": 352, "imgtowebp": 352, "webp": 352, "jpgoptim": 352, "jsinlin": 352, "jsminifi": 352, "jsmovetoend": 352, "pageextendcach": 352, "cssinlinethress": 354, "imginlinethress": 354, "covert": 354, "jpegqualityperc": 354, "qualiti": [354, 525], "jsinlinethress": 354, "acl6nam": [359, 472, 502, 621], "aclnam": [359, 473, 557, 558, 623, 628], "connfailov": [359, 389, 396, 442, 623], "processor": 359, "sourceroutecach": 359, "da": 359, "slave": 360, "preview": [360, 536], "output": [360, 528, 582, 583, 602, 683, 684, 760, 761], "analyz": 360, "forcesync": 360, "nowarn": 360, "suppress": [360, 523, 582], "confirm": [360, 377, 382, 405, 523, 776], "autom": 360, "interrupt": [360, 589, 611, 617], "saveconfig": [360, 523], "particip": 360, "automaticconfigsync": 363, "dropldnsreq": 363, "round": [363, 370, 375, 395, 404, 407, 419, 442, 496, 563, 595, 623, 624, 689, 695, 706], "trip": [363, 370, 375, 689, 706], "rtt": [363, 370, 375, 525, 689, 706], "gslbconfigsyncmonitor": 363, "rsync": 363, "gslbsvcstatedelaytim": 363, "mep": [363, 370, 375, 641], "gslbsyncinterv": 363, "duartion": 363, "gslbsynclocfil": 363, "gslbsyncmod": 363, "incrementalsync": 363, "fullsync": 363, "gslbsyncsaveconfigcommand": 363, "ldnsentrytimeout": 363, "ldnsmask": 363, "ldnsprobeord": 363, "mepkeepalivetimeout": 363, "rtttoler": 363, "toler": [363, 375, 535], "newli": [363, 419], "old": [363, 489, 673, 682, 741, 742], "variat": [363, 417], "neglig": 363, "svcstatelearningtim": 363, "child": [363, 370, 442], "phase": 363, "adopt": 363, "honour": 363, "learnt": [363, 512], "nolbact": [363, 410, 419, 421], "decis": [363, 366, 368, 375, 383, 410, 419, 421, 442, 446, 634, 635, 636, 637, 682], "v6ldnsmasklen": 363, "servicenam": [364, 365, 366, 372, 375, 417, 442, 445, 446, 694, 695, 696, 697, 698, 699], "viewip": [364, 366], "predetermin": [364, 366, 442], "monitor_nam": [365, 368, 634, 635, 636], "monstat": [365, 368, 634, 636], "contribut": [365, 366, 634, 635], "cip": [366, 369, 523, 547, 635, 637], "ciphead": [366, 369, 523, 547, 635, 637], "cnameentri": 366, "hashid": [366, 367, 368, 369, 635, 636, 637, 638], "healthmonitor": [366, 369, 635, 637], "maxbandwidth": [366, 369, 542, 549, 635, 637], "consumpt": [366, 713], "maxclient": [366, 369, 523, 547, 635, 637, 641], "monitor_name_svc": [366, 369, 635, 637], "monthreshold": [366, 369, 635, 637], "sum": [366, 369, 375, 442, 635, 637], "naptrdomainttl": 366, "naptrord": 366, "naptrprefer": 366, "naptrreplac": 366, "naptrservic": 366, "publicip": [366, 367, 368, 369, 370, 389], "publicport": [366, 367, 368, 369], "gslbsvc": 366, "sitenam": [366, 369, 370], "sitepersist": [366, 369, 419, 424], "connectionproxi": [366, 369], "httpredirect": [366, 369], "siteprefix": [366, 367, 368, 369], "concaten": [366, 367, 368, 369, 442], "unset": [366, 367, 368, 369, 379, 407, 442, 530, 615, 667], "svrtimeout": [366, 369, 419, 635, 637], "serviceitem": [367, 368, 369], "autodelayedtrof": [369, 637], "movement": [369, 637], "trof": [369, 417, 442, 637], "fresh": [369, 637, 681, 689, 695, 701, 706], "dup_weight": [369, 637], "shut": [369, 633, 635, 637], "includememb": [369, 637], "alloc": [369, 467, 482, 489, 496, 519, 549, 575, 635, 637, 641], "backupparentlist": 370, "gsb": 370, "metricexchang": 370, "robin": [370, 375, 395, 404, 407, 419, 442, 623, 624], "proxim": [370, 375, 442, 459], "least": [370, 417, 442, 537, 538, 573, 643, 647, 882, 886], "naptrreplacementsuffix": 370, "nwmetricexchang": 370, "variou": [370, 405, 657, 664], "parentsit": 370, "topologi": [370, 408], "publicclip": 370, "behind": [370, 417], "sessionexchang": 370, "five": [370, 714], "siteipaddress": 370, "mip": [370, 379, 389, 404, 417, 523, 538, 637, 648], "sitetyp": 370, "triggermonitor": 370, "mepdown": 370, "mepdown_svcdown": 370, "situat": 370, "backupipflag": 371, "cookie_domain": [371, 375], "cookie_domainflag": 371, "o": [374, 376], "bank": [374, 376, 587], "ahead": [374, 376], "backuplbmethod": [375, 442], "roundrobin": [375, 442], "leastconnect": [375, 442], "leastresponsetim": [375, 442], "sourceiphash": [375, 419, 424, 442], "leastbandwidth": [375, 442], "leastpacket": [375, 442], "staticproxim": [375, 442], "customload": [375, 442], "backupsessiontimeout": 375, "considereffectivest": 375, "state_onli": 375, "disregard": 375, "abil": 375, "dynamicweight": 375, "servicecount": 375, "serviceweight": 375, "ecsaddrvalid": 375, "unrout": 375, "edr": 375, "iptyp": 375, "lbmethod": [375, 442], "mir": 375, "orderthreshold": [375, 442], "spill": 375, "impli": [375, 442, 535, 682, 689, 865], "gslbsvc1": 375, "gslbsvc2": 375, "gslbsvc3": 375, "50": [375, 442, 542], "kilobit": [375, 442], "toggleord": [375, 442], "ascend": [375, 442], "descend": [375, 442, 713], "deviat": [375, 417], "v6netmasklen": [375, 442], "failsaf": 379, "independ": [379, 406, 467, 482, 528, 681], "haprop": 379, "3010": 379, "hastatu": 379, "staysecondari": 379, "stai": [379, 835], "upgrad": [379, 392, 535, 827, 833, 865], "few": [379, 563], "suffer": 379, "downtim": [379, 417], "thu": [379, 419], "stayprimari": 379, "healthi": 379, "older": [379, 523, 713], "duplic": [379, 405, 641], "3003": 379, "64": [379, 497, 498, 499, 528, 532, 537, 573, 674], "neither": [379, 644], "nor": [379, 587, 644], "llb": 379, "maxflip": 379, "flip": [379, 641], "maxfliptim": 379, "syncvlan": 379, "222": [379, 442], "74": [379, 442], "clientaudioredirect": 383, "plai": 383, "sound": 383, "clientclipboardredirect": 383, "clipboard": [383, 602], "clientcomportredirect": 383, "clientdriveredirect": 383, "clientprinterredirect": 383, "printer": [383, 602, 827, 833], "clientusbdriveredirect": 383, "usb": 383, "connectclientlptport": 383, "lpt": 383, "localremotedatashar": 383, "html5": 383, "multistream": 383, "xenapp": [383, 827, 833, 865], "xendesktop": [383, 417, 827, 833, 865], "irrespect": [383, 537, 538, 563], "accessprofilenam": 384, "latencyprofilenam": 384, "latencyprofil": [384, 386], "l7latencymaxnotifycount": 386, "upper": [386, 563, 564, 742], "center": [386, 639], "l7latencymonitor": 386, "l7latencynotifyinterv": 386, "l7latencythresholdfactor": 386, "l7latencywaittim": 386, "l7latencyprofil": 386, "edtpmtuddf": 387, "df": [387, 407], "pmtud": [387, 546], "edtpmtuddftimeout": 387, "enablesronhafailov": 387, "reliabl": 387, "hdxinsightnonnsap": 387, "nsap": 387, "l7latencyfrequ": 387, "stateless": [389, 405, 442, 600], "privateip": 389, "proxyip": 389, "anetscal": 389, "vip6": [389, 395, 537], "tcpproxi": [389, 467, 627], "useproxyport": [389, 547, 623, 635, 637], "usip": [389, 405, 407, 512, 546, 635, 637], "usnip": [389, 407, 512, 546], "nat46fraghead": 390, "fragment": [390, 395, 404, 407, 503, 547, 582, 671], "nat46ignoreto": 390, "TOS": [390, 417, 442, 503], "nat46v6mtu": 390, "icmp": [390, 407, 417, 442, 465, 467, 475, 481, 482, 495, 496, 503, 537, 538, 547, 552, 760, 761], "nat46v6prefix": 390, "emb": [390, 405], "nat46zerochecksum": 390, "checksum": [390, 503, 563], "newer": 391, "async": 392, "progress": [392, 882, 886], "job": 392, "enhancedupgrad": 392, "resizeswapvar": 392, "swap": 392, "64bit": 392, "ncore": [392, 605, 726], "mcn": 392, "vmpe": 392, "build": [392, 646], "sftp": 392, "scp": 392, "constitu": 393, "dropfrag": [395, 404], "dropfragcputhreshold": [395, 404], "dropfragparamet": [395, 404], "snip6": [395, 537, 648], "srciproundrobin": [395, 404], "useclientsourceipv6": 395, "outer": [395, 403, 404, 442], "esp": 396, "recomend": 396, "espgatetimeout": 396, "ik": [396, 398, 399], "espsessiontimeout": 396, "ikesessiontimeout": 396, "destip": [397, 417, 442, 495, 825], "destip_alg": 397, "natip": [397, 482, 492, 495, 623, 624, 628], "natip_alg": 397, "sourceip_alg": 397, "encalgo": [398, 399], "hashalgo": [398, 399], "hmac_sha1": [398, 399], "hmac_sha256": [398, 399], "hmac_sha384": [398, 399], "hmac_sha512": [398, 399], "hmac_md5": [398, 399], "ikeretryinterv": [398, 399], "bring": [398, 399, 523, 528], "ikevers": [398, 399], "lifetim": [398, 399, 580], "livenesscheckinterv": [398, 399], "liveli": [398, 399], "retransmit": [398, 399, 405, 563, 564, 716], "perfectforwardsecreci": [398, 399], "replaywindows": [398, 399], "replai": [398, 399, 681, 689, 706], "retransmissiontim": [398, 399], "peerpublickei": 399, "psk": [399, 602, 604, 689, 706], "001": [400, 512, 635], "destport": [403, 417, 557, 558, 648, 825], "genev": 403, "6081": 403, "grepayload": 403, "carri": [403, 689, 706], "ethernetwithdot1q": 403, "ipsecprofilenam": 403, "ipip": 403, "remotesubnetmask": 403, "tosinherit": 403, "copi": [403, 417], "ToS": 403, "But": 403, "mulicast": 403, "vlantag": 403, "vnid": 403, "enablestrictrx": 404, "pbr": 404, "enablestricttx": 404, "useclientsourceip": 404, "dodad": 405, "dad": 405, "dhcpv6": 405, "natprefix": [405, 485, 497, 498], "ndbasereachtim": 405, "discoveri": [405, 458, 537], "adjac": [405, 504], "ndretransmissiontim": 405, "retransmiss": [405, 505, 525, 563, 564], "solicit": [405, 505], "ralearn": 405, "ra": [405, 442, 505, 506, 579, 629], "routerredirect": 405, "usipnatprefix": 405, "nat46": 405, "bdggrpproxyarp": 406, "bdgset": 406, "c2c": [406, 568], "broadcast": 406, "bridgeagetimeout": 406, "garponvridintf": 406, "garp": 406, "messagess": 406, "garprepli": 406, "repli": [406, 442, 564], "macmodefwdmypkt": 406, "maxbridgecollis": 406, "collis": [406, 489], "loop": 406, "mbfinstlearn": 406, "instant": 406, "mbf": [406, 467, 512, 546, 635], "mbfpeermacupd": 406, "mbf_instant_learn": 406, "10m": [406, 407, 682, 689], "tick": 406, "proxyarp": 406, "freebsd": 406, "returntoethernetsend": 406, "sender": 406, "rstintfonhafo": 406, "skipproxyingbsdtraff": 406, "stopmacmoveupd": 406, "usemymac": 406, "usenetprofilebsdtraff": 406, "earlier": 406, "acllogtim": 407, "allowclasseipv4": 407, "dropdfflag": 407, "dropipfrag": 407, "externalloopback": 407, "loopback": [407, 568, 825], "forwardicmpfrag": 407, "icmpgenratethreshold": 407, "pkt": [407, 641], "implicitaclallow": 407, "miproundrobin": 407, "overridernat": 407, "srcnat": 407, "tnlpmtuwoconn": 407, "pmtu": [407, 547, 671], "usipserverstraypkt": 407, "strai": 407, "3000": 407, "l2connmethod": 408, "vlanchannel": 408, "macchannel": 408, "macvlan": 408, "macvlanchannel": 408, "l4switch": 408, "sysprior": 409, "32768": 409, "selectionord": 410, "considerd": 410, "sequenc": [410, 442, 462, 564, 591, 594, 689, 695, 706], "Then": 410, "sipudp_req_overrid": [411, 609, 616], "sipudp_req_default": [411, 609, 616], "siptcp_req_overrid": [411, 609, 616], "siptcp_req_default": [411, 609, 616], "nat_req_overrid": [411, 609], "nat_req_default": [411, 609], "diameter_req_overrid": [411, 609, 616], "diameter_req_default": [411, 609, 616], "radius_req_overrid": [411, 609, 616], "radius_req_default": [411, 609, 616], "dns_req_overrid": [411, 609, 616], "dns_req_default": [411, 609, 616], "mqtt_req_overrid": [411, 609, 616], "mqtt_req_default": [411, 609, 616], "quic_overrid": [411, 609], "quic_default": [411, 609], "gslb_req_overrid": 411, "gslb_req_default": 411, "mastervserv": 413, "use_vserver_persist": 413, "usevserverpersist": 413, "compat": [413, 442], "oid": [414, 415, 417, 651], "metrict": [414, 415, 417], "snmpoid": [414, 415, 417], "metricthreshold": [416, 417], "metricweight": [416, 417], "monitornam": [416, 417, 418, 635], "acctapplicationid": 417, "acct": 417, "avp": [417, 442, 527, 615, 716], "cer": 417, "eight": [417, 587, 608], "were": [417, 442, 527, 662, 761], "soon": 417, "alertretri": 417, "monprobefail": 417, "authapplicationid": 417, "basedn": [417, 667], "binddn": [417, 667], "customhead": 417, "dispatch": 417, "drtm": 417, "adjust": [417, 564, 615], "accommod": [417, 496], "dispatcherip": 417, "dispatcherport": 417, "desktop": [417, 602], "ddc": 417, "xd": 417, "evalrul": 417, "ecv": 417, "row": [417, 482, 595], "text_elem": 417, "failureretri": 417, "ten": [417, 419], "firmwarerevis": 417, "firmwar": [417, 673], "revis": 417, "newsgroup": 417, "grpchealthcheck": 417, "grpcservicenam": 417, "grpcstatuscod": 417, "unimpl": 417, "hostipaddress": 417, "porch": 417, "car": 417, "httprequest": 417, "inbandsecurityid": 417, "inband": [417, 641], "no_inband_secur": 417, "lasvers": 417, "aac": 417, "logonpointnam": 417, "loginpag": 417, "lrtm": [417, 442], "maxforward": 417, "travers": 417, "mqttclientidentifi": 417, "mqttversion": 417, "mssqlprotocolvers": 417, "oraclesid": 417, "originhost": 417, "originrealm": 417, "pop3": 417, "xnc": 417, "xdm": 417, "conjunct": 417, "productnam": 417, "querytyp": [417, 633], "radaccountsess": 417, "radius_account": 417, "radaccounttyp": 417, "radapn": 417, "radframedip": 417, "radmsisdn": 417, "recv": 417, "respcod": 417, "resptimeout": [417, 681], "unreach": [417, 760, 761], "resptimeoutthresh": 417, "monresptimeoutabovethresh": 417, "monresptimeoutbelowthresh": 417, "rto": [417, 563, 564, 641], "satisfi": 417, "rtsprequest": 417, "scriptarg": 417, "verbatim": 417, "scriptnam": 417, "secondarypassword": 417, "securearg": 417, "sipmethod": 417, "invit": 417, "sipreguri": 417, "sipuri": 417, "sitepath": 417, "slash": [417, 585, 664], "snmpthreshold": 417, "snmpversion": 417, "sqlqueri": 417, "storedb": 417, "popul": [417, 465], "storefrontacctservic": 417, "tenanc": 417, "storefrontcheckbackendservic": 417, "expos": 417, "storenam": 417, "successretri": 417, "supportedvendorid": 417, "tos": 417, "tosid": [417, 442], "trofscod": 417, "mainten": 417, "trofsstr": 417, "appc": 417, "sta": [417, 814, 869], "nhop": 417, "http2": [417, 535, 689], "units3": 417, "units4": 417, "validatecr": 417, "xen": 417, "vendorid": [417, 716], "vendorspecificacctapplicationid": 417, "vendorspecificvendorid": 417, "vendorspecificauthapplicationid": 417, "stasecur": 417, "monitor1": 417, "crlcheck": [418, 656, 696, 702, 707, 813], "nextupd": [418, 681], "incomplet": [418, 535], "revok": [418, 667, 696], "ocspcheck": [418, 656, 696, 702, 707, 813], "allowboundsvcremov": 419, "svc": [419, 535], "svcgroup": 419, "thrown": 419, "tri": [419, 442, 602, 689, 695, 706, 792], "computedadccookieattribut": [419, 424], "understand": [419, 424, 482], "man": [419, 424], "literaladccookieattribut": [419, 424], "lbvar": [419, 424], "lbassign": [419, 424], "lbpol": [419, 424], "consolidatedlconn": 419, "find": [419, 442, 523, 615], "fewest": [419, 442], "consolid": 419, "consider": 419, "cookiepassphras": [419, 424], "dbsttl": [419, 636, 637, 638], "dropmqttjumbomessag": 419, "64k": 419, "httponlycookieflag": [419, 424], "risk": [419, 424], "lbhashalgorithm": [419, 424], "dictat": [419, 424], "urlhash": [419, 424, 442], "domainhash": [419, 424, 442], "destinationiphash": [419, 424, 442], "srcipdestiphash": [419, 424, 442], "srcipsrcporthash": [419, 424, 442], "user_token": [419, 424, 442], "callidhash": [419, 424, 442], "prac": [419, 424], "jarh": [419, 424], "lbhashfing": [419, 424], "finger": [419, 424], "expens": [419, 424, 689, 706], "maxpipelinenat": 419, "monitorconnectionclos": 419, "fin": [419, 465, 496, 563, 635, 637], "monitorskipmaxcli": 419, "preferdirectrout": 419, "intermediari": 419, "directli": [419, 458, 591, 594, 654, 760, 761, 827, 833], "retainservicest": 419, "startuprrfactor": 419, "ramp": 419, "gradual": 419, "said": [419, 792], "slow": [419, 442, 563, 564], "startup": [419, 442], "storemqttclientidandusernam": [419, 424], "useencryptedpersistencecooki": [419, 424], "sha2": [419, 424], "useportforhashlb": 419, "usesecuredpersistencecooki": [419, 424], "vserverspecificmac": 419, "farm": 419, "branch": [419, 651], "persistenceparamet": 420, "lbprof": 424, "dbslb": [424, 442], "lbprofilenam": [424, 442], "cket": 424, "upstream": [424, 442, 635], "proper": [424, 442, 496, 635, 657, 695, 706], "gatewaynam": [425, 426], "addrportvip": 427, "rport": [427, 494], "retrydur": 427, "503": 427, "rnatdstport": 427, "rnatsecuredstport": 427, "rnatsecuresrcport": 427, "rnatsrcport": 427, "sip503ratethreshold": 427, "adfsproxyprofil": 442, "adfspip": 442, "thod": 442, "bypassaaaa": 442, "runtim": [442, 568, 587, 608, 773], "overhead": 442, "datalength": 442, "dataoffset": 442, "offset": 442, "hashlength": 442, "healththreshold": 442, "bracket": [442, 664], "rotat": [442, 599], "previou": [442, 528, 566, 682, 689], "leastrequest": 442, "auditloghash": 442, "dst": 442, "in_subnet": 442, "mostli": [442, 602], "encapsul": [442, 536, 890], "dsr": 442, "macmoderetainvlan": 442, "macmod": 442, "maxautoscalememb": 442, "minautoscalememb": 442, "conform": 442, "newservicerequest": 442, "newservicerequestincrementinterv": 442, "newservicerequestunit": 442, "per_second": 442, "persistavpno": 442, "3588": 442, "z": [442, 467, 528, 532, 573, 615], "customserverid": [442, 635, 636, 637, 638], "urlpass": 442, "hexadecim": [442, 591, 594, 643, 674, 884, 885, 886, 887], "srcipdestip": 442, "callid": [442, 493], "rtspsid": 442, "fixsess": 442, "sendercompid": 442, "targetcompid": 442, "usersess": 442, "quicbridgeprofilenam": 442, "roll": 442, "my_vserv": 442, "recursionavail": 442, "thatsupport": 442, "redirurl": 442, "redirurlflag": 442, "resrul": 442, "setcooki": 442, "typecast_nvlist_t": 442, "server1": 442, "rhi": [442, 523, 537, 538], "netsal": 442, "vsvr_cntrld": [442, 537, 538], "unnecessari": 442, "skippersist": 442, "incas": 442, "relb": 442, "svc1": 442, "svc2": 442, "svc3": 442, "trofspersist": 442, "honor": [442, 755, 756, 827, 833], "s1": [442, 445, 568], "181": 442, "s2": 442, "sg1": 442, "test_lbvser": [442, 445], "wlm": [452, 453], "wlmname": [452, 453], "katimeout": 453, "1440": 453, "lbuid": 453, "holdtimetxmult": 458, "holdtim": 458, "transmitt": 458, "transceiv": [458, 639], "lldpdu": 458, "ipfrom": 459, "ipto": 459, "latitud": 459, "degre": 459, "geograph": [459, 462], "longitud": 459, "contin": [459, 462], "region": [459, 461, 462], "citi": [459, 461, 462, 664], "isp": [459, 461, 462], "organ": [459, 462, 664, 689, 695, 701, 706, 827, 833], "san": [459, 657, 664, 682], "jose": 459, "att": 459, "netscaler6": 460, "geoip": [460, 461], "country6": 460, "my_fil": 461, "my_location_fil": 461, "matchwildcardtoani": 462, "q1label": 462, "q2label": 462, "q3label": 462, "q4label": 462, "fourth": 462, "q5label": 462, "fifth": 462, "q6label": 462, "sixth": 462, "login_result": [463, 464], "print": [463, 464, 535, 582, 583, 760, 761], "sessionid": [463, 464, 491, 519, 654], "netscaler_nitro_auth_token": [463, 464], "1234567890": 463, "profile1": [465, 466, 467, 468, 485, 496], "lowport": 465, "highport": 465, "40": [465, 468, 542, 742], "rst": [465, 496, 535, 552, 563, 564], "transportprotocol": [465, 467, 495, 496], "appsattributesnam": 466, "appsprofil": 466, "appsattribut": 466, "appsprofilenam": [466, 467, 468, 475], "suffici": 467, "anyport": 467, "ippool": 467, "random": [467, 482, 489, 528, 532, 547, 577, 670, 785], "l2info": 467, "natpcb": [467, 565, 742], "still": [467, 564, 716], "outbound": 467, "lsnport": 468, "clientnam": [469, 470, 471, 472, 473, 482, 492], "client1": [469, 470, 471, 472, 473], "group1": [474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 736], "creation": [475, 481, 482, 494, 657, 722], "httphdrlogprofilenam": [476, 484], "logprofilenam": [477, 486], "poolnam": [478, 488, 489], "determinist": [478, 482, 489, 496], "rtspalgprofilenam": [479, 490], "sipalgprofilenam": [480, 494], "transportprofilenam": [481, 496], "allocpolici": 482, "sequenti": [482, 489], "exhaust": [482, 542], "ipaddr": 482, "dimension": 482, "column": [482, 713], "pb1": 482, "pb2": 482, "pb3": 482, "pbn": 482, "69": 482, "ftpcm": 482, "ip6profil": 482, "framework": 482, "sylog": 482, "stamp": [482, 681, 865], "nattyp": [482, 489, 492, 495], "enough": [482, 489], "now": [482, 489, 527, 528, 667, 758], "million": 482, "portblocks": 482, "sessionlog": 482, "sessionsync": [482, 487], "snmptraplimit": 482, "loghost": 484, "logmethod": 484, "logurl": 484, "logvers": 484, "aftr": 485, "lite": [485, 492, 495], "logcompact": 486, "compact": [486, 641, 827, 833], "logipfix": 486, "logsessdelet": 486, "logsubscrinfo": 486, "subscrsessionremov": 487, "ever": [487, 560], "4096": [488, 682, 689], "102": [488, 568], "29": 488, "189": 488, "pool1": [488, 489], "maxportrealloctmq": 489, "realloc": 489, "dealloc": [489, 520], "portblockalloc": 489, "portrealloctimeout": 489, "broken": 489, "rtspidletimeout": 490, "rtspportrang": 490, "rtsptransportprotocol": 490, "natport2": 492, "nat44": [492, 495], "b4": [492, 495], "datasessionidletimeout": 494, "opencontactpinhol": 494, "contactpinhol": 494, "openrecordroutepinhol": 494, "recordroutepinhol": 494, "openregisterpinhol": 494, "registerpinhol": 494, "openroutepinhol": 494, "routepinhol": 494, "openviapinhol": 494, "viapinhol": 494, "registrationtimeout": 494, "sipdstportrang": 494, "sipsessiontimeout": 494, "sipsrcportrang": 494, "siptransportprotocol": 494, "dsttd": 495, "static1": 495, "natport": 495, "subscrip": 495, "subscrport": 495, "finrsttimeout": 496, "ack": [496, 563, 564, 600, 713], "properli": 496, "groupsessionlimit": 496, "portpreservepar": 496, "pariti": [496, 528], "odd": [496, 564], "rtp": 496, "rtcp": 496, "portpreserverang": 496, "portquota": [496, 641], "500": [496, 689, 695], "sessionquota": [496, 641], "stuntimeout": 496, "stun": 496, "syncheck": 496, "syn": [496, 552, 563, 564], "synidletimeout": 496, "bmr1": [497, 498], "eabitlength": [497, 498], "psidoffset": [497, 498], "portsharingratio": [497, 498], "ce": [497, 498, 499], "edg": [497, 498, 546], "ea": 498, "psidlength": 498, "identifierport": 498, "psid": 498, "ruleipv6prefix": 498, "bripv6prefix": 499, "border": 499, "dmr": 499, "long": [499, 827, 833], "NOT": 499, "map1": [499, 500, 501], "2003": 499, "term": [499, 539], "mapbmrnam": 500, "mapdmrnam": 501, "nat64fraghead": 503, "nat64ignoreto": 503, "nat64v6mtu": 503, "nat64zerochecksum": 503, "ceaserouteradv": 505, "ceas": 505, "currhoplimit": 505, "defaultlifetim": 505, "linkmtu": 505, "managedaddrconfig": 505, "place": [505, 564, 713, 827, 833], "maxrtadvinterv": 505, "unsolicit": 505, "minrtadvinterv": 505, "onlyunicastrtadvrespons": 505, "unicast": [505, 582], "otheraddrconfig": 505, "reachabletim": 505, "retranstim": 505, "sendrouteradv": 505, "srclinklayeraddropt": 505, "ipv6prefix": [506, 579], "onlink": [506, 579], "inherit": [512, 633, 635, 716], "overridelsn": 512, "proxyprotocol": [512, 547], "proxyprotocolaftertlshandshak": 512, "doesnt": 512, "look": [512, 535], "handshak": [512, 564, 664, 689, 695, 696, 701, 706, 707, 711, 827], "proxyprotocoltxvers": 512, "srcippersist": [512, 621, 623, 627], "rewriteip": 513, "srcportrang": 514, "dfd": [515, 516], "hashmethod": [515, 516], "bindtyp": 519, "countavail": 519, "licensedir": 519, "serialno": 519, "lac": 519, "useproxi": 519, "hand": 520, "left": [520, 585, 615], "subtract": [520, 537, 538], "assig": 520, "singleton": [520, 573], "platinum": 521, "vs10": 521, "ve10": 521, "vp10": 521, "vs25": 521, "ve25": 521, "vp25": 521, "vs50": 521, "ve50": 521, "vp50": 521, "vs200": 521, "ve200": 521, "vp200": 521, "vs1000": 521, "ve1000": 521, "vp1000": 521, "vs3000": 521, "ve3000": 521, "vp3000": 521, "vs5000": 521, "ve5000": 521, "vp5000": 521, "vs8000": 521, "ve8000": 521, "vp8000": 521, "vs10000": 521, "ve10000": 521, "vp10000": 521, "vs15000": 521, "ve15000": 521, "vp15000": 521, "vs25000": 521, "ve25000": 521, "vp25000": 521, "vs40000": 521, "ve40000": 521, "vp40000": 521, "vs100000": 521, "ve100000": 521, "vp100000": 521, "cp1000": 521, "vcpu": [521, 541, 574], "adcpassword": 522, "adcusernam": 522, "deviceprofilenam": 522, "premis": [522, 895], "centralmgmtserv": 522, "validatecert": [522, 553], "changedpassword": 523, "downgrad": 523, "releas": [523, 534, 741], "minor": [523, 547, 641, 648], "weak": 523, "config1": 523, "config2": 523, "cookievers": [523, 547], "crportrang": [523, 547], "exclusivequotamaxcli": [523, 547], "exclusivequotaspillov": [523, 547], "ftpportrang": [523, 547], "grantquotamaxcli": [523, 547], "quota": [523, 542, 547], "grantquotaspillov": [523, 547], "httpport": [523, 547, 827, 833], "nsvlan": 523, "ignoredevicespecif": 523, "commonli": [523, 827, 833], "dg": 523, "standalon": [523, 573, 827, 833], "maxreq": [523, 535, 547, 635, 637], "outtyp": 523, "pmtumin": [523, 547], "pmtutimeout": [523, 547], "rbaconfig": 523, "securecooki": [523, 547], "weakpassword": 523, "adher": 523, "strong": [523, 742], "promptstr": [524, 736, 742, 746], "harqretxdelai": 525, "harq": 525, "lr1coeflist": 525, "coeffici": 525, "label1": 525, "lr1probthresh": 525, "probabl": 525, "model": 525, "differenti": 525, "net1": 525, "net2": 525, "net3": 525, "lr2coeflist": 525, "lr2probthresh": 525, "minrttnet1": 525, "minrttnet2": 525, "minrttnet3": 525, "net1cclscal": 525, "net1csqscal": 525, "signal": [525, 742], "excel": [525, 827, 833], "fair": 525, "net1label": 525, "net1logcoef": 525, "net2cclscal": 525, "net2csqscal": 525, "net2label": 525, "net2logcoef": 525, "connnect": [525, 563], "net3cclscal": 525, "net3csqscal": 525, "net3label": 525, "net3logcoef": 525, "dhcpclient": 526, "saverout": 526, "diameterident": [527, 716], "rfc3588": 527, "serverclosepropag": 527, "pend": [527, 563], "iv": [528, 674], "init": [528, 573, 641], "voector": 528, "iv_data": 528, "keyid_iv_data": 528, "rc4": [528, 529, 654], "keyvalu": [528, 529, 532], "hex": [528, 532], "insecur": 528, "applciat": 528, "56": [528, 583], "applicast": 528, "equival": [528, 530, 610], "cbc": [528, 529, 683], "tripl": [528, 672, 683, 693], "vector": [528, 674, 676], "xore": 528, "ciphertext": 528, "pad": [528, 532], "cfb": [528, 529], "ofb": [528, 529], "keystream": 528, "ecb": [528, 529], "electron": 528, "codebook": 528, "alpha": [528, 532, 573], "xpath": [528, 532, 573, 615], "pkcs5": 528, "lnegth": 528, "alraadi": 528, "block_length": 528, "10126": 528, "ansi_x923": 528, "cbd": 528, "multitpl": 528, "base64": [529, 728], "brief": 530, "plu": [530, 608], "syslogparam": 530, "tracefunct": 530, "tracevari": 530, "md2": 532, "md4": 532, "sha224": [532, 654, 682], "sha384": [532, 654, 682], "sha512": [532, 654, 682], "impos": 532, "28": 532, "48": 532, "dropinvalreq": [534, 535], "http2serversid": 534, "ignoreconnectcodingschem": 534, "insnssrvrhdr": 534, "logerrresp": 534, "markconnreqinv": [534, 535], "markhttp09inv": [534, 535], "maxreusepool": [534, 535], "peak": [534, 535], "nssrvrhdr": 534, "nsbuild": 534, "adpttimeout": 535, "adapt": [535, 564, 825, 827, 833], "decreas": 535, "allowonlywordcharactersandhyphen": 535, "za": [535, 615], "z0": 535, "9_": 535, "visibl": [535, 573, 827, 833], "21": 535, "7e": 535, "altsvc": 535, "altsvcvalu": 535, "apdexcltresptimethreshold": 535, "satisfactori": 535, "apdex": 535, "frustrat": 535, "transcat": [535, 713], "And": [535, 563, 716], "clientiphdrexpr": 535, "dropextracrlf": 535, "extra": [535, 865], "lf": 535, "dropextradata": 535, "grpcholdlimit": 535, "trailer": 535, "grpcholdtimeout": 535, "grpclengthdelimit": 535, "http2altsvcfram": 535, "alt": 535, "http2direct": 535, "http2headertables": 535, "http2initialconnwindows": 535, "http2initialwindows": 535, "http2maxconcurrentstream": 535, "http2maxemptyframespermin": 535, "http2maxframes": 535, "willing": [535, 600], "http2maxheaderlists": 535, "plain": [535, 650], "http2maxpingframespermin": 535, "http2maxresetframespermin": 535, "http2maxsettingsframespermin": 535, "http2minseverconn": 535, "http2strictciph": 535, "http3": 535, "http3maxheaderblockedstream": 535, "http3maxheaderfieldsections": 535, "http3maxheadertables": 535, "qpack": 535, "httppipelinebuffs": 535, "pipelin": [535, 568], "incomphdrdelai": 535, "markhttpheaderextrawserror": 535, "markrfc7230noncompliantinv": 535, "rfc7230": 535, "marktracereqinv": 535, "maxheaderfieldlen": 535, "beyond": [535, 635, 637, 682, 742], "mani": [535, 538, 761, 882, 886], "minreusepool": 535, "passprotocolupgrad": 535, "persistentetag": 535, "reqtimeout": [535, 536], "reqtimeoutact": [535, 536], "reusepooltimeout": 535, "rtsptunnel": 535, "websocket": 535, "socket": [535, 582], "allow204": 536, "204": 536, "connectionkeepal": 536, "aliv": [536, 564, 635, 637], "hosthead": 536, "inserthttprequest": 536, "inserticaphead": 536, "nx": 536, "emit": 536, "icapprofil": 536, "reqmod": 536, "respmod": 536, "earli": [536, 682, 689, 706], "remaind": 536, "previewlength": 536, "queryparam": 536, "arg": 536, "arg1": 536, "val1": 536, "arg2": 536, "val2": 536, "userag": 536, "advertiseondefaultpartit": [537, 538], "decrementhoplimit": 537, "decrement": [537, 538], "graphic": [537, 538], "secureonli": [537, 538], "zebo": [537, 538], "kernel": [537, 538, 582, 722], "redistribut": [537, 538], "ip6hostrtgw": 537, "cost": [537, 538, 629, 630], "mgmtaccess": [537, 538], "mptcpadvertis": [537, 538], "mptcp": [537, 538, 563, 564, 568], "add_addr": [537, 538], "ndowner": 537, "stripe": [537, 538, 629, 630, 648], "networkrout": [537, 538], "ospf6lsatyp": 537, "lsa": [537, 538], "intra_area": 537, "ospfarea": [537, 538], "area": [537, 538, 602, 615, 827, 833], "intra": 537, "ownerdownrespons": [537, 538], "restrictaccess": [537, 538], "nonmanag": [537, 538], "formip6": 537, "underli": [537, 538, 605], "free": [537, 538, 568, 865], "bsd": [537, 538], "telnet": [537, 538], "gslbsiteip": [537, 538], "adnssvcip": 537, "radiuslistenersvcip": 537, "vmac": [537, 538, 570, 882, 884, 885, 886, 887], "vrrp": [537, 538, 882, 886, 888], "vserverrhilevel": [537, 538], "ONE": [537, 538, 882, 886], "one_vserv": [537, 538], "all_vserv": [537, 538], "ae80": 537, "1024": 537, "45aa": 537, "fe3b": 537, "9843": 537, "arpown": 538, "arprespons": 538, "decrementttl": 538, "hostrtgw": 538, "icmprespons": 538, "type1": 538, "ospflsatyp": 538, "type5": 538, "4095": 538, "wide": [538, 563, 574], "gslbip": 538, "hostip": 538, "188": 538, "179": 538, "alert1gracetimeout": 539, "rais": [539, 589, 611, 617, 716], "alert2gracetimeout": 539, "heartbeatinterv": 539, "inventoryrefreshinterv": 539, "inventori": 539, "licenseexpiryalerttim": 539, "nearer": 539, "forceupdateip": 541, "overwritten": [541, 755, 827, 833], "licensemod": 541, "interest": 541, "cico": 541, "selfmanagedpool": 541, "selfmanagedvcpu": 541, "licenseserverip": 541, "limitidentifi": [542, 544], "limittyp": 542, "smooth": 542, "bursti": 542, "permit": [542, 552, 827, 833], "spread": 542, "evenli": 542, "anytim": [542, 689, 706], "request_r": 542, "limit_req": 542, "trapsintimeslic": 542, "5000": [542, 635], "130": 542, "null": [542, 573, 629, 630], "dumpsess": 545, "fastramp": 546, "l2mode": 546, "l3mode": 546, "usesourceip": 546, "cka": [546, 635, 637], "clientkeepal": 546, "tcpb": [546, 635, 637], "tcpbuffer": 546, "macbasedforward": 546, "sradv": 546, "dradv": 546, "iradv": 546, "sradv6": 546, "dradv6": 546, "rise_apbr": 546, "rise_rhi": 546, "bridgebpdu": 546, "advancedanalyticsstat": 547, "advanac": 547, "aftpallowrandomsourceport": 547, "icaport": 547, "internaluserlogin": 547, "ns_comm_kei": 547, "ipttl": 547, "mgmthttpport": 547, "mgmthttpsport": 547, "secureicaport": 547, "servicepathingressvlan": 547, "tcpcip": 547, "use_proxy_port": 547, "09": 547, "kst": 547, "asia": 547, "seoul": 547, "partitionnam": [548, 549, 550, 551, 737, 747], "unrestrict": 549, "maxmemlimit": 549, "minbandwidth": 549, "partitionmac": 549, "icmpthreshold": 552, "tcprstthreshold": 552, "milli": 552, "0xffffffff": 552, "thing": 552, "tcpthreshold": 552, "udpthreshold": 552, "talk": 553, "servicefunctionnam": 554, "servicepathnam": [555, 556], "serviceindex": 556, "servicefunct": 556, "constitut": [556, 591, 594], "aclact": [557, 558], "estsess": [557, 558], "srcipv6": [557, 568], "basethreshold": 559, "throttl": 559, "aggress": 559, "cleanuplevel": 560, "surgeq": 561, "kilobyt": 562, "ackonpush": [563, 564], "acknowledg": [563, 564, 600], "autosyncookietimeout": 563, "syncooki": [563, 564], "synattack": 563, "compacttcpoptionnoop": 563, "nop": 563, "connflushifnomem": 563, "half_closed_and_idl": 563, "fifo": 563, "oldest": 563, "connflushthr": 563, "halfclosed_and_idl": 563, "whole": [563, 564], "delayedack": [563, 564], "delinkclientserveronrst": 563, "delink": 563, "downstaterst": 563, "initialcwnd": [563, 564], "kaprobeupdatelastact": [563, 564], "ka": [563, 564], "learnvsvrmss": 563, "mss": [563, 564], "limitedpersist": 563, "maxburst": [563, 564], "maxdynserverprob": 563, "maxpktpermss": [563, 564], "maxsynackretx": 563, "maxsynhold": 563, "maxsynholdperprob": 563, "maxtimewaitconn": 563, "time_wait": 563, "proactiv": 563, "clean": [563, 565, 827, 833], "minrto": [563, 564], "mptcpchecksum": 563, "dss": [563, 564], "mptcpclosemptcpsessiononlastsfclos": 563, "fast": 563, "subflow": [563, 564], "mptcpconcloseonpassivesf": 563, "data_fin": 563, "fast_clos": 563, "mptcpfastcloseopt": 563, "abruptli": [563, 565], "mptcpimmediatesfcloseonfin": 563, "mptcpmaxpendingsf": 563, "mptcpmaxsf": 563, "mptcppendingjointhreshold": 563, "mptcpreliableaddaddr": 563, "echo": [563, 564, 760], "mptcprtostoswitchsf": 563, "mpctp": 563, "mptcpsendsfresetopt": 563, "mp_tcprst": 563, "mptcpsfreplacetimeout": 563, "sublow": 563, "mptcpsftimeout": 563, "mptcpusebackupondss": 563, "tunabl": 563, "msslearndelai": 563, "msslearninterv": 563, "nagl": [563, 564], "oooqsiz": [563, 564], "pktperretx": [563, 564], "recvbuffs": 563, "sack": [563, 564], "slowstartincr": [563, 564], "synattackdetect": 563, "synholdfastgiveup": 563, "tcpfastopencookietimeout": 563, "tfo": 563, "120second": 563, "tcpfintimeout": 563, "tcpmaxretri": 563, "freed": 563, "wsval": [563, 564], "ackaggreg": 564, "applyadaptivetcp": 564, "buffers": 564, "burstratecontrol": 564, "clientiptcpopt": 564, "clientiptcpoptionnumb": 564, "dropestconnontimeout": 564, "drophalfclosedconnontimeout": 564, "dsack": 564, "dupackthresh": 564, "dupack": 564, "dynamicreceivebuff": 564, "ecn": 564, "establishclientconn": 564, "conn_establish": 564, "on_first_data": 564, "fack": 564, "flavor": 564, "westwood": 564, "bic": 564, "cubic": [564, 600], "nile": 564, "frto": 564, "recoveri": [564, 641, 865], "hystart": 564, "kaconnidletim": 564, "kamaxprob": 564, "kaprobeinterv": 564, "maxcwnd": 564, "mpcapablecbit": 564, "multipath": 564, "mptcpdropdataonpreestsf": 564, "mptcpfastopen": 564, "fastopen": 564, "mptcpsessiontimeout": 564, "rateqmax": 564, "rstmaxack": 564, "rstwindowattenu": 564, "attenu": 564, "correct": [564, 825], "sendbuffs": 564, "sendclientportintcpopt": 564, "slowstartthreshold": 564, "threhsold": 564, "spoofsyndrop": 564, "taillossprob": 564, "tail": 564, "loss": 564, "tcpfastopen": 564, "tcpfastopencookies": 564, "trim": 564, "nearest": [564, 595], "tcpmode": 564, "tcprate": 564, "tcpsegoffload": 564, "nic": [564, 568], "1323": 564, "anycli": 565, "ridden": 565, "anyserv": 565, "anytcpcli": 565, "anytcpserv": 565, "halfclos": 565, "httpclient": 565, "httpserver": 565, "newconnidletimeout": 565, "nontcpzombi": 565, "reducedfintimeout": 565, "reducedrsttimeout": 565, "tcpclient": 565, "tcpserver": 565, "samples": 566, "denot": 566, "Its": [566, 574], "20940": 567, "349": 567, "capdroppkt": 568, "capsslkei": 568, "doruntimecleanup": 568, "temp": 568, "fileid": 568, "files": 568, "mb": [568, 575, 682], "treshold": 568, "rollov": 568, "2gb": 568, "relop": 568, "dstip": 568, "2001": 568, "db8": 568, "dstipv6": 568, "srcport": [568, 825], "le": 568, "dstport": 568, "vlanid": 568, "connid": 568, "pcb": 568, "ppeid": 568, "svcname": 568, "startswith": 568, "endswith": 568, "lb_vserver": 568, "cs_vserver": 568, "intf": 568, "service_typ": 568, "svc_http": 568, "rpcclnt": 568, "svc_dn": 568, "monitor_udp": 568, "monitor_p": 568, "svc_mysql": 568, "svc_mssql": 568, "pktsteer": 568, "svc_aaa": 568, "service_unknown": 568, "traffic_domain_id": 568, "44": 568, "443": [568, 637, 826], "service1": 568, "vserver1": 568, "inmemorytrac": 568, "dump": 568, "onstop": 568, "onthefli": 568, "nomerg": 568, "new_rx": 568, "txb": 568, "ns_fr_tx": 568, "policybas": 568, "cycl": 568, "pernic": 568, "cap": 568, "skiplocalssh": 568, "skiprpc": 568, "tracebuff": 568, "16kb": 568, "traceformat": 568, "nscap": 568, "pcap": 568, "As": [570, 574, 827, 833], "segreg": 570, "easili": 570, "referenc": 573, "ifful": 573, "lru": [573, 682], "recent": [573, 713], "ifnovalu": 573, "uniniti": 573, "ifvaluetoobig": 573, "truncat": 573, "proce": [573, 695, 706], "ulong": [573, 584], "theoret": 573, "much": [573, 634, 635], "cpuyield": 574, "relinquish": 574, "hypervis": 574, "granular": 574, "masterclockcpu1": 574, "buffersizemb": 575, "customreqhdr": 575, "customrsphdr": 575, "fact": 577, "autokeylogsec": 577, "autokei": [577, 578], "regener": [577, 689, 695, 706], "power": [577, 578, 641], "revokelogsec": 577, "seed": [577, 772], "trustedkei": 577, "symmetr": [577, 578, 632, 682], "cryptographi": 577, "cryptograph": 578, "keygen": 578, "maxpol": 578, "minpol": 578, "preferredntpserv": 578, "correctli": 578, "autonomusprefix": 579, "autonomu": 579, "decrementprefixlifetim": 579, "depricateprefix": 579, "depric": 579, "onlinkprefix": 579, "prefixpreferredlifetim": 579, "prefixvalidelifetim": 579, "announcemulticount": 580, "announc": 580, "opcod": 580, "maxmaplif": 580, "86400": [580, 736, 742, 746], "24hour": 580, "minmaplif": 580, "thirdparti": 580, "roughli": 582, "datalen": 582, "8192": [582, 682, 689], "infinit": [582, 583, 695, 706], "defalut": [582, 583, 760, 761], "fit": 582, "diagnos": [582, 583], "problem": [582, 583], "q": [582, 583, 716, 717, 760, 761], "quiet": [582, 583], "summari": [582, 583, 761], "noth": [583, 760, 761], "patsetfil": [584, 590, 592], "endrang": 585, "end_rang": 585, "inclus": 585, "clientsecuritymessag": [586, 827, 833], "bodyexpr": 587, "deriv": [587, 654], "cacheforsec": 587, "calloutcontentgroup": 587, "stem": 587, "expr": [587, 608], "hostexpr": 587, "urlstemexpr": 587, "mysit": 587, "mappolicynam": 588, "publicli": 588, "su": 588, "tu": 588, "charset": [591, 592], "xnn": [591, 594], "xc3": [591, 594], "xbc": [591, 594], "utf_8": [591, 592], "replace_al": [591, 615], "delete_al": [591, 615], "insert_after_al": [591, 615], "insert_before_al": [591, 615], "patsetfile1": 592, "canaryurl": 595, "urlset": 595, "csv": 595, "matchedid": 595, "privateset": 595, "rowsepar": 595, "subdomainexactmatch": 595, "subdomain": [595, 689, 706], "ex": 595, "won": 595, "reqbands": 596, "99": 596, "199": 596, "299": 596, "respbands": 596, "routingalgorithm": 598, "routabl": [598, 827, 833], "serveridlength": 598, "serverid": [598, 635, 636, 637, 638], "quicsecrettimeout": 599, "new_token": [599, 600], "ackdelayexpon": 600, "expon": [600, 674, 693], "activeconnectionidlimit": 600, "activeconnectionmigr": 600, "congestionctrlalgorithm": 600, "newreno": 600, "bbr": 600, "initialmaxdata": 600, "initialmaxstreamdatabidiloc": 600, "bidirect": 600, "initialmaxstreamdatabidiremot": 600, "initialmaxstreamdatauni": 600, "unidirect": 600, "initialmaxstreamsbidi": 600, "initialmaxstreamsuni": 600, "maxackdelai": 600, "maxidletimeout": 600, "pto": 600, "maxudpdatagramsperburst": 600, "datagram": [600, 671], "maxudppayloads": 600, "newtokenvalidityperiod": 600, "retrytokenvalidityperiod": 600, "statelessaddressvalid": 600, "nodeprefix": 601, "cidr": 601, "addusernameinrdpfil": 602, "audiocapturemod": 602, "tab": [602, 827, 833], "rdc": 602, "keyboardhook": 602, "onloc": 602, "onremot": 602, "infullscreenmod": 602, "multimonitorsupport": 602, "randomizerdpfilenam": 602, "Will": [602, 736, 742, 746], "everytim": 602, "rdpfilenam": 602, "pop": 602, "launch": 602, "henc": [602, 689], "experi": 602, "rdpcookievalid": 602, "due": [602, 716], "disrupt": 602, "rdpcustomparam": 602, "rdphost": 602, "rdplinkattribut": 602, "rdplisten": 602, "rdpurloverrid": 602, "rdpvalidateclientip": 602, "redirectclipboard": 602, "redirectcomport": 602, "comport": 602, "redirectdr": 602, "redirectpnpdevic": 602, "pnpdevic": 602, "redirectprint": 602, "videoplaybackmod": 602, "effici": 602, "playback": 602, "rdpip": 604, "rdpport": 604, "rdpredirect": 604, "presenc": 604, "broker": 604, "mst": 604, "warm": [605, 641], "restart": [605, 641, 682, 689, 695, 706, 827, 833], "entitytyp": 606, "dnsrecord": 606, "dospolici": 606, "gslbdomain": 606, "inatsess": 606, "nsmemori": 606, "nspbr": 606, "nspbr6": 606, "rnatip": 606, "tunnelip": 606, "tunnelip6": 606, "potenti": [608, 776], "htmlpage": 608, "respondwithhtmlpag": 608, "reasonphras": 608, "phrase": [608, 650, 657, 661, 663, 664, 672, 683, 693], "responsestatuscod": 608, "302": 608, "stringbuild": 608, "paragraph": 608, "backupsite2": 608, "http_url_saf": 608, "sqlresponse_ok": 608, "sqlresponse_error": 608, "mqtt_jumbo_req_overrid": 609, "mqtt_jumbo_req_default": 609, "cacertfil": [610, 667], "mqtt_jumbo": 613, "refinesearch": 615, "refin": 615, "regex_select": 615, "0x": 615, "9a": 615, "hello": [615, 671, 682, 689, 711], "exp": 615, "printabl": 615, "tild": [615, 664], "xpath_json": 615, "xpath_html": 615, "predefin": [615, 665, 666, 697, 703, 709], "patset1": 615, "datset": 615, "dataset1": 615, "999": 615, "before_str": 615, "_builder": 615, "_expr": 615, "builder": 615, "string_builder_expr": 615, "search_expr": 615, "occurr": 615, "replace_http_r": 615, "replace_sip_r": 615, "insert_http_head": 615, "header_string_builder_expr": 615, "contents_string_builder_expr": 615, "delete_http_head": 615, "corrupt_http_head": 615, "corrupt": 615, "recogn": 615, "my_head": 615, "mhey_ad": 615, "insert_befor": 615, "target_expr": 615, "insert_aft": 615, "replace_diameter_header_field": 615, "stringbuilderexpress": 615, "replace_dns_header_field": 615, "replace_dns_answer_sect": 615, "new_rrset_a": 615, "new_rrset_aaaa": 615, "replace_mqtt": 615, "insert_mqtt": 615, "appropri": [615, 639], "insert_after_mqtt": 615, "topic": 615, "unsubscrib": 615, "insert_before_mqtt": 615, "delete_mqtt": 615, "clientless_vpn_encod": 615, "clientless_vpn_encode_al": 615, "clientless_vpn_decod": 615, "clientless_vpn_decode_al": 615, "insert_sip_head": 615, "delete_sip_head": 615, "corrupt_sip_head": 615, "othertcp_res_overrid": 616, "othertcp_res_default": 616, "sipudp_res_overrid": 616, "sipudp_res_default": 616, "siptcp_res_overrid": 616, "siptcp_res_default": 616, "diameter_res_overrid": 616, "diameter_res_default": 616, "radius_res_overrid": 616, "radius_res_default": 616, "dns_res_overrid": 616, "dns_res_default": 616, "mqtt_res_overrid": 616, "mqtt_res_default": 616, "norewrit": [617, 618], "http_re": 619, "othertcp_req": 619, "othertcp_r": 619, "clientless_vpn_req": 619, "clientless_vpn_r": 619, "sipudp_req": 619, "sipudp_r": 619, "diameter_req": 619, "diameter_r": 619, "radius_req": 619, "radius_r": 619, "mqtt_req": 619, "mqtt_re": 619, "siptcp_req": 619, "siptcp_r": 619, "redirectport": [621, 623], "natip6": 622, "rnat4": 623, "retainsourceportrang": 625, "distanc": [629, 630], "msr": [629, 630], "routetyp": [629, 630], "fib6": 629, "cost1": 630, "172": [630, 635, 827, 833], "commandstr": 631, "rsstype": 632, "asymmetr": 632, "gracefulli": [633, 635], "translationip": 633, "translationmask": 633, "ap": 633, "southeast": 633, "toward": [634, 635], "accessdown": 635, "viabl": 635, "cleartextport": [635, 689, 706], "contentinspectionprofilenam": 635, "OF": [635, 637], "monconnectionclos": [635, 637], "pathmonitor": [635, 637], "pathmonitorindv": [635, 637], "rtspsessionidremap": [635, 637], "123": 635, "12345": 635, "autodisabledelai": 637, "autodisablegrac": 637, "memberport": 637, "foo": 637, "test1": [637, 657], "addrnpi": 639, "plan": 639, "landlin": 639, "wap": 639, "esm": 639, "addrrang": 639, "sme": 639, "addrton": 639, "nation": [639, 664], "clientmod": 639, "transmitteronli": 639, "receiveronli": 639, "msgqueue": 639, "msgqueuesiz": 639, "deliver_sm_resp": 639, "pdu": 639, "normalvalu": 641, "thresholdvalu": 641, "synflood": 641, "bad": [641, 671], "bkhb": 641, "1sec": 641, "3600sec": 641, "86400sec": 641, "trapnam": 641, "mgmt": 641, "reqrat": 641, "rxrate": 641, "txrate": 641, "fan": 641, "voltag": 641, "temperatur": 641, "mon_probe_fail": 641, "prop": 641, "conflict": [641, 809], "rl": 641, "pp": 641, "compil": 641, "dp": 641, "dyn": 641, "prof": 641, "gram": 641, "1024kei": 641, "2048kei": 641, "4096kei": 641, "cur": 641, "inus": 641, "ov": 641, "exec": 641, "chip": [641, 682, 689, 695, 701, 706], "reinit": 641, "portalloc": 641, "mem": 641, "kickedin": 641, "ppe": 641, "ongrac": 641, "hb": 641, "flap": 641, "maxnegcach": 641, "maxcach": 641, "sdk": 641, "checkout": 641, "ecdh": 641, "xmlpayload": 641, "kek_update_success": 641, "kek_update_failur": 641, "anomali": 641, "communitynam": [642, 648, 724], "uppercas": [642, 644, 646, 648, 650, 651], "lowercas": [642, 644, 646, 648, 650, 651], "privileg": [642, 746], "get_next": 642, "get_bulk": 642, "engineid": 643, "snmpv3": [644, 649, 650, 651], "readviewnam": 644, "subtre": [644, 651], "ones": 644, "securitylevel": [644, 649], "noauthnopriv": [644, 649], "authnopriv": [644, 649], "authpriv": [644, 649], "v3_grp": [644, 650], "v3_grp_view": [644, 651], "phone": 646, "customid": 646, "identif": 646, "physic": 646, "lab": 646, "rack": 646, "partitionnameintrap": 647, "varbind": 647, "severityinfointrap": 647, "snmpset": 647, "write": 647, "snmptraplog": 647, "snmptraplogginglevel": 647, "allpartit": 648, "trapclass": [648, 649], "trapdestin": [648, 649], "v3": [648, 649, 650], "authpasswd": 650, "authtyp": 650, "sha": 650, "privpasswd": 650, "privtyp": 650, "tree": 651, "cacertgrpnam": 654, "certfingerprintdigest": 654, "certfingerprinthead": 654, "certhashhead": 654, "certhead": 654, "certissuerhead": 654, "certnotafterhead": 654, "certnotbeforehead": 654, "certserialhead": 654, "certsubjecthead": 654, "suit": [654, 666, 691, 692, 697, 698, 703, 709, 710], "strength": 654, "sslv3": [654, 689, 695, 701, 706], "cipherhead": 654, "clientauth": [654, 682, 685, 689, 695, 706, 711], "doclientauth": 654, "noclientauth": [654, 682, 685], "clientcert": [654, 689, 695, 706], "pem": [654, 657, 661, 663, 664, 667, 672, 674, 683, 684, 693, 695, 706], "clientcertfingerprint": 654, "der": [654, 657, 661, 664, 667, 672, 674, 684, 693], "clientcerthash": 654, "clientcertissu": 654, "clientcertnotaft": 654, "clientcertnotbefor": 654, "clientcertserialnumb": 654, "clientcertsubject": 654, "clientcertverif": 654, "owasupport": 654, "outlook": [654, 827, 833], "owa": 654, "sessionidhead": 654, "cacertgroupnam": [655, 656], "cacertform": 657, "cakei": 657, "cakeyform": 657, "caseri": 657, "certform": 657, "certtyp": 657, "root_cert": 657, "intm_cert": 657, "clnt_cert": 657, "srvr_cert": 657, "keyfil": [657, 664, 672, 683, 684, 693], "dsa": [657, 664, 682], "keyform": [657, 664, 672, 684, 693], "pempassphras": [657, 664, 683], "reqfil": [657, 664], "csr": [657, 664], "subjectaltnam": [657, 664], "rdn": [657, 664], "sni": [657, 682, 689, 695, 696, 701, 702, 706, 707, 708, 827], "crt": [657, 659], "1480": 657, "srl": 657, "cert_bundle_fil": 658, "cert_fil": 659, "8000": 659, "tmp": 659, "deletefromdevic": 661, "expirymonitor": 661, "fipskei": [661, 674], "hsmkei": 661, "privaci": [661, 667, 674], "pfx": 661, "linkcertkeynam": 661, "nodomaincheck": 661, "ocspstaplingcach": 661, "ocspstapl": [661, 689, 695, 701, 706], "passplain": [661, 663], "ocsprespond": 662, "bundlefil": 663, "certkeybundlenam": [663, 708], "cerkeybundl": 663, "challengepassword": 664, "commonnam": [664, 689, 695, 701], "compani": 664, "companynam": 664, "countrynam": 664, "fipskeynam": [664, 674], "localitynam": 664, "town": 664, "offic": [664, 673], "organizationnam": 664, "corpor": 664, "partnership": 664, "agenc": 664, "legal": 664, "abbrevi": 664, "angl": 664, "exclam": 664, "caret": 664, "squar": 664, "organizationunitnam": 664, "divis": 664, "statenam": 664, "provinc": 664, "ciphergroupnam": [665, 666], "ciphergroup": [665, 666], "ciphernam": [665, 666, 689, 691, 692, 697, 698, 703, 704, 709, 710], "cipherprior": [665, 666, 688, 689, 690, 691, 692], "ciphgrpalia": 665, "cipheroper": 666, "rem": 666, "ord": 666, "ciphgrpal": 666, "exactli": [667, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 815, 820, 821, 823, 840, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 866, 867, 870, 876, 877, 879], "binari": 667, "cakeyfil": 667, "crlname": 667, "crlpath": 667, "monthli": 667, "weekli": 667, "sun": 667, "sat": 667, "daili": 667, "gencrl": 667, "indexfil": 667, "60": [667, 884, 885, 886, 887], "crl_file": 668, "dh_file": 669, "dhfile": [670, 689, 695, 706], "gen": 670, "helloverifyrequest": 671, "maxbadmacignorecount": 671, "prior": 671, "disconnect": [671, 689, 695, 706, 755, 756, 827, 833, 865], "terminatesess": 671, "maxholdqlen": 671, "maxpackets": 671, "reassembl": 671, "maxrecords": 671, "maxretrytim": 671, "pmtudiscoveri": 671, "curv": [672, 674, 688, 694, 700, 705], "p_256": [672, 674, 688, 694, 700, 705], "p_384": [672, 674, 688, 694, 700, 705], "pkc": [672, 683, 684, 693], "fipsfw": 673, "hsmlabel": 673, "inithsm": 673, "140": [673, 742], "oldsopassword": 673, "sopassword": 673, "userpassword": 673, "prime256v1": 674, "secp384r1": 674, "f4": [674, 693], "10001": 674, "modulu": 674, "wrapkeynam": [674, 712], "sourcesecret": [675, 676], "targetsecret": [675, 676], "keyvector": 676, "control_overrid": 677, "control_default": 677, "data_overrid": 677, "data_default": 677, "httpquic_control_overrid": 677, "httpquic_control_default": 677, "httpquic_data_overrid": 677, "httpquic_data_default": 677, "hsmkeynam": 678, "hsmtype": 678, "thale": 678, "safenet": 678, "nfast": 678, "kmdata": 678, "keystor": 678, "serialnum": 678, "key_fil": 679, "ssllogclauth": 680, "clauth": 680, "ssllogclauthfailur": 680, "ssllogh": 680, "h": [680, 736, 742, 746], "sslloghsfailur": 680, "batchingdelai": 681, "batch": 681, "batchingdepth": 681, "overload": [681, 865], "signifi": [681, 827, 833], "inordin": 681, "faster": 681, "cachetimeout": 681, "wil": 681, "insertclientcert": 681, "ocspurlresolvetimeout": 681, "elaps": 681, "producedattimeskew": 681, "At": 681, "respondercert": 681, "signingcert": 681, "trustrespond": 681, "repons": 681, "producedat": 681, "lastupd": 681, "usenonc": 681, "nonc": 681, "crlmemorysizemb": 682, "cryptodevdisablelimit": 682, "denysslreneg": [682, 689], "renegoti": [682, 689], "circumst": [682, 689], "frontend_cli": [682, 689], "nonsecur": [682, 689], "frontend_clientserv": [682, 689], "5746": [682, 689], "dropreqwithnohosthead": [682, 689], "encrypttriggerpktcount": [682, 689], "heterogeneoussslhw": 682, "cavium": 682, "coleto": 682, "hybridfipsmod": 682, "crypto": [682, 689, 742], "acceler": [682, 689, 695, 701, 706], "insertcertspac": 682, "insertionencod": [682, 689], "ndcppcompliancecertcheck": 682, "ocspcaches": 682, "4gb": 682, "approxim": 682, "operationqueuelimit": 682, "pushenctriggertimeout": [682, 689], "pushflag": [682, 689], "16384": [682, 689], "sendclosenotifi": [682, 689, 695, 701, 706], "sigdigesttyp": 682, "mpx": 682, "nitrox": 682, "iii": 682, "doesnot": 682, "snihttphostmatch": [682, 689], "cover": [682, 689], "softwarecryptothreshold": 682, "sslierrorcach": 682, "sslimaxerrorcachemem": 682, "utilis": 682, "ssltriggertimeout": [682, 689], "strictcacheck": [682, 689], "undefactioncontrol": 682, "undefactiondata": 682, "ed": 683, "outfil": 683, "pkcs12file": 683, "pkcs8file": 684, "AND": 685, "httpquic_control": 686, "httpquic_data": 686, "ecccurvenam": [688, 694, 700, 705], "ecc": [688, 694, 700, 705], "p_224": [688, 694, 700, 705], "p_521": [688, 694, 700, 705], "allowextendedmastersecret": 689, "7627": 689, "allowunknownsni": 689, "snienabl": [689, 695, 701, 706], "unknown": 689, "dislab": 689, "alpnprotocol": 689, "http1": 689, "cipherredirect": [689, 695, 706], "meaning": [689, 695, 706], "cipherurl": [689, 695, 706], "clientauthuseboundcachain": 689, "certfic": 689, "diffi": [689, 695, 706], "hellman": [689, 695, 706], "dhcount": [689, 695, 706], "dhekeyexchangewithpsk": [689, 706], "dhe": [689, 706], "resumpt": [689, 695, 701, 706], "secreci": [689, 706], "compromis": [689, 706], "dhkeyexpsizelimit": [689, 695, 706], "nist": [689, 695, 706], "800": [689, 695, 706], "56a": [689, 695, 706], "2048bit": [689, 695, 706], "224bit": [689, 695, 706], "256bit": [689, 695, 706], "ersa": [689, 695, 706], "ephemer": [689, 695, 706], "ersacount": [689, 695, 706], "hst": [689, 706], "includesubdomain": [689, 706], "stapl": [689, 695, 701, 706], "preload": [689, 706], "consent": [689, 706], "prevsessionkeylifetim": 689, "symm": 689, "pushenctrigg": [689, 695, 706], "rewritten": [689, 695, 706, 794], "serverauth": [689, 695, 701], "sessionkeylifetim": 689, "sessionticket": 689, "5077": 689, "sessionticketkeydata": 689, "enc": 689, "dec": 689, "sessionticketkeyrefresh": 689, "sessionticketlifetim": 689, "sessreus": [689, 695, 701, 706], "intens": [689, 695, 701, 706], "sesstimeout": [689, 695, 701, 706, 755, 756, 827, 833], "skipclientcertpolicycheck": 689, "sport": [689, 695, 701, 706], "ssl3": [689, 695, 701, 706], "sslimaxsessperserv": 689, "clienthello": 689, "ssliocspcheck": 689, "sslireneg": 689, "sslprofiletyp": 689, "sslredirect": [689, 695, 706], "break": [689, 695, 706], "unsecur": [689, 695, 706], "screen": [689, 695, 706], "strictsigdigestcheck": [689, 695, 701, 706], "tls1": [689, 695, 701, 706], "tls11": [689, 695, 701, 706], "tls12": [689, 695, 701, 706], "tls13": [689, 695, 701, 706], "tls13sessionticketsperauthcontext": [689, 706], "handhsak": [689, 706], "parallel": [689, 706], "zerorttearlydata": [689, 706], "significantli": [689, 706], "guarante": [689, 706], "sslicacertkei": 690, "cipheraliasnam": [691, 697, 703, 709], "cipheri": [691, 709], "explan": [695, 706], "dtlsv1": [695, 706], "dtls12": [695, 706], "dtlsprofilenam": [695, 706], "ssl2": [695, 706], "sslv2": [695, 706], "sslv2redirect": [695, 706], "sslv2url": [695, 706], "nsrnatsip": 695, "5061": 695, "skipcanam": [696, 707], "ca_nam": [696, 707], "snicert": [696, 702, 707], "sslvserver_appfwpolicy_bind": 706, "sslvserver_auditnslogpolicy_bind": 706, "sslvserver_auditsyslogpolicy_bind": 706, "sslvserver_authorizationpolicy_bind": 706, "sslvserver_cachepolicy_bind": 706, "sslvserver_cmppolicy_bind": 706, "sslvserver_responderpolicy_bind": 706, "sslvserver_rewritepolicy_bind": 706, "certkeybundl": 708, "snicertkeybundl": 708, "intercept_req": 711, "clienthello_req": 711, "appplic": 711, "pickcacertgrp": 711, "salt": 712, "acceptancethreshold": 713, "breachthreshold": 713, "maxtransactionthreshold": 713, "tracktransact": 713, "mintransactionthreshold": 713, "samplecount": 713, "sort": 713, "is_top": 713, "resptim": 713, "resptime_breach": 713, "trackackonlypacket": 713, "responsetim": 713, "7499": 714, "characterist": 714, "cerrequesttimeout": 716, "cca": 716, "ccr": [716, 717], "pcrf": [716, 717, 718], "dwr": 716, "healthcheckttl": 716, "rar": 716, "rra": 716, "holdonsubscriberabs": 716, "pakcet": 716, "idlettl": [716, 717], "negativettl": 716, "constantli": 716, "stick": 716, "un": 716, "meanwhil": 716, "netcal": 716, "Or": 716, "configu": 716, "negativettllimitedsuccess": 716, "diameter_limited_success": 716, "2002": 716, "pcrfrealm": 716, "purgesdbongxfailur": 716, "requestretryattempt": 716, "requesttimeout": 716, "reuqest": 716, "revalidationtimeout": 716, "revalid": 716, "servicepathavp": 716, "servicepathvendorid": 716, "262099": 716, "3845": 716, "idleact": 717, "exprir": 717, "ccrtermin": 717, "ccrupdat": 717, "arguement": 717, "idletimeout": 717, "interfacetyp": 717, "radiusonli": 717, "radiusandgx": 717, "gxonli": 717, "ipv6prefixlookuplist": 717, "ue": 717, "ipandvlan": 717, "servicepath": 718, "subscriberrul": 718, "subscriptionidtyp": 718, "subscript": 718, "e164": 718, "imsi": 718, "sip_uri": 718, "nai": 718, "subscriptionidvalu": 718, "listeningservic": 719, "radiusinterimasstart": 719, "interim": 719, "tgz": 722, "includekernel": 722, "skipbackup": 722, "uselocaltimezon": 722, "cmdspec": 723, "snmpv1": 724, "datapath": 724, "debug1": 724, "debug2": 724, "pemod": 725, "cpubound": 725, "alldelet": 726, "allinact": 726, "datasourc": 726, "endtim": 726, "mmddyyyyhhmm": 726, "upto": 726, "moment": 726, "cetera": 726, "starttim": 726, "filecont": 728, "fileencod": 728, "fileloc": 728, "filepath": 728, "allowedmanagementinterfac": [736, 746], "63": [736, 742, 746], "restrictedtimeout": [736, 742, 746], "100000000": [736, 742, 746], "900": [736, 742, 746], "diskcheck": 740, "kek": 741, "nscfg": 741, "shall": 741, "basicauth": 742, "cliloglevel": 742, "doppler": 742, "fipsusermod": 742, "land": 742, "certifi": 742, "wherein": 742, "forcepasswordchang": 742, "googleanalyt": 742, "localauth": 742, "maxsessionperus": 742, "minpasswordlen": 742, "mininum": 742, "natpcbforceflushlimit": 742, "natpcbrstontimeout": 742, "buildup": 742, "rbaonrespons": 742, "reauthonauthparamchang": 742, "reauthent": [742, 755, 756], "removesensitivefil": 742, "authoris": 742, "rm": 742, "enableal": 742, "enableloc": 742, "ns_fip": 742, "ns_crl": 742, "ns_rsakei": 742, "ns_pkcs12": 742, "ns_pkcs8": 742, "ns_ldap": 742, "ns_tacac": 742, "ns_tacacsact": 742, "ns_radiu": 742, "ns_radiusact": 742, "ns_encryption_param": 742, "objecttyp": 742, "totalauthtimeout": 742, "sid": 744, "sshkeytyp": 745, "externalauth": 746, "maxsess": 746, "user_adm1": 746, "pwd_adm1": 746, "actionurl": [749, 797], "submit": [749, 797], "namevaluepair": [749, 797], "ampersand": [749, 797], "name1": [749, 797], "value1": [749, 797], "value2": [749, 797], "nvtype": [749, 797], "passwdfield": [749, 797], "responses": [749, 797], "ssosuccessrul": [749, 797], "submitmethod": [749, 797], "userfield": [749, 797], "tmsession": [750, 751, 753], "targ": 754, "recev": [754, 832], "defaultauthorizationact": [755, 756, 827, 833], "homepag": [755, 756, 827, 833], "home": [755, 756, 827, 833, 865], "persistentcooki": [755, 756, 758], "persistentcookievalid": [755, 756], "ntlm2": [755, 756, 827, 833], "trafficact": [755, 756, 827, 833], "ssodomain": [755, 756], "apptimeout": [758, 835], "forcedtimeout": [758, 827, 833], "forcedtimeoutv": 758, "formssoact": [758, 835], "initiatelogout": 758, "samlssoprofil": [758, 835, 837, 838], "rather": 760, "packetlen": [760, 761], "time_exceed": [760, 761], "cookiedomainfrom": 762, "cookiedomaininto": 762, "requrlfrom": 762, "requrlinto": 762, "resurlfrom": 762, "resurlinto": 762, "onlytransformabsurlinbodi": 767, "qual": [769, 835], "loggerip": 770, "cloudhost": 772, "hoursbetweendbupd": 772, "localdatabasethread": 772, "thread": 772, "seeddbpath": 772, "timeofdaytoupdatedb": 772, "defaultlb": 774, "uesd": 774, "clear_text_pd": 775, "cleartext": [775, 776], "pd": [775, 776], "clear_text_abr": 775, "abr": [775, 776, 781], "encrypted_abr": 775, "trigger_enc_abr": 775, "trigger_body_detect": 775, "detect_cleartext_pd": 776, "detect_cleartext_abr": 776, "detect_encrypted_abr": 776, "trigger_enc_abr_detect": 776, "trigger_ct_abr_body_detect": 776, "videoopt_req": [777, 783], "videoopt_r": [777, 783], "quicpacingr": 785, "randomsamplingpercentag": 785, "lan": [786, 787, 788, 790, 791, 827, 833], "301": 789, "client_side_network": 789, "clientcontrol": 792, "locationbasedvpn": 792, "everywher": 792, "alwayson": [792, 827, 833], "networkaccessonvpnfailur": 792, "onlytogatewai": 792, "fullaccess": 792, "clientconsumedcooki": 794, "behalf": 794, "javascriptrewritepolicylabel": 794, "java": [794, 825, 827, 833], "regexforfindingcustomurl": 794, "xcomp": 794, "ns_cvpn_custom_content_typ": 794, "regexforfindingurlincss": 794, "regexforfindingurlinjavascript": 794, "regexforfindingurlinxcompon": 794, "compon": 794, "regexforfindingurlinxml": 794, "reqhdrrewritepolicylabel": 794, "requirepersistentcooki": 794, "msoffic": 794, "reshdrrewritepolicylabel": 794, "urlrewritepolicylabel": 794, "deviceprofil": 795, "intranetdomain": 809, "sharefil": [812, 865, 868], "userdataencryptionkei": 813, "staaddresstyp": [814, 869], "nexthopserv": [818, 826, 874], "icaconnect": 824, "transproto": 824, "conenct": 824, "clientappl": 825, "putti": 825, "xshell": 825, "95": 825, "plug": [825, 827, 833, 835, 865], "iprang": 825, "spoofiip": [825, 827, 833], "dmz": [826, 865], "nexthopfqdn": 826, "nexthopip": 826, "nexthopport": 826, "resaddresstyp": 826, "advancedclientlessvpnmod": [827, 833], "clientlessvpnmod": [827, 833], "additionali": [827, 833], "advancedclientlessmod": [827, 833], "allowedlogingroup": [827, 833], "allprotocolproxi": [827, 833], "alwaysonprofilenam": [827, 833], "apptokentimeout": 827, "xenmobil": [827, 842, 868], "authorizationgroup": [827, 833], "autoproxyurl": [827, 833], "backendcertvalid": 827, "backendserversni": 827, "citrixreceiverhom": [827, 833], "clientchoic": [827, 833], "icon": [827, 833, 837, 838], "clientcleanupprompt": [827, 833], "clientconfigur": [827, 833], "clientdebug": [827, 833], "technic": [827, 833], "technician": [827, 833], "troubleshoot": [827, 833], "written": [827, 833], "clientidletimeout": [827, 833], "clientlessmodeurlencod": [827, 833], "leav": [827, 833], "opaqu": [827, 833], "unclear": [827, 833], "clientlesspersistentcooki": [827, 833], "sharepoint": [827, 833], "powerpoint": [827, 833], "fileshar": [827, 833], "clientopt": [827, 833], "menu": [827, 833], "trai": [827, 833], "filetransf": [827, 833], "clientsecur": [827, 833], "clientsecuritygroup": [827, 833], "clientsecuritylog": [827, 833], "clientvers": 827, "checkvers": 827, "improv": [827, 833], "emailhom": [827, 833], "encryptcsecexp": 827, "epaclienttyp": [827, 833], "bar": [827, 833], "activex": [827, 833], "explor": [827, 833], "forcecleanup": [827, 833], "addressbar": [827, 833], "filesystemappl": [827, 833], "applicationdata": [827, 833], "clientcertif": [827, 833], "autocomplet": [827, 833], "forcedtimeoutwarn": [827, 833], "fqdnspoofedip": [827, 833], "ftpproxi": [827, 833], "gopherproxi": [827, 833], "gopher": [827, 833], "httpproxi": [827, 833], "icaproxi": [827, 833], "icasessiontimeout": 827, "icauseraccount": 827, "radiuspolici": [827, 833], "iconwithreceiv": [827, 833], "iipdnssuffix": [827, 833], "easier": [827, 833], "rememb": [827, 833], "killconnect": [827, 833], "preexist": [827, 833], "linuxpluginupgrad": [827, 833], "linux": [827, 833, 865], "essenti": [827, 833, 865], "locallanaccess": [827, 833], "loginscript": [827, 833], "logoutscript": [827, 833], "macpluginupgrad": [827, 833], "mdxtokentimeout": 827, "mdx": 827, "ntdomain": [827, 833], "pcoipprofilenam": [827, 833], "firefox": [827, 833], "proxyexcept": [827, 833], "proxylocalbypass": [827, 833], "rdpclientprofilenam": [827, 833], "rfc1918": [827, 833], "securebrows": [827, 833], "smartgroup": [827, 833], "socksproxi": [827, 833], "sock": [827, 833], "splitdn": [827, 833], "splittunnel": [827, 833], "sslproxi": [827, 833], "storefronturl": [827, 833], "transparentintercept": [827, 833], "uithem": [827, 831], "green": 827, "bubbl": 827, "caxton": 827, "greenbubbl": [827, 831], "useiip": [827, 833], "nospillov": [827, 833], "usemip": [827, 833], "userdomain": [827, 865], "seper": [827, 865], "wihom": [827, 833, 865], "fullclient": [827, 833], "wihomeaddresstyp": [827, 833], "windowsautologon": [827, 833], "windowsclienttyp": [827, 833], "windowspluginupgrad": [827, 833], "winsip": [827, 833], "wiportalmod": [827, 833], "layout": [827, 833], "conserverurl": 829, "icvverif": 829, "icv": 829, "sessionidletimeout": 829, "logindomain": 830, "udpport": 830, "basethem": 831, "x1": 831, "rfwebui": 831, "sfgatewayauthtyp": 833, "domainandrsa": 833, "sfauth": 833, "sfauthandrsa": 833, "useraccount": 833, "fta": 835, "wanscal": 835, "actualurl": [837, 838], "appjson": 837, "applicationtyp": [837, 838], "cvpn": [837, 838, 865], "clientlessaccess": [837, 838], "iconurl": [837, 838], "linknam": [837, 838], "ssotyp": [837, 838], "unifi": [837, 838], "unifiedgatewai": [837, 838], "selfauth": [837, 838], "samlauth": [837, 838], "urlact": 838, "urlpolici": 839, "advancedepa": 865, "tell": 865, "netflow": 865, "cginfrahomepageredirect": 865, "deploymenttyp": 865, "ica_webinterfac": 865, "ica_storefront": 865, "devicecert": 865, "doublehop": 865, "icaonli": 865, "smart": 865, "ccu": 865, "icaproxysessionmigr": 865, "coexist": 865, "linuxepapluginupgrad": 865, "loginonc": 865, "seamless": 865, "logoutonsmartcardremov": 865, "reader": 865, "macepapluginupgrad": 865, "pcoipvserverprofilenam": 865, "rdpserverprofilenam": 865, "vserverfqdn": 865, "windowsepapluginupgrad": 865, "epaprofil": 871, "epaprofileopt": 871, "vmac6": [880, 881, 882, 883], "ow": 882, "ner": 882, "emption": [882, 886], "preemptiondelaytim": [882, 886], "bp": [882, 886], "ordinarili": [882, 886], "trackifnumprior": [882, 886], "ep": [882, 886], "trackifnum": [883, 887], "5e": [884, 885, 886, 887], "01": [884, 885, 886, 887], "3c": [884, 885, 886, 887], "sendtomast": 888, "spillver": 889, "innervlantag": 890, "inner": 890, "gpe": 890, "nsh": 890, "vxlangp": 890, "docsit": 897, "modul": 897}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"index": [0, 1, 2, 391, 897], "all": [0, 2], "collect": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897], "environ": 0, "variabl": [0, 505, 573], "modul": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "netscal": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896], "adc": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "aaacertparam": 3, "configur": [3, 12, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 35, 42, 44, 45, 46, 47, 49, 50, 52, 53, 55, 56, 57, 58, 59, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 74, 97, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 186, 191, 192, 193, 195, 196, 197, 198, 199, 200, 202, 204, 210, 215, 216, 217, 221, 222, 223, 225, 226, 227, 229, 230, 231, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 256, 261, 262, 264, 265, 267, 268, 269, 271, 272, 274, 275, 276, 288, 293, 294, 295, 297, 314, 321, 322, 323, 324, 325, 326, 327, 328, 330, 331, 332, 333, 334, 335, 336, 337, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 354, 355, 358, 359, 360, 361, 362, 363, 366, 369, 370, 375, 377, 378, 379, 382, 383, 384, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 403, 404, 405, 406, 407, 408, 409, 410, 413, 415, 417, 419, 420, 421, 423, 424, 425, 426, 427, 442, 453, 456, 457, 458, 459, 460, 461, 462, 465, 467, 469, 482, 484, 485, 486, 487, 489, 490, 491, 492, 493, 494, 495, 496, 498, 499, 501, 502, 503, 504, 505, 508, 512, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 549, 552, 553, 554, 555, 557, 558, 559, 560, 561, 562, 563, 564, 565, 567, 568, 570, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 586, 587, 588, 589, 590, 592, 593, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 610, 611, 612, 613, 615, 617, 618, 619, 621, 623, 627, 628, 629, 630, 631, 632, 633, 635, 637, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 650, 651, 652, 653, 654, 655, 657, 658, 659, 660, 661, 663, 664, 665, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 678, 679, 680, 681, 682, 683, 684, 685, 686, 689, 693, 695, 701, 706, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 736, 740, 741, 742, 743, 744, 745, 746, 749, 754, 755, 756, 757, 758, 759, 760, 761, 762, 764, 765, 767, 769, 770, 771, 772, 773, 774, 775, 776, 777, 781, 782, 783, 785, 789, 792, 793, 794, 795, 796, 797, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 865, 882, 886, 888, 889, 890, 894], "certif": [3, 655, 660, 661, 664, 667], "paramet": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "resourc": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "synopsi": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "note": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "exampl": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "return": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "valu": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "author": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "link": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895], "aaaglobal_aaapreauthenticationpolicy_bind": 4, "bind": [4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 48, 51, 54, 60, 61, 62, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 218, 219, 220, 224, 228, 233, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 263, 266, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 329, 338, 353, 356, 357, 364, 365, 367, 368, 371, 372, 373, 374, 376, 380, 381, 385, 401, 402, 411, 412, 414, 416, 418, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 497, 500, 506, 507, 509, 510, 511, 513, 514, 548, 550, 551, 556, 566, 569, 571, 572, 585, 591, 594, 609, 614, 616, 620, 622, 624, 625, 626, 634, 636, 638, 649, 656, 662, 666, 677, 687, 688, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 786, 787, 788, 790, 791, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 887, 891, 892, 893, 895], "definit": [4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 48, 51, 54, 60, 61, 62, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 218, 219, 220, 224, 228, 233, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 263, 266, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 329, 338, 353, 356, 357, 364, 365, 367, 368, 371, 372, 373, 374, 376, 380, 381, 385, 401, 402, 411, 412, 414, 416, 418, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 497, 500, 506, 507, 509, 510, 511, 513, 514, 548, 550, 551, 556, 566, 569, 571, 572, 585, 591, 594, 609, 614, 616, 620, 622, 624, 625, 626, 634, 636, 638, 649, 656, 662, 666, 677, 687, 688, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 786, 787, 788, 790, 791, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 887, 891, 892, 893, 895], "describ": [4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 48, 51, 54, 60, 61, 62, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 218, 219, 220, 224, 228, 233, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 263, 266, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 329, 338, 353, 356, 357, 364, 365, 367, 368, 371, 372, 373, 374, 376, 380, 381, 385, 401, 402, 411, 412, 414, 416, 418, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 497, 500, 506, 507, 509, 510, 511, 513, 514, 548, 550, 551, 556, 566, 569, 571, 572, 585, 591, 594, 609, 614, 616, 620, 622, 624, 625, 626, 634, 636, 638, 649, 656, 662, 666, 677, 687, 688, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 786, 787, 788, 790, 791, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 887, 891, 892, 893, 895], "associ": [4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 48, 51, 54, 60, 61, 62, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 218, 219, 220, 224, 228, 233, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 263, 266, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 329, 338, 353, 356, 357, 364, 365, 367, 368, 371, 372, 373, 374, 376, 380, 381, 385, 401, 402, 411, 412, 414, 416, 418, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 497, 500, 506, 507, 509, 510, 511, 513, 514, 548, 550, 551, 556, 566, 569, 571, 572, 585, 591, 594, 609, 614, 616, 620, 622, 624, 625, 626, 634, 636, 638, 649, 656, 662, 666, 677, 687, 688, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 786, 787, 788, 790, 791, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 887, 891, 892, 893, 895], "between": [4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 48, 51, 54, 60, 61, 62, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 125, 129, 155, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 194, 201, 203, 205, 206, 207, 208, 209, 211, 212, 213, 214, 218, 219, 220, 224, 228, 233, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 263, 266, 270, 273, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 289, 290, 291, 292, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 315, 316, 317, 318, 319, 320, 329, 338, 353, 356, 357, 364, 365, 367, 368, 371, 372, 373, 374, 376, 380, 381, 385, 401, 402, 411, 412, 414, 416, 418, 422, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 454, 455, 466, 468, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 483, 488, 497, 500, 506, 507, 509, 510, 511, 513, 514, 548, 550, 551, 556, 566, 569, 571, 572, 585, 591, 594, 609, 614, 616, 620, 622, 624, 625, 626, 634, 636, 638, 649, 656, 662, 666, 677, 687, 688, 690, 691, 692, 694, 696, 697, 698, 699, 700, 702, 703, 704, 705, 707, 708, 709, 710, 711, 729, 730, 731, 732, 733, 734, 735, 737, 738, 739, 747, 748, 750, 751, 752, 753, 763, 766, 768, 778, 779, 780, 784, 786, 787, 788, 790, 791, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 883, 884, 885, 887, 891, 892, 893, 895], "aaaglob": [4, 5], "aaapreauthenticationpolici": [4, 25, 840], "aaaglobal_authenticationnegotiateaction_bind": 5, "authenticationnegotiateact": [5, 148], "aaagroup_aaauser_bind": 6, "aaagroup": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18], "aaauser": [6, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "aaagroup_auditnslogpolicy_bind": 7, "auditnslogpolici": [7, 30, 61, 125, 127, 169, 302, 432, 729, 750, 799, 844], "aaagroup_auditsyslogpolicy_bind": 8, "auditsyslogpolici": [8, 31, 62, 129, 131, 170, 303, 433, 626, 730, 751, 800, 845], "aaagroup_authorizationpolicy_bind": 9, "authorizationpolici": [9, 32, 193, 194, 304, 434], "aaagroup_intranetip6_bind": 10, "intranetip6": [10, 33, 810, 863], "aaagroup_intranetip_bind": 11, "intranetip": [11, 34, 811, 864], "aaa": [12, 21, 22, 28, 35, 152, 160, 161, 162, 163], "group": [12, 217, 222, 256, 369, 413, 482, 637, 644, 655, 701, 736], "aaagroup_tmsessionpolicy_bind": 13, "tmsessionpolici": [13, 36, 189, 752, 757], "aaagroup_vpnintranetapplication_bind": 14, "vpnintranetappl": [14, 37, 817, 825, 873], "aaagroup_vpnsessionpolicy_bind": 15, "vpnsessionpolici": [15, 38, 820, 834, 876], "aaagroup_vpntrafficpolicy_bind": 16, "vpntrafficpolici": [16, 39, 821, 836, 877], "aaagroup_vpnurl_bind": 17, "vpnurl": [17, 40, 822, 837, 878], "aaagroup_vpnurlpolicy_bind": 18, "vpnurlpolici": [18, 41, 823, 839, 879], "aaakcdaccount": 19, "kerbero": 19, "constrain": 19, "deleg": 19, "account": 19, "aaaldapparam": 20, "ldap": [20, 143, 144], "aaaotpparamet": 21, "otpparamet": 21, "aaaparamet": 22, "aaapreauthenticationact": 23, "pre": [23, 24, 25], "authent": [23, 24, 25, 133, 138, 139, 140, 150, 151, 154, 156, 166, 186, 191, 192], "action": [23, 49, 117, 123, 124, 128, 135, 136, 138, 139, 142, 143, 148, 150, 151, 158, 160, 166, 167, 191, 196, 262, 268, 293, 324, 325, 352, 384, 410, 608, 615, 652, 654, 749, 754, 755, 758, 762, 797, 832, 833, 835, 838], "aaapreauthenticationparamet": 24, "polici": [25, 53, 55, 72, 74, 120, 127, 131, 137, 140, 144, 145, 149, 152, 154, 156, 159, 161, 163, 164, 168, 192, 193, 195, 197, 202, 204, 227, 229, 265, 267, 272, 274, 276, 295, 297, 336, 337, 339, 355, 388, 421, 423, 588, 589, 612, 613, 618, 619, 653, 685, 686, 723, 757, 759, 764, 765, 769, 777, 783, 793, 834, 836, 839], "aaaradiusparam": 26, "radiu": [26, 158, 159, 601, 719], "aaasess": 27, "activ": [27, 603, 715, 824], "connect": [27, 603, 715, 824, 828], "aaassoprofil": 28, "sso": [28, 749, 754, 797, 832], "profil": [28, 44, 97, 132, 133, 153, 162, 165, 198, 210, 235, 241, 275, 321, 340, 386, 396, 399, 424, 467, 484, 485, 486, 490, 494, 496, 512, 535, 536, 564, 580, 598, 600, 671, 680, 689, 718, 767, 792, 794, 795, 829, 830], "aaatacacsparam": 29, "tacac": [29, 167, 168], "aaauser_auditnslogpolicy_bind": 30, "aaauser_auditsyslogpolicy_bind": 31, "aaauser_authorizationpolicy_bind": 32, "aaauser_intranetip6_bind": 33, "aaauser_intranetip_bind": 34, "user": [35, 232, 322, 640, 650, 746, 773], "aaauser_tmsessionpolicy_bind": 36, "aaauser_vpnintranetapplication_bind": 37, "aaauser_vpnsessionpolicy_bind": 38, "aaauser_vpntrafficpolicy_bind": 39, "aaauser_vpnurl_bind": 40, "aaauser_vpnurlpolicy_bind": 41, "admparamet": 42, "adm": 42, "analyticsglobal_analyticsprofile_bind": 43, "analyticsglob": 43, "analyticsprofil": [43, 44, 48, 277, 298, 428, 841], "analyt": 44, "apispec": 45, "api": [45, 46], "specif": 45, "apispecfil": 46, "specificationfil": 46, "appalgparam": 47, "appalg": 47, "param": [47, 458, 717], "appflowaction_analyticsprofile_bind": 48, "appflowact": [48, 49], "appflow": [49, 50, 52, 53, 55], "appflowcollector": [50, 517], "collector": 50, "appflowglobal_appflowpolicy_bind": 51, "appflowglob": 51, "appflowpolici": [51, 53, 54, 278, 299, 429, 843], "appflowparam": [52, 518], "appflowpolicylabel_appflowpolicy_bind": 54, "appflowpolicylabel": [54, 55], "label": [55, 74, 156, 195, 204, 229, 267, 274, 297, 339, 423, 613, 619, 686, 765, 777, 783], "appfwarch": 56, "archiv": 56, "appfwconfidfield": [57, 75], "confidenti": 57, "form": [57, 59, 71, 111, 749, 797], "field": [57, 59], "appfwcustomset": 58, "applic": [58, 59, 72, 74, 97, 110, 116, 199, 465, 467, 825], "firewal": [58, 59, 72, 74, 97, 110], "custom": [58, 118], "set": [58, 70, 109, 215, 456, 584, 590, 595, 607, 743], "xml": [58, 110, 113, 114, 115, 576], "appfwfieldtyp": 59, "type": [59, 63, 64, 65, 67, 71, 111, 113, 256, 323, 326, 584, 632], "appfwglobal_appfwpolicy_bind": 60, "appfwglob": [60, 61, 62], "appfwpolici": [60, 72, 73, 279, 300, 430], "appfwglobal_auditnslogpolicy_bind": 61, "appfwglobal_auditsyslogpolicy_bind": 62, "appfwgrpccontenttyp": 63, "grrpc": [63, 64, 65], "content": [63, 64, 65, 67, 71, 111, 113, 222, 268, 269, 293, 295], "appfwgrpcwebjsoncontenttyp": 64, "web": [64, 65, 191, 192, 453, 575], "json": [64, 67, 68], "appfwgrpcwebtextcontenttyp": 65, "text": 65, "appfwhtmlerrorpag": 66, "html": [66, 610], "error": [66, 68, 114, 740], "page": [66, 68, 114, 118, 610], "appfwjsoncontenttyp": 67, "appfwjsonerrorpag": 68, "appfwlearningdata": 69, "learn": [69, 70], "data": [69, 722, 726], "appfwlearningset": 70, "appfwmultipartformcontenttyp": 71, "multipart": 71, "appfwpolicylabel_appfwpolicy_bind": 73, "appfwpolicylabel": [73, 74], "appfwprofile_appfwconfidfield_bind": 75, "appfwprofil": [75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107], "appfwprofile_blockkeyword_bind": 76, "blockkeyword": 76, "appfwprofile_bypasslist_bind": 77, "bypasslist": 77, "appfwprofile_cmdinjection_bind": 78, "cmdinject": 78, "appfwprofile_contenttype_bind": 79, "contenttyp": 79, "appfwprofile_cookieconsistency_bind": 80, "cookieconsist": 80, "appfwprofile_creditcardnumber_bind": 81, "creditcardnumb": 81, "appfwprofile_crosssitescripting_bind": 82, "crosssitescript": 82, "appfwprofile_csrftag_bind": 83, "csrftag": 83, "appfwprofile_denylist_bind": 84, "denylist": 84, "appfwprofile_denyurl_bind": 85, "denyurl": 85, "appfwprofile_excluderescontenttype_bind": 86, "excluderescontenttyp": 86, "appfwprofile_fakeaccount_bind": 87, "fakeaccount": 87, "appfwprofile_fieldconsistency_bind": 88, "fieldconsist": 88, "appfwprofile_fieldformat_bind": 89, "fieldformat": 89, "appfwprofile_fileuploadtype_bind": 90, "fileuploadtyp": 90, "appfwprofile_jsonblockkeyword_bind": 91, "jsonblockkeyword": 91, "appfwprofile_jsoncmdurl_bind": 92, "jsoncmdurl": 92, "appfwprofile_jsondosurl_bind": 93, "jsondosurl": 93, "appfwprofile_jsonsqlurl_bind": 94, "jsonsqlurl": 94, "appfwprofile_jsonxssurl_bind": 95, "jsonxssurl": 95, "appfwprofile_logexpression_bind": 96, "logexpress": [96, 209], "appfwprofile_safeobject_bind": 98, "safeobject": 98, "appfwprofile_sqlinjection_bind": 99, "sqlinject": 99, "appfwprofile_starturl_bind": 100, "starturl": 100, "appfwprofile_trustedlearningclients_bind": 101, "trustedlearningcli": 101, "appfwprofile_xmlattachmenturl_bind": 102, "xmlattachmenturl": 102, "appfwprofile_xmldosurl_bind": 103, "xmldosurl": 103, "appfwprofile_xmlsqlinjection_bind": 104, "xmlsqlinject": 104, "appfwprofile_xmlvalidationurl_bind": 105, "xmlvalidationurl": 105, "appfwprofile_xmlwsiurl_bind": 106, "xmlwsiurl": 106, "appfwprofile_xmlxss_bind": 107, "xmlxss": 107, "appfwprotofil": 108, "grpc": 108, "protofil": 108, "appfwset": 109, "AS": 109, "appfwsignatur": 110, "signatur": [110, 216], "appfwurlencodedformcontenttyp": 111, "urlencod": 111, "appfwwsdl": 112, "wsdl": 112, "file": [112, 245, 378, 461, 592, 668, 669, 679, 728], "appfwxmlcontenttyp": 113, "appfwxmlerrorpag": 114, "appfwxmlschema": 115, "schema": 115, "appqoeact": 117, "appqo": [117, 118, 120], "appqoecustomresp": 118, "respons": [118, 596, 611, 681], "appqoeparamet": 119, "qo": 119, "appqoepolici": [120, 280, 301, 431], "arp": [121, 122], "arpparam": 122, "global": [122, 375, 579], "auditmessageact": 123, "messag": 123, "auditnslogact": 124, "n": [124, 126, 127, 387, 546, 722], "log": [124, 126, 127, 128, 130, 131, 453, 484, 486, 575, 680], "auditnslogglobal_auditnslogpolicy_bind": 125, "auditnslogglob": 125, "auditnslogparam": 126, "auditsyslogact": 128, "system": [128, 130, 131, 523, 736, 742, 744, 746], "auditsyslogglobal_auditsyslogpolicy_bind": 129, "auditsyslogglob": 129, "auditsyslogparam": 130, "authenticationadfsproxyprofil": 132, "adfsproxi": 132, "authenticationauthnprofil": 133, "authenticationazurekeyvault": 134, "azur": [134, 199, 200], "kei": [134, 200, 330, 528, 532, 632, 655, 661, 672, 674, 678, 679, 693, 712, 741], "vault": [134, 200], "entiti": [134, 141, 200, 726], "authenticationcaptchaact": 135, "captcha": [135, 206], "authenticationcertact": 136, "cert": [136, 137], "authenticationcertpolici": [137, 171, 801, 846], "authenticationcitrixauthact": 138, "citrix": [138, 547, 599], "authenticationdfaact": 139, "dfa": [139, 140], "authenticationdfapolici": [140, 847], "authenticationemailact": 141, "email": 141, "authenticationepaact": 142, "epa": [142, 795], "authenticationldapact": 143, "authenticationldappolici": [144, 172, 731, 802, 848], "authenticationlocalpolici": [145, 173, 732, 803, 849], "local": 145, "authenticationloginschema": 146, "0": [146, 147, 244, 261, 392, 582, 583, 605, 721, 725, 727, 745, 760, 761], "authenticationloginschemapolici": [147, 174, 850], "negoti": [148, 149], "authenticationnegotiatepolici": [149, 175, 804, 851], "authenticationnoauthact": 150, "authenticationoauthact": 151, "oauth": [151, 152, 153], "authenticationoauthidppolici": [152, 176, 852], "identityprovid": [152, 161, 162], "idp": [152, 153, 161, 162], "authenticationoauthidpprofil": 153, "ident": 153, "provid": 153, "authenticationpolici": [154, 155, 177, 733, 805, 853], "authenticationpolicylabel_authenticationpolicy_bind": 155, "authenticationpolicylabel": [155, 156], "authenticationpushservic": 157, "servic": [157, 258, 366, 369, 445, 554, 555, 607, 634, 635, 637, 695, 701], "detail": 157, "send": 157, "push": 157, "notif": 157, "authenticationradiusact": 158, "authenticationradiuspolici": [159, 178, 734, 806, 854], "authenticationsamlact": 160, "saml": [160, 161, 162, 163, 754, 832], "authenticationsamlidppolici": [161, 179, 855], "authenticationsamlidpprofil": 162, "authenticationsamlpolici": [163, 180, 807, 856], "authenticationsmartaccesspolici": [164, 181], "smartaccess": [164, 165], "authenticationsmartaccessprofil": 165, "authenticationstorefrontauthact": 166, "storefront": 166, "authenticationtacacsact": 167, "authenticationtacacspolici": [168, 182, 735, 808, 857], "authenticationvserver_auditnslogpolicy_bind": 169, "authenticationvserv": [169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 249], "authenticationvserver_auditsyslogpolicy_bind": 170, "authenticationvserver_authenticationcertpolicy_bind": 171, "authenticationvserver_authenticationldappolicy_bind": 172, "authenticationvserver_authenticationlocalpolicy_bind": 173, "authenticationvserver_authenticationloginschemapolicy_bind": 174, "authenticationvserver_authenticationnegotiatepolicy_bind": 175, "authenticationvserver_authenticationoauthidppolicy_bind": 176, "authenticationvserver_authenticationpolicy_bind": 177, "authenticationvserver_authenticationradiuspolicy_bind": 178, "authenticationvserver_authenticationsamlidppolicy_bind": 179, "authenticationvserver_authenticationsamlpolicy_bind": 180, "authenticationvserver_authenticationsmartaccesspolicy_bind": 181, "authenticationvserver_authenticationtacacspolicy_bind": 182, "authenticationvserver_authenticationwebauthpolicy_bind": 183, "authenticationwebauthpolici": [183, 192, 858], "authenticationvserver_cachepolicy_bind": 184, "cachepolici": [184, 224, 227, 228, 281, 306, 436, 859], "authenticationvserver_cspolicy_bind": 185, "cspolici": [185, 284, 295, 296, 309, 860], "virtual": [186, 243, 288, 314, 375, 442, 706, 774, 865, 882, 886, 889], "server": [186, 243, 288, 314, 332, 334, 344, 375, 442, 578, 581, 633, 706, 770, 774, 826, 865, 889], "authenticationvserver_responderpolicy_bind": 187, "responderpolici": [187, 290, 315, 443, 609, 612, 614, 866], "authenticationvserver_rewritepolicy_bind": 188, "rewritepolici": [188, 291, 316, 444, 616, 618, 620, 867], "authenticationvserver_tmsessionpolicy_bind": 189, "authenticationvserver_vpnportaltheme_bind": 190, "vpnportalthem": [190, 819, 831, 875], "authenticationwebauthact": 191, "authorizationpolicylabel_authorizationpolicy_bind": 194, "authorizationpolicylabel": [194, 195], "autoscaleact": 196, "autoscal": [196, 197, 198], "autoscalepolici": [197, 566], "autoscaleprofil": 198, "azureappl": 199, "azurekeyvault": 200, "botglobal_botpolicy_bind": 201, "botglob": 201, "botpolici": [201, 202, 203, 305, 435], "bot": [202, 204, 210, 215, 216], "botpolicylabel_botpolicy_bind": 203, "botpolicylabel": [203, 204], "botprofile_blacklist_bind": 205, "botprofil": [205, 206, 207, 208, 209, 210, 211, 212, 213, 214], "blacklist": 205, "botprofile_captcha_bind": 206, "botprofile_ipreputation_bind": 207, "ipreput": 207, "botprofile_kmdetectionexpr_bind": 208, "kmdetectionexpr": 208, "botprofile_logexpression_bind": 209, "botprofile_ratelimit_bind": 211, "ratelimit": 211, "botprofile_tps_bind": 212, "tp": 212, "botprofile_trapinsertionurl_bind": 213, "trapinsertionurl": 213, "botprofile_whitelist_bind": 214, "whitelist": 214, "botset": 215, "engin": [215, 643], "botsignatur": 216, "bridgegroup": [217, 218, 219, 220, 548, 569], "bridg": [217, 221, 508, 598], "bridgegroup_nsip6_bind": 218, "nsip6": [218, 401, 509, 537, 622, 790, 891], "bridgegroup_nsip_bind": 219, "nsip": [219, 402, 510, 538, 624, 791, 892], "bridgegroup_vlan_bind": 220, "vlan": [220, 511, 550, 571, 786, 787, 788, 789, 790, 791, 894], "bridget": 221, "tabl": [221, 415], "entri": [221, 361, 362, 515, 516], "cachecontentgroup": 222, "integr": [222, 227], "cach": [222, 225, 226, 227, 229, 230, 276, 345], "cacheforwardproxi": 223, "forward": [223, 359], "proxi": [223, 341], "cacheglobal_cachepolicy_bind": 224, "cacheglob": 224, "cacheobject": 225, "object": [225, 256], "cacheparamet": 226, "cachepolicylabel_cachepolicy_bind": 228, "cachepolicylabel": [228, 229], "cacheselector": 230, "selector": [230, 543, 714], "callhom": 231, "change_password": 232, "chang": 232, "password": 232, "node": [232, 247, 256, 379, 463, 464, 553, 601], "channel_interface_bind": 233, "channel": [233, 234, 356, 454, 786, 880, 884], "interfac": [233, 357, 393, 455, 716, 719, 787, 881, 885], "cloudallowedngsticketprofil": 235, "allow": 235, "ticket": 235, "ng": 235, "cloudawsparam": 236, "cloud": [236, 237, 238, 239, 240, 241, 243], "awsparam": 236, "cloudcredenti": 237, "credenti": 237, "cloudngsparamet": 238, "ngsparamet": 238, "cloudparamet": 239, "cloudparamintern": 240, "paramintern": 240, "cloudprofil": 241, "cloudtunnelparamet": 242, "cloudtunnel": 242, "cloudtunnelvserv": 243, "tunnel": [243, 394, 395, 403, 404, 769], "cluster": [244, 246, 247], "clusterfil": 245, "clusterinst": 246, "instanc": 246, "clusternod": [247, 248, 250], "clusternode_routemonitor_bind": 248, "routemonitor": [248, 381], "clusternodegroup_authenticationvserver_bind": 249, "clusternodegroup": [249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260], "clusternodegroup_clusternode_bind": 250, "clusternodegroup_crvserver_bind": 251, "crvserver": [251, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292], "clusternodegroup_csvserver_bind": 252, "csvserver": [252, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320], "clusternodegroup_gslbsite_bind": 253, "gslbsite": [253, 370], "clusternodegroup_gslbvserver_bind": 254, "gslbvserver": [254, 312, 371, 372, 373, 374, 375, 376], "clusternodegroup_lbvserver_bind": 255, "lbvserver": [255, 287, 313, 412, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452], "clusternodegroup_nslimitidentifier_bind": 257, "nslimitidentifi": [257, 542], "clusternodegroup_service_bind": 258, "clusternodegroup_streamidentifier_bind": 259, "streamidentifi": [259, 713], "clusternodegroup_vpnvserver_bind": 260, "vpnvserver": [260, 320, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879], "clusterpropstatu": 261, "cmpaction": 262, "compress": [262, 265, 267], "cmpglobal_cmppolicy_bind": 263, "cmpglobal": 263, "cmppolici": [263, 265, 266, 282, 307, 437], "cmpparamet": 264, "cmp": 264, "cmppolicylabel_cmppolicy_bind": 266, "cmppolicylabel": [266, 267], "contentinspectionact": 268, "inspect": [268, 269], "contentinspectioncallout": 269, "callout": [269, 587], "contentinspectionglobal_contentinspectionpolicy_bind": 270, "contentinspectionglob": 270, "contentinspectionpolici": [270, 272, 273, 308, 438], "contentinspectionparamet": 271, "contentinspect": [271, 272, 274, 275], "contentinspectionpolicylabel_contentinspectionpolicy_bind": 273, "contentinspectionpolicylabel": [273, 274], "contentinspectionprofil": 275, "crpolici": [276, 283], "redirect": 276, "crvserver_analyticsprofile_bind": 277, "crvserver_appflowpolicy_bind": 278, "crvserver_appfwpolicy_bind": 279, "crvserver_appqoepolicy_bind": 280, "crvserver_cachepolicy_bind": 281, "crvserver_cmppolicy_bind": 282, "crvserver_crpolicy_bind": 283, "crvserver_cspolicy_bind": 284, "crvserver_feopolicy_bind": 285, "feopolici": [285, 311, 353, 355, 440, 861], "crvserver_icapolicy_bind": 286, "icapolici": [286, 385, 388, 862], "crvserver_lbvserver_bind": 287, "cr": 288, "crvserver_policymap_bind": 289, "policymap": [289, 588], "crvserver_responderpolicy_bind": 290, "crvserver_rewritepolicy_bind": 291, "crvserver_spilloverpolicy_bind": 292, "spilloverpolici": [292, 317, 376, 447, 653], "csaction": 293, "switch": [293, 295], "csparamet": 294, "c": [294, 297, 314], "cspolicylabel_cspolicy_bind": 296, "cspolicylabel": [296, 297], "csvserver_analyticsprofile_bind": 298, "csvserver_appflowpolicy_bind": 299, "csvserver_appfwpolicy_bind": 300, "csvserver_appqoepolicy_bind": 301, "csvserver_auditnslogpolicy_bind": 302, "csvserver_auditsyslogpolicy_bind": 303, "csvserver_authorizationpolicy_bind": 304, "csvserver_botpolicy_bind": 305, "csvserver_cachepolicy_bind": 306, "csvserver_cmppolicy_bind": 307, "csvserver_contentinspectionpolicy_bind": 308, "csvserver_cspolicy_bind": 309, "csvserver_domain_bind": 310, "domain": [310, 371, 501, 570, 809], "csvserver_feopolicy_bind": 311, "csvserver_gslbvserver_bind": 312, "csvserver_lbvserver_bind": 313, "csvserver_responderpolicy_bind": 315, "csvserver_rewritepolicy_bind": 316, "csvserver_spilloverpolicy_bind": 317, "csvserver_tmtrafficpolicy_bind": 318, "tmtrafficpolici": [318, 448, 753, 759], "csvserver_transformpolicy_bind": 319, "transformpolici": [319, 449, 763, 764, 766], "csvserver_vpnvserver_bind": 320, "dbdbprofil": 321, "db": [321, 322], "dbuser": 322, "dnsaaaarec": 323, "ipv6": [323, 405, 579, 621, 882], "address": [323, 326], "record": [323, 326, 327, 328, 331, 333, 334, 341, 342, 343, 344, 347], "dnsaction64": 324, "dns64": [324, 336], "dnsaction": 325, "dn": [325, 330, 335, 337, 339, 340, 346, 348, 349], "dnsaddrec": 326, "dnscaarec": 327, "caa": 327, "dnscnamerec": 328, "cname": 328, "dnsglobal_dnspolicy_bind": 329, "dnsglobal": 329, "dnspolici": [329, 337, 338], "dnskei": 330, "dnsmxrec": 331, "mx": 331, "dnsnameserv": 332, "name": [332, 334, 533], "dnsnaptrrec": 333, "naptr": 333, "dnsnsrec": 334, "dnsparamet": 335, "dnspolicy64": [336, 439], "dnspolicylabel_dnspolicy_bind": 338, "dnspolicylabel": [338, 339], "dnsprofil": 340, "dnsproxyrecord": 341, "dnsptrrec": 342, "ptr": 342, "dnssoarec": 343, "soa": 343, "dnssrvrec": 344, "dnssubnetcach": 345, "subnet": 345, "dnssuffix": 346, "suffix": 346, "dnstxtrec": 347, "txt": 347, "dnsview": [348, 364], "view": [348, 651], "dnszone": 349, "zone": 349, "endpointinfo": 350, "inform": 350, "extendedmemoryparam": 351, "extend": 351, "memori": 351, "us": 351, "lsn": [351, 465, 467, 469, 482, 484, 485, 486, 487, 489, 490, 491, 492, 493, 494, 496], "subscrib": [351, 717, 718, 720], "store": 351, "feoaction": 352, "front": [352, 355], "end": [352, 355], "optim": [352, 355], "feoglobal_feopolicy_bind": 353, "feoglob": 353, "feoparamet": 354, "feo": 354, "fis_channel_bind": 356, "fi": [356, 357, 358], "fis_interface_bind": 357, "forwardingsess": 359, "session": [359, 397, 420, 491, 492, 544, 628, 744, 755, 756, 757, 829, 833, 834], "gslbconfig": 360, "gslb": [360, 363, 366, 369, 370], "config": [360, 387, 502, 523, 606, 631], "gslbldnsentri": [361, 362], "ldn": [361, 362], "gslbparamet": 363, "gslbservice_dnsview_bind": 364, "gslbservic": [364, 365, 366, 372], "gslbservice_lbmonitor_bind": 365, "lbmonitor": [365, 368, 416, 417, 418, 634, 636], "gslbservicegroup_gslbservicegroupmember_bind": 367, "gslbservicegroup": [367, 368, 369, 373], "gslbservicegroupmemb": 367, "gslbservicegroup_lbmonitor_bind": 368, "site": 370, "gslbvserver_domain_bind": 371, "gslbvserver_gslbservice_bind": 372, "gslbvserver_gslbservicegroup_bind": 373, "gslbvserver_lbpolicy_bind": 374, "lbpolici": [374, 411, 421, 422, 441], "load": [375, 442], "balanc": [375, 442], "gslbvserver_spilloverpolicy_bind": 376, "hafailov": 377, "failov": 377, "hafil": 378, "hanod": [379, 380, 381], "hanode_routemonitor6_bind": 380, "routemonitor6": 380, "hanode_routemonitor_bind": 381, "hasync": 382, "sync": 382, "icaaccessprofil": 383, "ica": [383, 384, 387, 388, 824], "accessprofil": 383, "icaact": 384, "icaglobal_icapolicy_bind": 385, "icaglob": 385, "icalatencyprofil": 386, "latenc": 386, "monitor": [386, 417], "icaparamet": 387, "inat": [389, 390], "inbound": 389, "nat": 389, "inatparam": 390, "descript": 391, "plugin": [391, 897], "instal": 392, "interfacepair": 393, "pair": [393, 655], "ip6tunnel": 394, "ip6": [394, 395, 485, 537], "ip6tunnelparam": 395, "ipsecalgprofil": [396, 474], "ipsec": [396, 397, 398, 399], "alg": [396, 397], "ipsecalgsess": 397, "ipsecparamet": 398, "paramt": [398, 772], "ipsecprofil": 399, "ipset": [400, 401, 402], "network": [400, 471, 508, 512], "ipset_nsip6_bind": 401, "ipset_nsip_bind": 402, "iptunnel": [403, 507], "ip": [403, 404, 405, 538], "iptunnelparam": 404, "v6": 405, "l2param": 406, "layer": [406, 407, 408], "2": 406, "relat": [406, 407, 408], "l3param": 407, "3": 407, "l4param": 408, "4": 408, "lacp": 409, "aggreg": 409, "control": [409, 552], "protocol": [409, 597, 773], "lbaction": 410, "lb": [410, 413, 419, 421, 423, 424, 425, 426], "lbglobal_lbpolicy_bind": 411, "lbglobal": 411, "lbgroup_lbvserver_bind": 412, "lbgroup": [412, 413], "lbmetrictable_metric_bind": 414, "lbmetrict": [414, 415], "metric": [414, 415, 416], "lbmonitor_metric_bind": 416, "lbmonitor_sslcertkey_bind": 418, "sslcertkei": [418, 656, 661, 662, 690, 696, 702, 707, 813], "lbparamet": 419, "lbpersistentsess": 420, "persist": 420, "lbpolicylabel_lbpolicy_bind": 422, "lbpolicylabel": [422, 423], "lbprofil": 424, "lbroute6": 425, "route6": [425, 629], "lbrout": 426, "rout": [426, 621, 623, 629, 630, 631], "lbsipparamet": 427, "sip": 427, "lbvserver_analyticsprofile_bind": 428, "lbvserver_appflowpolicy_bind": 429, "lbvserver_appfwpolicy_bind": 430, "lbvserver_appqoepolicy_bind": 431, "lbvserver_auditnslogpolicy_bind": 432, "lbvserver_auditsyslogpolicy_bind": 433, "lbvserver_authorizationpolicy_bind": 434, "lbvserver_botpolicy_bind": 435, "lbvserver_cachepolicy_bind": 436, "lbvserver_cmppolicy_bind": 437, "lbvserver_contentinspectionpolicy_bind": 438, "lbvserver_dnspolicy64_bind": 439, "lbvserver_feopolicy_bind": 440, "lbvserver_lbpolicy_bind": 441, "lbvserver_responderpolicy_bind": 443, "lbvserver_rewritepolicy_bind": 444, "lbvserver_service_bind": 445, "lbvserver_servicegroup_bind": 446, "servicegroup": [446, 636, 637, 638], "lbvserver_spilloverpolicy_bind": 447, "lbvserver_tmtrafficpolicy_bind": 448, "lbvserver_transformpolicy_bind": 449, "lbvserver_videooptimizationdetectionpolicy_bind": 450, "videooptimizationdetectionpolici": [450, 776, 778, 779], "lbvserver_videooptimizationpacingpolicy_bind": 451, "videooptimizationpacingpolici": [451, 780, 782, 784], "lbwlm_lbvserver_bind": 452, "lbwlm": [452, 453], "manag": [453, 645], "linkset_channel_bind": 454, "linkset": [454, 455, 456, 788], "linkset_interface_bind": 455, "lldpneighbor": 457, "lldp": [457, 458], "neighbor": 457, "lldpparam": 458, "locat": [459, 460, 461, 462], "locationfile6": 460, "file6": 460, "locationfil": 461, "locationparamet": 462, "login": 463, "logout": 464, "from": 464, "lsnappsattribut": [465, 466], "attribut": 465, "lsnappsprofile_lsnappsattributes_bind": 466, "lsnappsprofil": [466, 467, 468, 475], "lsnappsprofile_port_bind": 468, "port": 468, "lsnclient": [469, 470, 471, 472, 473], "client": 469, "lsnclient_network6_bind": 470, "network6": 470, "lsnclient_network_bind": 471, "lsnclient_nsacl6_bind": 472, "nsacl6": 472, "lsnclient_nsacl_bind": 473, "nsacl": [473, 516], "lsngroup_ipsecalgprofile_bind": 474, "lsngroup": [474, 475, 476, 477, 478, 479, 480, 481, 482, 483], "lsngroup_lsnappsprofile_bind": 475, "lsngroup_lsnhttphdrlogprofile_bind": 476, "lsnhttphdrlogprofil": [476, 484], "lsngroup_lsnlogprofile_bind": 477, "lsnlogprofil": [477, 486], "lsngroup_lsnpool_bind": 478, "lsnpool": [478, 488, 489], "lsngroup_lsnrtspalgprofile_bind": 479, "lsnrtspalgprofil": [479, 490], "lsngroup_lsnsipalgprofile_bind": 480, "lsnsipalgprofil": [480, 494], "lsngroup_lsntransportprofile_bind": 481, "lsntransportprofil": [481, 496], "lsngroup_pcpserver_bind": 483, "pcpserver": [483, 581], "http": [484, 534, 535, 587, 596], "header": 484, "lsnip6profil": 485, "lsnparamet": 487, "lsnpool_lsnip_bind": 488, "lsnip": 488, "pool": 489, "rtspalg": [490, 491], "lsnrtspalgsess": 491, "lsnsession": 492, "lsnsipalgcal": 493, "sipalg": [493, 494], "call": 493, "lsnstatic": 495, "static": 495, "map": [495, 498, 499, 501, 588, 593, 894], "transport": 496, "mapbmr_bmrv4network_bind": 497, "mapbmr": [497, 498, 500], "bmrv4network": 497, "t": [498, 499, 501], "basic": 498, "rule": [498, 499], "mapdmr": 499, "default": [499, 529], "mapdomain_mapbmr_bind": 500, "mapdomain": [500, 501], "nat64": [502, 503], "nat64param": 503, "nd6": [504, 505], "nd6ravari": [505, 506], "router": [505, 579, 882, 886], "advertis": [505, 579], "nd6ravariables_onlinkipv6prefix_bind": 506, "onlinkipv6prefix": [506, 579], "netbridge_iptunnel_bind": 507, "netbridg": [507, 508, 509, 510, 511], "netbridge_nsip6_bind": 509, "netbridge_nsip_bind": 510, "netbridge_vlan_bind": 511, "netprofil": [512, 513, 514], "netprofile_natrule_bind": 513, "natrul": 513, "netprofile_srcportset_bind": 514, "srcportset": 514, "nsacls6": 515, "acl6": [515, 557], "acl": [516, 558], "nsappflowcollector": 517, "nsappflowparam": 518, "nsaptlicens": 519, "aptlicens": 519, "nsassign": 520, "assign": 520, "nscapac": 521, "capac": 521, "nscentralmanagementserv": 522, "centralmanagementserv": 522, "nsconfig": 523, "nsconsoleloginprompt": 524, "consol": 524, "prompt": 524, "nscqaparam": 525, "cqaparam": 525, "nsdhcpparam": 526, "dhcp": 526, "nsdiamet": 527, "diamet": 527, "nsencryptionkei": 528, "encrypt": [528, 529, 741], "nsencryptionparam": 529, "nsextens": 530, "extens": 530, "nsfeatur": 531, "featur": 531, "nshmackei": 532, "hmac": 532, "nshostnam": 533, "host": 533, "nshttpparam": 534, "nshttpprofil": 535, "nsicapprofil": 536, "icap": 536, "nslicenseparamet": 539, "licenseparamet": 539, "nslicenseproxyserv": 540, "licenseproxyserv": 540, "nslicenseserv": 541, "licenseserv": 541, "limit": [542, 543, 544], "indetifi": 542, "nslimitselector": 543, "nslimitsess": 544, "nsmigrat": 545, "migrat": 545, "oper": [545, 568], "nsmode": 546, "mode": 546, "nsparam": 547, "nspartition_bridgegroup_bind": 548, "nspartit": [548, 549, 550, 551, 737, 747], "admin": 549, "partit": 549, "nspartition_vlan_bind": 550, "nspartition_vxlan_bind": 551, "vxlan": [551, 572, 890, 891, 892, 893, 894, 895], "nsratecontrol": 552, "rate": 552, "nsrpcnode": 553, "rpc": 553, "nsservicefunct": [554, 556], "function": 554, "nsservicepath": [555, 556], "chain": 555, "nsservicepath_nsservicefunction_bind": 556, "nssimpleacl6": 557, "simpl": [557, 558], "nssimpleacl": 558, "nsspparam": 559, "surg": [559, 561], "protect": 559, "nsstat": 560, "stat": 560, "nssurgeq": 561, "queue": 561, "nstcpbufparam": 562, "tcp": [562, 563, 564], "buffer": 562, "nstcpparam": 563, "nstcpprofil": 564, "nstimeout": 565, "timeout": 565, "nstimer_autoscalepolicy_bind": 566, "nstimer": [566, 567], "timer": 567, "nstrace": 568, "nstrafficdomain_bridgegroup_bind": 569, "nstrafficdomain": [569, 570, 571, 572], "traffic": [570, 758, 759, 835, 836], "nstrafficdomain_vlan_bind": 571, "nstrafficdomain_vxlan_bind": 572, "nsvariabl": 573, "nsvpxparam": 574, "vpx": 574, "nsweblogparam": 575, "nsxmlnamespac": 576, "namespac": [576, 896], "ntpparam": 577, "ntp": [577, 578], "ntpserver": 578, "prefix": 579, "pcpprofil": 580, "pcp": 580, "ping6": 582, "ping": 583, "policydataset": [584, 585], "policydataset_value_bind": 585, "policyexpress": 586, "express": 586, "policyhttpcallout": 587, "policyparam": 589, "policypatset": [590, 591], "pat": 590, "policypatset_pattern_bind": 591, "pattern": [591, 594], "policypatsetfil": 592, "patset": 592, "policystringmap": [593, 594], "string": 593, "policystringmap_pattern_bind": 594, "policyurlset": 595, "url": [595, 764, 767, 837, 838, 839], "protocolhttpband": 596, "request": [596, 664], "band": 596, "ptp": 597, "precis": 597, "time": 597, "quicbridgeprofil": 598, "quic": [598, 599, 600], "quicparam": 599, "quicprofil": 600, "radiusnod": 601, "rdpclientprofil": 602, "rdp": [602, 603, 604], "clientprofil": 602, "rdpconnect": 603, "rdpserverprofil": 604, "serverprofil": 604, "reboot": 605, "reportingconfig": 606, "report": 606, "reputationset": 607, "reput": 607, "responderact": 608, "respond": [608, 610, 612, 613], "responderglobal_responderpolicy_bind": 609, "responderglob": 609, "responderhtmlpag": 610, "responderparam": 611, "responderpolicylabel": [613, 614], "responderpolicylabel_responderpolicy_bind": 614, "rewriteact": 615, "rewrit": [615, 617, 618, 619, 793, 794], "rewriteglobal_rewritepolicy_bind": 616, "rewriteglob": 616, "rewriteparam": 617, "rewritepolicylabel": [619, 620], "rewritepolicylabel_rewritepolicy_bind": 620, "rnat6": [621, 622], "rnat": [621, 623, 624, 625, 627, 628], "rnat6_nsip6_bind": 622, "rnat_nsip_bind": 624, "rnat_retainsourceportset_bind": 625, "retainsourceportset": 625, "rnatglobal_auditsyslogpolicy_bind": 626, "rnatglob": 626, "rnatparam": 627, "rnatsess": 628, "6": 629, "routerdynamicrout": 631, "dynam": 631, "rsskeytyp": 632, "rss": 632, "service_lbmonitor_bind": 634, "servicegroup_lbmonitor_bind": 636, "servicegroup_servicegroupmember_bind": 638, "servicegroupmemb": 638, "smppparam": 639, "smpp": [639, 640], "smppuser": 640, "snmpalarm": 641, "alarm": 641, "snmpcommun": 642, "commun": 642, "snmpengineid": 643, "snmp": [643, 644, 646, 647, 648, 650], "id": [643, 882, 886, 888], "snmpgroup": 644, "snmpmanag": 645, "snmpmib": 646, "mib": 646, "snmpoption": 647, "option": 647, "snmptrap": [648, 649], "trap": 648, "snmptrap_snmpuser_bind": 649, "snmpuser": [649, 650], "snmpview": 651, "spilloveract": 652, "spillov": [652, 653], "sslaction": 654, "ssl": [654, 679, 680, 682, 685, 686, 689, 695, 701, 706], "sslcacertgroup": [655, 656], "ca": 655, "sslcacertgroup_sslcertkey_bind": 656, "sslcert": 657, "cerif": 657, "sslcertbundl": 658, "import": [658, 659, 668, 669, 679], "certbundl": 658, "sslcertfil": 659, "certfil": 659, "sslcertificatechain": 660, "sslcertkey_sslocspresponder_bind": 662, "sslocsprespond": [662, 681], "sslcertkeybundl": [663, 708], "certkei": 663, "bundl": 663, "sslcertreq": 664, "sslcipher": [665, 666, 691, 697, 703, 709], "cipher": 665, "sslcipher_sslciphersuite_bind": 666, "sslciphersuit": [666, 692, 698, 704, 710], "sslcrl": 667, "revoc": 667, "list": 667, "sslcrlfile": 668, "crl": 668, "ssldhfile": 669, "dh": [669, 670], "ssldhparam": 670, "ssldtlsprofil": 671, "dtl": 671, "sslecdsakei": 672, "ecdsa": 672, "sslfip": 673, "fip": [673, 674, 676], "sslfipskei": 674, "sslfipssimsourc": 675, "fipssim": 675, "sourc": 675, "sslfipssimtarget": 676, "sim": 676, "target": 676, "sslglobal_sslpolicy_bind": 677, "sslglobal": 677, "sslpolici": [677, 685, 687, 699, 711], "sslhsmkei": 678, "hsm": 678, "sslkeyfil": 679, "ssllogprofil": 680, "ocsp": 681, "sslparamet": 682, "sslpkcs12": 683, "pkcs12": 683, "sslpkcs8": 684, "pkcs8": 684, "sslpolicylabel": [686, 687], "sslpolicylabel_sslpolicy_bind": 687, "sslprofile_ecccurve_bind": 688, "sslprofil": [688, 689, 690, 691, 692], "ecccurv": [688, 694, 700, 705], "sslprofile_sslcertkey_bind": 690, "sslprofile_sslcipher_bind": 691, "sslprofile_sslciphersuite_bind": 692, "sslrsakei": 693, "rsa": 693, "sslservice_ecccurve_bind": 694, "sslservic": [694, 695, 696, 697, 698, 699], "sslservice_sslcertkey_bind": 696, "sslservice_sslcipher_bind": 697, "sslservice_sslciphersuite_bind": 698, "sslservice_sslpolicy_bind": 699, "sslservicegroup_ecccurve_bind": 700, "sslservicegroup": [700, 701, 702, 703, 704], "sslservicegroup_sslcertkey_bind": 702, "sslservicegroup_sslcipher_bind": 703, "sslservicegroup_sslciphersuite_bind": 704, "sslvserver_ecccurve_bind": 705, "sslvserver": [705, 706, 707, 708, 709, 710, 711], "sslvserver_sslcertkey_bind": 707, "sslvserver_sslcertkeybundle_bind": 708, "sslvserver_sslcipher_bind": 709, "sslvserver_sslciphersuite_bind": 710, "sslvserver_sslpolicy_bind": 711, "sslwrapkei": 712, "wrap": 712, "identifi": 713, "streamselector": 714, "streamsess": 715, "subscribergxinterfac": 716, "gx": 716, "subscriberparam": 717, "subscriberprofil": 718, "subscriberradiusinterfac": 719, "subscribersess": 720, "sesion": 720, "systemadmuserinfo": 721, "systembackup": 722, "backup": 722, "restor": [722, 743], "systemcmdpolici": [723, 738, 748], "command": 723, "systemcollectionparam": 724, "systemcpuparam": 725, "systementitydata": 726, "systemextramgmtcpu": 727, "systemfil": 728, "systemglobal_auditnslogpolicy_bind": 729, "systemglob": [729, 730, 731, 732, 733, 734, 735], "systemglobal_auditsyslogpolicy_bind": 730, "systemglobal_authenticationldappolicy_bind": 731, "systemglobal_authenticationlocalpolicy_bind": 732, "systemglobal_authenticationpolicy_bind": 733, "systemglobal_authenticationradiuspolicy_bind": 734, "systemglobal_authenticationtacacspolicy_bind": 735, "systemgroup": [736, 737, 738, 739], "systemgroup_nspartition_bind": 737, "systemgroup_systemcmdpolicy_bind": 738, "systemgroup_systemuser_bind": 739, "systemus": [739, 746, 747, 748], "systemhwerror": 740, "hardwar": 740, "systemkek": 741, "systemparamet": 742, "systemrestorepoint": 743, "restorepoint": 743, "auto": 743, "systemsess": 744, "systemsshkei": 745, "systemuser_nspartition_bind": 747, "systemuser_systemcmdpolicy_bind": 748, "tmformssoact": 749, "tmglobal_auditnslogpolicy_bind": 750, "tmglobal": [750, 751, 752, 753], "tmglobal_auditsyslogpolicy_bind": 751, "tmglobal_tmsessionpolicy_bind": 752, "tmglobal_tmtrafficpolicy_bind": 753, "tmsamlssoprofil": 754, "tmsessionact": 755, "tm": [755, 757, 758, 759], "tmsessionparamet": 756, "tmtrafficact": 758, "traceroute6": 760, "tracerout": 761, "transformact": 762, "transform": [762, 764, 765, 767], "transformglobal_transformpolicy_bind": 763, "transformglob": 763, "transformpolicylabel": [765, 766], "transformpolicylabel_transformpolicy_bind": 766, "transformprofil": 767, "tunnelglobal_tunneltrafficpolicy_bind": 768, "tunnelglob": 768, "tunneltrafficpolici": [768, 769], "ulfdserv": 770, "ulfd": 770, "urlfilteringcategor": 771, "categor": 771, "urlfilteringparamet": 772, "urlfilt": 772, "userprotocol": 773, "uservserv": 774, "videooptimizationdetectionact": 775, "videooptim": [775, 776, 777, 781, 782, 783, 785], "detectionact": 775, "detectionpolici": 776, "videooptimizationdetectionpolicylabel": [777, 778], "detect": 777, "videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_bind": 778, "videooptimizationglobaldetection_videooptimizationdetectionpolicy_bind": 779, "videooptimizationglobaldetect": 779, "videooptimizationglobalpacing_videooptimizationpacingpolicy_bind": 780, "videooptimizationglobalpac": 780, "videooptimizationpacingact": 781, "pacingact": 781, "pacingpolici": 782, "videooptimizationpacingpolicylabel": [783, 784], "pace": 783, "videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_bind": 784, "videooptimizationparamet": 785, "vlan_channel_bind": 786, "vlan_interface_bind": 787, "vlan_linkset_bind": 788, "vlan_nsip6_bind": 790, "vlan_nsip_bind": 791, "vpnalwaysonprofil": 792, "alwyason": 792, "vpnclientlessaccesspolici": [793, 815, 870], "clientless": [793, 794], "vpn": [793, 794, 827, 833, 834, 835, 836, 837, 838, 839, 865], "vpnclientlessaccessprofil": 794, "vpnepaprofil": [795, 871], "vpneula": [796, 816, 872], "eula": 796, "vserver": [796, 830, 889], "vpnformssoact": 797, "vpnglobal_appcontroller_bind": 798, "vpnglobal": [798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823], "appcontrol": [798, 842], "vpnglobal_auditnslogpolicy_bind": 799, "vpnglobal_auditsyslogpolicy_bind": 800, "vpnglobal_authenticationcertpolicy_bind": 801, "vpnglobal_authenticationldappolicy_bind": 802, "vpnglobal_authenticationlocalpolicy_bind": 803, "vpnglobal_authenticationnegotiatepolicy_bind": 804, "vpnglobal_authenticationpolicy_bind": 805, "vpnglobal_authenticationradiuspolicy_bind": 806, "vpnglobal_authenticationsamlpolicy_bind": 807, "vpnglobal_authenticationtacacspolicy_bind": 808, "vpnglobal_domain_bind": 809, "vpnglobal_intranetip6_bind": 810, "vpnglobal_intranetip_bind": 811, "vpnglobal_sharefileserver_bind": 812, "sharefileserv": [812, 868], "vpnglobal_sslcertkey_bind": 813, "vpnglobal_staserver_bind": 814, "staserv": [814, 869], "vpnglobal_vpnclientlessaccesspolicy_bind": 815, "vpnglobal_vpneula_bind": 816, "vpnglobal_vpnintranetapplication_bind": 817, "vpnglobal_vpnnexthopserver_bind": 818, "vpnnexthopserv": [818, 826, 874], "vpnglobal_vpnportaltheme_bind": 819, "vpnglobal_vpnsessionpolicy_bind": 820, "vpnglobal_vpntrafficpolicy_bind": 821, "vpnglobal_vpnurl_bind": 822, "vpnglobal_vpnurlpolicy_bind": 823, "vpnicaconnect": 824, "sslvpn": 825, "intranet": 825, "next": 826, "hop": 826, "vpnparamet": 827, "vpnpcoipconnect": 828, "pcoip": [828, 829, 830], "vpnpcoipprofil": 829, "vpnpcoipvserverprofil": 830, "portalthem": 831, "vpnsamlssoprofil": 832, "vpnsessionact": 833, "vpntrafficact": 835, "vpnurlact": 838, "vpnvserver_aaapreauthenticationpolicy_bind": 840, "vpnvserver_analyticsprofile_bind": 841, "vpnvserver_appcontroller_bind": 842, "vpnvserver_appflowpolicy_bind": 843, "vpnvserver_auditnslogpolicy_bind": 844, "vpnvserver_auditsyslogpolicy_bind": 845, "vpnvserver_authenticationcertpolicy_bind": 846, "vpnvserver_authenticationdfapolicy_bind": 847, "vpnvserver_authenticationldappolicy_bind": 848, "vpnvserver_authenticationlocalpolicy_bind": 849, "vpnvserver_authenticationloginschemapolicy_bind": 850, "vpnvserver_authenticationnegotiatepolicy_bind": 851, "vpnvserver_authenticationoauthidppolicy_bind": 852, "vpnvserver_authenticationpolicy_bind": 853, "vpnvserver_authenticationradiuspolicy_bind": 854, "vpnvserver_authenticationsamlidppolicy_bind": 855, "vpnvserver_authenticationsamlpolicy_bind": 856, "vpnvserver_authenticationtacacspolicy_bind": 857, "vpnvserver_authenticationwebauthpolicy_bind": 858, "vpnvserver_cachepolicy_bind": 859, "vpnvserver_cspolicy_bind": 860, "vpnvserver_feopolicy_bind": 861, "vpnvserver_icapolicy_bind": 862, "vpnvserver_intranetip6_bind": 863, "vpnvserver_intranetip_bind": 864, "vpnvserver_responderpolicy_bind": 866, "vpnvserver_rewritepolicy_bind": 867, "vpnvserver_sharefileserver_bind": 868, "vpnvserver_staserver_bind": 869, "vpnvserver_vpnclientlessaccesspolicy_bind": 870, "vpnvserver_vpnepaprofile_bind": 871, "vpnvserver_vpneula_bind": 872, "vpnvserver_vpnintranetapplication_bind": 873, "vpnvserver_vpnnexthopserver_bind": 874, "vpnvserver_vpnportaltheme_bind": 875, "vpnvserver_vpnsessionpolicy_bind": 876, "vpnvserver_vpntrafficpolicy_bind": 877, "vpnvserver_vpnurl_bind": 878, "vpnvserver_vpnurlpolicy_bind": 879, "vrid6_channel_bind": 880, "vrid6": [880, 881, 882, 883], "vrid6_interface_bind": 881, "vrid6_trackinterface_bind": 883, "trackinterfac": [883, 887], "vrid_channel_bind": 884, "vrid": [884, 885, 886, 887], "vrid_interface_bind": 885, "vrid_trackinterface_bind": 887, "vridparam": 888, "vr": 888, "vxlan_nsip6_bind": 891, "vxlan_nsip_bind": 892, "vxlan_srcip_bind": 893, "srcip": 893, "vxlanvlanmap": [894, 895], "vxlanvlanmap_vxlan_bind": 895, "welcom": 897, "my": 897, "ansibl": 897, "document": 897, "refer": 897}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"Index of all Collection Environment Variables": [[0, "index-of-all-collection-environment-variables"]], "Collection Index": [[1, "collection-index"]], "Index of all Modules": [[2, "index-of-all-modules"]], "netscaler.adc": [[2, "netscaler-adc"]], "netscaler.adc.aaacertparams module \u2013 Configuration for certificate parameter resource.": [[3, "netscaler-adc-aaacertparams-module-configuration-for-certificate-parameter-resource"]], "Synopsis": [[3, "synopsis"], [4, "synopsis"], [5, "synopsis"], [6, "synopsis"], [7, "synopsis"], [8, "synopsis"], [9, "synopsis"], [10, "synopsis"], [11, "synopsis"], [12, "synopsis"], [13, "synopsis"], [14, "synopsis"], [15, "synopsis"], [16, "synopsis"], [17, "synopsis"], [18, "synopsis"], [19, "synopsis"], [20, "synopsis"], [21, "synopsis"], [22, "synopsis"], [23, "synopsis"], [24, "synopsis"], [25, "synopsis"], [26, "synopsis"], [27, "synopsis"], [28, "synopsis"], [29, "synopsis"], [30, "synopsis"], [31, "synopsis"], [32, "synopsis"], [33, "synopsis"], [34, "synopsis"], [35, "synopsis"], [36, "synopsis"], [37, "synopsis"], [38, "synopsis"], [39, "synopsis"], [40, "synopsis"], [41, "synopsis"], [42, "synopsis"], [43, "synopsis"], [44, "synopsis"], [45, "synopsis"], [46, "synopsis"], [47, "synopsis"], [48, "synopsis"], [49, "synopsis"], [50, "synopsis"], [51, "synopsis"], [52, "synopsis"], [53, "synopsis"], [54, "synopsis"], [55, "synopsis"], [56, "synopsis"], [57, "synopsis"], [58, "synopsis"], [59, "synopsis"], [60, "synopsis"], [61, "synopsis"], [62, "synopsis"], [63, "synopsis"], [64, "synopsis"], [65, "synopsis"], [66, "synopsis"], [67, "synopsis"], [68, "synopsis"], [69, "synopsis"], [70, "synopsis"], [71, "synopsis"], [72, "synopsis"], [73, "synopsis"], [74, "synopsis"], [75, "synopsis"], [76, "synopsis"], [77, "synopsis"], [78, "synopsis"], [79, "synopsis"], [80, "synopsis"], [81, "synopsis"], [82, "synopsis"], [83, "synopsis"], [84, "synopsis"], [85, "synopsis"], [86, "synopsis"], [87, "synopsis"], [88, "synopsis"], [89, "synopsis"], [90, "synopsis"], [91, "synopsis"], [92, "synopsis"], [93, "synopsis"], [94, "synopsis"], [95, "synopsis"], [96, "synopsis"], [97, "synopsis"], [98, "synopsis"], [99, "synopsis"], [100, "synopsis"], [101, "synopsis"], [102, "synopsis"], [103, "synopsis"], [104, "synopsis"], [105, "synopsis"], [106, "synopsis"], [107, "synopsis"], [108, "synopsis"], [109, "synopsis"], [110, "synopsis"], [111, "synopsis"], [112, "synopsis"], [113, "synopsis"], [114, "synopsis"], [115, "synopsis"], [116, "synopsis"], [117, "synopsis"], [118, "synopsis"], [119, "synopsis"], [120, "synopsis"], [121, "synopsis"], [122, "synopsis"], [123, "synopsis"], [124, "synopsis"], [125, "synopsis"], [126, "synopsis"], [127, "synopsis"], [128, "synopsis"], [129, "synopsis"], [130, "synopsis"], [131, "synopsis"], [132, "synopsis"], [133, "synopsis"], [134, "synopsis"], [135, "synopsis"], [136, "synopsis"], [137, "synopsis"], [138, "synopsis"], [139, "synopsis"], [140, "synopsis"], [141, "synopsis"], [142, "synopsis"], [143, "synopsis"], [144, "synopsis"], [145, "synopsis"], [146, "synopsis"], [147, "synopsis"], [148, "synopsis"], [149, "synopsis"], [150, "synopsis"], [151, "synopsis"], [152, "synopsis"], [153, "synopsis"], [154, "synopsis"], [155, "synopsis"], [156, "synopsis"], [157, "synopsis"], [158, "synopsis"], [159, "synopsis"], [160, "synopsis"], [161, "synopsis"], [162, "synopsis"], [163, "synopsis"], [164, "synopsis"], [165, "synopsis"], [166, "synopsis"], [167, "synopsis"], [168, "synopsis"], [169, "synopsis"], [170, "synopsis"], [171, "synopsis"], [172, "synopsis"], [173, "synopsis"], [174, "synopsis"], [175, "synopsis"], [176, "synopsis"], [177, "synopsis"], [178, "synopsis"], [179, "synopsis"], [180, "synopsis"], [181, "synopsis"], [182, "synopsis"], [183, "synopsis"], [184, "synopsis"], [185, "synopsis"], [186, "synopsis"], [187, "synopsis"], [188, "synopsis"], [189, "synopsis"], [190, "synopsis"], [191, "synopsis"], [192, "synopsis"], [193, "synopsis"], [194, "synopsis"], [195, "synopsis"], [196, "synopsis"], [197, "synopsis"], [198, "synopsis"], [199, "synopsis"], [200, "synopsis"], [201, "synopsis"], [202, "synopsis"], [203, "synopsis"], [204, "synopsis"], [205, "synopsis"], [206, "synopsis"], [207, "synopsis"], [208, "synopsis"], [209, "synopsis"], [210, "synopsis"], [211, "synopsis"], [212, "synopsis"], [213, "synopsis"], [214, "synopsis"], [215, "synopsis"], [216, "synopsis"], [217, "synopsis"], [218, "synopsis"], [219, "synopsis"], [220, "synopsis"], [221, "synopsis"], [222, "synopsis"], [223, "synopsis"], [224, "synopsis"], [225, "synopsis"], [226, "synopsis"], [227, "synopsis"], [228, "synopsis"], [229, "synopsis"], [230, "synopsis"], [231, "synopsis"], [232, "synopsis"], [233, "synopsis"], [234, "synopsis"], [235, "synopsis"], [236, "synopsis"], [237, "synopsis"], [238, "synopsis"], [239, "synopsis"], [240, "synopsis"], [241, "synopsis"], [242, "synopsis"], [243, "synopsis"], [244, "synopsis"], [245, "synopsis"], [246, "synopsis"], [247, "synopsis"], [248, "synopsis"], [249, "synopsis"], [250, "synopsis"], [251, "synopsis"], [252, "synopsis"], [253, "synopsis"], [254, "synopsis"], [255, "synopsis"], [256, "synopsis"], [257, "synopsis"], [258, "synopsis"], [259, "synopsis"], [260, "synopsis"], [261, "synopsis"], [262, "synopsis"], [263, "synopsis"], [264, "synopsis"], [265, "synopsis"], [266, "synopsis"], [267, "synopsis"], [268, "synopsis"], [269, "synopsis"], [270, "synopsis"], [271, "synopsis"], [272, "synopsis"], [273, "synopsis"], [274, "synopsis"], [275, "synopsis"], [276, "synopsis"], [277, "synopsis"], [278, "synopsis"], [279, "synopsis"], [280, "synopsis"], [281, "synopsis"], [282, "synopsis"], [283, "synopsis"], [284, "synopsis"], [285, "synopsis"], [286, "synopsis"], [287, "synopsis"], [288, "synopsis"], [289, "synopsis"], [290, "synopsis"], [291, "synopsis"], [292, "synopsis"], [293, "synopsis"], [294, "synopsis"], [295, "synopsis"], [296, "synopsis"], [297, "synopsis"], [298, "synopsis"], [299, "synopsis"], [300, "synopsis"], [301, "synopsis"], [302, "synopsis"], [303, "synopsis"], [304, "synopsis"], [305, "synopsis"], [306, "synopsis"], [307, "synopsis"], [308, "synopsis"], [309, "synopsis"], [310, "synopsis"], [311, "synopsis"], [312, "synopsis"], [313, "synopsis"], [314, "synopsis"], [315, "synopsis"], [316, "synopsis"], [317, "synopsis"], [318, "synopsis"], [319, "synopsis"], [320, "synopsis"], [321, "synopsis"], [322, "synopsis"], [323, "synopsis"], [324, "synopsis"], [325, "synopsis"], [326, "synopsis"], [327, "synopsis"], [328, "synopsis"], [329, "synopsis"], [330, "synopsis"], [331, "synopsis"], [332, "synopsis"], [333, "synopsis"], [334, "synopsis"], [335, "synopsis"], [336, "synopsis"], [337, "synopsis"], [338, "synopsis"], [339, "synopsis"], [340, "synopsis"], [341, "synopsis"], [342, "synopsis"], [343, "synopsis"], [344, "synopsis"], [345, "synopsis"], [346, "synopsis"], [347, "synopsis"], [348, "synopsis"], [349, "synopsis"], [350, "synopsis"], [351, "synopsis"], [352, "synopsis"], [353, "synopsis"], [354, "synopsis"], [355, "synopsis"], [356, "synopsis"], [357, "synopsis"], [358, "synopsis"], [359, "synopsis"], [360, "synopsis"], [361, "synopsis"], [362, "synopsis"], [363, "synopsis"], [364, "synopsis"], [365, "synopsis"], [366, "synopsis"], [367, "synopsis"], [368, "synopsis"], [369, "synopsis"], [370, "synopsis"], [371, "synopsis"], [372, "synopsis"], [373, "synopsis"], [374, "synopsis"], [375, "synopsis"], [376, "synopsis"], [377, "synopsis"], [378, "synopsis"], [379, "synopsis"], [380, "synopsis"], [381, "synopsis"], [382, "synopsis"], [383, "synopsis"], [384, "synopsis"], [385, "synopsis"], [386, "synopsis"], [387, "synopsis"], [388, "synopsis"], [389, "synopsis"], [390, "synopsis"], [392, "synopsis"], [393, "synopsis"], [394, "synopsis"], [395, "synopsis"], [396, "synopsis"], [397, "synopsis"], [398, "synopsis"], [399, "synopsis"], [400, "synopsis"], [401, "synopsis"], [402, "synopsis"], [403, "synopsis"], [404, "synopsis"], [405, "synopsis"], [406, "synopsis"], [407, "synopsis"], [408, "synopsis"], [409, "synopsis"], [410, "synopsis"], [411, "synopsis"], [412, "synopsis"], [413, "synopsis"], [414, "synopsis"], [415, "synopsis"], [416, "synopsis"], [417, "synopsis"], [418, "synopsis"], [419, "synopsis"], [420, "synopsis"], [421, "synopsis"], [422, "synopsis"], [423, "synopsis"], [424, "synopsis"], [425, "synopsis"], [426, "synopsis"], [427, "synopsis"], [428, "synopsis"], [429, "synopsis"], [430, "synopsis"], [431, "synopsis"], [432, "synopsis"], [433, "synopsis"], [434, "synopsis"], [435, "synopsis"], [436, "synopsis"], [437, "synopsis"], [438, "synopsis"], [439, "synopsis"], [440, "synopsis"], [441, "synopsis"], [442, "synopsis"], [443, "synopsis"], [444, "synopsis"], [445, "synopsis"], [446, "synopsis"], [447, "synopsis"], [448, "synopsis"], [449, "synopsis"], [450, "synopsis"], [451, "synopsis"], [452, "synopsis"], [453, "synopsis"], [454, "synopsis"], [455, "synopsis"], [456, "synopsis"], [457, "synopsis"], [458, "synopsis"], [459, "synopsis"], [460, "synopsis"], [461, "synopsis"], [462, "synopsis"], [463, "synopsis"], [464, "synopsis"], [465, "synopsis"], [466, "synopsis"], [467, "synopsis"], [468, "synopsis"], [469, "synopsis"], [470, "synopsis"], [471, "synopsis"], [472, "synopsis"], [473, "synopsis"], [474, "synopsis"], [475, "synopsis"], [476, "synopsis"], [477, "synopsis"], [478, "synopsis"], [479, "synopsis"], [480, "synopsis"], [481, "synopsis"], [482, "synopsis"], [483, "synopsis"], [484, "synopsis"], [485, "synopsis"], [486, "synopsis"], [487, "synopsis"], [488, "synopsis"], [489, "synopsis"], [490, "synopsis"], [491, "synopsis"], [492, "synopsis"], [493, "synopsis"], [494, "synopsis"], [495, "synopsis"], [496, "synopsis"], [497, "synopsis"], [498, "synopsis"], [499, "synopsis"], [500, "synopsis"], [501, "synopsis"], [502, "synopsis"], [503, "synopsis"], [504, "synopsis"], [505, "synopsis"], [506, "synopsis"], [507, "synopsis"], [508, "synopsis"], [509, "synopsis"], [510, "synopsis"], [511, "synopsis"], [512, "synopsis"], [513, "synopsis"], [514, "synopsis"], [515, "synopsis"], [516, "synopsis"], [517, "synopsis"], [518, "synopsis"], [519, "synopsis"], [520, "synopsis"], [521, "synopsis"], [522, "synopsis"], [523, "synopsis"], [524, "synopsis"], [525, "synopsis"], [526, "synopsis"], [527, "synopsis"], [528, "synopsis"], [529, "synopsis"], [530, "synopsis"], [531, "synopsis"], [532, "synopsis"], [533, "synopsis"], [534, "synopsis"], [535, "synopsis"], [536, "synopsis"], [537, "synopsis"], [538, "synopsis"], [539, "synopsis"], [540, "synopsis"], [541, "synopsis"], [542, "synopsis"], [543, "synopsis"], [544, "synopsis"], [545, "synopsis"], [546, "synopsis"], [547, "synopsis"], [548, "synopsis"], [549, "synopsis"], [550, "synopsis"], [551, "synopsis"], [552, "synopsis"], [553, "synopsis"], [554, "synopsis"], [555, "synopsis"], [556, "synopsis"], [557, "synopsis"], [558, "synopsis"], [559, "synopsis"], [560, "synopsis"], [561, "synopsis"], [562, "synopsis"], [563, "synopsis"], [564, "synopsis"], [565, "synopsis"], [566, "synopsis"], [567, "synopsis"], [568, "synopsis"], [569, "synopsis"], [570, "synopsis"], [571, "synopsis"], [572, "synopsis"], [573, "synopsis"], [574, "synopsis"], [575, "synopsis"], [576, "synopsis"], [577, "synopsis"], [578, "synopsis"], [579, "synopsis"], [580, "synopsis"], [581, "synopsis"], [582, "synopsis"], [583, "synopsis"], [584, "synopsis"], [585, "synopsis"], [586, "synopsis"], [587, "synopsis"], [588, "synopsis"], [589, "synopsis"], [590, "synopsis"], [591, "synopsis"], [592, "synopsis"], [593, "synopsis"], [594, "synopsis"], [595, "synopsis"], [596, "synopsis"], [597, "synopsis"], [598, "synopsis"], [599, "synopsis"], [600, "synopsis"], [601, "synopsis"], [602, "synopsis"], [603, "synopsis"], [604, "synopsis"], [605, "synopsis"], [606, "synopsis"], [607, "synopsis"], [608, "synopsis"], [609, "synopsis"], [610, "synopsis"], [611, "synopsis"], [612, "synopsis"], [613, "synopsis"], [614, "synopsis"], [615, "synopsis"], [616, "synopsis"], [617, "synopsis"], [618, "synopsis"], [619, "synopsis"], [620, "synopsis"], [621, "synopsis"], [622, "synopsis"], [623, "synopsis"], [624, "synopsis"], [625, "synopsis"], [626, "synopsis"], [627, "synopsis"], [628, "synopsis"], [629, "synopsis"], [630, "synopsis"], [631, "synopsis"], [632, "synopsis"], [633, "synopsis"], [634, "synopsis"], [635, "synopsis"], [636, "synopsis"], [637, "synopsis"], [638, "synopsis"], [639, "synopsis"], [640, "synopsis"], [641, "synopsis"], [642, "synopsis"], [643, "synopsis"], [644, "synopsis"], [645, "synopsis"], [646, "synopsis"], [647, "synopsis"], [648, "synopsis"], [649, "synopsis"], [650, "synopsis"], [651, "synopsis"], [652, "synopsis"], [653, "synopsis"], [654, "synopsis"], [655, "synopsis"], [656, "synopsis"], [657, "synopsis"], [658, "synopsis"], [659, "synopsis"], [660, "synopsis"], [661, "synopsis"], [662, "synopsis"], [663, "synopsis"], [664, "synopsis"], [665, "synopsis"], [666, "synopsis"], [667, "synopsis"], [668, "synopsis"], [669, "synopsis"], [670, "synopsis"], [671, "synopsis"], [672, "synopsis"], [673, "synopsis"], [674, "synopsis"], [675, "synopsis"], [676, "synopsis"], [677, "synopsis"], [678, "synopsis"], [679, "synopsis"], [680, "synopsis"], [681, "synopsis"], [682, "synopsis"], [683, "synopsis"], [684, "synopsis"], [685, "synopsis"], [686, "synopsis"], [687, "synopsis"], [688, "synopsis"], [689, "synopsis"], [690, "synopsis"], [691, "synopsis"], [692, "synopsis"], [693, "synopsis"], [694, "synopsis"], [695, "synopsis"], [696, "synopsis"], [697, "synopsis"], [698, "synopsis"], [699, "synopsis"], [700, "synopsis"], [701, "synopsis"], [702, "synopsis"], [703, "synopsis"], [704, "synopsis"], [705, "synopsis"], [706, "synopsis"], [707, "synopsis"], [708, "synopsis"], [709, "synopsis"], [710, "synopsis"], [711, "synopsis"], [712, "synopsis"], [713, "synopsis"], [714, "synopsis"], [715, "synopsis"], [716, "synopsis"], [717, "synopsis"], [718, "synopsis"], [719, "synopsis"], [720, "synopsis"], [721, "synopsis"], [722, "synopsis"], [723, "synopsis"], [724, "synopsis"], [725, "synopsis"], [726, "synopsis"], [727, "synopsis"], [728, "synopsis"], [729, "synopsis"], [730, "synopsis"], [731, "synopsis"], [732, "synopsis"], [733, "synopsis"], [734, "synopsis"], [735, "synopsis"], [736, "synopsis"], [737, "synopsis"], [738, "synopsis"], [739, "synopsis"], [740, "synopsis"], [741, "synopsis"], [742, "synopsis"], [743, "synopsis"], [744, "synopsis"], [745, "synopsis"], [746, "synopsis"], [747, "synopsis"], [748, "synopsis"], [749, "synopsis"], [750, "synopsis"], [751, "synopsis"], [752, "synopsis"], [753, "synopsis"], [754, "synopsis"], [755, "synopsis"], [756, "synopsis"], [757, "synopsis"], [758, "synopsis"], [759, "synopsis"], [760, "synopsis"], [761, "synopsis"], [762, "synopsis"], [763, "synopsis"], [764, "synopsis"], [765, "synopsis"], [766, "synopsis"], [767, "synopsis"], [768, "synopsis"], [769, "synopsis"], [770, "synopsis"], [771, "synopsis"], [772, "synopsis"], [773, "synopsis"], [774, "synopsis"], [775, "synopsis"], [776, "synopsis"], [777, "synopsis"], [778, "synopsis"], [779, "synopsis"], [780, "synopsis"], [781, "synopsis"], [782, "synopsis"], [783, "synopsis"], [784, "synopsis"], [785, "synopsis"], [786, "synopsis"], [787, "synopsis"], [788, "synopsis"], [789, "synopsis"], [790, "synopsis"], [791, "synopsis"], [792, "synopsis"], [793, "synopsis"], [794, "synopsis"], [795, "synopsis"], [796, "synopsis"], [797, "synopsis"], [798, "synopsis"], [799, "synopsis"], [800, "synopsis"], [801, "synopsis"], [802, "synopsis"], [803, "synopsis"], [804, "synopsis"], [805, "synopsis"], [806, "synopsis"], [807, "synopsis"], [808, "synopsis"], [809, "synopsis"], [810, "synopsis"], [811, "synopsis"], [812, "synopsis"], [813, "synopsis"], [814, "synopsis"], [815, "synopsis"], [816, "synopsis"], [817, "synopsis"], [818, "synopsis"], [819, "synopsis"], [820, "synopsis"], [821, "synopsis"], [822, "synopsis"], [823, "synopsis"], [824, "synopsis"], [825, "synopsis"], [826, "synopsis"], [827, "synopsis"], [828, "synopsis"], [829, "synopsis"], [830, "synopsis"], [831, "synopsis"], [832, "synopsis"], [833, "synopsis"], [834, "synopsis"], [835, "synopsis"], [836, "synopsis"], [837, "synopsis"], [838, "synopsis"], [839, "synopsis"], [840, "synopsis"], [841, "synopsis"], [842, "synopsis"], [843, "synopsis"], [844, "synopsis"], [845, "synopsis"], [846, "synopsis"], [847, "synopsis"], [848, "synopsis"], [849, "synopsis"], [850, "synopsis"], [851, "synopsis"], [852, "synopsis"], [853, "synopsis"], [854, "synopsis"], [855, "synopsis"], [856, "synopsis"], [857, "synopsis"], [858, "synopsis"], [859, "synopsis"], [860, "synopsis"], [861, "synopsis"], [862, "synopsis"], [863, "synopsis"], [864, "synopsis"], [865, "synopsis"], [866, "synopsis"], [867, "synopsis"], [868, "synopsis"], [869, "synopsis"], [870, "synopsis"], [871, "synopsis"], [872, "synopsis"], [873, "synopsis"], [874, "synopsis"], [875, "synopsis"], [876, "synopsis"], [877, "synopsis"], [878, "synopsis"], [879, "synopsis"], [880, "synopsis"], [881, "synopsis"], [882, "synopsis"], [883, "synopsis"], [884, "synopsis"], [885, "synopsis"], [886, "synopsis"], [887, "synopsis"], [888, "synopsis"], [889, "synopsis"], [890, "synopsis"], [891, "synopsis"], [892, "synopsis"], [893, "synopsis"], [894, "synopsis"], [895, "synopsis"]], "Parameters": [[3, "parameters"], [4, "parameters"], [5, "parameters"], [6, "parameters"], [7, "parameters"], [8, "parameters"], [9, "parameters"], [10, "parameters"], [11, "parameters"], [12, "parameters"], [13, "parameters"], [14, "parameters"], [15, "parameters"], [16, "parameters"], [17, "parameters"], [18, "parameters"], [19, "parameters"], [20, "parameters"], [21, "parameters"], [22, "parameters"], [23, "parameters"], [24, "parameters"], [25, "parameters"], [26, "parameters"], [27, "parameters"], [28, "parameters"], [29, "parameters"], [30, "parameters"], [31, "parameters"], [32, "parameters"], [33, "parameters"], [34, "parameters"], [35, "parameters"], [36, "parameters"], [37, "parameters"], [38, "parameters"], [39, "parameters"], [40, "parameters"], [41, "parameters"], [42, "parameters"], [43, "parameters"], [44, "parameters"], [45, "parameters"], [46, "parameters"], [47, "parameters"], [48, "parameters"], [49, "parameters"], [50, "parameters"], [51, "parameters"], [52, "parameters"], [53, "parameters"], [54, "parameters"], [55, "parameters"], [56, "parameters"], [57, "parameters"], [58, "parameters"], [59, "parameters"], [60, "parameters"], [61, "parameters"], [62, "parameters"], [63, "parameters"], [64, "parameters"], [65, "parameters"], [66, "parameters"], [67, "parameters"], [68, "parameters"], [69, "parameters"], [70, "parameters"], [71, "parameters"], [72, "parameters"], [73, "parameters"], [74, "parameters"], [75, "parameters"], [76, "parameters"], [77, "parameters"], [78, "parameters"], [79, "parameters"], [80, "parameters"], [81, "parameters"], [82, "parameters"], [83, "parameters"], [84, "parameters"], [85, "parameters"], [86, "parameters"], [87, "parameters"], [88, "parameters"], [89, "parameters"], [90, "parameters"], [91, "parameters"], [92, "parameters"], [93, "parameters"], [94, "parameters"], [95, "parameters"], [96, "parameters"], [97, "parameters"], [98, "parameters"], [99, "parameters"], [100, "parameters"], [101, "parameters"], [102, "parameters"], [103, "parameters"], [104, "parameters"], [105, "parameters"], [106, "parameters"], [107, "parameters"], [108, "parameters"], [109, "parameters"], [110, "parameters"], [111, "parameters"], [112, "parameters"], [113, "parameters"], [114, "parameters"], [115, "parameters"], [116, "parameters"], [117, "parameters"], [118, "parameters"], [119, "parameters"], [120, "parameters"], [121, "parameters"], [122, "parameters"], [123, "parameters"], [124, "parameters"], [125, "parameters"], [126, "parameters"], [127, "parameters"], [128, "parameters"], [129, "parameters"], [130, "parameters"], [131, "parameters"], [132, "parameters"], [133, "parameters"], [134, "parameters"], [135, "parameters"], [136, "parameters"], [137, "parameters"], [138, "parameters"], [139, "parameters"], [140, "parameters"], [141, "parameters"], [142, "parameters"], [143, "parameters"], [144, "parameters"], [145, "parameters"], [146, "parameters"], [147, "parameters"], [148, "parameters"], [149, "parameters"], [150, "parameters"], [151, "parameters"], [152, "parameters"], [153, "parameters"], [154, "parameters"], [155, "parameters"], [156, "parameters"], [157, "parameters"], [158, "parameters"], [159, "parameters"], [160, "parameters"], [161, "parameters"], [162, "parameters"], [163, "parameters"], [164, "parameters"], [165, "parameters"], [166, "parameters"], [167, "parameters"], [168, "parameters"], [169, "parameters"], [170, "parameters"], [171, "parameters"], [172, "parameters"], [173, "parameters"], [174, "parameters"], [175, "parameters"], [176, "parameters"], [177, "parameters"], [178, "parameters"], [179, "parameters"], [180, "parameters"], [181, "parameters"], [182, "parameters"], [183, "parameters"], [184, "parameters"], [185, "parameters"], [186, "parameters"], [187, "parameters"], [188, "parameters"], [189, "parameters"], [190, "parameters"], [191, "parameters"], [192, "parameters"], [193, "parameters"], [194, "parameters"], [195, "parameters"], [196, "parameters"], [197, "parameters"], [198, "parameters"], [199, "parameters"], [200, "parameters"], [201, "parameters"], [202, "parameters"], [203, "parameters"], [204, "parameters"], [205, "parameters"], [206, "parameters"], [207, "parameters"], [208, "parameters"], [209, "parameters"], [210, "parameters"], [211, "parameters"], [212, "parameters"], [213, "parameters"], [214, "parameters"], [215, "parameters"], [216, "parameters"], [217, "parameters"], [218, "parameters"], [219, "parameters"], [220, "parameters"], [221, "parameters"], [222, "parameters"], [223, "parameters"], [224, "parameters"], [225, "parameters"], [226, "parameters"], [227, "parameters"], [228, "parameters"], [229, "parameters"], [230, "parameters"], [231, "parameters"], [232, "parameters"], [233, "parameters"], [234, "parameters"], [235, "parameters"], [236, "parameters"], [237, "parameters"], [238, "parameters"], [239, "parameters"], [240, "parameters"], [241, "parameters"], [242, "parameters"], [243, "parameters"], [244, "parameters"], [245, "parameters"], [246, "parameters"], [247, "parameters"], [248, "parameters"], [249, "parameters"], [250, "parameters"], [251, "parameters"], [252, "parameters"], [253, "parameters"], [254, "parameters"], [255, "parameters"], [256, "parameters"], [257, "parameters"], [258, "parameters"], [259, "parameters"], [260, "parameters"], [261, "parameters"], [262, "parameters"], [263, "parameters"], [264, "parameters"], [265, "parameters"], [266, "parameters"], [267, "parameters"], [268, "parameters"], [269, "parameters"], [270, "parameters"], [271, "parameters"], [272, "parameters"], [273, "parameters"], [274, "parameters"], [275, "parameters"], [276, "parameters"], [277, "parameters"], [278, "parameters"], [279, "parameters"], [280, "parameters"], [281, "parameters"], [282, "parameters"], [283, "parameters"], [284, "parameters"], [285, "parameters"], [286, "parameters"], [287, "parameters"], [288, "parameters"], [289, "parameters"], [290, "parameters"], [291, "parameters"], [292, "parameters"], [293, "parameters"], [294, "parameters"], [295, "parameters"], [296, "parameters"], [297, "parameters"], [298, "parameters"], [299, "parameters"], [300, "parameters"], [301, "parameters"], [302, "parameters"], [303, "parameters"], [304, "parameters"], [305, "parameters"], [306, "parameters"], [307, "parameters"], [308, "parameters"], [309, "parameters"], [310, "parameters"], [311, "parameters"], [312, "parameters"], [313, "parameters"], [314, "parameters"], [315, "parameters"], [316, "parameters"], [317, "parameters"], [318, "parameters"], [319, "parameters"], [320, "parameters"], [321, "parameters"], [322, "parameters"], [323, "parameters"], [324, "parameters"], [325, "parameters"], [326, "parameters"], [327, "parameters"], [328, "parameters"], [329, "parameters"], [330, "parameters"], [331, "parameters"], [332, "parameters"], [333, "parameters"], [334, "parameters"], [335, "parameters"], [336, "parameters"], [337, "parameters"], [338, "parameters"], [339, "parameters"], [340, "parameters"], [341, "parameters"], [342, "parameters"], [343, "parameters"], [344, "parameters"], [345, "parameters"], [346, "parameters"], [347, "parameters"], [348, "parameters"], [349, "parameters"], [350, "parameters"], [351, "parameters"], [352, "parameters"], [353, "parameters"], [354, "parameters"], [355, "parameters"], [356, "parameters"], [357, "parameters"], [358, "parameters"], [359, "parameters"], [360, "parameters"], [361, "parameters"], [362, "parameters"], [363, "parameters"], [364, "parameters"], [365, "parameters"], [366, "parameters"], [367, "parameters"], [368, "parameters"], [369, "parameters"], [370, "parameters"], [371, "parameters"], [372, "parameters"], [373, "parameters"], [374, "parameters"], [375, "parameters"], [376, "parameters"], [377, "parameters"], [378, "parameters"], [379, "parameters"], [380, "parameters"], [381, "parameters"], [382, "parameters"], [383, "parameters"], [384, "parameters"], [385, "parameters"], [386, "parameters"], [387, "parameters"], [388, "parameters"], [389, "parameters"], [390, "parameters"], [392, "parameters"], [393, "parameters"], [394, "parameters"], [395, "parameters"], [396, "parameters"], [397, "parameters"], [398, "parameters"], [399, "parameters"], [400, "parameters"], [401, "parameters"], [402, "parameters"], [403, "parameters"], [404, "parameters"], [405, "parameters"], [406, "parameters"], [407, "parameters"], [408, "parameters"], [409, "parameters"], [410, "parameters"], [411, "parameters"], [412, "parameters"], [413, "parameters"], [414, "parameters"], [415, "parameters"], [416, "parameters"], [417, "parameters"], [418, "parameters"], [419, "parameters"], [420, "parameters"], [421, "parameters"], [422, "parameters"], [423, "parameters"], [424, "parameters"], [425, "parameters"], [426, "parameters"], [427, "parameters"], [428, "parameters"], [429, "parameters"], [430, "parameters"], [431, "parameters"], [432, "parameters"], [433, "parameters"], [434, "parameters"], [435, "parameters"], [436, "parameters"], [437, "parameters"], [438, "parameters"], [439, "parameters"], [440, "parameters"], [441, "parameters"], [442, "parameters"], [443, "parameters"], [444, "parameters"], [445, "parameters"], [446, "parameters"], [447, "parameters"], [448, "parameters"], [449, "parameters"], [450, "parameters"], [451, "parameters"], [452, "parameters"], [453, "parameters"], [454, "parameters"], [455, "parameters"], [456, "parameters"], [457, "parameters"], [458, "parameters"], [459, "parameters"], [460, "parameters"], [461, "parameters"], [462, "parameters"], [463, "parameters"], [464, "parameters"], [465, "parameters"], [466, "parameters"], [467, "parameters"], [468, "parameters"], [469, "parameters"], [470, "parameters"], [471, "parameters"], [472, "parameters"], [473, "parameters"], [474, "parameters"], [475, "parameters"], [476, "parameters"], [477, "parameters"], [478, "parameters"], [479, "parameters"], [480, "parameters"], [481, "parameters"], [482, "parameters"], [483, "parameters"], [484, "parameters"], [485, "parameters"], [486, "parameters"], [487, "parameters"], [488, "parameters"], [489, "parameters"], [490, "parameters"], [491, "parameters"], [492, "parameters"], [493, "parameters"], [494, "parameters"], [495, "parameters"], [496, "parameters"], [497, "parameters"], [498, "parameters"], [499, "parameters"], [500, "parameters"], [501, "parameters"], [502, "parameters"], [503, "parameters"], [504, "parameters"], [505, "parameters"], [506, "parameters"], [507, "parameters"], [508, "parameters"], [509, "parameters"], [510, "parameters"], [511, "parameters"], [512, "parameters"], [513, "parameters"], [514, "parameters"], [515, "parameters"], [516, "parameters"], [517, "parameters"], [518, "parameters"], [519, "parameters"], [520, "parameters"], [521, "parameters"], [522, "parameters"], [523, "parameters"], [524, "parameters"], [525, "parameters"], [526, "parameters"], [527, "parameters"], [528, "parameters"], [529, "parameters"], [530, "parameters"], [531, "parameters"], [532, "parameters"], [533, "parameters"], [534, "parameters"], [535, "parameters"], [536, "parameters"], [537, "parameters"], [538, "parameters"], [539, "parameters"], [540, "parameters"], [541, "parameters"], [542, "parameters"], [543, "parameters"], [544, "parameters"], [545, "parameters"], [546, "parameters"], [547, "parameters"], [548, "parameters"], [549, "parameters"], [550, "parameters"], [551, "parameters"], [552, "parameters"], [553, "parameters"], [554, "parameters"], [555, "parameters"], [556, "parameters"], [557, "parameters"], [558, "parameters"], [559, "parameters"], [560, "parameters"], [561, "parameters"], [562, "parameters"], [563, "parameters"], [564, "parameters"], [565, "parameters"], [566, "parameters"], [567, "parameters"], [568, "parameters"], [569, "parameters"], [570, "parameters"], [571, "parameters"], [572, "parameters"], [573, "parameters"], [574, "parameters"], [575, "parameters"], [576, "parameters"], [577, "parameters"], [578, "parameters"], [579, "parameters"], [580, "parameters"], [581, "parameters"], [582, "parameters"], [583, "parameters"], [584, "parameters"], [585, "parameters"], [586, "parameters"], [587, "parameters"], [588, "parameters"], [589, "parameters"], [590, "parameters"], [591, "parameters"], [592, "parameters"], [593, "parameters"], [594, "parameters"], [595, "parameters"], [596, "parameters"], [597, "parameters"], [598, "parameters"], [599, "parameters"], [600, "parameters"], [601, "parameters"], [602, "parameters"], [603, "parameters"], [604, "parameters"], [605, "parameters"], [606, "parameters"], [607, "parameters"], [608, "parameters"], [609, "parameters"], [610, "parameters"], [611, "parameters"], [612, "parameters"], [613, "parameters"], [614, "parameters"], [615, "parameters"], [616, "parameters"], [617, "parameters"], [618, "parameters"], [619, "parameters"], [620, "parameters"], [621, "parameters"], [622, "parameters"], [623, "parameters"], [624, "parameters"], [625, "parameters"], [626, "parameters"], [627, "parameters"], [628, "parameters"], [629, "parameters"], [630, "parameters"], [631, "parameters"], [632, "parameters"], [633, "parameters"], [634, "parameters"], [635, "parameters"], [636, "parameters"], [637, "parameters"], [638, "parameters"], [639, "parameters"], [640, "parameters"], [641, "parameters"], [642, "parameters"], [643, "parameters"], [644, "parameters"], [645, "parameters"], [646, "parameters"], [647, "parameters"], [648, "parameters"], [649, "parameters"], [650, "parameters"], [651, "parameters"], [652, "parameters"], [653, "parameters"], [654, "parameters"], [655, "parameters"], [656, "parameters"], [657, "parameters"], [658, "parameters"], [659, "parameters"], [660, "parameters"], [661, "parameters"], [662, "parameters"], [663, "parameters"], [664, "parameters"], [665, "parameters"], [666, "parameters"], [667, "parameters"], [668, "parameters"], [669, "parameters"], [670, "parameters"], [671, "parameters"], [672, "parameters"], [673, "parameters"], [674, "parameters"], [675, "parameters"], [676, "parameters"], [677, "parameters"], [678, "parameters"], [679, "parameters"], [680, "parameters"], [681, "parameters"], [682, "parameters"], [683, "parameters"], [684, "parameters"], [685, "parameters"], [686, "parameters"], [687, "parameters"], [688, "parameters"], [689, "parameters"], [690, "parameters"], [691, "parameters"], [692, "parameters"], [693, "parameters"], [694, "parameters"], [695, "parameters"], [696, "parameters"], [697, "parameters"], [698, "parameters"], [699, "parameters"], [700, "parameters"], [701, "parameters"], [702, "parameters"], [703, "parameters"], [704, "parameters"], [705, "parameters"], [706, "parameters"], [707, "parameters"], [708, "parameters"], [709, "parameters"], [710, "parameters"], [711, "parameters"], [712, "parameters"], [713, "parameters"], [714, "parameters"], [715, "parameters"], [716, "parameters"], [717, "parameters"], [718, "parameters"], [719, "parameters"], [720, "parameters"], [721, "parameters"], [722, "parameters"], [723, "parameters"], [724, "parameters"], [725, "parameters"], [726, "parameters"], [727, "parameters"], [728, "parameters"], [729, "parameters"], [730, "parameters"], [731, "parameters"], [732, "parameters"], [733, "parameters"], [734, "parameters"], [735, "parameters"], [736, "parameters"], [737, "parameters"], [738, "parameters"], [739, "parameters"], [740, "parameters"], [741, "parameters"], [742, "parameters"], [743, "parameters"], [744, "parameters"], [745, "parameters"], [746, "parameters"], [747, "parameters"], [748, "parameters"], [749, "parameters"], [750, "parameters"], [751, "parameters"], [752, "parameters"], [753, "parameters"], [754, "parameters"], [755, "parameters"], [756, "parameters"], [757, "parameters"], [758, "parameters"], [759, "parameters"], [760, "parameters"], [761, "parameters"], [762, "parameters"], [763, "parameters"], [764, "parameters"], [765, "parameters"], [766, "parameters"], [767, "parameters"], [768, "parameters"], [769, "parameters"], [770, "parameters"], [771, "parameters"], [772, "parameters"], [773, "parameters"], [774, "parameters"], [775, "parameters"], [776, "parameters"], [777, "parameters"], [778, "parameters"], [779, "parameters"], [780, "parameters"], [781, "parameters"], [782, "parameters"], [783, "parameters"], [784, "parameters"], [785, "parameters"], [786, "parameters"], [787, "parameters"], [788, "parameters"], [789, "parameters"], [790, "parameters"], [791, "parameters"], [792, "parameters"], [793, "parameters"], [794, "parameters"], [795, "parameters"], [796, "parameters"], [797, "parameters"], [798, "parameters"], [799, "parameters"], [800, "parameters"], [801, "parameters"], [802, "parameters"], [803, "parameters"], [804, "parameters"], [805, "parameters"], [806, "parameters"], [807, "parameters"], [808, "parameters"], [809, "parameters"], [810, "parameters"], [811, "parameters"], [812, "parameters"], [813, "parameters"], [814, "parameters"], [815, "parameters"], [816, "parameters"], [817, "parameters"], [818, "parameters"], [819, "parameters"], [820, "parameters"], [821, "parameters"], [822, "parameters"], [823, "parameters"], [824, "parameters"], [825, "parameters"], [826, "parameters"], [827, "parameters"], [828, "parameters"], [829, "parameters"], [830, "parameters"], [831, "parameters"], [832, "parameters"], [833, "parameters"], [834, "parameters"], [835, "parameters"], [836, "parameters"], [837, "parameters"], [838, "parameters"], [839, "parameters"], [840, "parameters"], [841, "parameters"], [842, "parameters"], [843, "parameters"], [844, "parameters"], [845, "parameters"], [846, "parameters"], [847, "parameters"], [848, "parameters"], [849, "parameters"], [850, "parameters"], [851, "parameters"], [852, "parameters"], [853, "parameters"], [854, "parameters"], [855, "parameters"], [856, "parameters"], [857, "parameters"], [858, "parameters"], [859, "parameters"], [860, "parameters"], [861, "parameters"], [862, "parameters"], [863, "parameters"], [864, "parameters"], [865, "parameters"], [866, "parameters"], [867, "parameters"], [868, "parameters"], [869, "parameters"], [870, "parameters"], [871, "parameters"], [872, "parameters"], [873, "parameters"], [874, "parameters"], [875, "parameters"], [876, "parameters"], [877, "parameters"], [878, "parameters"], [879, "parameters"], [880, "parameters"], [881, "parameters"], [882, "parameters"], [883, "parameters"], [884, "parameters"], [885, "parameters"], [886, "parameters"], [887, "parameters"], [888, "parameters"], [889, "parameters"], [890, "parameters"], [891, "parameters"], [892, "parameters"], [893, "parameters"], [894, "parameters"], [895, "parameters"]], "Notes": [[3, "notes"], [4, "notes"], [5, "notes"], [6, "notes"], [7, "notes"], [8, "notes"], [9, "notes"], [10, "notes"], [11, "notes"], [12, "notes"], [13, "notes"], [14, "notes"], [15, "notes"], [16, "notes"], [17, "notes"], [18, "notes"], [19, "notes"], [20, "notes"], [21, "notes"], [22, "notes"], [23, "notes"], [24, "notes"], [25, "notes"], [26, "notes"], [27, "notes"], [28, "notes"], [29, "notes"], [30, "notes"], [31, "notes"], [32, "notes"], [33, "notes"], [34, "notes"], [35, "notes"], [36, "notes"], [37, "notes"], [38, "notes"], [39, "notes"], [40, "notes"], [41, "notes"], [42, "notes"], [43, "notes"], [44, "notes"], [45, "notes"], [46, "notes"], [47, "notes"], [48, "notes"], [49, "notes"], [50, "notes"], [51, "notes"], [52, "notes"], [53, "notes"], [54, "notes"], [55, "notes"], [56, "notes"], [57, "notes"], [58, "notes"], [59, "notes"], [60, "notes"], [61, "notes"], [62, "notes"], [63, "notes"], [64, "notes"], [65, "notes"], [66, "notes"], [67, "notes"], [68, "notes"], [69, "notes"], [70, "notes"], [71, "notes"], [72, "notes"], [73, "notes"], [74, "notes"], [75, "notes"], [76, "notes"], [77, "notes"], [78, "notes"], [79, "notes"], [80, "notes"], [81, "notes"], [82, "notes"], [83, "notes"], [84, "notes"], [85, "notes"], [86, "notes"], [87, "notes"], [88, "notes"], [89, "notes"], [90, "notes"], [91, "notes"], [92, "notes"], [93, "notes"], [94, "notes"], [95, "notes"], [96, "notes"], [97, "notes"], [98, "notes"], [99, "notes"], [100, "notes"], [101, "notes"], [102, "notes"], [103, "notes"], [104, "notes"], [105, "notes"], [106, "notes"], [107, "notes"], [108, "notes"], [109, "notes"], [110, "notes"], [111, "notes"], [112, "notes"], [113, "notes"], [114, "notes"], [115, "notes"], [116, "notes"], [117, "notes"], [118, "notes"], [119, "notes"], [120, "notes"], [121, "notes"], [122, "notes"], [123, "notes"], [124, "notes"], [125, "notes"], [126, "notes"], [127, "notes"], [128, "notes"], [129, "notes"], [130, "notes"], [131, "notes"], [132, "notes"], [133, "notes"], [134, "notes"], [135, "notes"], [136, "notes"], [137, "notes"], [138, "notes"], [139, "notes"], [140, "notes"], [141, "notes"], [142, "notes"], [143, "notes"], [144, "notes"], [145, "notes"], [146, "notes"], [147, "notes"], [148, "notes"], [149, "notes"], [150, "notes"], [151, "notes"], [152, "notes"], [153, "notes"], [154, "notes"], [155, "notes"], [156, "notes"], [157, "notes"], [158, "notes"], [159, "notes"], [160, "notes"], [161, "notes"], [162, "notes"], [163, "notes"], [164, "notes"], [165, "notes"], [166, "notes"], [167, "notes"], [168, "notes"], [169, "notes"], [170, "notes"], [171, "notes"], [172, "notes"], [173, "notes"], [174, "notes"], [175, "notes"], [176, "notes"], [177, "notes"], [178, "notes"], [179, "notes"], [180, "notes"], [181, "notes"], [182, "notes"], [183, "notes"], [184, "notes"], [185, "notes"], [186, "notes"], [187, "notes"], [188, "notes"], [189, "notes"], [190, "notes"], [191, "notes"], [192, "notes"], [193, "notes"], [194, "notes"], [195, "notes"], [196, "notes"], [197, "notes"], [198, "notes"], [199, "notes"], [200, "notes"], [201, "notes"], [202, "notes"], [203, "notes"], [204, "notes"], [205, "notes"], [206, "notes"], [207, "notes"], [208, "notes"], [209, "notes"], [210, "notes"], [211, "notes"], [212, "notes"], [213, "notes"], [214, "notes"], [215, "notes"], [216, "notes"], [217, "notes"], [218, "notes"], [219, "notes"], [220, "notes"], [221, "notes"], [222, "notes"], [223, "notes"], [224, "notes"], [225, "notes"], [226, "notes"], [227, "notes"], [228, "notes"], [229, "notes"], [230, "notes"], [231, "notes"], [232, "notes"], [233, "notes"], [234, "notes"], [235, "notes"], [236, "notes"], [237, "notes"], [238, "notes"], [239, "notes"], [240, "notes"], [241, "notes"], [242, "notes"], [243, "notes"], [244, "notes"], [245, "notes"], [246, "notes"], [247, "notes"], [248, "notes"], [249, "notes"], [250, "notes"], [251, "notes"], [252, "notes"], [253, "notes"], [254, "notes"], [255, "notes"], [256, "notes"], [257, "notes"], [258, "notes"], [259, "notes"], [260, "notes"], [261, "notes"], [262, "notes"], [263, "notes"], [264, "notes"], [265, "notes"], [266, "notes"], [267, "notes"], [268, "notes"], [269, "notes"], [270, "notes"], [271, "notes"], [272, "notes"], [273, "notes"], [274, "notes"], [275, "notes"], [276, "notes"], [277, "notes"], [278, "notes"], [279, "notes"], [280, "notes"], [281, "notes"], [282, "notes"], [283, "notes"], [284, "notes"], [285, "notes"], [286, "notes"], [287, "notes"], [288, "notes"], [289, "notes"], [290, "notes"], [291, "notes"], [292, "notes"], [293, "notes"], [294, "notes"], [295, "notes"], [296, "notes"], [297, "notes"], [298, "notes"], [299, "notes"], [300, "notes"], [301, "notes"], [302, "notes"], [303, "notes"], [304, "notes"], [305, "notes"], [306, "notes"], [307, "notes"], [308, "notes"], [309, "notes"], [310, "notes"], [311, "notes"], [312, "notes"], [313, "notes"], [314, "notes"], [315, "notes"], [316, "notes"], [317, "notes"], [318, "notes"], [319, "notes"], [320, "notes"], [321, "notes"], [322, "notes"], [323, "notes"], [324, "notes"], [325, "notes"], [326, "notes"], [327, "notes"], [328, "notes"], [329, "notes"], [330, "notes"], [331, "notes"], [332, "notes"], [333, "notes"], [334, "notes"], [335, "notes"], [336, "notes"], [337, "notes"], [338, "notes"], [339, "notes"], [340, "notes"], [341, "notes"], [342, "notes"], [343, "notes"], [344, "notes"], [345, "notes"], [346, "notes"], [347, "notes"], [348, "notes"], [349, "notes"], [350, "notes"], [351, "notes"], [352, "notes"], [353, "notes"], [354, "notes"], [355, "notes"], [356, "notes"], [357, "notes"], [358, "notes"], [359, "notes"], [360, "notes"], [361, "notes"], [362, "notes"], [363, "notes"], [364, "notes"], [365, "notes"], [366, "notes"], [367, "notes"], [368, "notes"], [369, "notes"], [370, "notes"], [371, "notes"], [372, "notes"], [373, "notes"], [374, "notes"], [375, "notes"], [376, "notes"], [377, "notes"], [378, "notes"], [379, "notes"], [380, "notes"], [381, "notes"], [382, "notes"], [383, "notes"], [384, "notes"], [385, "notes"], [386, "notes"], [387, "notes"], [388, "notes"], [389, "notes"], [390, "notes"], [392, "notes"], [393, "notes"], [394, "notes"], [395, "notes"], [396, "notes"], [397, "notes"], [398, "notes"], [399, "notes"], [400, "notes"], [401, "notes"], [402, "notes"], [403, "notes"], [404, "notes"], [405, "notes"], [406, "notes"], [407, "notes"], [408, "notes"], [409, "notes"], [410, "notes"], [411, "notes"], [412, "notes"], [413, "notes"], [414, "notes"], [415, "notes"], [416, "notes"], [417, "notes"], [418, "notes"], [419, "notes"], [420, "notes"], [421, "notes"], [422, "notes"], [423, "notes"], [424, "notes"], [425, "notes"], [426, "notes"], [427, "notes"], [428, "notes"], [429, "notes"], [430, "notes"], [431, "notes"], [432, "notes"], [433, "notes"], [434, "notes"], [435, "notes"], [436, "notes"], [437, "notes"], [438, "notes"], [439, "notes"], [440, "notes"], [441, "notes"], [442, "notes"], [443, "notes"], [444, "notes"], [445, "notes"], [446, "notes"], [447, "notes"], [448, "notes"], [449, "notes"], [450, "notes"], [451, "notes"], [452, "notes"], [453, "notes"], [454, "notes"], [455, "notes"], [456, "notes"], [457, "notes"], [458, "notes"], [459, "notes"], [460, "notes"], [461, "notes"], [462, "notes"], [463, "notes"], [464, "notes"], [465, "notes"], [466, "notes"], [467, "notes"], [468, "notes"], [469, "notes"], [470, "notes"], [471, "notes"], [472, "notes"], [473, "notes"], [474, "notes"], [475, "notes"], [476, "notes"], [477, "notes"], [478, "notes"], [479, "notes"], [480, "notes"], [481, "notes"], [482, "notes"], [483, "notes"], [484, "notes"], [485, "notes"], [486, "notes"], [487, "notes"], [488, "notes"], [489, "notes"], [490, "notes"], [491, "notes"], [492, "notes"], [493, "notes"], [494, "notes"], [495, "notes"], [496, "notes"], [497, "notes"], [498, "notes"], [499, "notes"], [500, "notes"], [501, "notes"], [502, "notes"], [503, "notes"], [504, "notes"], [505, "notes"], [506, "notes"], [507, "notes"], [508, "notes"], [509, "notes"], [510, "notes"], [511, "notes"], [512, "notes"], [513, "notes"], [514, "notes"], [515, "notes"], [516, "notes"], [517, "notes"], [518, "notes"], [519, "notes"], [520, "notes"], [521, "notes"], [522, "notes"], [523, "notes"], [524, "notes"], [525, "notes"], [526, "notes"], [527, "notes"], [528, "notes"], [529, "notes"], [530, "notes"], [531, "notes"], [532, "notes"], [533, "notes"], [534, "notes"], [535, "notes"], [536, "notes"], [537, "notes"], [538, "notes"], [539, "notes"], [540, "notes"], [541, "notes"], [542, "notes"], [543, "notes"], [544, "notes"], [545, "notes"], [546, "notes"], [547, "notes"], [548, "notes"], [549, "notes"], [550, "notes"], [551, "notes"], [552, "notes"], [553, "notes"], [554, "notes"], [555, "notes"], [556, "notes"], [557, "notes"], [558, "notes"], [559, "notes"], [560, "notes"], [561, "notes"], [562, "notes"], [563, "notes"], [564, "notes"], [565, "notes"], [566, "notes"], [567, "notes"], [568, "notes"], [569, "notes"], [570, "notes"], [571, "notes"], [572, "notes"], [573, "notes"], [574, "notes"], [575, "notes"], [576, "notes"], [577, "notes"], [578, "notes"], [579, "notes"], [580, "notes"], [581, "notes"], [582, "notes"], [583, "notes"], [584, "notes"], [585, "notes"], [586, "notes"], [587, "notes"], [588, "notes"], [589, "notes"], [590, "notes"], [591, "notes"], [592, "notes"], [593, "notes"], [594, "notes"], [595, "notes"], [596, "notes"], [597, "notes"], [598, "notes"], [599, "notes"], [600, "notes"], [601, "notes"], [602, "notes"], [603, "notes"], [604, "notes"], [605, "notes"], [606, "notes"], [607, "notes"], [608, "notes"], [609, "notes"], [610, "notes"], [611, "notes"], [612, "notes"], [613, "notes"], [614, "notes"], [615, "notes"], [616, "notes"], [617, "notes"], [618, "notes"], [619, "notes"], [620, "notes"], [621, "notes"], [622, "notes"], [623, "notes"], [624, "notes"], [625, "notes"], [626, "notes"], [627, "notes"], [628, "notes"], [629, "notes"], [630, "notes"], [631, "notes"], [632, "notes"], [633, "notes"], [634, "notes"], [635, "notes"], [636, "notes"], [637, "notes"], [638, "notes"], [639, "notes"], [640, "notes"], [641, "notes"], [642, "notes"], [643, "notes"], [644, "notes"], [645, "notes"], [646, "notes"], [647, "notes"], [648, "notes"], [649, "notes"], [650, "notes"], [651, "notes"], [652, "notes"], [653, "notes"], [654, "notes"], [655, "notes"], [656, "notes"], [657, "notes"], [658, "notes"], [659, "notes"], [660, "notes"], [661, "notes"], [662, "notes"], [663, "notes"], [664, "notes"], [665, "notes"], [666, "notes"], [667, "notes"], [668, "notes"], [669, "notes"], [670, "notes"], [671, "notes"], [672, "notes"], [673, "notes"], [674, "notes"], [675, "notes"], [676, "notes"], [677, "notes"], [678, "notes"], [679, "notes"], [680, "notes"], [681, "notes"], [682, "notes"], [683, "notes"], [684, "notes"], [685, "notes"], [686, "notes"], [687, "notes"], [688, "notes"], [689, "notes"], [690, "notes"], [691, "notes"], [692, "notes"], [693, "notes"], [694, "notes"], [695, "notes"], [696, "notes"], [697, "notes"], [698, "notes"], [699, "notes"], [700, "notes"], [701, "notes"], [702, "notes"], [703, "notes"], [704, "notes"], [705, "notes"], [706, "notes"], [707, "notes"], [708, "notes"], [709, "notes"], [710, "notes"], [711, "notes"], [712, "notes"], [713, "notes"], [714, "notes"], [715, "notes"], [716, "notes"], [717, "notes"], [718, "notes"], [719, "notes"], [720, "notes"], [721, "notes"], [722, "notes"], [723, "notes"], [724, "notes"], [725, "notes"], [726, "notes"], [727, "notes"], [728, "notes"], [729, "notes"], [730, "notes"], [731, "notes"], [732, "notes"], [733, "notes"], [734, "notes"], [735, "notes"], [736, "notes"], [737, "notes"], [738, "notes"], [739, "notes"], [740, "notes"], [741, "notes"], [742, "notes"], [743, "notes"], [744, "notes"], [745, "notes"], [746, "notes"], [747, "notes"], [748, "notes"], [749, "notes"], [750, "notes"], [751, "notes"], [752, "notes"], [753, "notes"], [754, "notes"], [755, "notes"], [756, "notes"], [757, "notes"], [758, "notes"], [759, "notes"], [760, "notes"], [761, "notes"], [762, "notes"], [763, "notes"], [764, "notes"], [765, "notes"], [766, "notes"], [767, "notes"], [768, "notes"], [769, "notes"], [770, "notes"], [771, "notes"], [772, "notes"], [773, "notes"], [774, "notes"], [775, "notes"], [776, "notes"], [777, "notes"], [778, "notes"], [779, "notes"], [780, "notes"], [781, "notes"], [782, "notes"], [783, "notes"], [784, "notes"], [785, "notes"], [786, "notes"], [787, "notes"], [788, "notes"], [789, "notes"], [790, "notes"], [791, "notes"], [792, "notes"], [793, "notes"], [794, "notes"], [795, "notes"], [796, "notes"], [797, "notes"], [798, "notes"], [799, "notes"], [800, "notes"], [801, "notes"], [802, "notes"], [803, "notes"], [804, "notes"], [805, "notes"], [806, "notes"], [807, "notes"], [808, "notes"], [809, "notes"], [810, "notes"], [811, "notes"], [812, "notes"], [813, "notes"], [814, "notes"], [815, "notes"], [816, "notes"], [817, "notes"], [818, "notes"], [819, "notes"], [820, "notes"], [821, "notes"], [822, "notes"], [823, "notes"], [824, "notes"], [825, "notes"], [826, "notes"], [827, "notes"], [828, "notes"], [829, "notes"], [830, "notes"], [831, "notes"], [832, "notes"], [833, "notes"], [834, "notes"], [835, "notes"], [836, "notes"], [837, "notes"], [838, "notes"], [839, "notes"], [840, "notes"], [841, "notes"], [842, "notes"], [843, "notes"], [844, "notes"], [845, "notes"], [846, "notes"], [847, "notes"], [848, "notes"], [849, "notes"], [850, "notes"], [851, "notes"], [852, "notes"], [853, "notes"], [854, "notes"], [855, "notes"], [856, "notes"], [857, "notes"], [858, "notes"], [859, "notes"], [860, "notes"], [861, "notes"], [862, "notes"], [863, "notes"], [864, "notes"], [865, "notes"], [866, "notes"], [867, "notes"], [868, "notes"], [869, "notes"], [870, "notes"], [871, "notes"], [872, "notes"], [873, "notes"], [874, "notes"], [875, "notes"], [876, "notes"], [877, "notes"], [878, "notes"], [879, "notes"], [880, "notes"], [881, "notes"], [882, "notes"], [883, "notes"], [884, "notes"], [885, "notes"], [886, "notes"], [887, "notes"], [888, "notes"], [889, "notes"], [890, "notes"], [891, "notes"], [892, "notes"], [893, "notes"], [894, "notes"], [895, "notes"]], "Examples": [[3, "examples"], [4, "examples"], [5, "examples"], [6, "examples"], [7, "examples"], [8, "examples"], [9, "examples"], [10, "examples"], [11, "examples"], [12, "examples"], [13, "examples"], [14, "examples"], [15, "examples"], [16, "examples"], [17, "examples"], [18, "examples"], [19, "examples"], [20, "examples"], [21, "examples"], [22, "examples"], [23, "examples"], [24, "examples"], [25, "examples"], [26, "examples"], [27, "examples"], [28, "examples"], [29, "examples"], [30, "examples"], [31, "examples"], [32, "examples"], [33, "examples"], [34, "examples"], [35, "examples"], [36, "examples"], [37, "examples"], [38, "examples"], [39, "examples"], [40, "examples"], [41, "examples"], [42, "examples"], [43, "examples"], [44, "examples"], [45, "examples"], [46, "examples"], [47, "examples"], [48, "examples"], [49, "examples"], [50, "examples"], [51, "examples"], [52, "examples"], [53, "examples"], [54, "examples"], [55, "examples"], [56, "examples"], [57, "examples"], [58, "examples"], [59, "examples"], [60, "examples"], [61, "examples"], [62, "examples"], [63, "examples"], [64, "examples"], [65, "examples"], [66, "examples"], [67, "examples"], [68, "examples"], [69, "examples"], [70, "examples"], [71, "examples"], [72, "examples"], [73, "examples"], [74, "examples"], [75, "examples"], [76, "examples"], [77, "examples"], [78, "examples"], [79, "examples"], [80, "examples"], [81, "examples"], [82, "examples"], [83, "examples"], [84, "examples"], [85, "examples"], [86, "examples"], [87, "examples"], [88, "examples"], [89, "examples"], [90, "examples"], [91, "examples"], [92, "examples"], [93, "examples"], [94, "examples"], [95, "examples"], [96, "examples"], [97, "examples"], [98, "examples"], [99, "examples"], [100, "examples"], [101, "examples"], [102, "examples"], [103, "examples"], [104, "examples"], [105, "examples"], [106, "examples"], [107, "examples"], [108, "examples"], [109, "examples"], [110, "examples"], [111, "examples"], [112, "examples"], [113, "examples"], [114, "examples"], [115, "examples"], [116, "examples"], [117, "examples"], [118, "examples"], [119, "examples"], [120, "examples"], [121, "examples"], [122, "examples"], [123, "examples"], [124, "examples"], [125, "examples"], [126, "examples"], [127, "examples"], [128, "examples"], [129, "examples"], [130, "examples"], [131, "examples"], [132, "examples"], [133, "examples"], [134, "examples"], [135, "examples"], [136, "examples"], [137, "examples"], [138, "examples"], [139, "examples"], [140, "examples"], [141, "examples"], [142, "examples"], [143, "examples"], [144, "examples"], [145, "examples"], [146, "examples"], [147, "examples"], [148, "examples"], [149, "examples"], [150, "examples"], [151, "examples"], [152, "examples"], [153, "examples"], [154, "examples"], [155, "examples"], [156, "examples"], [157, "examples"], [158, "examples"], [159, "examples"], [160, "examples"], [161, "examples"], [162, "examples"], [163, "examples"], [164, "examples"], [165, "examples"], [166, "examples"], [167, "examples"], [168, "examples"], [169, "examples"], [170, "examples"], [171, "examples"], [172, "examples"], [173, "examples"], [174, "examples"], [175, "examples"], [176, "examples"], [177, "examples"], [178, "examples"], [179, "examples"], [180, "examples"], [181, "examples"], [182, "examples"], [183, "examples"], [184, "examples"], [185, "examples"], [186, "examples"], [187, "examples"], [188, "examples"], [189, "examples"], [190, "examples"], [191, "examples"], [192, "examples"], [193, "examples"], [194, "examples"], [195, "examples"], [196, "examples"], [197, "examples"], [198, "examples"], [199, "examples"], [200, "examples"], [201, "examples"], [202, "examples"], [203, "examples"], [204, "examples"], [205, "examples"], [206, "examples"], [207, "examples"], [208, "examples"], [209, "examples"], [210, "examples"], [211, "examples"], [212, "examples"], [213, "examples"], [214, "examples"], [215, "examples"], [216, "examples"], [217, "examples"], [218, "examples"], [219, "examples"], [220, "examples"], [221, "examples"], [222, "examples"], [223, "examples"], [224, "examples"], [225, "examples"], [226, "examples"], [227, "examples"], [228, "examples"], [229, "examples"], [230, "examples"], [231, "examples"], [232, "examples"], [233, "examples"], [234, "examples"], [235, "examples"], [236, "examples"], [237, "examples"], [238, "examples"], [239, "examples"], [240, "examples"], [241, "examples"], [242, "examples"], [243, "examples"], [244, "examples"], [245, "examples"], [246, "examples"], [247, "examples"], [248, "examples"], [249, "examples"], [250, "examples"], [251, "examples"], [252, "examples"], [253, "examples"], [254, "examples"], [255, "examples"], [256, "examples"], [257, "examples"], [258, "examples"], [259, "examples"], [260, "examples"], [261, "examples"], [262, "examples"], [263, "examples"], [264, "examples"], [265, "examples"], [266, "examples"], [267, "examples"], [268, "examples"], [269, "examples"], [270, "examples"], [271, "examples"], [272, "examples"], [273, "examples"], [274, "examples"], [275, "examples"], [276, "examples"], [277, "examples"], [278, "examples"], [279, "examples"], [280, "examples"], [281, "examples"], [282, "examples"], [283, "examples"], [284, "examples"], [285, "examples"], [286, "examples"], [287, "examples"], [288, "examples"], [289, "examples"], [290, "examples"], [291, "examples"], [292, "examples"], [293, "examples"], [294, "examples"], [295, "examples"], [296, "examples"], [297, "examples"], [298, "examples"], [299, "examples"], [300, "examples"], [301, "examples"], [302, "examples"], [303, "examples"], [304, "examples"], [305, "examples"], [306, "examples"], [307, "examples"], [308, "examples"], [309, "examples"], [310, "examples"], [311, "examples"], [312, "examples"], [313, "examples"], [314, "examples"], [315, "examples"], [316, "examples"], [317, "examples"], [318, "examples"], [319, "examples"], [320, "examples"], [321, "examples"], [322, "examples"], [323, "examples"], [324, "examples"], [325, "examples"], [326, "examples"], [327, "examples"], [328, "examples"], [329, "examples"], [330, "examples"], [331, "examples"], [332, "examples"], [333, "examples"], [334, "examples"], [335, "examples"], [336, "examples"], [337, "examples"], [338, "examples"], [339, "examples"], [340, "examples"], [341, "examples"], [342, "examples"], [343, "examples"], [344, "examples"], [345, "examples"], [346, "examples"], [347, "examples"], [348, "examples"], [349, "examples"], [350, "examples"], [351, "examples"], [352, "examples"], [353, "examples"], [354, "examples"], [355, "examples"], [356, "examples"], [357, "examples"], [358, "examples"], [359, "examples"], [360, "examples"], [361, "examples"], [362, "examples"], [363, "examples"], [364, "examples"], [365, "examples"], [366, "examples"], [367, "examples"], [368, "examples"], [369, "examples"], [370, "examples"], [371, "examples"], [372, "examples"], [373, "examples"], [374, "examples"], [375, "examples"], [376, "examples"], [377, "examples"], [378, "examples"], [379, "examples"], [380, "examples"], [381, "examples"], [382, "examples"], [383, "examples"], [384, "examples"], [385, "examples"], [386, "examples"], [387, "examples"], [388, "examples"], [389, "examples"], [390, "examples"], [392, "examples"], [393, "examples"], [394, "examples"], [395, "examples"], [396, "examples"], [397, "examples"], [398, "examples"], [399, "examples"], [400, "examples"], [401, "examples"], [402, "examples"], [403, "examples"], [404, "examples"], [405, "examples"], [406, "examples"], [407, "examples"], [408, "examples"], [409, "examples"], [410, "examples"], [411, "examples"], [412, "examples"], [413, "examples"], [414, "examples"], [415, "examples"], [416, "examples"], [417, "examples"], [418, "examples"], [419, "examples"], [420, "examples"], [421, "examples"], [422, "examples"], [423, "examples"], [424, "examples"], [425, "examples"], [426, "examples"], [427, "examples"], [428, "examples"], [429, "examples"], [430, "examples"], [431, "examples"], [432, "examples"], [433, "examples"], [434, "examples"], [435, "examples"], [436, "examples"], [437, "examples"], [438, "examples"], [439, "examples"], [440, "examples"], [441, "examples"], [442, "examples"], [443, "examples"], [444, "examples"], [445, "examples"], [446, "examples"], [447, "examples"], [448, "examples"], [449, "examples"], [450, "examples"], [451, "examples"], [452, "examples"], [453, "examples"], [454, "examples"], [455, "examples"], [456, "examples"], [457, "examples"], [458, "examples"], [459, "examples"], [460, "examples"], [461, "examples"], [462, "examples"], [463, "examples"], [464, "examples"], [465, "examples"], [466, "examples"], [467, "examples"], [468, "examples"], [469, "examples"], [470, "examples"], [471, "examples"], [472, "examples"], [473, "examples"], [474, "examples"], [475, "examples"], [476, "examples"], [477, "examples"], [478, "examples"], [479, "examples"], [480, "examples"], [481, "examples"], [482, "examples"], [483, "examples"], [484, "examples"], [485, "examples"], [486, "examples"], [487, "examples"], [488, "examples"], [489, "examples"], [490, "examples"], [491, "examples"], [492, "examples"], [493, "examples"], [494, "examples"], [495, "examples"], [496, "examples"], [497, "examples"], [498, "examples"], [499, "examples"], [500, "examples"], [501, "examples"], [502, "examples"], [503, "examples"], [504, "examples"], [505, "examples"], [506, "examples"], [507, "examples"], [508, "examples"], [509, "examples"], [510, "examples"], [511, "examples"], [512, "examples"], [513, "examples"], [514, "examples"], [515, "examples"], [516, "examples"], [517, "examples"], [518, "examples"], [519, "examples"], [520, "examples"], [521, "examples"], [522, "examples"], [523, "examples"], [524, "examples"], [525, "examples"], [526, "examples"], [527, "examples"], [528, "examples"], [529, "examples"], [530, "examples"], [531, "examples"], [532, "examples"], [533, "examples"], [534, "examples"], [535, "examples"], [536, "examples"], [537, "examples"], [538, "examples"], [539, "examples"], [540, "examples"], [541, "examples"], [542, "examples"], [543, "examples"], [544, "examples"], [545, "examples"], [546, "examples"], [547, "examples"], [548, "examples"], [549, "examples"], [550, "examples"], [551, "examples"], [552, "examples"], [553, "examples"], [554, "examples"], [555, "examples"], [556, "examples"], [557, "examples"], [558, "examples"], [559, "examples"], [560, "examples"], [561, "examples"], [562, "examples"], [563, "examples"], [564, "examples"], [565, "examples"], [566, "examples"], [567, "examples"], [568, "examples"], [569, "examples"], [570, "examples"], [571, "examples"], [572, "examples"], [573, "examples"], [574, "examples"], [575, "examples"], [576, "examples"], [577, "examples"], [578, "examples"], [579, "examples"], [580, "examples"], [581, "examples"], [582, "examples"], [583, "examples"], [584, "examples"], [585, "examples"], [586, "examples"], [587, "examples"], [588, "examples"], [589, "examples"], [590, "examples"], [591, "examples"], [592, "examples"], [593, "examples"], [594, "examples"], [595, "examples"], [596, "examples"], [597, "examples"], [598, "examples"], [599, "examples"], [600, "examples"], [601, "examples"], [602, "examples"], [603, "examples"], [604, "examples"], [605, "examples"], [606, "examples"], [607, "examples"], [608, "examples"], [609, "examples"], [610, "examples"], [611, "examples"], [612, "examples"], [613, "examples"], [614, "examples"], [615, "examples"], [616, "examples"], [617, "examples"], [618, "examples"], [619, "examples"], [620, "examples"], [621, "examples"], [622, "examples"], [623, "examples"], [624, "examples"], [625, "examples"], [626, "examples"], [627, "examples"], [628, "examples"], [629, "examples"], [630, "examples"], [631, "examples"], [632, "examples"], [633, "examples"], [634, "examples"], [635, "examples"], [636, "examples"], [637, "examples"], [638, "examples"], [639, "examples"], [640, "examples"], [641, "examples"], [642, "examples"], [643, "examples"], [644, "examples"], [645, "examples"], [646, "examples"], [647, "examples"], [648, "examples"], [649, "examples"], [650, "examples"], [651, "examples"], [652, "examples"], [653, "examples"], [654, "examples"], [655, "examples"], [656, "examples"], [657, "examples"], [658, "examples"], [659, "examples"], [660, "examples"], [661, "examples"], [662, "examples"], [663, "examples"], [664, "examples"], [665, "examples"], [666, "examples"], [667, "examples"], [668, "examples"], [669, "examples"], [670, "examples"], [671, "examples"], [672, "examples"], [673, "examples"], [674, "examples"], [675, "examples"], [676, "examples"], [677, "examples"], [678, "examples"], [679, "examples"], [680, "examples"], [681, "examples"], [682, "examples"], [683, "examples"], [684, "examples"], [685, "examples"], [686, "examples"], [687, "examples"], [688, "examples"], [689, "examples"], [690, "examples"], [691, "examples"], [692, "examples"], [693, "examples"], [694, "examples"], [695, "examples"], [696, "examples"], [697, "examples"], [698, "examples"], [699, "examples"], [700, "examples"], [701, "examples"], [702, "examples"], [703, "examples"], [704, "examples"], [705, "examples"], [706, "examples"], [707, "examples"], [708, "examples"], [709, "examples"], [710, "examples"], [711, "examples"], [712, "examples"], [713, "examples"], [714, "examples"], [715, "examples"], [716, "examples"], [717, "examples"], [718, "examples"], [719, "examples"], [720, "examples"], [721, "examples"], [722, "examples"], [723, "examples"], [724, "examples"], [725, "examples"], [726, "examples"], [727, "examples"], [728, "examples"], [729, "examples"], [730, "examples"], [731, "examples"], [732, "examples"], [733, "examples"], [734, "examples"], [735, "examples"], [736, "examples"], [737, "examples"], [738, "examples"], [739, "examples"], [740, "examples"], [741, "examples"], [742, "examples"], [743, "examples"], [744, "examples"], [745, "examples"], [746, "examples"], [747, "examples"], [748, "examples"], [749, "examples"], [750, "examples"], [751, "examples"], [752, "examples"], [753, "examples"], [754, "examples"], [755, "examples"], [756, "examples"], [757, "examples"], [758, "examples"], [759, "examples"], [760, "examples"], [761, "examples"], [762, "examples"], [763, "examples"], [764, "examples"], [765, "examples"], [766, "examples"], [767, "examples"], [768, "examples"], [769, "examples"], [770, "examples"], [771, "examples"], [772, "examples"], [773, "examples"], [774, "examples"], [775, "examples"], [776, "examples"], [777, "examples"], [778, "examples"], [779, "examples"], [780, "examples"], [781, "examples"], [782, "examples"], [783, "examples"], [784, "examples"], [785, "examples"], [786, "examples"], [787, "examples"], [788, "examples"], [789, "examples"], [790, "examples"], [791, "examples"], [792, "examples"], [793, "examples"], [794, "examples"], [795, "examples"], [796, "examples"], [797, "examples"], [798, "examples"], [799, "examples"], [800, "examples"], [801, "examples"], [802, "examples"], [803, "examples"], [804, "examples"], [805, "examples"], [806, "examples"], [807, "examples"], [808, "examples"], [809, "examples"], [810, "examples"], [811, "examples"], [812, "examples"], [813, "examples"], [814, "examples"], [815, "examples"], [816, "examples"], [817, "examples"], [818, "examples"], [819, "examples"], [820, "examples"], [821, "examples"], [822, "examples"], [823, "examples"], [824, "examples"], [825, "examples"], [826, "examples"], [827, "examples"], [828, "examples"], [829, "examples"], [830, "examples"], [831, "examples"], [832, "examples"], [833, "examples"], [834, "examples"], [835, "examples"], [836, "examples"], [837, "examples"], [838, "examples"], [839, "examples"], [840, "examples"], [841, "examples"], [842, "examples"], [843, "examples"], [844, "examples"], [845, "examples"], [846, "examples"], [847, "examples"], [848, "examples"], [849, "examples"], [850, "examples"], [851, "examples"], [852, "examples"], [853, "examples"], [854, "examples"], [855, "examples"], [856, "examples"], [857, "examples"], [858, "examples"], [859, "examples"], [860, "examples"], [861, "examples"], [862, "examples"], [863, "examples"], [864, "examples"], [865, "examples"], [866, "examples"], [867, "examples"], [868, "examples"], [869, "examples"], [870, "examples"], [871, "examples"], [872, "examples"], [873, "examples"], [874, "examples"], [875, "examples"], [876, "examples"], [877, "examples"], [878, "examples"], [879, "examples"], [880, "examples"], [881, "examples"], [882, "examples"], [883, "examples"], [884, "examples"], [885, "examples"], [886, "examples"], [887, "examples"], [888, "examples"], [889, "examples"], [890, "examples"], [891, "examples"], [892, "examples"], [893, "examples"], [894, "examples"], [895, "examples"]], "Return Values": [[3, "return-values"], [4, "return-values"], [5, "return-values"], [6, "return-values"], [7, "return-values"], [8, "return-values"], [9, "return-values"], [10, "return-values"], [11, "return-values"], [12, "return-values"], [13, "return-values"], [14, "return-values"], [15, "return-values"], [16, "return-values"], [17, "return-values"], [18, "return-values"], [19, "return-values"], [20, "return-values"], [21, "return-values"], [22, "return-values"], [23, "return-values"], [24, "return-values"], [25, "return-values"], [26, "return-values"], [27, "return-values"], [28, "return-values"], [29, "return-values"], [30, "return-values"], [31, "return-values"], [32, "return-values"], [33, "return-values"], [34, "return-values"], [35, "return-values"], [36, "return-values"], [37, "return-values"], [38, "return-values"], [39, "return-values"], [40, "return-values"], [41, "return-values"], [42, "return-values"], [43, "return-values"], [44, "return-values"], [45, "return-values"], [46, "return-values"], [47, "return-values"], [48, "return-values"], [49, "return-values"], [50, "return-values"], [51, "return-values"], [52, "return-values"], [53, "return-values"], [54, "return-values"], [55, "return-values"], [56, "return-values"], [57, "return-values"], [58, "return-values"], [59, "return-values"], [60, "return-values"], [61, "return-values"], [62, "return-values"], [63, "return-values"], [64, "return-values"], [65, "return-values"], [66, "return-values"], [67, "return-values"], [68, "return-values"], [69, "return-values"], [70, "return-values"], [71, "return-values"], [72, "return-values"], [73, "return-values"], [74, "return-values"], [75, "return-values"], [76, "return-values"], [77, "return-values"], [78, "return-values"], [79, "return-values"], [80, "return-values"], [81, "return-values"], [82, "return-values"], [83, "return-values"], [84, "return-values"], [85, "return-values"], [86, "return-values"], [87, "return-values"], [88, "return-values"], [89, "return-values"], [90, "return-values"], [91, "return-values"], [92, "return-values"], [93, "return-values"], [94, "return-values"], [95, "return-values"], [96, "return-values"], [97, "return-values"], [98, "return-values"], [99, "return-values"], [100, "return-values"], [101, "return-values"], [102, "return-values"], [103, "return-values"], [104, "return-values"], [105, "return-values"], [106, "return-values"], [107, "return-values"], [108, "return-values"], [109, "return-values"], [110, "return-values"], [111, "return-values"], [112, "return-values"], [113, "return-values"], [114, "return-values"], [115, "return-values"], [116, "return-values"], [117, "return-values"], [118, "return-values"], [119, "return-values"], [120, "return-values"], [121, "return-values"], [122, "return-values"], [123, "return-values"], [124, "return-values"], [125, "return-values"], [126, "return-values"], [127, "return-values"], [128, "return-values"], [129, "return-values"], [130, "return-values"], [131, "return-values"], [132, "return-values"], [133, "return-values"], [134, "return-values"], [135, "return-values"], [136, "return-values"], [137, "return-values"], [138, "return-values"], [139, "return-values"], [140, "return-values"], [141, "return-values"], [142, "return-values"], [143, "return-values"], [144, "return-values"], [145, "return-values"], [146, "return-values"], [147, "return-values"], [148, "return-values"], [149, "return-values"], [150, "return-values"], [151, "return-values"], [152, "return-values"], [153, "return-values"], [154, "return-values"], [155, "return-values"], [156, "return-values"], [157, "return-values"], [158, "return-values"], [159, "return-values"], [160, "return-values"], [161, "return-values"], [162, "return-values"], [163, "return-values"], [164, "return-values"], [165, "return-values"], [166, "return-values"], [167, "return-values"], [168, "return-values"], [169, "return-values"], [170, "return-values"], [171, "return-values"], [172, "return-values"], [173, "return-values"], [174, "return-values"], [175, "return-values"], [176, "return-values"], [177, "return-values"], [178, "return-values"], [179, "return-values"], [180, "return-values"], [181, "return-values"], [182, "return-values"], [183, "return-values"], [184, "return-values"], [185, "return-values"], [186, "return-values"], [187, "return-values"], [188, "return-values"], [189, "return-values"], [190, "return-values"], [191, "return-values"], [192, "return-values"], [193, "return-values"], [194, "return-values"], [195, "return-values"], [196, "return-values"], [197, "return-values"], [198, "return-values"], [199, "return-values"], [200, "return-values"], [201, "return-values"], [202, "return-values"], [203, "return-values"], [204, "return-values"], [205, "return-values"], [206, "return-values"], [207, "return-values"], [208, "return-values"], [209, "return-values"], [210, "return-values"], [211, "return-values"], [212, "return-values"], [213, "return-values"], [214, "return-values"], [215, "return-values"], [216, "return-values"], [217, "return-values"], [218, "return-values"], [219, "return-values"], [220, "return-values"], [221, "return-values"], [222, "return-values"], [223, "return-values"], [224, "return-values"], [225, "return-values"], [226, "return-values"], [227, "return-values"], [228, "return-values"], [229, "return-values"], [230, "return-values"], [231, "return-values"], [232, "return-values"], [233, "return-values"], [234, "return-values"], [235, "return-values"], [236, "return-values"], [237, "return-values"], [238, "return-values"], [239, "return-values"], [240, "return-values"], [241, "return-values"], [242, "return-values"], [243, "return-values"], [244, "return-values"], [245, "return-values"], [246, "return-values"], [247, "return-values"], [248, "return-values"], [249, "return-values"], [250, "return-values"], [251, "return-values"], [252, "return-values"], [253, "return-values"], [254, "return-values"], [255, "return-values"], [256, "return-values"], [257, "return-values"], [258, "return-values"], [259, "return-values"], [260, "return-values"], [261, "return-values"], [262, "return-values"], [263, "return-values"], [264, "return-values"], [265, "return-values"], [266, "return-values"], [267, "return-values"], [268, "return-values"], [269, "return-values"], [270, "return-values"], [271, "return-values"], [272, "return-values"], [273, "return-values"], [274, "return-values"], [275, "return-values"], [276, "return-values"], [277, "return-values"], [278, "return-values"], [279, "return-values"], [280, "return-values"], [281, "return-values"], [282, "return-values"], [283, "return-values"], [284, "return-values"], [285, "return-values"], [286, "return-values"], [287, "return-values"], [288, "return-values"], [289, "return-values"], [290, "return-values"], [291, "return-values"], [292, "return-values"], [293, "return-values"], [294, "return-values"], [295, "return-values"], [296, "return-values"], [297, "return-values"], [298, "return-values"], [299, "return-values"], [300, "return-values"], [301, "return-values"], [302, "return-values"], [303, "return-values"], [304, "return-values"], [305, "return-values"], [306, "return-values"], [307, "return-values"], [308, "return-values"], [309, "return-values"], [310, "return-values"], [311, "return-values"], [312, "return-values"], [313, "return-values"], [314, "return-values"], [315, "return-values"], [316, "return-values"], [317, "return-values"], [318, "return-values"], [319, "return-values"], [320, "return-values"], [321, "return-values"], [322, "return-values"], [323, "return-values"], [324, "return-values"], [325, "return-values"], [326, "return-values"], [327, "return-values"], [328, "return-values"], [329, "return-values"], [330, "return-values"], [331, "return-values"], [332, "return-values"], [333, "return-values"], [334, "return-values"], [335, "return-values"], [336, "return-values"], [337, "return-values"], [338, "return-values"], [339, "return-values"], [340, "return-values"], [341, "return-values"], [342, "return-values"], [343, "return-values"], [344, "return-values"], [345, "return-values"], [346, "return-values"], [347, "return-values"], [348, "return-values"], [349, "return-values"], [350, "return-values"], [351, "return-values"], [352, "return-values"], [353, "return-values"], [354, "return-values"], [355, "return-values"], [356, "return-values"], [357, "return-values"], [358, "return-values"], [359, "return-values"], [360, "return-values"], [361, "return-values"], [362, "return-values"], [363, "return-values"], [364, "return-values"], [365, "return-values"], [366, "return-values"], [367, "return-values"], [368, "return-values"], [369, "return-values"], [370, "return-values"], [371, "return-values"], [372, "return-values"], [373, "return-values"], [374, "return-values"], [375, "return-values"], [376, "return-values"], [377, "return-values"], [378, "return-values"], [379, "return-values"], [380, "return-values"], [381, "return-values"], [382, "return-values"], [383, "return-values"], [384, "return-values"], [385, "return-values"], [386, "return-values"], [387, "return-values"], [388, "return-values"], [389, "return-values"], [390, "return-values"], [392, "return-values"], [393, "return-values"], [394, "return-values"], [395, "return-values"], [396, "return-values"], [397, "return-values"], [398, "return-values"], [399, "return-values"], [400, "return-values"], [401, "return-values"], [402, "return-values"], [403, "return-values"], [404, "return-values"], [405, "return-values"], [406, "return-values"], [407, "return-values"], [408, "return-values"], [409, "return-values"], [410, "return-values"], [411, "return-values"], [412, "return-values"], [413, "return-values"], [414, "return-values"], [415, "return-values"], [416, "return-values"], [417, "return-values"], [418, "return-values"], [419, "return-values"], [420, "return-values"], [421, "return-values"], [422, "return-values"], [423, "return-values"], [424, "return-values"], [425, "return-values"], [426, "return-values"], [427, "return-values"], [428, "return-values"], [429, "return-values"], [430, "return-values"], [431, "return-values"], [432, "return-values"], [433, "return-values"], [434, "return-values"], [435, "return-values"], [436, "return-values"], [437, "return-values"], [438, "return-values"], [439, "return-values"], [440, "return-values"], [441, "return-values"], [442, "return-values"], [443, "return-values"], [444, "return-values"], [445, "return-values"], [446, "return-values"], [447, "return-values"], [448, "return-values"], [449, "return-values"], [450, "return-values"], [451, "return-values"], [452, "return-values"], [453, "return-values"], [454, "return-values"], [455, "return-values"], [456, "return-values"], [457, "return-values"], [458, "return-values"], [459, "return-values"], [460, "return-values"], [461, "return-values"], [462, "return-values"], [463, "return-values"], [464, "return-values"], [465, "return-values"], [466, "return-values"], [467, "return-values"], [468, "return-values"], [469, "return-values"], [470, "return-values"], [471, "return-values"], [472, "return-values"], [473, "return-values"], [474, "return-values"], [475, "return-values"], [476, "return-values"], [477, "return-values"], [478, "return-values"], [479, "return-values"], [480, "return-values"], [481, "return-values"], [482, "return-values"], [483, "return-values"], [484, "return-values"], [485, "return-values"], [486, "return-values"], [487, "return-values"], [488, "return-values"], [489, "return-values"], [490, "return-values"], [491, "return-values"], [492, "return-values"], [493, "return-values"], [494, "return-values"], [495, "return-values"], [496, "return-values"], [497, "return-values"], [498, "return-values"], [499, "return-values"], [500, "return-values"], [501, "return-values"], [502, "return-values"], [503, "return-values"], [504, "return-values"], [505, "return-values"], [506, "return-values"], [507, "return-values"], [508, "return-values"], [509, "return-values"], [510, "return-values"], [511, "return-values"], [512, "return-values"], [513, "return-values"], [514, "return-values"], [515, "return-values"], [516, "return-values"], [517, "return-values"], [518, "return-values"], [519, "return-values"], [520, "return-values"], [521, "return-values"], [522, "return-values"], [523, "return-values"], [524, "return-values"], [525, "return-values"], [526, "return-values"], [527, "return-values"], [528, "return-values"], [529, "return-values"], [530, "return-values"], [531, "return-values"], [532, "return-values"], [533, "return-values"], [534, "return-values"], [535, "return-values"], [536, "return-values"], [537, "return-values"], [538, "return-values"], [539, "return-values"], [540, "return-values"], [541, "return-values"], [542, "return-values"], [543, "return-values"], [544, "return-values"], [545, "return-values"], [546, "return-values"], [547, "return-values"], [548, "return-values"], [549, "return-values"], [550, "return-values"], [551, "return-values"], [552, "return-values"], [553, "return-values"], [554, "return-values"], [555, "return-values"], [556, "return-values"], [557, "return-values"], [558, "return-values"], [559, "return-values"], [560, "return-values"], [561, "return-values"], [562, "return-values"], [563, "return-values"], [564, "return-values"], [565, "return-values"], [566, "return-values"], [567, "return-values"], [568, "return-values"], [569, "return-values"], [570, "return-values"], [571, "return-values"], [572, "return-values"], [573, "return-values"], [574, "return-values"], [575, "return-values"], [576, "return-values"], [577, "return-values"], [578, "return-values"], [579, "return-values"], [580, "return-values"], [581, "return-values"], [582, "return-values"], [583, "return-values"], [584, "return-values"], [585, "return-values"], [586, "return-values"], [587, "return-values"], [588, "return-values"], [589, "return-values"], [590, "return-values"], [591, "return-values"], [592, "return-values"], [593, "return-values"], [594, "return-values"], [595, "return-values"], [596, "return-values"], [597, "return-values"], [598, "return-values"], [599, "return-values"], [600, "return-values"], [601, "return-values"], [602, "return-values"], [603, "return-values"], [604, "return-values"], [605, "return-values"], [606, "return-values"], [607, "return-values"], [608, "return-values"], [609, "return-values"], [610, "return-values"], [611, "return-values"], [612, "return-values"], [613, "return-values"], [614, "return-values"], [615, "return-values"], [616, "return-values"], [617, "return-values"], [618, "return-values"], [619, "return-values"], [620, "return-values"], [621, "return-values"], [622, "return-values"], [623, "return-values"], [624, "return-values"], [625, "return-values"], [626, "return-values"], [627, "return-values"], [628, "return-values"], [629, "return-values"], [630, "return-values"], [631, "return-values"], [632, "return-values"], [633, "return-values"], [634, "return-values"], [635, "return-values"], [636, "return-values"], [637, "return-values"], [638, "return-values"], [639, "return-values"], [640, "return-values"], [641, "return-values"], [642, "return-values"], [643, "return-values"], [644, "return-values"], [645, "return-values"], [646, "return-values"], [647, "return-values"], [648, "return-values"], [649, "return-values"], [650, "return-values"], [651, "return-values"], [652, "return-values"], [653, "return-values"], [654, "return-values"], [655, "return-values"], [656, "return-values"], [657, "return-values"], [658, "return-values"], [659, "return-values"], [660, "return-values"], [661, "return-values"], [662, "return-values"], [663, "return-values"], [664, "return-values"], [665, "return-values"], [666, "return-values"], [667, "return-values"], [668, "return-values"], [669, "return-values"], [670, "return-values"], [671, "return-values"], [672, "return-values"], [673, "return-values"], [674, "return-values"], [675, "return-values"], [676, "return-values"], [677, "return-values"], [678, "return-values"], [679, "return-values"], [680, "return-values"], [681, "return-values"], [682, "return-values"], [683, "return-values"], [684, "return-values"], [685, "return-values"], [686, "return-values"], [687, "return-values"], [688, "return-values"], [689, "return-values"], [690, "return-values"], [691, "return-values"], [692, "return-values"], [693, "return-values"], [694, "return-values"], [695, "return-values"], [696, "return-values"], [697, "return-values"], [698, "return-values"], [699, "return-values"], [700, "return-values"], [701, "return-values"], [702, "return-values"], [703, "return-values"], [704, "return-values"], [705, "return-values"], [706, "return-values"], [707, "return-values"], [708, "return-values"], [709, "return-values"], [710, "return-values"], [711, "return-values"], [712, "return-values"], [713, "return-values"], [714, "return-values"], [715, "return-values"], [716, "return-values"], [717, "return-values"], [718, "return-values"], [719, "return-values"], [720, "return-values"], [721, "return-values"], [722, "return-values"], [723, "return-values"], [724, "return-values"], [725, "return-values"], [726, "return-values"], [727, "return-values"], [728, "return-values"], [729, "return-values"], [730, "return-values"], [731, "return-values"], [732, "return-values"], [733, "return-values"], [734, "return-values"], [735, "return-values"], [736, "return-values"], [737, "return-values"], [738, "return-values"], [739, "return-values"], [740, "return-values"], [741, "return-values"], [742, "return-values"], [743, "return-values"], [744, "return-values"], [745, "return-values"], [746, "return-values"], [747, "return-values"], [748, "return-values"], [749, "return-values"], [750, "return-values"], [751, "return-values"], [752, "return-values"], [753, "return-values"], [754, "return-values"], [755, "return-values"], [756, "return-values"], [757, "return-values"], [758, "return-values"], [759, "return-values"], [760, "return-values"], [761, "return-values"], [762, "return-values"], [763, "return-values"], [764, "return-values"], [765, "return-values"], [766, "return-values"], [767, "return-values"], [768, "return-values"], [769, "return-values"], [770, "return-values"], [771, "return-values"], [772, "return-values"], [773, "return-values"], [774, "return-values"], [775, "return-values"], [776, "return-values"], [777, "return-values"], [778, "return-values"], [779, "return-values"], [780, "return-values"], [781, "return-values"], [782, "return-values"], [783, "return-values"], [784, "return-values"], [785, "return-values"], [786, "return-values"], [787, "return-values"], [788, "return-values"], [789, "return-values"], [790, "return-values"], [791, "return-values"], [792, "return-values"], [793, "return-values"], [794, "return-values"], [795, "return-values"], [796, "return-values"], [797, "return-values"], [798, "return-values"], [799, "return-values"], [800, "return-values"], [801, "return-values"], [802, "return-values"], [803, "return-values"], [804, "return-values"], [805, "return-values"], [806, "return-values"], [807, "return-values"], [808, "return-values"], [809, "return-values"], [810, "return-values"], [811, "return-values"], [812, "return-values"], [813, "return-values"], [814, "return-values"], [815, "return-values"], [816, "return-values"], [817, "return-values"], [818, "return-values"], [819, "return-values"], [820, "return-values"], [821, "return-values"], [822, "return-values"], [823, "return-values"], [824, "return-values"], [825, "return-values"], [826, "return-values"], [827, "return-values"], [828, "return-values"], [829, "return-values"], [830, "return-values"], [831, "return-values"], [832, "return-values"], [833, "return-values"], [834, "return-values"], [835, "return-values"], [836, "return-values"], [837, "return-values"], [838, "return-values"], [839, "return-values"], [840, "return-values"], [841, "return-values"], [842, "return-values"], [843, "return-values"], [844, "return-values"], [845, "return-values"], [846, "return-values"], [847, "return-values"], [848, "return-values"], [849, "return-values"], [850, "return-values"], [851, "return-values"], [852, "return-values"], [853, "return-values"], [854, "return-values"], [855, "return-values"], [856, "return-values"], [857, "return-values"], [858, "return-values"], [859, "return-values"], [860, "return-values"], [861, "return-values"], [862, "return-values"], [863, "return-values"], [864, "return-values"], [865, "return-values"], [866, "return-values"], [867, "return-values"], [868, "return-values"], [869, "return-values"], [870, "return-values"], [871, "return-values"], [872, "return-values"], [873, "return-values"], [874, "return-values"], [875, "return-values"], [876, "return-values"], [877, "return-values"], [878, "return-values"], [879, "return-values"], [880, "return-values"], [881, "return-values"], [882, "return-values"], [883, "return-values"], [884, "return-values"], [885, "return-values"], [886, "return-values"], [887, "return-values"], [888, "return-values"], [889, "return-values"], [890, "return-values"], [891, "return-values"], [892, "return-values"], [893, "return-values"], [894, "return-values"], [895, "return-values"]], "Authors": [[3, "authors"], [4, "authors"], [5, "authors"], [6, "authors"], [7, "authors"], [8, "authors"], [9, "authors"], [10, "authors"], [11, "authors"], [12, "authors"], [13, "authors"], [14, "authors"], [15, "authors"], [16, "authors"], [17, "authors"], [18, "authors"], [19, "authors"], [20, "authors"], [21, "authors"], [22, "authors"], [23, "authors"], [24, "authors"], [25, "authors"], [26, "authors"], [27, "authors"], [28, "authors"], [29, "authors"], [30, "authors"], [31, "authors"], [32, "authors"], [33, "authors"], [34, "authors"], [35, "authors"], [36, "authors"], [37, "authors"], [38, "authors"], [39, "authors"], [40, "authors"], [41, "authors"], [42, "authors"], [43, "authors"], [44, "authors"], [45, "authors"], [46, "authors"], [47, "authors"], [48, "authors"], [49, "authors"], [50, "authors"], [51, "authors"], [52, "authors"], [53, "authors"], [54, "authors"], [55, "authors"], [56, "authors"], [57, "authors"], [58, "authors"], [59, "authors"], [60, "authors"], [61, "authors"], [62, "authors"], [63, "authors"], [64, "authors"], [65, "authors"], [66, "authors"], [67, "authors"], [68, "authors"], [69, "authors"], [70, "authors"], [71, "authors"], [72, "authors"], [73, "authors"], [74, "authors"], [75, "authors"], [76, "authors"], [77, "authors"], [78, "authors"], [79, "authors"], [80, "authors"], [81, "authors"], [82, "authors"], [83, "authors"], [84, "authors"], [85, "authors"], [86, "authors"], [87, "authors"], [88, "authors"], [89, "authors"], [90, "authors"], [91, "authors"], [92, "authors"], [93, "authors"], [94, "authors"], [95, "authors"], [96, "authors"], [97, "authors"], [98, "authors"], [99, "authors"], [100, "authors"], [101, "authors"], [102, "authors"], [103, "authors"], [104, "authors"], [105, "authors"], [106, "authors"], [107, "authors"], [108, "authors"], [109, "authors"], [110, "authors"], [111, "authors"], [112, "authors"], [113, "authors"], [114, "authors"], [115, "authors"], [116, "authors"], [117, "authors"], [118, "authors"], [119, "authors"], [120, "authors"], [121, "authors"], [122, "authors"], [123, "authors"], [124, "authors"], [125, "authors"], [126, "authors"], [127, "authors"], [128, "authors"], [129, "authors"], [130, "authors"], [131, "authors"], [132, "authors"], [133, "authors"], [134, "authors"], [135, "authors"], [136, "authors"], [137, "authors"], [138, "authors"], [139, "authors"], [140, "authors"], [141, "authors"], [142, "authors"], [143, "authors"], [144, "authors"], [145, "authors"], [146, "authors"], [147, "authors"], [148, "authors"], [149, "authors"], [150, "authors"], [151, "authors"], [152, "authors"], [153, "authors"], [154, "authors"], [155, "authors"], [156, "authors"], [157, "authors"], [158, "authors"], [159, "authors"], [160, "authors"], [161, "authors"], [162, "authors"], [163, "authors"], [164, "authors"], [165, "authors"], [166, "authors"], [167, "authors"], [168, "authors"], [169, "authors"], [170, "authors"], [171, "authors"], [172, "authors"], [173, "authors"], [174, "authors"], [175, "authors"], [176, "authors"], [177, "authors"], [178, "authors"], [179, "authors"], [180, "authors"], [181, "authors"], [182, "authors"], [183, "authors"], [184, "authors"], [185, "authors"], [186, "authors"], [187, "authors"], [188, "authors"], [189, "authors"], [190, "authors"], [191, "authors"], [192, "authors"], [193, "authors"], [194, "authors"], [195, "authors"], [196, "authors"], [197, "authors"], [198, "authors"], [199, "authors"], [200, "authors"], [201, "authors"], [202, "authors"], [203, "authors"], [204, "authors"], [205, "authors"], [206, "authors"], [207, "authors"], [208, "authors"], [209, "authors"], [210, "authors"], [211, "authors"], [212, "authors"], [213, "authors"], [214, "authors"], [215, "authors"], [216, "authors"], [217, "authors"], [218, "authors"], [219, "authors"], [220, "authors"], [221, "authors"], [222, "authors"], [223, "authors"], [224, "authors"], [225, "authors"], [226, "authors"], [227, "authors"], [228, "authors"], [229, "authors"], [230, "authors"], [231, "authors"], [232, "authors"], [233, "authors"], [234, "authors"], [235, "authors"], [236, "authors"], [237, "authors"], [238, "authors"], [239, "authors"], [240, "authors"], [241, "authors"], [242, "authors"], [243, "authors"], [244, "authors"], [245, "authors"], [246, "authors"], [247, "authors"], [248, "authors"], [249, "authors"], [250, "authors"], [251, "authors"], [252, "authors"], [253, "authors"], [254, "authors"], [255, "authors"], [256, "authors"], [257, "authors"], [258, "authors"], [259, "authors"], [260, "authors"], [261, "authors"], [262, "authors"], [263, "authors"], [264, "authors"], [265, "authors"], [266, "authors"], [267, "authors"], [268, "authors"], [269, "authors"], [270, "authors"], [271, "authors"], [272, "authors"], [273, "authors"], [274, "authors"], [275, "authors"], [276, "authors"], [277, "authors"], [278, "authors"], [279, "authors"], [280, "authors"], [281, "authors"], [282, "authors"], [283, "authors"], [284, "authors"], [285, "authors"], [286, "authors"], [287, "authors"], [288, "authors"], [289, "authors"], [290, "authors"], [291, "authors"], [292, "authors"], [293, "authors"], [294, "authors"], [295, "authors"], [296, "authors"], [297, "authors"], [298, "authors"], [299, "authors"], [300, "authors"], [301, "authors"], [302, "authors"], [303, "authors"], [304, "authors"], [305, "authors"], [306, "authors"], [307, "authors"], [308, "authors"], [309, "authors"], [310, "authors"], [311, "authors"], [312, "authors"], [313, "authors"], [314, "authors"], [315, "authors"], [316, "authors"], [317, "authors"], [318, "authors"], [319, "authors"], [320, "authors"], [321, "authors"], [322, "authors"], [323, "authors"], [324, "authors"], [325, "authors"], [326, "authors"], [327, "authors"], [328, "authors"], [329, "authors"], [330, "authors"], [331, "authors"], [332, "authors"], [333, "authors"], [334, "authors"], [335, "authors"], [336, "authors"], [337, "authors"], [338, "authors"], [339, "authors"], [340, "authors"], [341, "authors"], [342, "authors"], [343, "authors"], [344, "authors"], [345, "authors"], [346, "authors"], [347, "authors"], [348, "authors"], [349, "authors"], [350, "authors"], [351, "authors"], [352, "authors"], [353, "authors"], [354, "authors"], [355, "authors"], [356, "authors"], [357, "authors"], [358, "authors"], [359, "authors"], [360, "authors"], [361, "authors"], [362, "authors"], [363, "authors"], [364, "authors"], [365, "authors"], [366, "authors"], [367, "authors"], [368, "authors"], [369, "authors"], [370, "authors"], [371, "authors"], [372, "authors"], [373, "authors"], [374, "authors"], [375, "authors"], [376, "authors"], [377, "authors"], [378, "authors"], [379, "authors"], [380, "authors"], [381, "authors"], [382, "authors"], [383, "authors"], [384, "authors"], [385, "authors"], [386, "authors"], [387, "authors"], [388, "authors"], [389, "authors"], [390, "authors"], [392, "authors"], [393, "authors"], [394, "authors"], [395, "authors"], [396, "authors"], [397, "authors"], [398, "authors"], [399, "authors"], [400, "authors"], [401, "authors"], [402, "authors"], [403, "authors"], [404, "authors"], [405, "authors"], [406, "authors"], [407, "authors"], [408, "authors"], [409, "authors"], [410, "authors"], [411, "authors"], [412, "authors"], [413, "authors"], [414, "authors"], [415, "authors"], [416, "authors"], [417, "authors"], [418, "authors"], [419, "authors"], [420, "authors"], [421, "authors"], [422, "authors"], [423, "authors"], [424, "authors"], [425, "authors"], [426, "authors"], [427, "authors"], [428, "authors"], [429, "authors"], [430, "authors"], [431, "authors"], [432, "authors"], [433, "authors"], [434, "authors"], [435, "authors"], [436, "authors"], [437, "authors"], [438, "authors"], [439, "authors"], [440, "authors"], [441, "authors"], [442, "authors"], [443, "authors"], [444, "authors"], [445, "authors"], [446, "authors"], [447, "authors"], [448, "authors"], [449, "authors"], [450, "authors"], [451, "authors"], [452, "authors"], [453, "authors"], [454, "authors"], [455, "authors"], [456, "authors"], [457, "authors"], [458, "authors"], [459, "authors"], [460, "authors"], [461, "authors"], [462, "authors"], [463, "authors"], [464, "authors"], [465, "authors"], [466, "authors"], [467, "authors"], [468, "authors"], [469, "authors"], [470, "authors"], [471, "authors"], [472, "authors"], [473, "authors"], [474, "authors"], [475, "authors"], [476, "authors"], [477, "authors"], [478, "authors"], [479, "authors"], [480, "authors"], [481, "authors"], [482, "authors"], [483, "authors"], [484, "authors"], [485, "authors"], [486, "authors"], [487, "authors"], [488, "authors"], [489, "authors"], [490, "authors"], [491, "authors"], [492, "authors"], [493, "authors"], [494, "authors"], [495, "authors"], [496, "authors"], [497, "authors"], [498, "authors"], [499, "authors"], [500, "authors"], [501, "authors"], [502, "authors"], [503, "authors"], [504, "authors"], [505, "authors"], [506, "authors"], [507, "authors"], [508, "authors"], [509, "authors"], [510, "authors"], [511, "authors"], [512, "authors"], [513, "authors"], [514, "authors"], [515, "authors"], [516, "authors"], [517, "authors"], [518, "authors"], [519, "authors"], [520, "authors"], [521, "authors"], [522, "authors"], [523, "authors"], [524, "authors"], [525, "authors"], [526, "authors"], [527, "authors"], [528, "authors"], [529, "authors"], [530, "authors"], [531, "authors"], [532, "authors"], [533, "authors"], [534, "authors"], [535, "authors"], [536, "authors"], [537, "authors"], [538, "authors"], [539, "authors"], [540, "authors"], [541, "authors"], [542, "authors"], [543, "authors"], [544, "authors"], [545, "authors"], [546, "authors"], [547, "authors"], [548, "authors"], [549, "authors"], [550, "authors"], [551, "authors"], [552, "authors"], [553, "authors"], [554, "authors"], [555, "authors"], [556, "authors"], [557, "authors"], [558, "authors"], [559, "authors"], [560, "authors"], [561, "authors"], [562, "authors"], [563, "authors"], [564, "authors"], [565, "authors"], [566, "authors"], [567, "authors"], [568, "authors"], [569, "authors"], [570, "authors"], [571, "authors"], [572, "authors"], [573, "authors"], [574, "authors"], [575, "authors"], [576, "authors"], [577, "authors"], [578, "authors"], [579, "authors"], [580, "authors"], [581, "authors"], [582, "authors"], [583, "authors"], [584, "authors"], [585, "authors"], [586, "authors"], [587, "authors"], [588, "authors"], [589, "authors"], [590, "authors"], [591, "authors"], [592, "authors"], [593, "authors"], [594, "authors"], [595, "authors"], [596, "authors"], [597, "authors"], [598, "authors"], [599, "authors"], [600, "authors"], [601, "authors"], [602, "authors"], [603, "authors"], [604, "authors"], [605, "authors"], [606, "authors"], [607, "authors"], [608, "authors"], [609, "authors"], [610, "authors"], [611, "authors"], [612, "authors"], [613, "authors"], [614, "authors"], [615, "authors"], [616, "authors"], [617, "authors"], [618, "authors"], [619, "authors"], [620, "authors"], [621, "authors"], [622, "authors"], [623, "authors"], [624, "authors"], [625, "authors"], [626, "authors"], [627, "authors"], [628, "authors"], [629, "authors"], [630, "authors"], [631, "authors"], [632, "authors"], [633, "authors"], [634, "authors"], [635, "authors"], [636, "authors"], [637, "authors"], [638, "authors"], [639, "authors"], [640, "authors"], [641, "authors"], [642, "authors"], [643, "authors"], [644, "authors"], [645, "authors"], [646, "authors"], [647, "authors"], [648, "authors"], [649, "authors"], [650, "authors"], [651, "authors"], [652, "authors"], [653, "authors"], [654, "authors"], [655, "authors"], [656, "authors"], [657, "authors"], [658, "authors"], [659, "authors"], [660, "authors"], [661, "authors"], [662, "authors"], [663, "authors"], [664, "authors"], [665, "authors"], [666, "authors"], [667, "authors"], [668, "authors"], [669, "authors"], [670, "authors"], [671, "authors"], [672, "authors"], [673, "authors"], [674, "authors"], [675, "authors"], [676, "authors"], [677, "authors"], [678, "authors"], [679, "authors"], [680, "authors"], [681, "authors"], [682, "authors"], [683, "authors"], [684, "authors"], [685, "authors"], [686, "authors"], [687, "authors"], [688, "authors"], [689, "authors"], [690, "authors"], [691, "authors"], [692, "authors"], [693, "authors"], [694, "authors"], [695, "authors"], [696, "authors"], [697, "authors"], [698, "authors"], [699, "authors"], [700, "authors"], [701, "authors"], [702, "authors"], [703, "authors"], [704, "authors"], [705, "authors"], [706, "authors"], [707, "authors"], [708, "authors"], [709, "authors"], [710, "authors"], [711, "authors"], [712, "authors"], [713, "authors"], [714, "authors"], [715, "authors"], [716, "authors"], [717, "authors"], [718, "authors"], [719, "authors"], [720, "authors"], [721, "authors"], [722, "authors"], [723, "authors"], [724, "authors"], [725, "authors"], [726, "authors"], [727, "authors"], [728, "authors"], [729, "authors"], [730, "authors"], [731, "authors"], [732, "authors"], [733, "authors"], [734, "authors"], [735, "authors"], [736, "authors"], [737, "authors"], [738, "authors"], [739, "authors"], [740, "authors"], [741, "authors"], [742, "authors"], [743, "authors"], [744, "authors"], [745, "authors"], [746, "authors"], [747, "authors"], [748, "authors"], [749, "authors"], [750, "authors"], [751, "authors"], [752, "authors"], [753, "authors"], [754, "authors"], [755, "authors"], [756, "authors"], [757, "authors"], [758, "authors"], [759, "authors"], [760, "authors"], [761, "authors"], [762, "authors"], [763, "authors"], [764, "authors"], [765, "authors"], [766, "authors"], [767, "authors"], [768, "authors"], [769, "authors"], [770, "authors"], [771, "authors"], [772, "authors"], [773, "authors"], [774, "authors"], [775, "authors"], [776, "authors"], [777, "authors"], [778, "authors"], [779, "authors"], [780, "authors"], [781, "authors"], [782, "authors"], [783, "authors"], [784, "authors"], [785, "authors"], [786, "authors"], [787, "authors"], [788, "authors"], [789, "authors"], [790, "authors"], [791, "authors"], [792, "authors"], [793, "authors"], [794, "authors"], [795, "authors"], [796, "authors"], [797, "authors"], [798, "authors"], [799, "authors"], [800, "authors"], [801, "authors"], [802, "authors"], [803, "authors"], [804, "authors"], [805, "authors"], [806, "authors"], [807, "authors"], [808, "authors"], [809, "authors"], [810, "authors"], [811, "authors"], [812, "authors"], [813, "authors"], [814, "authors"], [815, "authors"], [816, "authors"], [817, "authors"], [818, "authors"], [819, "authors"], [820, "authors"], [821, "authors"], [822, "authors"], [823, "authors"], [824, "authors"], [825, "authors"], [826, "authors"], [827, "authors"], [828, "authors"], [829, "authors"], [830, "authors"], [831, "authors"], [832, "authors"], [833, "authors"], [834, "authors"], [835, "authors"], [836, "authors"], [837, "authors"], [838, "authors"], [839, "authors"], [840, "authors"], [841, "authors"], [842, "authors"], [843, "authors"], [844, "authors"], [845, "authors"], [846, "authors"], [847, "authors"], [848, "authors"], [849, "authors"], [850, "authors"], [851, "authors"], [852, "authors"], [853, "authors"], [854, "authors"], [855, "authors"], [856, "authors"], [857, "authors"], [858, "authors"], [859, "authors"], [860, "authors"], [861, "authors"], [862, "authors"], [863, "authors"], [864, "authors"], [865, "authors"], [866, "authors"], [867, "authors"], [868, "authors"], [869, "authors"], [870, "authors"], [871, "authors"], [872, "authors"], [873, "authors"], [874, "authors"], [875, "authors"], [876, "authors"], [877, "authors"], [878, "authors"], [879, "authors"], [880, "authors"], [881, "authors"], [882, "authors"], [883, "authors"], [884, "authors"], [885, "authors"], [886, "authors"], [887, "authors"], [888, "authors"], [889, "authors"], [890, "authors"], [891, "authors"], [892, "authors"], [893, "authors"], [894, "authors"], [895, "authors"]], "Collection links": [[3, "collection-links"], [4, "collection-links"], [5, "collection-links"], [6, "collection-links"], [7, "collection-links"], [8, "collection-links"], [9, "collection-links"], [10, "collection-links"], [11, "collection-links"], [12, "collection-links"], [13, "collection-links"], [14, "collection-links"], [15, "collection-links"], [16, "collection-links"], [17, "collection-links"], [18, "collection-links"], [19, "collection-links"], [20, "collection-links"], [21, "collection-links"], [22, "collection-links"], [23, "collection-links"], [24, "collection-links"], [25, "collection-links"], [26, "collection-links"], [27, "collection-links"], [28, "collection-links"], [29, "collection-links"], [30, "collection-links"], [31, "collection-links"], [32, "collection-links"], [33, "collection-links"], [34, "collection-links"], [35, "collection-links"], [36, "collection-links"], [37, "collection-links"], [38, "collection-links"], [39, "collection-links"], [40, "collection-links"], [41, "collection-links"], [42, "collection-links"], [43, "collection-links"], [44, "collection-links"], [45, "collection-links"], [46, "collection-links"], [47, "collection-links"], [48, "collection-links"], [49, "collection-links"], [50, "collection-links"], [51, "collection-links"], [52, "collection-links"], [53, "collection-links"], [54, "collection-links"], [55, "collection-links"], [56, "collection-links"], [57, "collection-links"], [58, "collection-links"], [59, "collection-links"], [60, "collection-links"], [61, "collection-links"], [62, "collection-links"], [63, "collection-links"], [64, "collection-links"], [65, "collection-links"], [66, "collection-links"], [67, "collection-links"], [68, "collection-links"], [69, "collection-links"], [70, "collection-links"], [71, "collection-links"], [72, "collection-links"], [73, "collection-links"], [74, "collection-links"], [75, "collection-links"], [76, "collection-links"], [77, "collection-links"], [78, "collection-links"], [79, "collection-links"], [80, "collection-links"], [81, "collection-links"], [82, "collection-links"], [83, "collection-links"], [84, "collection-links"], [85, "collection-links"], [86, "collection-links"], [87, "collection-links"], [88, "collection-links"], [89, "collection-links"], [90, "collection-links"], [91, "collection-links"], [92, "collection-links"], [93, "collection-links"], [94, "collection-links"], [95, "collection-links"], [96, "collection-links"], [97, "collection-links"], [98, "collection-links"], [99, "collection-links"], [100, "collection-links"], [101, "collection-links"], [102, "collection-links"], [103, "collection-links"], [104, "collection-links"], [105, "collection-links"], [106, "collection-links"], [107, "collection-links"], [108, "collection-links"], [109, "collection-links"], [110, "collection-links"], [111, "collection-links"], [112, "collection-links"], [113, "collection-links"], [114, "collection-links"], [115, "collection-links"], [116, "collection-links"], [117, "collection-links"], [118, "collection-links"], [119, "collection-links"], [120, "collection-links"], [121, "collection-links"], [122, "collection-links"], [123, "collection-links"], [124, "collection-links"], [125, "collection-links"], [126, "collection-links"], [127, "collection-links"], [128, "collection-links"], [129, "collection-links"], [130, "collection-links"], [131, "collection-links"], [132, "collection-links"], [133, "collection-links"], [134, "collection-links"], [135, "collection-links"], [136, "collection-links"], [137, "collection-links"], [138, "collection-links"], [139, "collection-links"], [140, "collection-links"], [141, "collection-links"], [142, "collection-links"], [143, "collection-links"], [144, "collection-links"], [145, "collection-links"], [146, "collection-links"], [147, "collection-links"], [148, "collection-links"], [149, "collection-links"], [150, "collection-links"], [151, "collection-links"], [152, "collection-links"], [153, "collection-links"], [154, "collection-links"], [155, "collection-links"], [156, "collection-links"], [157, "collection-links"], [158, "collection-links"], [159, "collection-links"], [160, "collection-links"], [161, "collection-links"], [162, "collection-links"], [163, "collection-links"], [164, "collection-links"], [165, "collection-links"], [166, "collection-links"], [167, "collection-links"], [168, "collection-links"], [169, "collection-links"], [170, "collection-links"], [171, "collection-links"], [172, "collection-links"], [173, "collection-links"], [174, "collection-links"], [175, "collection-links"], [176, "collection-links"], [177, "collection-links"], [178, "collection-links"], [179, "collection-links"], [180, "collection-links"], [181, "collection-links"], [182, "collection-links"], [183, "collection-links"], [184, "collection-links"], [185, "collection-links"], [186, "collection-links"], [187, "collection-links"], [188, "collection-links"], [189, "collection-links"], [190, "collection-links"], [191, "collection-links"], [192, "collection-links"], [193, "collection-links"], [194, "collection-links"], [195, "collection-links"], [196, "collection-links"], [197, "collection-links"], [198, "collection-links"], [199, "collection-links"], [200, "collection-links"], [201, "collection-links"], [202, "collection-links"], [203, "collection-links"], [204, "collection-links"], [205, "collection-links"], [206, "collection-links"], [207, "collection-links"], [208, "collection-links"], [209, "collection-links"], [210, "collection-links"], [211, "collection-links"], [212, "collection-links"], [213, "collection-links"], [214, "collection-links"], [215, "collection-links"], [216, "collection-links"], [217, "collection-links"], [218, "collection-links"], [219, "collection-links"], [220, "collection-links"], [221, "collection-links"], [222, "collection-links"], [223, "collection-links"], [224, "collection-links"], [225, "collection-links"], [226, "collection-links"], [227, "collection-links"], [228, "collection-links"], [229, "collection-links"], [230, "collection-links"], [231, "collection-links"], [232, "collection-links"], [233, "collection-links"], [234, "collection-links"], [235, "collection-links"], [236, "collection-links"], [237, "collection-links"], [238, "collection-links"], [239, "collection-links"], [240, "collection-links"], [241, "collection-links"], [242, "collection-links"], [243, "collection-links"], [244, "collection-links"], [245, "collection-links"], [246, "collection-links"], [247, "collection-links"], [248, "collection-links"], [249, "collection-links"], [250, "collection-links"], [251, "collection-links"], [252, "collection-links"], [253, "collection-links"], [254, "collection-links"], [255, "collection-links"], [256, "collection-links"], [257, "collection-links"], [258, "collection-links"], [259, "collection-links"], [260, "collection-links"], [261, "collection-links"], [262, "collection-links"], [263, "collection-links"], [264, "collection-links"], [265, "collection-links"], [266, "collection-links"], [267, "collection-links"], [268, "collection-links"], [269, "collection-links"], [270, "collection-links"], [271, "collection-links"], [272, "collection-links"], [273, "collection-links"], [274, "collection-links"], [275, "collection-links"], [276, "collection-links"], [277, "collection-links"], [278, "collection-links"], [279, "collection-links"], [280, "collection-links"], [281, "collection-links"], [282, "collection-links"], [283, "collection-links"], [284, "collection-links"], [285, "collection-links"], [286, "collection-links"], [287, "collection-links"], [288, "collection-links"], [289, "collection-links"], [290, "collection-links"], [291, "collection-links"], [292, "collection-links"], [293, "collection-links"], [294, "collection-links"], [295, "collection-links"], [296, "collection-links"], [297, "collection-links"], [298, "collection-links"], [299, "collection-links"], [300, "collection-links"], [301, "collection-links"], [302, "collection-links"], [303, "collection-links"], [304, "collection-links"], [305, "collection-links"], [306, "collection-links"], [307, "collection-links"], [308, "collection-links"], [309, "collection-links"], [310, "collection-links"], [311, "collection-links"], [312, "collection-links"], [313, "collection-links"], [314, "collection-links"], [315, "collection-links"], [316, "collection-links"], [317, "collection-links"], [318, "collection-links"], [319, "collection-links"], [320, "collection-links"], [321, "collection-links"], [322, "collection-links"], [323, "collection-links"], [324, "collection-links"], [325, "collection-links"], [326, "collection-links"], [327, "collection-links"], [328, "collection-links"], [329, "collection-links"], [330, "collection-links"], [331, "collection-links"], [332, "collection-links"], [333, "collection-links"], [334, "collection-links"], [335, "collection-links"], [336, "collection-links"], [337, "collection-links"], [338, "collection-links"], [339, "collection-links"], [340, "collection-links"], [341, "collection-links"], [342, "collection-links"], [343, "collection-links"], [344, "collection-links"], [345, "collection-links"], [346, "collection-links"], [347, "collection-links"], [348, "collection-links"], [349, "collection-links"], [350, "collection-links"], [351, "collection-links"], [352, "collection-links"], [353, "collection-links"], [354, "collection-links"], [355, "collection-links"], [356, "collection-links"], [357, "collection-links"], [358, "collection-links"], [359, "collection-links"], [360, "collection-links"], [361, "collection-links"], [362, "collection-links"], [363, "collection-links"], [364, "collection-links"], [365, "collection-links"], [366, "collection-links"], [367, "collection-links"], [368, "collection-links"], [369, "collection-links"], [370, "collection-links"], [371, "collection-links"], [372, "collection-links"], [373, "collection-links"], [374, "collection-links"], [375, "collection-links"], [376, "collection-links"], [377, "collection-links"], [378, "collection-links"], [379, "collection-links"], [380, "collection-links"], [381, "collection-links"], [382, "collection-links"], [383, "collection-links"], [384, "collection-links"], [385, "collection-links"], [386, "collection-links"], [387, "collection-links"], [388, "collection-links"], [389, "collection-links"], [390, "collection-links"], [392, "collection-links"], [393, "collection-links"], [394, "collection-links"], [395, "collection-links"], [396, "collection-links"], [397, "collection-links"], [398, "collection-links"], [399, "collection-links"], [400, "collection-links"], [401, "collection-links"], [402, "collection-links"], [403, "collection-links"], [404, "collection-links"], [405, "collection-links"], [406, "collection-links"], [407, "collection-links"], [408, "collection-links"], [409, "collection-links"], [410, "collection-links"], [411, "collection-links"], [412, "collection-links"], [413, "collection-links"], [414, "collection-links"], [415, "collection-links"], [416, "collection-links"], [417, "collection-links"], [418, "collection-links"], [419, "collection-links"], [420, "collection-links"], [421, "collection-links"], [422, "collection-links"], [423, "collection-links"], [424, "collection-links"], [425, "collection-links"], [426, "collection-links"], [427, "collection-links"], [428, "collection-links"], [429, "collection-links"], [430, "collection-links"], [431, "collection-links"], [432, "collection-links"], [433, "collection-links"], [434, "collection-links"], [435, "collection-links"], [436, "collection-links"], [437, "collection-links"], [438, "collection-links"], [439, "collection-links"], [440, "collection-links"], [441, "collection-links"], [442, "collection-links"], [443, "collection-links"], [444, "collection-links"], [445, "collection-links"], [446, "collection-links"], [447, "collection-links"], [448, "collection-links"], [449, "collection-links"], [450, "collection-links"], [451, "collection-links"], [452, "collection-links"], [453, "collection-links"], [454, "collection-links"], [455, "collection-links"], [456, "collection-links"], [457, "collection-links"], [458, "collection-links"], [459, "collection-links"], [460, "collection-links"], [461, "collection-links"], [462, "collection-links"], [463, "collection-links"], [464, "collection-links"], [465, "collection-links"], [466, "collection-links"], [467, "collection-links"], [468, "collection-links"], [469, "collection-links"], [470, "collection-links"], [471, "collection-links"], [472, "collection-links"], [473, "collection-links"], [474, "collection-links"], [475, "collection-links"], [476, "collection-links"], [477, "collection-links"], [478, "collection-links"], [479, "collection-links"], [480, "collection-links"], [481, "collection-links"], [482, "collection-links"], [483, "collection-links"], [484, "collection-links"], [485, "collection-links"], [486, "collection-links"], [487, "collection-links"], [488, "collection-links"], [489, "collection-links"], [490, "collection-links"], [491, "collection-links"], [492, "collection-links"], [493, "collection-links"], [494, "collection-links"], [495, "collection-links"], [496, "collection-links"], [497, "collection-links"], [498, "collection-links"], [499, "collection-links"], [500, "collection-links"], [501, "collection-links"], [502, "collection-links"], [503, "collection-links"], [504, "collection-links"], [505, "collection-links"], [506, "collection-links"], [507, "collection-links"], [508, "collection-links"], [509, "collection-links"], [510, "collection-links"], [511, "collection-links"], [512, "collection-links"], [513, "collection-links"], [514, "collection-links"], [515, "collection-links"], [516, "collection-links"], [517, "collection-links"], [518, "collection-links"], [519, "collection-links"], [520, "collection-links"], [521, "collection-links"], [522, "collection-links"], [523, "collection-links"], [524, "collection-links"], [525, "collection-links"], [526, "collection-links"], [527, "collection-links"], [528, "collection-links"], [529, "collection-links"], [530, "collection-links"], [531, "collection-links"], [532, "collection-links"], [533, "collection-links"], [534, "collection-links"], [535, "collection-links"], [536, "collection-links"], [537, "collection-links"], [538, "collection-links"], [539, "collection-links"], [540, "collection-links"], [541, "collection-links"], [542, "collection-links"], [543, "collection-links"], [544, "collection-links"], [545, "collection-links"], [546, "collection-links"], [547, "collection-links"], [548, "collection-links"], [549, "collection-links"], [550, "collection-links"], [551, "collection-links"], [552, "collection-links"], [553, "collection-links"], [554, "collection-links"], [555, "collection-links"], [556, "collection-links"], [557, "collection-links"], [558, "collection-links"], [559, "collection-links"], [560, "collection-links"], [561, "collection-links"], [562, "collection-links"], [563, "collection-links"], [564, "collection-links"], [565, "collection-links"], [566, "collection-links"], [567, "collection-links"], [568, "collection-links"], [569, "collection-links"], [570, "collection-links"], [571, "collection-links"], [572, "collection-links"], [573, "collection-links"], [574, "collection-links"], [575, "collection-links"], [576, "collection-links"], [577, "collection-links"], [578, "collection-links"], [579, "collection-links"], [580, "collection-links"], [581, "collection-links"], [582, "collection-links"], [583, "collection-links"], [584, "collection-links"], [585, "collection-links"], [586, "collection-links"], [587, "collection-links"], [588, "collection-links"], [589, "collection-links"], [590, "collection-links"], [591, "collection-links"], [592, "collection-links"], [593, "collection-links"], [594, "collection-links"], [595, "collection-links"], [596, "collection-links"], [597, "collection-links"], [598, "collection-links"], [599, "collection-links"], [600, "collection-links"], [601, "collection-links"], [602, "collection-links"], [603, "collection-links"], [604, "collection-links"], [605, "collection-links"], [606, "collection-links"], [607, "collection-links"], [608, "collection-links"], [609, "collection-links"], [610, "collection-links"], [611, "collection-links"], [612, "collection-links"], [613, "collection-links"], [614, "collection-links"], [615, "collection-links"], [616, "collection-links"], [617, "collection-links"], [618, "collection-links"], [619, "collection-links"], [620, "collection-links"], [621, "collection-links"], [622, "collection-links"], [623, "collection-links"], [624, "collection-links"], [625, "collection-links"], [626, "collection-links"], [627, "collection-links"], [628, "collection-links"], [629, "collection-links"], [630, "collection-links"], [631, "collection-links"], [632, "collection-links"], [633, "collection-links"], [634, "collection-links"], [635, "collection-links"], [636, "collection-links"], [637, "collection-links"], [638, "collection-links"], [639, "collection-links"], [640, "collection-links"], [641, "collection-links"], [642, "collection-links"], [643, "collection-links"], [644, "collection-links"], [645, "collection-links"], [646, "collection-links"], [647, "collection-links"], [648, "collection-links"], [649, "collection-links"], [650, "collection-links"], [651, "collection-links"], [652, "collection-links"], [653, "collection-links"], [654, "collection-links"], [655, "collection-links"], [656, "collection-links"], [657, "collection-links"], [658, "collection-links"], [659, "collection-links"], [660, "collection-links"], [661, "collection-links"], [662, "collection-links"], [663, "collection-links"], [664, "collection-links"], [665, "collection-links"], [666, "collection-links"], [667, "collection-links"], [668, "collection-links"], [669, "collection-links"], [670, "collection-links"], [671, "collection-links"], [672, "collection-links"], [673, "collection-links"], [674, "collection-links"], [675, "collection-links"], [676, "collection-links"], [677, "collection-links"], [678, "collection-links"], [679, "collection-links"], [680, "collection-links"], [681, "collection-links"], [682, "collection-links"], [683, "collection-links"], [684, "collection-links"], [685, "collection-links"], [686, "collection-links"], [687, "collection-links"], [688, "collection-links"], [689, "collection-links"], [690, "collection-links"], [691, "collection-links"], [692, "collection-links"], [693, "collection-links"], [694, "collection-links"], [695, "collection-links"], [696, "collection-links"], [697, "collection-links"], [698, "collection-links"], [699, "collection-links"], [700, "collection-links"], [701, "collection-links"], [702, "collection-links"], [703, "collection-links"], [704, "collection-links"], [705, "collection-links"], [706, "collection-links"], [707, "collection-links"], [708, "collection-links"], [709, "collection-links"], [710, "collection-links"], [711, "collection-links"], [712, "collection-links"], [713, "collection-links"], [714, "collection-links"], [715, "collection-links"], [716, "collection-links"], [717, "collection-links"], [718, "collection-links"], [719, "collection-links"], [720, "collection-links"], [721, "collection-links"], [722, "collection-links"], [723, "collection-links"], [724, "collection-links"], [725, "collection-links"], [726, "collection-links"], [727, "collection-links"], [728, "collection-links"], [729, "collection-links"], [730, "collection-links"], [731, "collection-links"], [732, "collection-links"], [733, "collection-links"], [734, "collection-links"], [735, "collection-links"], [736, "collection-links"], [737, "collection-links"], [738, "collection-links"], [739, "collection-links"], [740, "collection-links"], [741, "collection-links"], [742, "collection-links"], [743, "collection-links"], [744, "collection-links"], [745, "collection-links"], [746, "collection-links"], [747, "collection-links"], [748, "collection-links"], [749, "collection-links"], [750, "collection-links"], [751, "collection-links"], [752, "collection-links"], [753, "collection-links"], [754, "collection-links"], [755, "collection-links"], [756, "collection-links"], [757, "collection-links"], [758, "collection-links"], [759, "collection-links"], [760, "collection-links"], [761, "collection-links"], [762, "collection-links"], [763, "collection-links"], [764, "collection-links"], [765, "collection-links"], [766, "collection-links"], [767, "collection-links"], [768, "collection-links"], [769, "collection-links"], [770, "collection-links"], [771, "collection-links"], [772, "collection-links"], [773, "collection-links"], [774, "collection-links"], [775, "collection-links"], [776, "collection-links"], [777, "collection-links"], [778, "collection-links"], [779, "collection-links"], [780, "collection-links"], [781, "collection-links"], [782, "collection-links"], [783, "collection-links"], [784, "collection-links"], [785, "collection-links"], [786, "collection-links"], [787, "collection-links"], [788, "collection-links"], [789, "collection-links"], [790, "collection-links"], [791, "collection-links"], [792, "collection-links"], [793, "collection-links"], [794, "collection-links"], [795, "collection-links"], [796, "collection-links"], [797, "collection-links"], [798, "collection-links"], [799, "collection-links"], [800, "collection-links"], [801, "collection-links"], [802, "collection-links"], [803, "collection-links"], [804, "collection-links"], [805, "collection-links"], [806, "collection-links"], [807, "collection-links"], [808, "collection-links"], [809, "collection-links"], [810, "collection-links"], [811, "collection-links"], [812, "collection-links"], [813, "collection-links"], [814, "collection-links"], [815, "collection-links"], [816, "collection-links"], [817, "collection-links"], [818, "collection-links"], [819, "collection-links"], [820, "collection-links"], [821, "collection-links"], [822, "collection-links"], [823, "collection-links"], [824, "collection-links"], [825, "collection-links"], [826, "collection-links"], [827, "collection-links"], [828, "collection-links"], [829, "collection-links"], [830, "collection-links"], [831, "collection-links"], [832, "collection-links"], [833, "collection-links"], [834, "collection-links"], [835, "collection-links"], [836, "collection-links"], [837, "collection-links"], [838, "collection-links"], [839, "collection-links"], [840, "collection-links"], [841, "collection-links"], [842, "collection-links"], [843, "collection-links"], [844, "collection-links"], [845, "collection-links"], [846, "collection-links"], [847, "collection-links"], [848, "collection-links"], [849, "collection-links"], [850, "collection-links"], [851, "collection-links"], [852, "collection-links"], [853, "collection-links"], [854, "collection-links"], [855, "collection-links"], [856, "collection-links"], [857, "collection-links"], [858, "collection-links"], [859, "collection-links"], [860, "collection-links"], [861, "collection-links"], [862, "collection-links"], [863, "collection-links"], [864, "collection-links"], [865, "collection-links"], [866, "collection-links"], [867, "collection-links"], [868, "collection-links"], [869, "collection-links"], [870, "collection-links"], [871, "collection-links"], [872, "collection-links"], [873, "collection-links"], [874, "collection-links"], [875, "collection-links"], [876, "collection-links"], [877, "collection-links"], [878, "collection-links"], [879, "collection-links"], [880, "collection-links"], [881, "collection-links"], [882, "collection-links"], [883, "collection-links"], [884, "collection-links"], [885, "collection-links"], [886, "collection-links"], [887, "collection-links"], [888, "collection-links"], [889, "collection-links"], [890, "collection-links"], [891, "collection-links"], [892, "collection-links"], [893, "collection-links"], [894, "collection-links"], [895, "collection-links"]], "netscaler.adc.aaaglobal_aaapreauthenticationpolicy_binding module \u2013 Binding Resource definition for describing association between aaaglobal and aaapreauthenticationpolicy resources": [[4, "netscaler-adc-aaaglobal-aaapreauthenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaaglobal-and-aaapreauthenticationpolicy-resources"]], "netscaler.adc.aaaglobal_authenticationnegotiateaction_binding module \u2013 Binding Resource definition for describing association between aaaglobal and authenticationnegotiateaction resources": [[5, "netscaler-adc-aaaglobal-authenticationnegotiateaction-binding-module-binding-resource-definition-for-describing-association-between-aaaglobal-and-authenticationnegotiateaction-resources"]], "netscaler.adc.aaagroup_aaauser_binding module \u2013 Binding Resource definition for describing association between aaagroup and aaauser resources": [[6, "netscaler-adc-aaagroup-aaauser-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-aaauser-resources"]], "netscaler.adc.aaagroup_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and auditnslogpolicy resources": [[7, "netscaler-adc-aaagroup-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-auditnslogpolicy-resources"]], "netscaler.adc.aaagroup_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and auditsyslogpolicy resources": [[8, "netscaler-adc-aaagroup-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-auditsyslogpolicy-resources"]], "netscaler.adc.aaagroup_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and authorizationpolicy resources": [[9, "netscaler-adc-aaagroup-authorizationpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-authorizationpolicy-resources"]], "netscaler.adc.aaagroup_intranetip6_binding module \u2013 Binding Resource definition for describing association between aaagroup and intranetip6 resources": [[10, "netscaler-adc-aaagroup-intranetip6-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-intranetip6-resources"]], "netscaler.adc.aaagroup_intranetip_binding module \u2013 Binding Resource definition for describing association between aaagroup and intranetip resources": [[11, "netscaler-adc-aaagroup-intranetip-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-intranetip-resources"]], "netscaler.adc.aaagroup module \u2013 Configuration for AAA group resource.": [[12, "netscaler-adc-aaagroup-module-configuration-for-aaa-group-resource"]], "netscaler.adc.aaagroup_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and tmsessionpolicy resources": [[13, "netscaler-adc-aaagroup-tmsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-tmsessionpolicy-resources"]], "netscaler.adc.aaagroup_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnintranetapplication resources": [[14, "netscaler-adc-aaagroup-vpnintranetapplication-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-vpnintranetapplication-resources"]], "netscaler.adc.aaagroup_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnsessionpolicy resources": [[15, "netscaler-adc-aaagroup-vpnsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-vpnsessionpolicy-resources"]], "netscaler.adc.aaagroup_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpntrafficpolicy resources": [[16, "netscaler-adc-aaagroup-vpntrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-vpntrafficpolicy-resources"]], "netscaler.adc.aaagroup_vpnurl_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnurl resources": [[17, "netscaler-adc-aaagroup-vpnurl-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-vpnurl-resources"]], "netscaler.adc.aaagroup_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between aaagroup and vpnurlpolicy resources": [[18, "netscaler-adc-aaagroup-vpnurlpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaagroup-and-vpnurlpolicy-resources"]], "netscaler.adc.aaakcdaccount module \u2013 Configuration for Kerberos constrained delegation account resource.": [[19, "netscaler-adc-aaakcdaccount-module-configuration-for-kerberos-constrained-delegation-account-resource"]], "netscaler.adc.aaaldapparams module \u2013 Configuration for LDAP parameter resource.": [[20, "netscaler-adc-aaaldapparams-module-configuration-for-ldap-parameter-resource"]], "netscaler.adc.aaaotpparameter module \u2013 Configuration for AAA otpparameter resource.": [[21, "netscaler-adc-aaaotpparameter-module-configuration-for-aaa-otpparameter-resource"]], "netscaler.adc.aaaparameter module \u2013 Configuration for AAA parameter resource.": [[22, "netscaler-adc-aaaparameter-module-configuration-for-aaa-parameter-resource"]], "netscaler.adc.aaapreauthenticationaction module \u2013 Configuration for pre authentication action resource.": [[23, "netscaler-adc-aaapreauthenticationaction-module-configuration-for-pre-authentication-action-resource"]], "netscaler.adc.aaapreauthenticationparameter module \u2013 Configuration for pre authentication parameter resource.": [[24, "netscaler-adc-aaapreauthenticationparameter-module-configuration-for-pre-authentication-parameter-resource"]], "netscaler.adc.aaapreauthenticationpolicy module \u2013 Configuration for pre authentication policy resource.": [[25, "netscaler-adc-aaapreauthenticationpolicy-module-configuration-for-pre-authentication-policy-resource"]], "netscaler.adc.aaaradiusparams module \u2013 Configuration for RADIUS parameter resource.": [[26, "netscaler-adc-aaaradiusparams-module-configuration-for-radius-parameter-resource"]], "netscaler.adc.aaasession module \u2013 Configuration for active connection resource.": [[27, "netscaler-adc-aaasession-module-configuration-for-active-connection-resource"]], "netscaler.adc.aaassoprofile module \u2013 Configuration for aaa sso profile resource.": [[28, "netscaler-adc-aaassoprofile-module-configuration-for-aaa-sso-profile-resource"]], "netscaler.adc.aaatacacsparams module \u2013 Configuration for tacacs parameters resource.": [[29, "netscaler-adc-aaatacacsparams-module-configuration-for-tacacs-parameters-resource"]], "netscaler.adc.aaauser_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and auditnslogpolicy resources": [[30, "netscaler-adc-aaauser-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-auditnslogpolicy-resources"]], "netscaler.adc.aaauser_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and auditsyslogpolicy resources": [[31, "netscaler-adc-aaauser-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-auditsyslogpolicy-resources"]], "netscaler.adc.aaauser_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and authorizationpolicy resources": [[32, "netscaler-adc-aaauser-authorizationpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-authorizationpolicy-resources"]], "netscaler.adc.aaauser_intranetip6_binding module \u2013 Binding Resource definition for describing association between aaauser and intranetip6 resources": [[33, "netscaler-adc-aaauser-intranetip6-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-intranetip6-resources"]], "netscaler.adc.aaauser_intranetip_binding module \u2013 Binding Resource definition for describing association between aaauser and intranetip resources": [[34, "netscaler-adc-aaauser-intranetip-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-intranetip-resources"]], "netscaler.adc.aaauser module \u2013 Configuration for AAA user resource.": [[35, "netscaler-adc-aaauser-module-configuration-for-aaa-user-resource"]], "netscaler.adc.aaauser_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and tmsessionpolicy resources": [[36, "netscaler-adc-aaauser-tmsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-tmsessionpolicy-resources"]], "netscaler.adc.aaauser_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnintranetapplication resources": [[37, "netscaler-adc-aaauser-vpnintranetapplication-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-vpnintranetapplication-resources"]], "netscaler.adc.aaauser_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnsessionpolicy resources": [[38, "netscaler-adc-aaauser-vpnsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-vpnsessionpolicy-resources"]], "netscaler.adc.aaauser_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and vpntrafficpolicy resources": [[39, "netscaler-adc-aaauser-vpntrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-vpntrafficpolicy-resources"]], "netscaler.adc.aaauser_vpnurl_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnurl resources": [[40, "netscaler-adc-aaauser-vpnurl-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-vpnurl-resources"]], "netscaler.adc.aaauser_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between aaauser and vpnurlpolicy resources": [[41, "netscaler-adc-aaauser-vpnurlpolicy-binding-module-binding-resource-definition-for-describing-association-between-aaauser-and-vpnurlpolicy-resources"]], "netscaler.adc.admparameter module \u2013 Configuration for ADM parameter resource.": [[42, "netscaler-adc-admparameter-module-configuration-for-adm-parameter-resource"]], "netscaler.adc.analyticsglobal_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between analyticsglobal and analyticsprofile resources": [[43, "netscaler-adc-analyticsglobal-analyticsprofile-binding-module-binding-resource-definition-for-describing-association-between-analyticsglobal-and-analyticsprofile-resources"]], "netscaler.adc.analyticsprofile module \u2013 Configuration for Analytics profile resource.": [[44, "netscaler-adc-analyticsprofile-module-configuration-for-analytics-profile-resource"]], "netscaler.adc.apispec module \u2013 Configuration for API specification resource.": [[45, "netscaler-adc-apispec-module-configuration-for-api-specification-resource"]], "netscaler.adc.apispecfile module \u2013 Configuration for API specificationfile resource.": [[46, "netscaler-adc-apispecfile-module-configuration-for-api-specificationfile-resource"]], "netscaler.adc.appalgparam module \u2013 Configuration for AppAlg Param resource.": [[47, "netscaler-adc-appalgparam-module-configuration-for-appalg-param-resource"]], "netscaler.adc.appflowaction_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between appflowaction and analyticsprofile resources": [[48, "netscaler-adc-appflowaction-analyticsprofile-binding-module-binding-resource-definition-for-describing-association-between-appflowaction-and-analyticsprofile-resources"]], "netscaler.adc.appflowaction module \u2013 Configuration for AppFlow action resource.": [[49, "netscaler-adc-appflowaction-module-configuration-for-appflow-action-resource"]], "netscaler.adc.appflowcollector module \u2013 Configuration for AppFlow collector resource.": [[50, "netscaler-adc-appflowcollector-module-configuration-for-appflow-collector-resource"]], "netscaler.adc.appflowglobal_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between appflowglobal and appflowpolicy resources": [[51, "netscaler-adc-appflowglobal-appflowpolicy-binding-module-binding-resource-definition-for-describing-association-between-appflowglobal-and-appflowpolicy-resources"]], "netscaler.adc.appflowparam module \u2013 Configuration for AppFlow parameter resource.": [[52, "netscaler-adc-appflowparam-module-configuration-for-appflow-parameter-resource"]], "netscaler.adc.appflowpolicy module \u2013 Configuration for AppFlow policy resource.": [[53, "netscaler-adc-appflowpolicy-module-configuration-for-appflow-policy-resource"]], "netscaler.adc.appflowpolicylabel_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between appflowpolicylabel and appflowpolicy resources": [[54, "netscaler-adc-appflowpolicylabel-appflowpolicy-binding-module-binding-resource-definition-for-describing-association-between-appflowpolicylabel-and-appflowpolicy-resources"]], "netscaler.adc.appflowpolicylabel module \u2013 Configuration for AppFlow policy label resource.": [[55, "netscaler-adc-appflowpolicylabel-module-configuration-for-appflow-policy-label-resource"]], "netscaler.adc.appfwarchive module \u2013 Configuration for archive resource.": [[56, "netscaler-adc-appfwarchive-module-configuration-for-archive-resource"]], "netscaler.adc.appfwconfidfield module \u2013 Configuration for configured confidential form fields resource.": [[57, "netscaler-adc-appfwconfidfield-module-configuration-for-configured-confidential-form-fields-resource"]], "netscaler.adc.appfwcustomsettings module \u2013 Configuration for application firewall custom settings XML configuration resource.": [[58, "netscaler-adc-appfwcustomsettings-module-configuration-for-application-firewall-custom-settings-xml-configuration-resource"]], "netscaler.adc.appfwfieldtype module \u2013 Configuration for application firewall form field type resource.": [[59, "netscaler-adc-appfwfieldtype-module-configuration-for-application-firewall-form-field-type-resource"]], "netscaler.adc.appfwglobal_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between appfwglobal and appfwpolicy resources": [[60, "netscaler-adc-appfwglobal-appfwpolicy-binding-module-binding-resource-definition-for-describing-association-between-appfwglobal-and-appfwpolicy-resources"]], "netscaler.adc.appfwglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between appfwglobal and auditnslogpolicy resources": [[61, "netscaler-adc-appfwglobal-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-appfwglobal-and-auditnslogpolicy-resources"]], "netscaler.adc.appfwglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between appfwglobal and auditsyslogpolicy resources": [[62, "netscaler-adc-appfwglobal-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-appfwglobal-and-auditsyslogpolicy-resources"]], "netscaler.adc.appfwgrpccontenttype module \u2013 Configuration for gRRPC content type resource.": [[63, "netscaler-adc-appfwgrpccontenttype-module-configuration-for-grrpc-content-type-resource"]], "netscaler.adc.appfwgrpcwebjsoncontenttype module \u2013 Configuration for gRRPC-Web-json content type resource.": [[64, "netscaler-adc-appfwgrpcwebjsoncontenttype-module-configuration-for-grrpc-web-json-content-type-resource"]], "netscaler.adc.appfwgrpcwebtextcontenttype module \u2013 Configuration for gRRPC-Web-text content type resource.": [[65, "netscaler-adc-appfwgrpcwebtextcontenttype-module-configuration-for-grrpc-web-text-content-type-resource"]], "netscaler.adc.appfwhtmlerrorpage module \u2013 Configuration for HTML error page resource.": [[66, "netscaler-adc-appfwhtmlerrorpage-module-configuration-for-html-error-page-resource"]], "netscaler.adc.appfwjsoncontenttype module \u2013 Configuration for JSON content type resource.": [[67, "netscaler-adc-appfwjsoncontenttype-module-configuration-for-json-content-type-resource"]], "netscaler.adc.appfwjsonerrorpage module \u2013 Configuration for JSON error page resource.": [[68, "netscaler-adc-appfwjsonerrorpage-module-configuration-for-json-error-page-resource"]], "netscaler.adc.appfwlearningdata module \u2013 Configuration for learning data resource.": [[69, "netscaler-adc-appfwlearningdata-module-configuration-for-learning-data-resource"]], "netscaler.adc.appfwlearningsettings module \u2013 Configuration for learning settings resource.": [[70, "netscaler-adc-appfwlearningsettings-module-configuration-for-learning-settings-resource"]], "netscaler.adc.appfwmultipartformcontenttype module \u2013 Configuration for Multipart form content type resource.": [[71, "netscaler-adc-appfwmultipartformcontenttype-module-configuration-for-multipart-form-content-type-resource"]], "netscaler.adc.appfwpolicy module \u2013 Configuration for application firewall policy resource.": [[72, "netscaler-adc-appfwpolicy-module-configuration-for-application-firewall-policy-resource"]], "netscaler.adc.appfwpolicylabel_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between appfwpolicylabel and appfwpolicy resources": [[73, "netscaler-adc-appfwpolicylabel-appfwpolicy-binding-module-binding-resource-definition-for-describing-association-between-appfwpolicylabel-and-appfwpolicy-resources"]], "netscaler.adc.appfwpolicylabel module \u2013 Configuration for application firewall policy label resource.": [[74, "netscaler-adc-appfwpolicylabel-module-configuration-for-application-firewall-policy-label-resource"]], "netscaler.adc.appfwprofile_appfwconfidfield_binding module \u2013 Binding Resource definition for describing association between appfwprofile and appfwconfidfield resources": [[75, "netscaler-adc-appfwprofile-appfwconfidfield-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-appfwconfidfield-resources"]], "netscaler.adc.appfwprofile_blockkeyword_binding module \u2013 Binding Resource definition for describing association between appfwprofile and blockkeyword resources": [[76, "netscaler-adc-appfwprofile-blockkeyword-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-blockkeyword-resources"]], "netscaler.adc.appfwprofile_bypasslist_binding module \u2013 Binding Resource definition for describing association between appfwprofile and bypasslist resources": [[77, "netscaler-adc-appfwprofile-bypasslist-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-bypasslist-resources"]], "netscaler.adc.appfwprofile_cmdinjection_binding module \u2013 Binding Resource definition for describing association between appfwprofile and cmdinjection resources": [[78, "netscaler-adc-appfwprofile-cmdinjection-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-cmdinjection-resources"]], "netscaler.adc.appfwprofile_contenttype_binding module \u2013 Binding Resource definition for describing association between appfwprofile and contenttype resources": [[79, "netscaler-adc-appfwprofile-contenttype-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-contenttype-resources"]], "netscaler.adc.appfwprofile_cookieconsistency_binding module \u2013 Binding Resource definition for describing association between appfwprofile and cookieconsistency resources": [[80, "netscaler-adc-appfwprofile-cookieconsistency-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-cookieconsistency-resources"]], "netscaler.adc.appfwprofile_creditcardnumber_binding module \u2013 Binding Resource definition for describing association between appfwprofile and creditcardnumber resources": [[81, "netscaler-adc-appfwprofile-creditcardnumber-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-creditcardnumber-resources"]], "netscaler.adc.appfwprofile_crosssitescripting_binding module \u2013 Binding Resource definition for describing association between appfwprofile and crosssitescripting resources": [[82, "netscaler-adc-appfwprofile-crosssitescripting-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-crosssitescripting-resources"]], "netscaler.adc.appfwprofile_csrftag_binding module \u2013 Binding Resource definition for describing association between appfwprofile and csrftag resources": [[83, "netscaler-adc-appfwprofile-csrftag-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-csrftag-resources"]], "netscaler.adc.appfwprofile_denylist_binding module \u2013 Binding Resource definition for describing association between appfwprofile and denylist resources": [[84, "netscaler-adc-appfwprofile-denylist-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-denylist-resources"]], "netscaler.adc.appfwprofile_denyurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and denyurl resources": [[85, "netscaler-adc-appfwprofile-denyurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-denyurl-resources"]], "netscaler.adc.appfwprofile_excluderescontenttype_binding module \u2013 Binding Resource definition for describing association between appfwprofile and excluderescontenttype resources": [[86, "netscaler-adc-appfwprofile-excluderescontenttype-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-excluderescontenttype-resources"]], "netscaler.adc.appfwprofile_fakeaccount_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fakeaccount resources": [[87, "netscaler-adc-appfwprofile-fakeaccount-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-fakeaccount-resources"]], "netscaler.adc.appfwprofile_fieldconsistency_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fieldconsistency resources": [[88, "netscaler-adc-appfwprofile-fieldconsistency-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-fieldconsistency-resources"]], "netscaler.adc.appfwprofile_fieldformat_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fieldformat resources": [[89, "netscaler-adc-appfwprofile-fieldformat-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-fieldformat-resources"]], "netscaler.adc.appfwprofile_fileuploadtype_binding module \u2013 Binding Resource definition for describing association between appfwprofile and fileuploadtype resources": [[90, "netscaler-adc-appfwprofile-fileuploadtype-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-fileuploadtype-resources"]], "netscaler.adc.appfwprofile_jsonblockkeyword_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsonblockkeyword resources": [[91, "netscaler-adc-appfwprofile-jsonblockkeyword-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-jsonblockkeyword-resources"]], "netscaler.adc.appfwprofile_jsoncmdurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsoncmdurl resources": [[92, "netscaler-adc-appfwprofile-jsoncmdurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-jsoncmdurl-resources"]], "netscaler.adc.appfwprofile_jsondosurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsondosurl resources": [[93, "netscaler-adc-appfwprofile-jsondosurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-jsondosurl-resources"]], "netscaler.adc.appfwprofile_jsonsqlurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsonsqlurl resources": [[94, "netscaler-adc-appfwprofile-jsonsqlurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-jsonsqlurl-resources"]], "netscaler.adc.appfwprofile_jsonxssurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and jsonxssurl resources": [[95, "netscaler-adc-appfwprofile-jsonxssurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-jsonxssurl-resources"]], "netscaler.adc.appfwprofile_logexpression_binding module \u2013 Binding Resource definition for describing association between appfwprofile and logexpression resources": [[96, "netscaler-adc-appfwprofile-logexpression-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-logexpression-resources"]], "netscaler.adc.appfwprofile module \u2013 Configuration for application firewall profile resource.": [[97, "netscaler-adc-appfwprofile-module-configuration-for-application-firewall-profile-resource"]], "netscaler.adc.appfwprofile_safeobject_binding module \u2013 Binding Resource definition for describing association between appfwprofile and safeobject resources": [[98, "netscaler-adc-appfwprofile-safeobject-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-safeobject-resources"]], "netscaler.adc.appfwprofile_sqlinjection_binding module \u2013 Binding Resource definition for describing association between appfwprofile and sqlinjection resources": [[99, "netscaler-adc-appfwprofile-sqlinjection-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-sqlinjection-resources"]], "netscaler.adc.appfwprofile_starturl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and starturl resources": [[100, "netscaler-adc-appfwprofile-starturl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-starturl-resources"]], "netscaler.adc.appfwprofile_trustedlearningclients_binding module \u2013 Binding Resource definition for describing association between appfwprofile and trustedlearningclients resources": [[101, "netscaler-adc-appfwprofile-trustedlearningclients-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-trustedlearningclients-resources"]], "netscaler.adc.appfwprofile_xmlattachmenturl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlattachmenturl resources": [[102, "netscaler-adc-appfwprofile-xmlattachmenturl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-xmlattachmenturl-resources"]], "netscaler.adc.appfwprofile_xmldosurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmldosurl resources": [[103, "netscaler-adc-appfwprofile-xmldosurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-xmldosurl-resources"]], "netscaler.adc.appfwprofile_xmlsqlinjection_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlsqlinjection resources": [[104, "netscaler-adc-appfwprofile-xmlsqlinjection-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-xmlsqlinjection-resources"]], "netscaler.adc.appfwprofile_xmlvalidationurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlvalidationurl resources": [[105, "netscaler-adc-appfwprofile-xmlvalidationurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-xmlvalidationurl-resources"]], "netscaler.adc.appfwprofile_xmlwsiurl_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlwsiurl resources": [[106, "netscaler-adc-appfwprofile-xmlwsiurl-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-xmlwsiurl-resources"]], "netscaler.adc.appfwprofile_xmlxss_binding module \u2013 Binding Resource definition for describing association between appfwprofile and xmlxss resources": [[107, "netscaler-adc-appfwprofile-xmlxss-binding-module-binding-resource-definition-for-describing-association-between-appfwprofile-and-xmlxss-resources"]], "netscaler.adc.appfwprotofile module \u2013 Configuration for gRPC protofile resource.": [[108, "netscaler-adc-appfwprotofile-module-configuration-for-grpc-protofile-resource"]], "netscaler.adc.appfwsettings module \u2013 Configuration for AS settings resource.": [[109, "netscaler-adc-appfwsettings-module-configuration-for-as-settings-resource"]], "netscaler.adc.appfwsignatures module \u2013 Configuration for application firewall signatures XML configuration resource.": [[110, "netscaler-adc-appfwsignatures-module-configuration-for-application-firewall-signatures-xml-configuration-resource"]], "netscaler.adc.appfwurlencodedformcontenttype module \u2013 Configuration for Urlencoded form content type resource.": [[111, "netscaler-adc-appfwurlencodedformcontenttype-module-configuration-for-urlencoded-form-content-type-resource"]], "netscaler.adc.appfwwsdl module \u2013 Configuration for WSDL file resource.": [[112, "netscaler-adc-appfwwsdl-module-configuration-for-wsdl-file-resource"]], "netscaler.adc.appfwxmlcontenttype module \u2013 Configuration for XML Content type resource.": [[113, "netscaler-adc-appfwxmlcontenttype-module-configuration-for-xml-content-type-resource"]], "netscaler.adc.appfwxmlerrorpage module \u2013 Configuration for xml error page resource.": [[114, "netscaler-adc-appfwxmlerrorpage-module-configuration-for-xml-error-page-resource"]], "netscaler.adc.appfwxmlschema module \u2013 Configuration for XML schema resource.": [[115, "netscaler-adc-appfwxmlschema-module-configuration-for-xml-schema-resource"]], "netscaler.adc.application module \u2013 Configuration for application resource.": [[116, "netscaler-adc-application-module-configuration-for-application-resource"]], "netscaler.adc.appqoeaction module \u2013 Configuration for AppQoS action resource.": [[117, "netscaler-adc-appqoeaction-module-configuration-for-appqos-action-resource"]], "netscaler.adc.appqoecustomresp module \u2013 Configuration for AppQoE custom response page resource.": [[118, "netscaler-adc-appqoecustomresp-module-configuration-for-appqoe-custom-response-page-resource"]], "netscaler.adc.appqoeparameter module \u2013 Configuration for QOS parameter resource.": [[119, "netscaler-adc-appqoeparameter-module-configuration-for-qos-parameter-resource"]], "netscaler.adc.appqoepolicy module \u2013 Configuration for AppQoS policy resource.": [[120, "netscaler-adc-appqoepolicy-module-configuration-for-appqos-policy-resource"]], "netscaler.adc.arp module \u2013 Configuration for arp resource.": [[121, "netscaler-adc-arp-module-configuration-for-arp-resource"]], "netscaler.adc.arpparam module \u2013 Configuration for Global arp parameters resource.": [[122, "netscaler-adc-arpparam-module-configuration-for-global-arp-parameters-resource"]], "netscaler.adc.auditmessageaction module \u2013 Configuration for message action resource.": [[123, "netscaler-adc-auditmessageaction-module-configuration-for-message-action-resource"]], "netscaler.adc.auditnslogaction module \u2013 Configuration for ns log action resource.": [[124, "netscaler-adc-auditnslogaction-module-configuration-for-ns-log-action-resource"]], "netscaler.adc.auditnslogglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between auditnslogglobal and auditnslogpolicy resources": [[125, "netscaler-adc-auditnslogglobal-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-auditnslogglobal-and-auditnslogpolicy-resources"]], "netscaler.adc.auditnslogparams module \u2013 Configuration for ns log parameters resource.": [[126, "netscaler-adc-auditnslogparams-module-configuration-for-ns-log-parameters-resource"]], "netscaler.adc.auditnslogpolicy module \u2013 Configuration for ns log policy resource.": [[127, "netscaler-adc-auditnslogpolicy-module-configuration-for-ns-log-policy-resource"]], "netscaler.adc.auditsyslogaction module \u2013 Configuration for system log action resource.": [[128, "netscaler-adc-auditsyslogaction-module-configuration-for-system-log-action-resource"]], "netscaler.adc.auditsyslogglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between auditsyslogglobal and auditsyslogpolicy resources": [[129, "netscaler-adc-auditsyslogglobal-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-auditsyslogglobal-and-auditsyslogpolicy-resources"]], "netscaler.adc.auditsyslogparams module \u2013 Configuration for system log parameters resource.": [[130, "netscaler-adc-auditsyslogparams-module-configuration-for-system-log-parameters-resource"]], "netscaler.adc.auditsyslogpolicy module \u2013 Configuration for system log policy resource.": [[131, "netscaler-adc-auditsyslogpolicy-module-configuration-for-system-log-policy-resource"]], "netscaler.adc.authenticationadfsproxyprofile module \u2013 Configuration for ADFSProxy Profile resource.": [[132, "netscaler-adc-authenticationadfsproxyprofile-module-configuration-for-adfsproxy-profile-resource"]], "netscaler.adc.authenticationauthnprofile module \u2013 Configuration for Authentication profile resource.": [[133, "netscaler-adc-authenticationauthnprofile-module-configuration-for-authentication-profile-resource"]], "netscaler.adc.authenticationazurekeyvault module \u2013 Configuration for Azure Key Vault entity resource.": [[134, "netscaler-adc-authenticationazurekeyvault-module-configuration-for-azure-key-vault-entity-resource"]], "netscaler.adc.authenticationcaptchaaction module \u2013 Configuration for Captcha Action resource.": [[135, "netscaler-adc-authenticationcaptchaaction-module-configuration-for-captcha-action-resource"]], "netscaler.adc.authenticationcertaction module \u2013 Configuration for CERT action resource.": [[136, "netscaler-adc-authenticationcertaction-module-configuration-for-cert-action-resource"]], "netscaler.adc.authenticationcertpolicy module \u2013 Configuration for CERT policy resource.": [[137, "netscaler-adc-authenticationcertpolicy-module-configuration-for-cert-policy-resource"]], "netscaler.adc.authenticationcitrixauthaction module \u2013 Configuration for Citrix Authentication action resource.": [[138, "netscaler-adc-authenticationcitrixauthaction-module-configuration-for-citrix-authentication-action-resource"]], "netscaler.adc.authenticationdfaaction module \u2013 Configuration for Dfa authentication action resource.": [[139, "netscaler-adc-authenticationdfaaction-module-configuration-for-dfa-authentication-action-resource"]], "netscaler.adc.authenticationdfapolicy module \u2013 Configuration for Dfa authentication policy resource.": [[140, "netscaler-adc-authenticationdfapolicy-module-configuration-for-dfa-authentication-policy-resource"]], "netscaler.adc.authenticationemailaction module \u2013 Configuration for Email entity resource.": [[141, "netscaler-adc-authenticationemailaction-module-configuration-for-email-entity-resource"]], "netscaler.adc.authenticationepaaction module \u2013 Configuration for epa action resource.": [[142, "netscaler-adc-authenticationepaaction-module-configuration-for-epa-action-resource"]], "netscaler.adc.authenticationldapaction module \u2013 Configuration for LDAP action resource.": [[143, "netscaler-adc-authenticationldapaction-module-configuration-for-ldap-action-resource"]], "netscaler.adc.authenticationldappolicy module \u2013 Configuration for LDAP policy resource.": [[144, "netscaler-adc-authenticationldappolicy-module-configuration-for-ldap-policy-resource"]], "netscaler.adc.authenticationlocalpolicy module \u2013 Configuration for LOCAL policy resource.": [[145, "netscaler-adc-authenticationlocalpolicy-module-configuration-for-local-policy-resource"]], "netscaler.adc.authenticationloginschema module \u2013 Configuration for 0 resource.": [[146, "netscaler-adc-authenticationloginschema-module-configuration-for-0-resource"]], "netscaler.adc.authenticationloginschemapolicy module \u2013 Configuration for 0 resource.": [[147, "netscaler-adc-authenticationloginschemapolicy-module-configuration-for-0-resource"]], "netscaler.adc.authenticationnegotiateaction module \u2013 Configuration for Negotiate action resource.": [[148, "netscaler-adc-authenticationnegotiateaction-module-configuration-for-negotiate-action-resource"]], "netscaler.adc.authenticationnegotiatepolicy module \u2013 Configuration for Negotiate Policy resource.": [[149, "netscaler-adc-authenticationnegotiatepolicy-module-configuration-for-negotiate-policy-resource"]], "netscaler.adc.authenticationnoauthaction module \u2013 Configuration for no authentication action resource.": [[150, "netscaler-adc-authenticationnoauthaction-module-configuration-for-no-authentication-action-resource"]], "netscaler.adc.authenticationoauthaction module \u2013 Configuration for OAuth authentication action resource.": [[151, "netscaler-adc-authenticationoauthaction-module-configuration-for-oauth-authentication-action-resource"]], "netscaler.adc.authenticationoauthidppolicy module \u2013 Configuration for AAA OAuth IdentityProvider (IdP) policy resource.": [[152, "netscaler-adc-authenticationoauthidppolicy-module-configuration-for-aaa-oauth-identityprovider-idp-policy-resource"]], "netscaler.adc.authenticationoauthidpprofile module \u2013 Configuration for OAuth Identity Provider (IdP) profile resource.": [[153, "netscaler-adc-authenticationoauthidpprofile-module-configuration-for-oauth-identity-provider-idp-profile-resource"]], "netscaler.adc.authenticationpolicy module \u2013 Configuration for Authentication Policy resource.": [[154, "netscaler-adc-authenticationpolicy-module-configuration-for-authentication-policy-resource"]], "netscaler.adc.authenticationpolicylabel_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationpolicylabel and authenticationpolicy resources": [[155, "netscaler-adc-authenticationpolicylabel-authenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationpolicylabel-and-authenticationpolicy-resources"]], "netscaler.adc.authenticationpolicylabel module \u2013 Configuration for authentication policy label resource.": [[156, "netscaler-adc-authenticationpolicylabel-module-configuration-for-authentication-policy-label-resource"]], "netscaler.adc.authenticationpushservice module \u2013 Configuration for Service details for sending push notifications resource.": [[157, "netscaler-adc-authenticationpushservice-module-configuration-for-service-details-for-sending-push-notifications-resource"]], "netscaler.adc.authenticationradiusaction module \u2013 Configuration for RADIUS action resource.": [[158, "netscaler-adc-authenticationradiusaction-module-configuration-for-radius-action-resource"]], "netscaler.adc.authenticationradiuspolicy module \u2013 Configuration for RADIUS policy resource.": [[159, "netscaler-adc-authenticationradiuspolicy-module-configuration-for-radius-policy-resource"]], "netscaler.adc.authenticationsamlaction module \u2013 Configuration for AAA Saml action resource.": [[160, "netscaler-adc-authenticationsamlaction-module-configuration-for-aaa-saml-action-resource"]], "netscaler.adc.authenticationsamlidppolicy module \u2013 Configuration for AAA Saml IdentityProvider (IdP) policy resource.": [[161, "netscaler-adc-authenticationsamlidppolicy-module-configuration-for-aaa-saml-identityprovider-idp-policy-resource"]], "netscaler.adc.authenticationsamlidpprofile module \u2013 Configuration for AAA Saml IdentityProvider (IdP) profile resource.": [[162, "netscaler-adc-authenticationsamlidpprofile-module-configuration-for-aaa-saml-identityprovider-idp-profile-resource"]], "netscaler.adc.authenticationsamlpolicy module \u2013 Configuration for AAA Saml policy resource.": [[163, "netscaler-adc-authenticationsamlpolicy-module-configuration-for-aaa-saml-policy-resource"]], "netscaler.adc.authenticationsmartaccesspolicy module \u2013 Configuration for SmartAccess policy resource.": [[164, "netscaler-adc-authenticationsmartaccesspolicy-module-configuration-for-smartaccess-policy-resource"]], "netscaler.adc.authenticationsmartaccessprofile module \u2013 Configuration for SmartAccess profile resource.": [[165, "netscaler-adc-authenticationsmartaccessprofile-module-configuration-for-smartaccess-profile-resource"]], "netscaler.adc.authenticationstorefrontauthaction module \u2013 Configuration for Storefront authentication action resource.": [[166, "netscaler-adc-authenticationstorefrontauthaction-module-configuration-for-storefront-authentication-action-resource"]], "netscaler.adc.authenticationtacacsaction module \u2013 Configuration for TACACS action resource.": [[167, "netscaler-adc-authenticationtacacsaction-module-configuration-for-tacacs-action-resource"]], "netscaler.adc.authenticationtacacspolicy module \u2013 Configuration for TACACS policy resource.": [[168, "netscaler-adc-authenticationtacacspolicy-module-configuration-for-tacacs-policy-resource"]], "netscaler.adc.authenticationvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and auditnslogpolicy resources": [[169, "netscaler-adc-authenticationvserver-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-auditnslogpolicy-resources"]], "netscaler.adc.authenticationvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and auditsyslogpolicy resources": [[170, "netscaler-adc-authenticationvserver-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-auditsyslogpolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationcertpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationcertpolicy resources": [[171, "netscaler-adc-authenticationvserver-authenticationcertpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationcertpolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationldappolicy resources": [[172, "netscaler-adc-authenticationvserver-authenticationldappolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationldappolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationlocalpolicy resources": [[173, "netscaler-adc-authenticationvserver-authenticationlocalpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationlocalpolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationloginschemapolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationloginschemapolicy resources": [[174, "netscaler-adc-authenticationvserver-authenticationloginschemapolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationloginschemapolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationnegotiatepolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationnegotiatepolicy resources": [[175, "netscaler-adc-authenticationvserver-authenticationnegotiatepolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationnegotiatepolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationoauthidppolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationoauthidppolicy resources": [[176, "netscaler-adc-authenticationvserver-authenticationoauthidppolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationoauthidppolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationpolicy resources": [[177, "netscaler-adc-authenticationvserver-authenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationpolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationradiuspolicy resources": [[178, "netscaler-adc-authenticationvserver-authenticationradiuspolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationradiuspolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationsamlidppolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationsamlidppolicy resources": [[179, "netscaler-adc-authenticationvserver-authenticationsamlidppolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationsamlidppolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationsamlpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationsamlpolicy resources": [[180, "netscaler-adc-authenticationvserver-authenticationsamlpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationsamlpolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationsmartaccesspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationsmartaccesspolicy resources": [[181, "netscaler-adc-authenticationvserver-authenticationsmartaccesspolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationsmartaccesspolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationtacacspolicy resources": [[182, "netscaler-adc-authenticationvserver-authenticationtacacspolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationtacacspolicy-resources"]], "netscaler.adc.authenticationvserver_authenticationwebauthpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and authenticationwebauthpolicy resources": [[183, "netscaler-adc-authenticationvserver-authenticationwebauthpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-authenticationwebauthpolicy-resources"]], "netscaler.adc.authenticationvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and cachepolicy resources": [[184, "netscaler-adc-authenticationvserver-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-cachepolicy-resources"]], "netscaler.adc.authenticationvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and cspolicy resources": [[185, "netscaler-adc-authenticationvserver-cspolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-cspolicy-resources"]], "netscaler.adc.authenticationvserver module \u2013 Configuration for authentication virtual server resource.": [[186, "netscaler-adc-authenticationvserver-module-configuration-for-authentication-virtual-server-resource"]], "netscaler.adc.authenticationvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and responderpolicy resources": [[187, "netscaler-adc-authenticationvserver-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-responderpolicy-resources"]], "netscaler.adc.authenticationvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and rewritepolicy resources": [[188, "netscaler-adc-authenticationvserver-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-rewritepolicy-resources"]], "netscaler.adc.authenticationvserver_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and tmsessionpolicy resources": [[189, "netscaler-adc-authenticationvserver-tmsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-tmsessionpolicy-resources"]], "netscaler.adc.authenticationvserver_vpnportaltheme_binding module \u2013 Binding Resource definition for describing association between authenticationvserver and vpnportaltheme resources": [[190, "netscaler-adc-authenticationvserver-vpnportaltheme-binding-module-binding-resource-definition-for-describing-association-between-authenticationvserver-and-vpnportaltheme-resources"]], "netscaler.adc.authenticationwebauthaction module \u2013 Configuration for Web authentication action resource.": [[191, "netscaler-adc-authenticationwebauthaction-module-configuration-for-web-authentication-action-resource"]], "netscaler.adc.authenticationwebauthpolicy module \u2013 Configuration for Web authentication policy resource.": [[192, "netscaler-adc-authenticationwebauthpolicy-module-configuration-for-web-authentication-policy-resource"]], "netscaler.adc.authorizationpolicy module \u2013 Configuration for authorization policy resource.": [[193, "netscaler-adc-authorizationpolicy-module-configuration-for-authorization-policy-resource"]], "netscaler.adc.authorizationpolicylabel_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between authorizationpolicylabel and authorizationpolicy resources": [[194, "netscaler-adc-authorizationpolicylabel-authorizationpolicy-binding-module-binding-resource-definition-for-describing-association-between-authorizationpolicylabel-and-authorizationpolicy-resources"]], "netscaler.adc.authorizationpolicylabel module \u2013 Configuration for authorization policy label resource.": [[195, "netscaler-adc-authorizationpolicylabel-module-configuration-for-authorization-policy-label-resource"]], "netscaler.adc.autoscaleaction module \u2013 Configuration for autoscale action resource.": [[196, "netscaler-adc-autoscaleaction-module-configuration-for-autoscale-action-resource"]], "netscaler.adc.autoscalepolicy module \u2013 Configuration for Autoscale policy resource.": [[197, "netscaler-adc-autoscalepolicy-module-configuration-for-autoscale-policy-resource"]], "netscaler.adc.autoscaleprofile module \u2013 Configuration for autoscale profile resource.": [[198, "netscaler-adc-autoscaleprofile-module-configuration-for-autoscale-profile-resource"]], "netscaler.adc.azureapplication module \u2013 Configuration for Azure Application resource.": [[199, "netscaler-adc-azureapplication-module-configuration-for-azure-application-resource"]], "netscaler.adc.azurekeyvault module \u2013 Configuration for Azure Key Vault entity resource.": [[200, "netscaler-adc-azurekeyvault-module-configuration-for-azure-key-vault-entity-resource"]], "netscaler.adc.botglobal_botpolicy_binding module \u2013 Binding Resource definition for describing association between botglobal and botpolicy resources": [[201, "netscaler-adc-botglobal-botpolicy-binding-module-binding-resource-definition-for-describing-association-between-botglobal-and-botpolicy-resources"]], "netscaler.adc.botpolicy module \u2013 Configuration for Bot policy resource.": [[202, "netscaler-adc-botpolicy-module-configuration-for-bot-policy-resource"]], "netscaler.adc.botpolicylabel_botpolicy_binding module \u2013 Binding Resource definition for describing association between botpolicylabel and botpolicy resources": [[203, "netscaler-adc-botpolicylabel-botpolicy-binding-module-binding-resource-definition-for-describing-association-between-botpolicylabel-and-botpolicy-resources"]], "netscaler.adc.botpolicylabel module \u2013 Configuration for Bot policy label resource.": [[204, "netscaler-adc-botpolicylabel-module-configuration-for-bot-policy-label-resource"]], "netscaler.adc.botprofile_blacklist_binding module \u2013 Binding Resource definition for describing association between botprofile and blacklist resources": [[205, "netscaler-adc-botprofile-blacklist-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-blacklist-resources"]], "netscaler.adc.botprofile_captcha_binding module \u2013 Binding Resource definition for describing association between botprofile and captcha resources": [[206, "netscaler-adc-botprofile-captcha-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-captcha-resources"]], "netscaler.adc.botprofile_ipreputation_binding module \u2013 Binding Resource definition for describing association between botprofile and ipreputation resources": [[207, "netscaler-adc-botprofile-ipreputation-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-ipreputation-resources"]], "netscaler.adc.botprofile_kmdetectionexpr_binding module \u2013 Binding Resource definition for describing association between botprofile and kmdetectionexpr resources": [[208, "netscaler-adc-botprofile-kmdetectionexpr-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-kmdetectionexpr-resources"]], "netscaler.adc.botprofile_logexpression_binding module \u2013 Binding Resource definition for describing association between botprofile and logexpression resources": [[209, "netscaler-adc-botprofile-logexpression-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-logexpression-resources"]], "netscaler.adc.botprofile module \u2013 Configuration for Bot profile resource.": [[210, "netscaler-adc-botprofile-module-configuration-for-bot-profile-resource"]], "netscaler.adc.botprofile_ratelimit_binding module \u2013 Binding Resource definition for describing association between botprofile and ratelimit resources": [[211, "netscaler-adc-botprofile-ratelimit-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-ratelimit-resources"]], "netscaler.adc.botprofile_tps_binding module \u2013 Binding Resource definition for describing association between botprofile and tps resources": [[212, "netscaler-adc-botprofile-tps-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-tps-resources"]], "netscaler.adc.botprofile_trapinsertionurl_binding module \u2013 Binding Resource definition for describing association between botprofile and trapinsertionurl resources": [[213, "netscaler-adc-botprofile-trapinsertionurl-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-trapinsertionurl-resources"]], "netscaler.adc.botprofile_whitelist_binding module \u2013 Binding Resource definition for describing association between botprofile and whitelist resources": [[214, "netscaler-adc-botprofile-whitelist-binding-module-binding-resource-definition-for-describing-association-between-botprofile-and-whitelist-resources"]], "netscaler.adc.botsettings module \u2013 Configuration for Bot engine settings resource.": [[215, "netscaler-adc-botsettings-module-configuration-for-bot-engine-settings-resource"]], "netscaler.adc.botsignature module \u2013 Configuration for bot signatures resource.": [[216, "netscaler-adc-botsignature-module-configuration-for-bot-signatures-resource"]], "netscaler.adc.bridgegroup module \u2013 Configuration for bridge group resource.": [[217, "netscaler-adc-bridgegroup-module-configuration-for-bridge-group-resource"]], "netscaler.adc.bridgegroup_nsip6_binding module \u2013 Binding Resource definition for describing association between bridgegroup and nsip6 resources": [[218, "netscaler-adc-bridgegroup-nsip6-binding-module-binding-resource-definition-for-describing-association-between-bridgegroup-and-nsip6-resources"]], "netscaler.adc.bridgegroup_nsip_binding module \u2013 Binding Resource definition for describing association between bridgegroup and nsip resources": [[219, "netscaler-adc-bridgegroup-nsip-binding-module-binding-resource-definition-for-describing-association-between-bridgegroup-and-nsip-resources"]], "netscaler.adc.bridgegroup_vlan_binding module \u2013 Binding Resource definition for describing association between bridgegroup and vlan resources": [[220, "netscaler-adc-bridgegroup-vlan-binding-module-binding-resource-definition-for-describing-association-between-bridgegroup-and-vlan-resources"]], "netscaler.adc.bridgetable module \u2013 Configuration for bridge table entry resource.": [[221, "netscaler-adc-bridgetable-module-configuration-for-bridge-table-entry-resource"]], "netscaler.adc.cachecontentgroup module \u2013 Configuration for Integrated Cache content group resource.": [[222, "netscaler-adc-cachecontentgroup-module-configuration-for-integrated-cache-content-group-resource"]], "netscaler.adc.cacheforwardproxy module \u2013 Configuration for forward proxy resource.": [[223, "netscaler-adc-cacheforwardproxy-module-configuration-for-forward-proxy-resource"]], "netscaler.adc.cacheglobal_cachepolicy_binding module \u2013 Binding Resource definition for describing association between cacheglobal and cachepolicy resources": [[224, "netscaler-adc-cacheglobal-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-cacheglobal-and-cachepolicy-resources"]], "netscaler.adc.cacheobject module \u2013 Configuration for cache object resource.": [[225, "netscaler-adc-cacheobject-module-configuration-for-cache-object-resource"]], "netscaler.adc.cacheparameter module \u2013 Configuration for cache parameter resource.": [[226, "netscaler-adc-cacheparameter-module-configuration-for-cache-parameter-resource"]], "netscaler.adc.cachepolicy module \u2013 Configuration for Integrated Cache policy resource.": [[227, "netscaler-adc-cachepolicy-module-configuration-for-integrated-cache-policy-resource"]], "netscaler.adc.cachepolicylabel_cachepolicy_binding module \u2013 Binding Resource definition for describing association between cachepolicylabel and cachepolicy resources": [[228, "netscaler-adc-cachepolicylabel-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-cachepolicylabel-and-cachepolicy-resources"]], "netscaler.adc.cachepolicylabel module \u2013 Configuration for cache policy label resource.": [[229, "netscaler-adc-cachepolicylabel-module-configuration-for-cache-policy-label-resource"]], "netscaler.adc.cacheselector module \u2013 Configuration for cache selector resource.": [[230, "netscaler-adc-cacheselector-module-configuration-for-cache-selector-resource"]], "netscaler.adc.callhome module \u2013 Configuration for callhome resource.": [[231, "netscaler-adc-callhome-module-configuration-for-callhome-resource"]], "netscaler.adc.change_password module \u2013 Change password of a user on a NetScaler ADC node.": [[232, "netscaler-adc-change-password-module-change-password-of-a-user-on-a-netscaler-adc-node"]], "netscaler.adc.channel_interface_binding module \u2013 Binding Resource definition for describing association between channel and interface resources": [[233, "netscaler-adc-channel-interface-binding-module-binding-resource-definition-for-describing-association-between-channel-and-interface-resources"]], "netscaler.adc.channel module \u2013 Configuration for channel resource.": [[234, "netscaler-adc-channel-module-configuration-for-channel-resource"]], "netscaler.adc.cloudallowedngsticketprofile module \u2013 Configuration for Allowed ticket profile for NGS resource.": [[235, "netscaler-adc-cloudallowedngsticketprofile-module-configuration-for-allowed-ticket-profile-for-ngs-resource"]], "netscaler.adc.cloudawsparam module \u2013 Configuration for cloud awsParam resource.": [[236, "netscaler-adc-cloudawsparam-module-configuration-for-cloud-awsparam-resource"]], "netscaler.adc.cloudcredential module \u2013 Configuration for cloud credentials resource.": [[237, "netscaler-adc-cloudcredential-module-configuration-for-cloud-credentials-resource"]], "netscaler.adc.cloudngsparameter module \u2013 Configuration for cloud ngsparameter resource.": [[238, "netscaler-adc-cloudngsparameter-module-configuration-for-cloud-ngsparameter-resource"]], "netscaler.adc.cloudparameter module \u2013 Configuration for cloud parameter resource.": [[239, "netscaler-adc-cloudparameter-module-configuration-for-cloud-parameter-resource"]], "netscaler.adc.cloudparaminternal module \u2013 Configuration for cloud paramInternal resource.": [[240, "netscaler-adc-cloudparaminternal-module-configuration-for-cloud-paraminternal-resource"]], "netscaler.adc.cloudprofile module \u2013 Configuration for cloud profile resource.": [[241, "netscaler-adc-cloudprofile-module-configuration-for-cloud-profile-resource"]], "netscaler.adc.cloudtunnelparameter module \u2013 Configuration for Cloudtunnel parameter resource.": [[242, "netscaler-adc-cloudtunnelparameter-module-configuration-for-cloudtunnel-parameter-resource"]], "netscaler.adc.cloudtunnelvserver module \u2013 Configuration for Cloud Tunnel virtual server resource.": [[243, "netscaler-adc-cloudtunnelvserver-module-configuration-for-cloud-tunnel-virtual-server-resource"]], "netscaler.adc.cluster module \u2013 Configuration for 0 resource.": [[244, "netscaler-adc-cluster-module-configuration-for-0-resource"]], "netscaler.adc.clusterfiles module \u2013 Configuration for files resource.": [[245, "netscaler-adc-clusterfiles-module-configuration-for-files-resource"]], "netscaler.adc.clusterinstance module \u2013 Configuration for cluster instance resource.": [[246, "netscaler-adc-clusterinstance-module-configuration-for-cluster-instance-resource"]], "netscaler.adc.clusternode module \u2013 Configuration for cluster node resource.": [[247, "netscaler-adc-clusternode-module-configuration-for-cluster-node-resource"]], "netscaler.adc.clusternode_routemonitor_binding module \u2013 Binding Resource definition for describing association between clusternode and routemonitor resources": [[248, "netscaler-adc-clusternode-routemonitor-binding-module-binding-resource-definition-for-describing-association-between-clusternode-and-routemonitor-resources"]], "netscaler.adc.clusternodegroup_authenticationvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and authenticationvserver resources": [[249, "netscaler-adc-clusternodegroup-authenticationvserver-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-authenticationvserver-resources"]], "netscaler.adc.clusternodegroup_clusternode_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and clusternode resources": [[250, "netscaler-adc-clusternodegroup-clusternode-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-clusternode-resources"]], "netscaler.adc.clusternodegroup_crvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and crvserver resources": [[251, "netscaler-adc-clusternodegroup-crvserver-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-crvserver-resources"]], "netscaler.adc.clusternodegroup_csvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and csvserver resources": [[252, "netscaler-adc-clusternodegroup-csvserver-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-csvserver-resources"]], "netscaler.adc.clusternodegroup_gslbsite_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and gslbsite resources": [[253, "netscaler-adc-clusternodegroup-gslbsite-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-gslbsite-resources"]], "netscaler.adc.clusternodegroup_gslbvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and gslbvserver resources": [[254, "netscaler-adc-clusternodegroup-gslbvserver-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-gslbvserver-resources"]], "netscaler.adc.clusternodegroup_lbvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and lbvserver resources": [[255, "netscaler-adc-clusternodegroup-lbvserver-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-lbvserver-resources"]], "netscaler.adc.clusternodegroup module \u2013 Configuration for Node group object type resource.": [[256, "netscaler-adc-clusternodegroup-module-configuration-for-node-group-object-type-resource"]], "netscaler.adc.clusternodegroup_nslimitidentifier_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and nslimitidentifier resources": [[257, "netscaler-adc-clusternodegroup-nslimitidentifier-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-nslimitidentifier-resources"]], "netscaler.adc.clusternodegroup_service_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and service resources": [[258, "netscaler-adc-clusternodegroup-service-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-service-resources"]], "netscaler.adc.clusternodegroup_streamidentifier_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and streamidentifier resources": [[259, "netscaler-adc-clusternodegroup-streamidentifier-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-streamidentifier-resources"]], "netscaler.adc.clusternodegroup_vpnvserver_binding module \u2013 Binding Resource definition for describing association between clusternodegroup and vpnvserver resources": [[260, "netscaler-adc-clusternodegroup-vpnvserver-binding-module-binding-resource-definition-for-describing-association-between-clusternodegroup-and-vpnvserver-resources"]], "netscaler.adc.clusterpropstatus module \u2013 Configuration for 0 resource.": [[261, "netscaler-adc-clusterpropstatus-module-configuration-for-0-resource"]], "netscaler.adc.cmpaction module \u2013 Configuration for compression action resource.": [[262, "netscaler-adc-cmpaction-module-configuration-for-compression-action-resource"]], "netscaler.adc.cmpglobal_cmppolicy_binding module \u2013 Binding Resource definition for describing association between cmpglobal and cmppolicy resources": [[263, "netscaler-adc-cmpglobal-cmppolicy-binding-module-binding-resource-definition-for-describing-association-between-cmpglobal-and-cmppolicy-resources"]], "netscaler.adc.cmpparameter module \u2013 Configuration for CMP parameter resource.": [[264, "netscaler-adc-cmpparameter-module-configuration-for-cmp-parameter-resource"]], "netscaler.adc.cmppolicy module \u2013 Configuration for compression policy resource.": [[265, "netscaler-adc-cmppolicy-module-configuration-for-compression-policy-resource"]], "netscaler.adc.cmppolicylabel_cmppolicy_binding module \u2013 Binding Resource definition for describing association between cmppolicylabel and cmppolicy resources": [[266, "netscaler-adc-cmppolicylabel-cmppolicy-binding-module-binding-resource-definition-for-describing-association-between-cmppolicylabel-and-cmppolicy-resources"]], "netscaler.adc.cmppolicylabel module \u2013 Configuration for compression policy label resource.": [[267, "netscaler-adc-cmppolicylabel-module-configuration-for-compression-policy-label-resource"]], "netscaler.adc.contentinspectionaction module \u2013 Configuration for Content Inspection action resource.": [[268, "netscaler-adc-contentinspectionaction-module-configuration-for-content-inspection-action-resource"]], "netscaler.adc.contentinspectioncallout module \u2013 Configuration for Content Inspection callout resource.": [[269, "netscaler-adc-contentinspectioncallout-module-configuration-for-content-inspection-callout-resource"]], "netscaler.adc.contentinspectionglobal_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between contentinspectionglobal and contentinspectionpolicy resources": [[270, "netscaler-adc-contentinspectionglobal-contentinspectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-contentinspectionglobal-and-contentinspectionpolicy-resources"]], "netscaler.adc.contentinspectionparameter module \u2013 Configuration for Contentinspection parameter resource.": [[271, "netscaler-adc-contentinspectionparameter-module-configuration-for-contentinspection-parameter-resource"]], "netscaler.adc.contentinspectionpolicy module \u2013 Configuration for ContentInspection policy resource.": [[272, "netscaler-adc-contentinspectionpolicy-module-configuration-for-contentinspection-policy-resource"]], "netscaler.adc.contentinspectionpolicylabel_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between contentinspectionpolicylabel and contentinspectionpolicy resources": [[273, "netscaler-adc-contentinspectionpolicylabel-contentinspectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-contentinspectionpolicylabel-and-contentinspectionpolicy-resources"]], "netscaler.adc.contentinspectionpolicylabel module \u2013 Configuration for ContentInspection policy label resource.": [[274, "netscaler-adc-contentinspectionpolicylabel-module-configuration-for-contentinspection-policy-label-resource"]], "netscaler.adc.contentinspectionprofile module \u2013 Configuration for ContentInspection profile resource.": [[275, "netscaler-adc-contentinspectionprofile-module-configuration-for-contentinspection-profile-resource"]], "netscaler.adc.crpolicy module \u2013 Configuration for cache redirection policy resource.": [[276, "netscaler-adc-crpolicy-module-configuration-for-cache-redirection-policy-resource"]], "netscaler.adc.crvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between crvserver and analyticsprofile resources": [[277, "netscaler-adc-crvserver-analyticsprofile-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-analyticsprofile-resources"]], "netscaler.adc.crvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and appflowpolicy resources": [[278, "netscaler-adc-crvserver-appflowpolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-appflowpolicy-resources"]], "netscaler.adc.crvserver_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and appfwpolicy resources": [[279, "netscaler-adc-crvserver-appfwpolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-appfwpolicy-resources"]], "netscaler.adc.crvserver_appqoepolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and appqoepolicy resources": [[280, "netscaler-adc-crvserver-appqoepolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-appqoepolicy-resources"]], "netscaler.adc.crvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and cachepolicy resources": [[281, "netscaler-adc-crvserver-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-cachepolicy-resources"]], "netscaler.adc.crvserver_cmppolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and cmppolicy resources": [[282, "netscaler-adc-crvserver-cmppolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-cmppolicy-resources"]], "netscaler.adc.crvserver_crpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and crpolicy resources": [[283, "netscaler-adc-crvserver-crpolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-crpolicy-resources"]], "netscaler.adc.crvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and cspolicy resources": [[284, "netscaler-adc-crvserver-cspolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-cspolicy-resources"]], "netscaler.adc.crvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and feopolicy resources": [[285, "netscaler-adc-crvserver-feopolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-feopolicy-resources"]], "netscaler.adc.crvserver_icapolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and icapolicy resources": [[286, "netscaler-adc-crvserver-icapolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-icapolicy-resources"]], "netscaler.adc.crvserver_lbvserver_binding module \u2013 Binding Resource definition for describing association between crvserver and lbvserver resources": [[287, "netscaler-adc-crvserver-lbvserver-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-lbvserver-resources"]], "netscaler.adc.crvserver module \u2013 Configuration for CR virtual server resource.": [[288, "netscaler-adc-crvserver-module-configuration-for-cr-virtual-server-resource"]], "netscaler.adc.crvserver_policymap_binding module \u2013 Binding Resource definition for describing association between crvserver and policymap resources": [[289, "netscaler-adc-crvserver-policymap-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-policymap-resources"]], "netscaler.adc.crvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and responderpolicy resources": [[290, "netscaler-adc-crvserver-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-responderpolicy-resources"]], "netscaler.adc.crvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and rewritepolicy resources": [[291, "netscaler-adc-crvserver-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-rewritepolicy-resources"]], "netscaler.adc.crvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between crvserver and spilloverpolicy resources": [[292, "netscaler-adc-crvserver-spilloverpolicy-binding-module-binding-resource-definition-for-describing-association-between-crvserver-and-spilloverpolicy-resources"]], "netscaler.adc.csaction module \u2013 Configuration for Content Switching action resource.": [[293, "netscaler-adc-csaction-module-configuration-for-content-switching-action-resource"]], "netscaler.adc.csparameter module \u2013 Configuration for CS parameter resource.": [[294, "netscaler-adc-csparameter-module-configuration-for-cs-parameter-resource"]], "netscaler.adc.cspolicy module \u2013 Configuration for content-switching policy resource.": [[295, "netscaler-adc-cspolicy-module-configuration-for-content-switching-policy-resource"]], "netscaler.adc.cspolicylabel_cspolicy_binding module \u2013 Binding Resource definition for describing association between cspolicylabel and cspolicy resources": [[296, "netscaler-adc-cspolicylabel-cspolicy-binding-module-binding-resource-definition-for-describing-association-between-cspolicylabel-and-cspolicy-resources"]], "netscaler.adc.cspolicylabel module \u2013 Configuration for CS policy label resource.": [[297, "netscaler-adc-cspolicylabel-module-configuration-for-cs-policy-label-resource"]], "netscaler.adc.csvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between csvserver and analyticsprofile resources": [[298, "netscaler-adc-csvserver-analyticsprofile-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-analyticsprofile-resources"]], "netscaler.adc.csvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and appflowpolicy resources": [[299, "netscaler-adc-csvserver-appflowpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-appflowpolicy-resources"]], "netscaler.adc.csvserver_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and appfwpolicy resources": [[300, "netscaler-adc-csvserver-appfwpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-appfwpolicy-resources"]], "netscaler.adc.csvserver_appqoepolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and appqoepolicy resources": [[301, "netscaler-adc-csvserver-appqoepolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-appqoepolicy-resources"]], "netscaler.adc.csvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and auditnslogpolicy resources": [[302, "netscaler-adc-csvserver-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-auditnslogpolicy-resources"]], "netscaler.adc.csvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and auditsyslogpolicy resources": [[303, "netscaler-adc-csvserver-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-auditsyslogpolicy-resources"]], "netscaler.adc.csvserver_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and authorizationpolicy resources": [[304, "netscaler-adc-csvserver-authorizationpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-authorizationpolicy-resources"]], "netscaler.adc.csvserver_botpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and botpolicy resources": [[305, "netscaler-adc-csvserver-botpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-botpolicy-resources"]], "netscaler.adc.csvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and cachepolicy resources": [[306, "netscaler-adc-csvserver-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-cachepolicy-resources"]], "netscaler.adc.csvserver_cmppolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and cmppolicy resources": [[307, "netscaler-adc-csvserver-cmppolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-cmppolicy-resources"]], "netscaler.adc.csvserver_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and contentinspectionpolicy resources": [[308, "netscaler-adc-csvserver-contentinspectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-contentinspectionpolicy-resources"]], "netscaler.adc.csvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and cspolicy resources": [[309, "netscaler-adc-csvserver-cspolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-cspolicy-resources"]], "netscaler.adc.csvserver_domain_binding module \u2013 Binding Resource definition for describing association between csvserver and domain resources": [[310, "netscaler-adc-csvserver-domain-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-domain-resources"]], "netscaler.adc.csvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and feopolicy resources": [[311, "netscaler-adc-csvserver-feopolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-feopolicy-resources"]], "netscaler.adc.csvserver_gslbvserver_binding module \u2013 Binding Resource definition for describing association between csvserver and gslbvserver resources": [[312, "netscaler-adc-csvserver-gslbvserver-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-gslbvserver-resources"]], "netscaler.adc.csvserver_lbvserver_binding module \u2013 Binding Resource definition for describing association between csvserver and lbvserver resources": [[313, "netscaler-adc-csvserver-lbvserver-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-lbvserver-resources"]], "netscaler.adc.csvserver module \u2013 Configuration for CS virtual server resource.": [[314, "netscaler-adc-csvserver-module-configuration-for-cs-virtual-server-resource"]], "netscaler.adc.csvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and responderpolicy resources": [[315, "netscaler-adc-csvserver-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-responderpolicy-resources"]], "netscaler.adc.csvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and rewritepolicy resources": [[316, "netscaler-adc-csvserver-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-rewritepolicy-resources"]], "netscaler.adc.csvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and spilloverpolicy resources": [[317, "netscaler-adc-csvserver-spilloverpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-spilloverpolicy-resources"]], "netscaler.adc.csvserver_tmtrafficpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and tmtrafficpolicy resources": [[318, "netscaler-adc-csvserver-tmtrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-tmtrafficpolicy-resources"]], "netscaler.adc.csvserver_transformpolicy_binding module \u2013 Binding Resource definition for describing association between csvserver and transformpolicy resources": [[319, "netscaler-adc-csvserver-transformpolicy-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-transformpolicy-resources"]], "netscaler.adc.csvserver_vpnvserver_binding module \u2013 Binding Resource definition for describing association between csvserver and vpnvserver resources": [[320, "netscaler-adc-csvserver-vpnvserver-binding-module-binding-resource-definition-for-describing-association-between-csvserver-and-vpnvserver-resources"]], "netscaler.adc.dbdbprofile module \u2013 Configuration for DB profile resource.": [[321, "netscaler-adc-dbdbprofile-module-configuration-for-db-profile-resource"]], "netscaler.adc.dbuser module \u2013 Configuration for DB user resource.": [[322, "netscaler-adc-dbuser-module-configuration-for-db-user-resource"]], "netscaler.adc.dnsaaaarec module \u2013 Configuration for IPv6 address type record resource.": [[323, "netscaler-adc-dnsaaaarec-module-configuration-for-ipv6-address-type-record-resource"]], "netscaler.adc.dnsaction64 module \u2013 Configuration for dns64 action resource.": [[324, "netscaler-adc-dnsaction64-module-configuration-for-dns64-action-resource"]], "netscaler.adc.dnsaction module \u2013 Configuration for DNS action resource.": [[325, "netscaler-adc-dnsaction-module-configuration-for-dns-action-resource"]], "netscaler.adc.dnsaddrec module \u2013 Configuration for address type record resource.": [[326, "netscaler-adc-dnsaddrec-module-configuration-for-address-type-record-resource"]], "netscaler.adc.dnscaarec module \u2013 Configuration for CAA record resource.": [[327, "netscaler-adc-dnscaarec-module-configuration-for-caa-record-resource"]], "netscaler.adc.dnscnamerec module \u2013 Configuration for CNAME record resource.": [[328, "netscaler-adc-dnscnamerec-module-configuration-for-cname-record-resource"]], "netscaler.adc.dnsglobal_dnspolicy_binding module \u2013 Binding Resource definition for describing association between dnsglobal and dnspolicy resources": [[329, "netscaler-adc-dnsglobal-dnspolicy-binding-module-binding-resource-definition-for-describing-association-between-dnsglobal-and-dnspolicy-resources"]], "netscaler.adc.dnskey module \u2013 Configuration for dns key resource.": [[330, "netscaler-adc-dnskey-module-configuration-for-dns-key-resource"]], "netscaler.adc.dnsmxrec module \u2013 Configuration for MX record resource.": [[331, "netscaler-adc-dnsmxrec-module-configuration-for-mx-record-resource"]], "netscaler.adc.dnsnameserver module \u2013 Configuration for name server resource.": [[332, "netscaler-adc-dnsnameserver-module-configuration-for-name-server-resource"]], "netscaler.adc.dnsnaptrrec module \u2013 Configuration for NAPTR record resource.": [[333, "netscaler-adc-dnsnaptrrec-module-configuration-for-naptr-record-resource"]], "netscaler.adc.dnsnsrec module \u2013 Configuration for name server record resource.": [[334, "netscaler-adc-dnsnsrec-module-configuration-for-name-server-record-resource"]], "netscaler.adc.dnsparameter module \u2013 Configuration for DNS parameter resource.": [[335, "netscaler-adc-dnsparameter-module-configuration-for-dns-parameter-resource"]], "netscaler.adc.dnspolicy64 module \u2013 Configuration for dns64 policy resource.": [[336, "netscaler-adc-dnspolicy64-module-configuration-for-dns64-policy-resource"]], "netscaler.adc.dnspolicy module \u2013 Configuration for DNS policy resource.": [[337, "netscaler-adc-dnspolicy-module-configuration-for-dns-policy-resource"]], "netscaler.adc.dnspolicylabel_dnspolicy_binding module \u2013 Binding Resource definition for describing association between dnspolicylabel and dnspolicy resources": [[338, "netscaler-adc-dnspolicylabel-dnspolicy-binding-module-binding-resource-definition-for-describing-association-between-dnspolicylabel-and-dnspolicy-resources"]], "netscaler.adc.dnspolicylabel module \u2013 Configuration for dns policy label resource.": [[339, "netscaler-adc-dnspolicylabel-module-configuration-for-dns-policy-label-resource"]], "netscaler.adc.dnsprofile module \u2013 Configuration for DNS profile resource.": [[340, "netscaler-adc-dnsprofile-module-configuration-for-dns-profile-resource"]], "netscaler.adc.dnsproxyrecords module \u2013 Configuration for proxy record resource.": [[341, "netscaler-adc-dnsproxyrecords-module-configuration-for-proxy-record-resource"]], "netscaler.adc.dnsptrrec module \u2013 Configuration for PTR record resource.": [[342, "netscaler-adc-dnsptrrec-module-configuration-for-ptr-record-resource"]], "netscaler.adc.dnssoarec module \u2013 Configuration for SOA record resource.": [[343, "netscaler-adc-dnssoarec-module-configuration-for-soa-record-resource"]], "netscaler.adc.dnssrvrec module \u2013 Configuration for server record resource.": [[344, "netscaler-adc-dnssrvrec-module-configuration-for-server-record-resource"]], "netscaler.adc.dnssubnetcache module \u2013 Configuration for subnet cache resource.": [[345, "netscaler-adc-dnssubnetcache-module-configuration-for-subnet-cache-resource"]], "netscaler.adc.dnssuffix module \u2013 Configuration for DNS suffix resource.": [[346, "netscaler-adc-dnssuffix-module-configuration-for-dns-suffix-resource"]], "netscaler.adc.dnstxtrec module \u2013 Configuration for TXT record resource.": [[347, "netscaler-adc-dnstxtrec-module-configuration-for-txt-record-resource"]], "netscaler.adc.dnsview module \u2013 Configuration for DNS view resource.": [[348, "netscaler-adc-dnsview-module-configuration-for-dns-view-resource"]], "netscaler.adc.dnszone module \u2013 Configuration for DNS zone resource.": [[349, "netscaler-adc-dnszone-module-configuration-for-dns-zone-resource"]], "netscaler.adc.endpointinfo module \u2013 Configuration for Information resource.": [[350, "netscaler-adc-endpointinfo-module-configuration-for-information-resource"]], "netscaler.adc.extendedmemoryparam module \u2013 Configuration for Parameter for extended memory used by LSN and Subscriber Store resource.": [[351, "netscaler-adc-extendedmemoryparam-module-configuration-for-parameter-for-extended-memory-used-by-lsn-and-subscriber-store-resource"]], "netscaler.adc.feoaction module \u2013 Configuration for Front end optimization action resource.": [[352, "netscaler-adc-feoaction-module-configuration-for-front-end-optimization-action-resource"]], "netscaler.adc.feoglobal_feopolicy_binding module \u2013 Binding Resource definition for describing association between feoglobal and feopolicy resources": [[353, "netscaler-adc-feoglobal-feopolicy-binding-module-binding-resource-definition-for-describing-association-between-feoglobal-and-feopolicy-resources"]], "netscaler.adc.feoparameter module \u2013 Configuration for FEO parameter resource.": [[354, "netscaler-adc-feoparameter-module-configuration-for-feo-parameter-resource"]], "netscaler.adc.feopolicy module \u2013 Configuration for Front end optimization policy resource.": [[355, "netscaler-adc-feopolicy-module-configuration-for-front-end-optimization-policy-resource"]], "netscaler.adc.fis_channel_binding module \u2013 Binding Resource definition for describing association between fis and channel resources": [[356, "netscaler-adc-fis-channel-binding-module-binding-resource-definition-for-describing-association-between-fis-and-channel-resources"]], "netscaler.adc.fis_interface_binding module \u2013 Binding Resource definition for describing association between fis and interface resources": [[357, "netscaler-adc-fis-interface-binding-module-binding-resource-definition-for-describing-association-between-fis-and-interface-resources"]], "netscaler.adc.fis module \u2013 Configuration for \u201cFIS\u201d resource.": [[358, "netscaler-adc-fis-module-configuration-for-fis-resource"]], "netscaler.adc.forwardingsession module \u2013 Configuration for session forward resource.": [[359, "netscaler-adc-forwardingsession-module-configuration-for-session-forward-resource"]], "netscaler.adc.gslbconfig module \u2013 Configuration for gslb config resource.": [[360, "netscaler-adc-gslbconfig-module-configuration-for-gslb-config-resource"]], "netscaler.adc.gslbldnsentries module \u2013 Configuration for LDNS entry resource.": [[361, "netscaler-adc-gslbldnsentries-module-configuration-for-ldns-entry-resource"]], "netscaler.adc.gslbldnsentry module \u2013 Configuration for LDNS entry resource.": [[362, "netscaler-adc-gslbldnsentry-module-configuration-for-ldns-entry-resource"]], "netscaler.adc.gslbparameter module \u2013 Configuration for GSLB parameter resource.": [[363, "netscaler-adc-gslbparameter-module-configuration-for-gslb-parameter-resource"]], "netscaler.adc.gslbservice_dnsview_binding module \u2013 Binding Resource definition for describing association between gslbservice and dnsview resources": [[364, "netscaler-adc-gslbservice-dnsview-binding-module-binding-resource-definition-for-describing-association-between-gslbservice-and-dnsview-resources"]], "netscaler.adc.gslbservice_lbmonitor_binding module \u2013 Binding Resource definition for describing association between gslbservice and lbmonitor resources": [[365, "netscaler-adc-gslbservice-lbmonitor-binding-module-binding-resource-definition-for-describing-association-between-gslbservice-and-lbmonitor-resources"]], "netscaler.adc.gslbservice module \u2013 Configuration for GSLB service resource.": [[366, "netscaler-adc-gslbservice-module-configuration-for-gslb-service-resource"]], "netscaler.adc.gslbservicegroup_gslbservicegroupmember_binding module \u2013 Binding Resource definition for describing association between gslbservicegroup and gslbservicegroupmember resources": [[367, "netscaler-adc-gslbservicegroup-gslbservicegroupmember-binding-module-binding-resource-definition-for-describing-association-between-gslbservicegroup-and-gslbservicegroupmember-resources"]], "netscaler.adc.gslbservicegroup_lbmonitor_binding module \u2013 Binding Resource definition for describing association between gslbservicegroup and lbmonitor resources": [[368, "netscaler-adc-gslbservicegroup-lbmonitor-binding-module-binding-resource-definition-for-describing-association-between-gslbservicegroup-and-lbmonitor-resources"]], "netscaler.adc.gslbservicegroup module \u2013 Configuration for GSLB service group resource.": [[369, "netscaler-adc-gslbservicegroup-module-configuration-for-gslb-service-group-resource"]], "netscaler.adc.gslbsite module \u2013 Configuration for GSLB site resource.": [[370, "netscaler-adc-gslbsite-module-configuration-for-gslb-site-resource"]], "netscaler.adc.gslbvserver_domain_binding module \u2013 Binding Resource definition for describing association between gslbvserver and domain resources": [[371, "netscaler-adc-gslbvserver-domain-binding-module-binding-resource-definition-for-describing-association-between-gslbvserver-and-domain-resources"]], "netscaler.adc.gslbvserver_gslbservice_binding module \u2013 Binding Resource definition for describing association between gslbvserver and gslbservice resources": [[372, "netscaler-adc-gslbvserver-gslbservice-binding-module-binding-resource-definition-for-describing-association-between-gslbvserver-and-gslbservice-resources"]], "netscaler.adc.gslbvserver_gslbservicegroup_binding module \u2013 Binding Resource definition for describing association between gslbvserver and gslbservicegroup resources": [[373, "netscaler-adc-gslbvserver-gslbservicegroup-binding-module-binding-resource-definition-for-describing-association-between-gslbvserver-and-gslbservicegroup-resources"]], "netscaler.adc.gslbvserver_lbpolicy_binding module \u2013 Binding Resource definition for describing association between gslbvserver and lbpolicy resources": [[374, "netscaler-adc-gslbvserver-lbpolicy-binding-module-binding-resource-definition-for-describing-association-between-gslbvserver-and-lbpolicy-resources"]], "netscaler.adc.gslbvserver module \u2013 Configuration for Global Server Load Balancing Virtual Server resource.": [[375, "netscaler-adc-gslbvserver-module-configuration-for-global-server-load-balancing-virtual-server-resource"]], "netscaler.adc.gslbvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between gslbvserver and spilloverpolicy resources": [[376, "netscaler-adc-gslbvserver-spilloverpolicy-binding-module-binding-resource-definition-for-describing-association-between-gslbvserver-and-spilloverpolicy-resources"]], "netscaler.adc.hafailover module \u2013 Configuration for failover resource.": [[377, "netscaler-adc-hafailover-module-configuration-for-failover-resource"]], "netscaler.adc.hafiles module \u2013 Configuration for files resource.": [[378, "netscaler-adc-hafiles-module-configuration-for-files-resource"]], "netscaler.adc.hanode module \u2013 Configuration for node resource.": [[379, "netscaler-adc-hanode-module-configuration-for-node-resource"]], "netscaler.adc.hanode_routemonitor6_binding module \u2013 Binding Resource definition for describing association between hanode and routemonitor6 resources": [[380, "netscaler-adc-hanode-routemonitor6-binding-module-binding-resource-definition-for-describing-association-between-hanode-and-routemonitor6-resources"]], "netscaler.adc.hanode_routemonitor_binding module \u2013 Binding Resource definition for describing association between hanode and routemonitor resources": [[381, "netscaler-adc-hanode-routemonitor-binding-module-binding-resource-definition-for-describing-association-between-hanode-and-routemonitor-resources"]], "netscaler.adc.hasync module \u2013 Configuration for sync resource.": [[382, "netscaler-adc-hasync-module-configuration-for-sync-resource"]], "netscaler.adc.icaaccessprofile module \u2013 Configuration for ica accessprofile resource.": [[383, "netscaler-adc-icaaccessprofile-module-configuration-for-ica-accessprofile-resource"]], "netscaler.adc.icaaction module \u2013 Configuration for ica action resource.": [[384, "netscaler-adc-icaaction-module-configuration-for-ica-action-resource"]], "netscaler.adc.icaglobal_icapolicy_binding module \u2013 Binding Resource definition for describing association between icaglobal and icapolicy resources": [[385, "netscaler-adc-icaglobal-icapolicy-binding-module-binding-resource-definition-for-describing-association-between-icaglobal-and-icapolicy-resources"]], "netscaler.adc.icalatencyprofile module \u2013 Configuration for Profile for Latency monitoring resource.": [[386, "netscaler-adc-icalatencyprofile-module-configuration-for-profile-for-latency-monitoring-resource"]], "netscaler.adc.icaparameter module \u2013 Configuration for Config Parameters for NS ICA resource.": [[387, "netscaler-adc-icaparameter-module-configuration-for-config-parameters-for-ns-ica-resource"]], "netscaler.adc.icapolicy module \u2013 Configuration for ICA policy resource.": [[388, "netscaler-adc-icapolicy-module-configuration-for-ica-policy-resource"]], "netscaler.adc.inat module \u2013 Configuration for inbound nat resource.": [[389, "netscaler-adc-inat-module-configuration-for-inbound-nat-resource"]], "netscaler.adc.inatparam module \u2013 Configuration for INAT parameter resource.": [[390, "netscaler-adc-inatparam-module-configuration-for-inat-parameter-resource"]], "Netscaler.Adc": [[391, "netscaler-adc"]], "Description": [[391, "description"]], "Plugin Index": [[391, "plugin-index"]], "Modules": [[391, "modules"]], "netscaler.adc.install module \u2013 Configuration for 0 resource.": [[392, "netscaler-adc-install-module-configuration-for-0-resource"]], "netscaler.adc.interfacepair module \u2013 Configuration for \u201cInterface Pair\u201d resource.": [[393, "netscaler-adc-interfacepair-module-configuration-for-interface-pair-resource"]], "netscaler.adc.ip6tunnel module \u2013 Configuration for ip6 Tunnel resource.": [[394, "netscaler-adc-ip6tunnel-module-configuration-for-ip6-tunnel-resource"]], "netscaler.adc.ip6tunnelparam module \u2013 Configuration for ip6 tunnel parameter resource.": [[395, "netscaler-adc-ip6tunnelparam-module-configuration-for-ip6-tunnel-parameter-resource"]], "netscaler.adc.ipsecalgprofile module \u2013 Configuration for IPSEC ALG profile resource.": [[396, "netscaler-adc-ipsecalgprofile-module-configuration-for-ipsec-alg-profile-resource"]], "netscaler.adc.ipsecalgsession module \u2013 Configuration for IPSEC ALG session resource.": [[397, "netscaler-adc-ipsecalgsession-module-configuration-for-ipsec-alg-session-resource"]], "netscaler.adc.ipsecparameter module \u2013 Configuration for IPSEC paramter resource.": [[398, "netscaler-adc-ipsecparameter-module-configuration-for-ipsec-paramter-resource"]], "netscaler.adc.ipsecprofile module \u2013 Configuration for IPSEC profile resource.": [[399, "netscaler-adc-ipsecprofile-module-configuration-for-ipsec-profile-resource"]], "netscaler.adc.ipset module \u2013 Configuration for network ipset resource.": [[400, "netscaler-adc-ipset-module-configuration-for-network-ipset-resource"]], "netscaler.adc.ipset_nsip6_binding module \u2013 Binding Resource definition for describing association between ipset and nsip6 resources": [[401, "netscaler-adc-ipset-nsip6-binding-module-binding-resource-definition-for-describing-association-between-ipset-and-nsip6-resources"]], "netscaler.adc.ipset_nsip_binding module \u2013 Binding Resource definition for describing association between ipset and nsip resources": [[402, "netscaler-adc-ipset-nsip-binding-module-binding-resource-definition-for-describing-association-between-ipset-and-nsip-resources"]], "netscaler.adc.iptunnel module \u2013 Configuration for ip Tunnel resource.": [[403, "netscaler-adc-iptunnel-module-configuration-for-ip-tunnel-resource"]], "netscaler.adc.iptunnelparam module \u2013 Configuration for ip tunnel parameter resource.": [[404, "netscaler-adc-iptunnelparam-module-configuration-for-ip-tunnel-parameter-resource"]], "netscaler.adc.ipv6 module \u2013 Configuration for ip v6 resource.": [[405, "netscaler-adc-ipv6-module-configuration-for-ip-v6-resource"]], "netscaler.adc.l2param module \u2013 Configuration for Layer 2 related parameter resource.": [[406, "netscaler-adc-l2param-module-configuration-for-layer-2-related-parameter-resource"]], "netscaler.adc.l3param module \u2013 Configuration for Layer 3 related parameter resource.": [[407, "netscaler-adc-l3param-module-configuration-for-layer-3-related-parameter-resource"]], "netscaler.adc.l4param module \u2013 Configuration for Layer 4 related parameter resource.": [[408, "netscaler-adc-l4param-module-configuration-for-layer-4-related-parameter-resource"]], "netscaler.adc.lacp module \u2013 Configuration for Link aggregation control protocol resource.": [[409, "netscaler-adc-lacp-module-configuration-for-link-aggregation-control-protocol-resource"]], "netscaler.adc.lbaction module \u2013 Configuration for lb action resource.": [[410, "netscaler-adc-lbaction-module-configuration-for-lb-action-resource"]], "netscaler.adc.lbglobal_lbpolicy_binding module \u2013 Binding Resource definition for describing association between lbglobal and lbpolicy resources": [[411, "netscaler-adc-lbglobal-lbpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbglobal-and-lbpolicy-resources"]], "netscaler.adc.lbgroup_lbvserver_binding module \u2013 Binding Resource definition for describing association between lbgroup and lbvserver resources": [[412, "netscaler-adc-lbgroup-lbvserver-binding-module-binding-resource-definition-for-describing-association-between-lbgroup-and-lbvserver-resources"]], "netscaler.adc.lbgroup module \u2013 Configuration for LB group resource.": [[413, "netscaler-adc-lbgroup-module-configuration-for-lb-group-resource"]], "netscaler.adc.lbmetrictable_metric_binding module \u2013 Binding Resource definition for describing association between lbmetrictable and metric resources": [[414, "netscaler-adc-lbmetrictable-metric-binding-module-binding-resource-definition-for-describing-association-between-lbmetrictable-and-metric-resources"]], "netscaler.adc.lbmetrictable module \u2013 Configuration for metric table resource.": [[415, "netscaler-adc-lbmetrictable-module-configuration-for-metric-table-resource"]], "netscaler.adc.lbmonitor_metric_binding module \u2013 Binding Resource definition for describing association between lbmonitor and metric resources": [[416, "netscaler-adc-lbmonitor-metric-binding-module-binding-resource-definition-for-describing-association-between-lbmonitor-and-metric-resources"]], "netscaler.adc.lbmonitor module \u2013 Configuration for monitor resource.": [[417, "netscaler-adc-lbmonitor-module-configuration-for-monitor-resource"]], "netscaler.adc.lbmonitor_sslcertkey_binding module \u2013 Binding Resource definition for describing association between lbmonitor and sslcertkey resources": [[418, "netscaler-adc-lbmonitor-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-lbmonitor-and-sslcertkey-resources"]], "netscaler.adc.lbparameter module \u2013 Configuration for LB parameter resource.": [[419, "netscaler-adc-lbparameter-module-configuration-for-lb-parameter-resource"]], "netscaler.adc.lbpersistentsessions module \u2013 Configuration for persistence session resource.": [[420, "netscaler-adc-lbpersistentsessions-module-configuration-for-persistence-session-resource"]], "netscaler.adc.lbpolicy module \u2013 Configuration for lb policy resource.": [[421, "netscaler-adc-lbpolicy-module-configuration-for-lb-policy-resource"]], "netscaler.adc.lbpolicylabel_lbpolicy_binding module \u2013 Binding Resource definition for describing association between lbpolicylabel and lbpolicy resources": [[422, "netscaler-adc-lbpolicylabel-lbpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbpolicylabel-and-lbpolicy-resources"]], "netscaler.adc.lbpolicylabel module \u2013 Configuration for lb policy label resource.": [[423, "netscaler-adc-lbpolicylabel-module-configuration-for-lb-policy-label-resource"]], "netscaler.adc.lbprofile module \u2013 Configuration for LB profile resource.": [[424, "netscaler-adc-lbprofile-module-configuration-for-lb-profile-resource"]], "netscaler.adc.lbroute6 module \u2013 Configuration for LB route6 resource.": [[425, "netscaler-adc-lbroute6-module-configuration-for-lb-route6-resource"]], "netscaler.adc.lbroute module \u2013 Configuration for LB route resource.": [[426, "netscaler-adc-lbroute-module-configuration-for-lb-route-resource"]], "netscaler.adc.lbsipparameters module \u2013 Configuration for SIP parameters resource.": [[427, "netscaler-adc-lbsipparameters-module-configuration-for-sip-parameters-resource"]], "netscaler.adc.lbvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between lbvserver and analyticsprofile resources": [[428, "netscaler-adc-lbvserver-analyticsprofile-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-analyticsprofile-resources"]], "netscaler.adc.lbvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and appflowpolicy resources": [[429, "netscaler-adc-lbvserver-appflowpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-appflowpolicy-resources"]], "netscaler.adc.lbvserver_appfwpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and appfwpolicy resources": [[430, "netscaler-adc-lbvserver-appfwpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-appfwpolicy-resources"]], "netscaler.adc.lbvserver_appqoepolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and appqoepolicy resources": [[431, "netscaler-adc-lbvserver-appqoepolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-appqoepolicy-resources"]], "netscaler.adc.lbvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and auditnslogpolicy resources": [[432, "netscaler-adc-lbvserver-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-auditnslogpolicy-resources"]], "netscaler.adc.lbvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and auditsyslogpolicy resources": [[433, "netscaler-adc-lbvserver-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-auditsyslogpolicy-resources"]], "netscaler.adc.lbvserver_authorizationpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and authorizationpolicy resources": [[434, "netscaler-adc-lbvserver-authorizationpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-authorizationpolicy-resources"]], "netscaler.adc.lbvserver_botpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and botpolicy resources": [[435, "netscaler-adc-lbvserver-botpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-botpolicy-resources"]], "netscaler.adc.lbvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and cachepolicy resources": [[436, "netscaler-adc-lbvserver-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-cachepolicy-resources"]], "netscaler.adc.lbvserver_cmppolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and cmppolicy resources": [[437, "netscaler-adc-lbvserver-cmppolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-cmppolicy-resources"]], "netscaler.adc.lbvserver_contentinspectionpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and contentinspectionpolicy resources": [[438, "netscaler-adc-lbvserver-contentinspectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-contentinspectionpolicy-resources"]], "netscaler.adc.lbvserver_dnspolicy64_binding module \u2013 Binding Resource definition for describing association between lbvserver and dnspolicy64 resources": [[439, "netscaler-adc-lbvserver-dnspolicy64-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-dnspolicy64-resources"]], "netscaler.adc.lbvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and feopolicy resources": [[440, "netscaler-adc-lbvserver-feopolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-feopolicy-resources"]], "netscaler.adc.lbvserver_lbpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and lbpolicy resources": [[441, "netscaler-adc-lbvserver-lbpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-lbpolicy-resources"]], "netscaler.adc.lbvserver module \u2013 Configuration for Load Balancing Virtual Server resource.": [[442, "netscaler-adc-lbvserver-module-configuration-for-load-balancing-virtual-server-resource"]], "netscaler.adc.lbvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and responderpolicy resources": [[443, "netscaler-adc-lbvserver-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-responderpolicy-resources"]], "netscaler.adc.lbvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and rewritepolicy resources": [[444, "netscaler-adc-lbvserver-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-rewritepolicy-resources"]], "netscaler.adc.lbvserver_service_binding module \u2013 Binding Resource definition for describing association between lbvserver and service resources": [[445, "netscaler-adc-lbvserver-service-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-service-resources"]], "netscaler.adc.lbvserver_servicegroup_binding module \u2013 Binding Resource definition for describing association between lbvserver and servicegroup resources": [[446, "netscaler-adc-lbvserver-servicegroup-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-servicegroup-resources"]], "netscaler.adc.lbvserver_spilloverpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and spilloverpolicy resources": [[447, "netscaler-adc-lbvserver-spilloverpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-spilloverpolicy-resources"]], "netscaler.adc.lbvserver_tmtrafficpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and tmtrafficpolicy resources": [[448, "netscaler-adc-lbvserver-tmtrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-tmtrafficpolicy-resources"]], "netscaler.adc.lbvserver_transformpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and transformpolicy resources": [[449, "netscaler-adc-lbvserver-transformpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-transformpolicy-resources"]], "netscaler.adc.lbvserver_videooptimizationdetectionpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and videooptimizationdetectionpolicy resources": [[450, "netscaler-adc-lbvserver-videooptimizationdetectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-videooptimizationdetectionpolicy-resources"]], "netscaler.adc.lbvserver_videooptimizationpacingpolicy_binding module \u2013 Binding Resource definition for describing association between lbvserver and videooptimizationpacingpolicy resources": [[451, "netscaler-adc-lbvserver-videooptimizationpacingpolicy-binding-module-binding-resource-definition-for-describing-association-between-lbvserver-and-videooptimizationpacingpolicy-resources"]], "netscaler.adc.lbwlm_lbvserver_binding module \u2013 Binding Resource definition for describing association between lbwlm and lbvserver resources": [[452, "netscaler-adc-lbwlm-lbvserver-binding-module-binding-resource-definition-for-describing-association-between-lbwlm-and-lbvserver-resources"]], "netscaler.adc.lbwlm module \u2013 Configuration for web log manager resource.": [[453, "netscaler-adc-lbwlm-module-configuration-for-web-log-manager-resource"]], "netscaler.adc.linkset_channel_binding module \u2013 Binding Resource definition for describing association between linkset and channel resources": [[454, "netscaler-adc-linkset-channel-binding-module-binding-resource-definition-for-describing-association-between-linkset-and-channel-resources"]], "netscaler.adc.linkset_interface_binding module \u2013 Binding Resource definition for describing association between linkset and interface resources": [[455, "netscaler-adc-linkset-interface-binding-module-binding-resource-definition-for-describing-association-between-linkset-and-interface-resources"]], "netscaler.adc.linkset module \u2013 Configuration for link set resource.": [[456, "netscaler-adc-linkset-module-configuration-for-link-set-resource"]], "netscaler.adc.lldpneighbors module \u2013 Configuration for lldp neighbors resource.": [[457, "netscaler-adc-lldpneighbors-module-configuration-for-lldp-neighbors-resource"]], "netscaler.adc.lldpparam module \u2013 Configuration for lldp params resource.": [[458, "netscaler-adc-lldpparam-module-configuration-for-lldp-params-resource"]], "netscaler.adc.location module \u2013 Configuration for location resource.": [[459, "netscaler-adc-location-module-configuration-for-location-resource"]], "netscaler.adc.locationfile6 module \u2013 Configuration for location file6 resource.": [[460, "netscaler-adc-locationfile6-module-configuration-for-location-file6-resource"]], "netscaler.adc.locationfile module \u2013 Configuration for location file resource.": [[461, "netscaler-adc-locationfile-module-configuration-for-location-file-resource"]], "netscaler.adc.locationparameter module \u2013 Configuration for location parameter resource.": [[462, "netscaler-adc-locationparameter-module-configuration-for-location-parameter-resource"]], "netscaler.adc.login module \u2013 Login to a NetScaler ADC node.": [[463, "netscaler-adc-login-module-login-to-a-netscaler-adc-node"]], "netscaler.adc.logout module \u2013 Logout from a NetScaler ADC node.": [[464, "netscaler-adc-logout-module-logout-from-a-netscaler-adc-node"]], "netscaler.adc.lsnappsattributes module \u2013 Configuration for LSN Application Attributes resource.": [[465, "netscaler-adc-lsnappsattributes-module-configuration-for-lsn-application-attributes-resource"]], "netscaler.adc.lsnappsprofile_lsnappsattributes_binding module \u2013 Binding Resource definition for describing association between lsnappsprofile and lsnappsattributes resources": [[466, "netscaler-adc-lsnappsprofile-lsnappsattributes-binding-module-binding-resource-definition-for-describing-association-between-lsnappsprofile-and-lsnappsattributes-resources"]], "netscaler.adc.lsnappsprofile module \u2013 Configuration for LSN Application Profile resource.": [[467, "netscaler-adc-lsnappsprofile-module-configuration-for-lsn-application-profile-resource"]], "netscaler.adc.lsnappsprofile_port_binding module \u2013 Binding Resource definition for describing association between lsnappsprofile and port resources": [[468, "netscaler-adc-lsnappsprofile-port-binding-module-binding-resource-definition-for-describing-association-between-lsnappsprofile-and-port-resources"]], "netscaler.adc.lsnclient module \u2013 Configuration for lsn client resource.": [[469, "netscaler-adc-lsnclient-module-configuration-for-lsn-client-resource"]], "netscaler.adc.lsnclient_network6_binding module \u2013 Binding Resource definition for describing association between lsnclient and network6 resources": [[470, "netscaler-adc-lsnclient-network6-binding-module-binding-resource-definition-for-describing-association-between-lsnclient-and-network6-resources"]], "netscaler.adc.lsnclient_network_binding module \u2013 Binding Resource definition for describing association between lsnclient and network resources": [[471, "netscaler-adc-lsnclient-network-binding-module-binding-resource-definition-for-describing-association-between-lsnclient-and-network-resources"]], "netscaler.adc.lsnclient_nsacl6_binding module \u2013 Binding Resource definition for describing association between lsnclient and nsacl6 resources": [[472, "netscaler-adc-lsnclient-nsacl6-binding-module-binding-resource-definition-for-describing-association-between-lsnclient-and-nsacl6-resources"]], "netscaler.adc.lsnclient_nsacl_binding module \u2013 Binding Resource definition for describing association between lsnclient and nsacl resources": [[473, "netscaler-adc-lsnclient-nsacl-binding-module-binding-resource-definition-for-describing-association-between-lsnclient-and-nsacl-resources"]], "netscaler.adc.lsngroup_ipsecalgprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and ipsecalgprofile resources": [[474, "netscaler-adc-lsngroup-ipsecalgprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-ipsecalgprofile-resources"]], "netscaler.adc.lsngroup_lsnappsprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnappsprofile resources": [[475, "netscaler-adc-lsngroup-lsnappsprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsnappsprofile-resources"]], "netscaler.adc.lsngroup_lsnhttphdrlogprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnhttphdrlogprofile resources": [[476, "netscaler-adc-lsngroup-lsnhttphdrlogprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsnhttphdrlogprofile-resources"]], "netscaler.adc.lsngroup_lsnlogprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnlogprofile resources": [[477, "netscaler-adc-lsngroup-lsnlogprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsnlogprofile-resources"]], "netscaler.adc.lsngroup_lsnpool_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnpool resources": [[478, "netscaler-adc-lsngroup-lsnpool-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsnpool-resources"]], "netscaler.adc.lsngroup_lsnrtspalgprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnrtspalgprofile resources": [[479, "netscaler-adc-lsngroup-lsnrtspalgprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsnrtspalgprofile-resources"]], "netscaler.adc.lsngroup_lsnsipalgprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsnsipalgprofile resources": [[480, "netscaler-adc-lsngroup-lsnsipalgprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsnsipalgprofile-resources"]], "netscaler.adc.lsngroup_lsntransportprofile_binding module \u2013 Binding Resource definition for describing association between lsngroup and lsntransportprofile resources": [[481, "netscaler-adc-lsngroup-lsntransportprofile-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-lsntransportprofile-resources"]], "netscaler.adc.lsngroup module \u2013 Configuration for LSN group resource.": [[482, "netscaler-adc-lsngroup-module-configuration-for-lsn-group-resource"]], "netscaler.adc.lsngroup_pcpserver_binding module \u2013 Binding Resource definition for describing association between lsngroup and pcpserver resources": [[483, "netscaler-adc-lsngroup-pcpserver-binding-module-binding-resource-definition-for-describing-association-between-lsngroup-and-pcpserver-resources"]], "netscaler.adc.lsnhttphdrlogprofile module \u2013 Configuration for LSN HTTP header logging Profile resource.": [[484, "netscaler-adc-lsnhttphdrlogprofile-module-configuration-for-lsn-http-header-logging-profile-resource"]], "netscaler.adc.lsnip6profile module \u2013 Configuration for LSN ip6 Profile resource.": [[485, "netscaler-adc-lsnip6profile-module-configuration-for-lsn-ip6-profile-resource"]], "netscaler.adc.lsnlogprofile module \u2013 Configuration for LSN logging Profile resource.": [[486, "netscaler-adc-lsnlogprofile-module-configuration-for-lsn-logging-profile-resource"]], "netscaler.adc.lsnparameter module \u2013 Configuration for LSN parameter resource.": [[487, "netscaler-adc-lsnparameter-module-configuration-for-lsn-parameter-resource"]], "netscaler.adc.lsnpool_lsnip_binding module \u2013 Binding Resource definition for describing association between lsnpool and lsnip resources": [[488, "netscaler-adc-lsnpool-lsnip-binding-module-binding-resource-definition-for-describing-association-between-lsnpool-and-lsnip-resources"]], "netscaler.adc.lsnpool module \u2013 Configuration for LSN pool resource.": [[489, "netscaler-adc-lsnpool-module-configuration-for-lsn-pool-resource"]], "netscaler.adc.lsnrtspalgprofile module \u2013 Configuration for LSN RTSPALG Profile resource.": [[490, "netscaler-adc-lsnrtspalgprofile-module-configuration-for-lsn-rtspalg-profile-resource"]], "netscaler.adc.lsnrtspalgsession module \u2013 Configuration for LSN RTSPALG session resource.": [[491, "netscaler-adc-lsnrtspalgsession-module-configuration-for-lsn-rtspalg-session-resource"]], "netscaler.adc.lsnsession module \u2013 Configuration for lsn session resource.": [[492, "netscaler-adc-lsnsession-module-configuration-for-lsn-session-resource"]], "netscaler.adc.lsnsipalgcall module \u2013 Configuration for LSN SIPALG call resource.": [[493, "netscaler-adc-lsnsipalgcall-module-configuration-for-lsn-sipalg-call-resource"]], "netscaler.adc.lsnsipalgprofile module \u2013 Configuration for LSN SIPALG Profile resource.": [[494, "netscaler-adc-lsnsipalgprofile-module-configuration-for-lsn-sipalg-profile-resource"]], "netscaler.adc.lsnstatic module \u2013 Configuration for static mapping resource.": [[495, "netscaler-adc-lsnstatic-module-configuration-for-static-mapping-resource"]], "netscaler.adc.lsntransportprofile module \u2013 Configuration for LSN Transport Profile resource.": [[496, "netscaler-adc-lsntransportprofile-module-configuration-for-lsn-transport-profile-resource"]], "netscaler.adc.mapbmr_bmrv4network_binding module \u2013 Binding Resource definition for describing association between mapbmr and bmrv4network resources": [[497, "netscaler-adc-mapbmr-bmrv4network-binding-module-binding-resource-definition-for-describing-association-between-mapbmr-and-bmrv4network-resources"]], "netscaler.adc.mapbmr module \u2013 Configuration for MAP-T Basic Mapping rule resource.": [[498, "netscaler-adc-mapbmr-module-configuration-for-map-t-basic-mapping-rule-resource"]], "netscaler.adc.mapdmr module \u2013 Configuration for MAP-T Default Mapping rule resource.": [[499, "netscaler-adc-mapdmr-module-configuration-for-map-t-default-mapping-rule-resource"]], "netscaler.adc.mapdomain_mapbmr_binding module \u2013 Binding Resource definition for describing association between mapdomain and mapbmr resources": [[500, "netscaler-adc-mapdomain-mapbmr-binding-module-binding-resource-definition-for-describing-association-between-mapdomain-and-mapbmr-resources"]], "netscaler.adc.mapdomain module \u2013 Configuration for MAP-T Map Domain resource.": [[501, "netscaler-adc-mapdomain-module-configuration-for-map-t-map-domain-resource"]], "netscaler.adc.nat64 module \u2013 Configuration for nat64 config resource.": [[502, "netscaler-adc-nat64-module-configuration-for-nat64-config-resource"]], "netscaler.adc.nat64param module \u2013 Configuration for NAT64 parameter resource.": [[503, "netscaler-adc-nat64param-module-configuration-for-nat64-parameter-resource"]], "netscaler.adc.nd6 module \u2013 Configuration for nd6 resource.": [[504, "netscaler-adc-nd6-module-configuration-for-nd6-resource"]], "netscaler.adc.nd6ravariables module \u2013 Configuration for nd6 Router Advertisment configuration variables resource.": [[505, "netscaler-adc-nd6ravariables-module-configuration-for-nd6-router-advertisment-configuration-variables-resource"]], "netscaler.adc.nd6ravariables_onlinkipv6prefix_binding module \u2013 Binding Resource definition for describing association between nd6ravariables and onlinkipv6prefix resources": [[506, "netscaler-adc-nd6ravariables-onlinkipv6prefix-binding-module-binding-resource-definition-for-describing-association-between-nd6ravariables-and-onlinkipv6prefix-resources"]], "netscaler.adc.netbridge_iptunnel_binding module \u2013 Binding Resource definition for describing association between netbridge and iptunnel resources": [[507, "netscaler-adc-netbridge-iptunnel-binding-module-binding-resource-definition-for-describing-association-between-netbridge-and-iptunnel-resources"]], "netscaler.adc.netbridge module \u2013 Configuration for network bridge resource.": [[508, "netscaler-adc-netbridge-module-configuration-for-network-bridge-resource"]], "netscaler.adc.netbridge_nsip6_binding module \u2013 Binding Resource definition for describing association between netbridge and nsip6 resources": [[509, "netscaler-adc-netbridge-nsip6-binding-module-binding-resource-definition-for-describing-association-between-netbridge-and-nsip6-resources"]], "netscaler.adc.netbridge_nsip_binding module \u2013 Binding Resource definition for describing association between netbridge and nsip resources": [[510, "netscaler-adc-netbridge-nsip-binding-module-binding-resource-definition-for-describing-association-between-netbridge-and-nsip-resources"]], "netscaler.adc.netbridge_vlan_binding module \u2013 Binding Resource definition for describing association between netbridge and vlan resources": [[511, "netscaler-adc-netbridge-vlan-binding-module-binding-resource-definition-for-describing-association-between-netbridge-and-vlan-resources"]], "netscaler.adc.netprofile module \u2013 Configuration for Network profile resource.": [[512, "netscaler-adc-netprofile-module-configuration-for-network-profile-resource"]], "netscaler.adc.netprofile_natrule_binding module \u2013 Binding Resource definition for describing association between netprofile and natrule resources": [[513, "netscaler-adc-netprofile-natrule-binding-module-binding-resource-definition-for-describing-association-between-netprofile-and-natrule-resources"]], "netscaler.adc.netprofile_srcportset_binding module \u2013 Binding Resource definition for describing association between netprofile and srcportset resources": [[514, "netscaler-adc-netprofile-srcportset-binding-module-binding-resource-definition-for-describing-association-between-netprofile-and-srcportset-resources"]], "netscaler.adc.nsacls6 module \u2013 Configuration for ACL6 entry resource.": [[515, "netscaler-adc-nsacls6-module-configuration-for-acl6-entry-resource"]], "netscaler.adc.nsacls module \u2013 Configuration for ACL entry resource.": [[516, "netscaler-adc-nsacls-module-configuration-for-acl-entry-resource"]], "netscaler.adc.nsappflowcollector module \u2013 Configuration for appflowCollector resource.": [[517, "netscaler-adc-nsappflowcollector-module-configuration-for-appflowcollector-resource"]], "netscaler.adc.nsappflowparam module \u2013 Configuration for appflowParam resource.": [[518, "netscaler-adc-nsappflowparam-module-configuration-for-appflowparam-resource"]], "netscaler.adc.nsaptlicense module \u2013 Configuration for aptlicense resource.": [[519, "netscaler-adc-nsaptlicense-module-configuration-for-aptlicense-resource"]], "netscaler.adc.nsassignment module \u2013 Configuration for assignment resource.": [[520, "netscaler-adc-nsassignment-module-configuration-for-assignment-resource"]], "netscaler.adc.nscapacity module \u2013 Configuration for capacity resource.": [[521, "netscaler-adc-nscapacity-module-configuration-for-capacity-resource"]], "netscaler.adc.nscentralmanagementserver module \u2013 Configuration for centralmanagementserver resource.": [[522, "netscaler-adc-nscentralmanagementserver-module-configuration-for-centralmanagementserver-resource"]], "netscaler.adc.nsconfig module \u2013 Configuration for system config resource.": [[523, "netscaler-adc-nsconfig-module-configuration-for-system-config-resource"]], "netscaler.adc.nsconsoleloginprompt module \u2013 Configuration for console prompt resource.": [[524, "netscaler-adc-nsconsoleloginprompt-module-configuration-for-console-prompt-resource"]], "netscaler.adc.nscqaparam module \u2013 Configuration for cqaparam resource.": [[525, "netscaler-adc-nscqaparam-module-configuration-for-cqaparam-resource"]], "netscaler.adc.nsdhcpparams module \u2013 Configuration for DHCP parameters resource.": [[526, "netscaler-adc-nsdhcpparams-module-configuration-for-dhcp-parameters-resource"]], "netscaler.adc.nsdiameter module \u2013 Configuration for Diameter Parameters resource.": [[527, "netscaler-adc-nsdiameter-module-configuration-for-diameter-parameters-resource"]], "netscaler.adc.nsencryptionkey module \u2013 Configuration for encryption key resource.": [[528, "netscaler-adc-nsencryptionkey-module-configuration-for-encryption-key-resource"]], "netscaler.adc.nsencryptionparams module \u2013 Configuration for default encryption parameters resource.": [[529, "netscaler-adc-nsencryptionparams-module-configuration-for-default-encryption-parameters-resource"]], "netscaler.adc.nsextension module \u2013 Configuration for Extension resource.": [[530, "netscaler-adc-nsextension-module-configuration-for-extension-resource"]], "netscaler.adc.nsfeature module \u2013 Configuration for feature resource.": [[531, "netscaler-adc-nsfeature-module-configuration-for-feature-resource"]], "netscaler.adc.nshmackey module \u2013 Configuration for HMAC key resource.": [[532, "netscaler-adc-nshmackey-module-configuration-for-hmac-key-resource"]], "netscaler.adc.nshostname module \u2013 Configuration for host name resource.": [[533, "netscaler-adc-nshostname-module-configuration-for-host-name-resource"]], "netscaler.adc.nshttpparam module \u2013 Configuration for HTTP parameter resource.": [[534, "netscaler-adc-nshttpparam-module-configuration-for-http-parameter-resource"]], "netscaler.adc.nshttpprofile module \u2013 Configuration for HTTP profile resource.": [[535, "netscaler-adc-nshttpprofile-module-configuration-for-http-profile-resource"]], "netscaler.adc.nsicapprofile module \u2013 Configuration for ICAP profile resource.": [[536, "netscaler-adc-nsicapprofile-module-configuration-for-icap-profile-resource"]], "netscaler.adc.nsip6 module \u2013 Configuration for ip6 resource.": [[537, "netscaler-adc-nsip6-module-configuration-for-ip6-resource"]], "netscaler.adc.nsip module \u2013 Configuration for ip resource.": [[538, "netscaler-adc-nsip-module-configuration-for-ip-resource"]], "netscaler.adc.nslicenseparameters module \u2013 Configuration for licenseparameters resource.": [[539, "netscaler-adc-nslicenseparameters-module-configuration-for-licenseparameters-resource"]], "netscaler.adc.nslicenseproxyserver module \u2013 Configuration for licenseproxyserver resource.": [[540, "netscaler-adc-nslicenseproxyserver-module-configuration-for-licenseproxyserver-resource"]], "netscaler.adc.nslicenseserver module \u2013 Configuration for licenseserver resource.": [[541, "netscaler-adc-nslicenseserver-module-configuration-for-licenseserver-resource"]], "netscaler.adc.nslimitidentifier module \u2013 Configuration for limit Indetifier resource.": [[542, "netscaler-adc-nslimitidentifier-module-configuration-for-limit-indetifier-resource"]], "netscaler.adc.nslimitselector module \u2013 Configuration for limit selector resource.": [[543, "netscaler-adc-nslimitselector-module-configuration-for-limit-selector-resource"]], "netscaler.adc.nslimitsessions module \u2013 Configuration for limit sessions resource.": [[544, "netscaler-adc-nslimitsessions-module-configuration-for-limit-sessions-resource"]], "netscaler.adc.nsmigration module \u2013 Configuration for Migration operation resource.": [[545, "netscaler-adc-nsmigration-module-configuration-for-migration-operation-resource"]], "netscaler.adc.nsmode module \u2013 Configuration for ns mode resource.": [[546, "netscaler-adc-nsmode-module-configuration-for-ns-mode-resource"]], "netscaler.adc.nsparam module \u2013 Configuration for Citrix ADC parameters resource.": [[547, "netscaler-adc-nsparam-module-configuration-for-citrix-adc-parameters-resource"]], "netscaler.adc.nspartition_bridgegroup_binding module \u2013 Binding Resource definition for describing association between nspartition and bridgegroup resources": [[548, "netscaler-adc-nspartition-bridgegroup-binding-module-binding-resource-definition-for-describing-association-between-nspartition-and-bridgegroup-resources"]], "netscaler.adc.nspartition module \u2013 Configuration for admin partition resource.": [[549, "netscaler-adc-nspartition-module-configuration-for-admin-partition-resource"]], "netscaler.adc.nspartition_vlan_binding module \u2013 Binding Resource definition for describing association between nspartition and vlan resources": [[550, "netscaler-adc-nspartition-vlan-binding-module-binding-resource-definition-for-describing-association-between-nspartition-and-vlan-resources"]], "netscaler.adc.nspartition_vxlan_binding module \u2013 Binding Resource definition for describing association between nspartition and vxlan resources": [[551, "netscaler-adc-nspartition-vxlan-binding-module-binding-resource-definition-for-describing-association-between-nspartition-and-vxlan-resources"]], "netscaler.adc.nsratecontrol module \u2013 Configuration for rate control resource.": [[552, "netscaler-adc-nsratecontrol-module-configuration-for-rate-control-resource"]], "netscaler.adc.nsrpcnode module \u2013 Configuration for rpc node resource.": [[553, "netscaler-adc-nsrpcnode-module-configuration-for-rpc-node-resource"]], "netscaler.adc.nsservicefunction module \u2013 Configuration for service Function resource.": [[554, "netscaler-adc-nsservicefunction-module-configuration-for-service-function-resource"]], "netscaler.adc.nsservicepath module \u2013 Configuration for service Chain resource.": [[555, "netscaler-adc-nsservicepath-module-configuration-for-service-chain-resource"]], "netscaler.adc.nsservicepath_nsservicefunction_binding module \u2013 Binding Resource definition for describing association between nsservicepath and nsservicefunction resources": [[556, "netscaler-adc-nsservicepath-nsservicefunction-binding-module-binding-resource-definition-for-describing-association-between-nsservicepath-and-nsservicefunction-resources"]], "netscaler.adc.nssimpleacl6 module \u2013 Configuration for simple ACL6 resource.": [[557, "netscaler-adc-nssimpleacl6-module-configuration-for-simple-acl6-resource"]], "netscaler.adc.nssimpleacl module \u2013 Configuration for simple ACL resource.": [[558, "netscaler-adc-nssimpleacl-module-configuration-for-simple-acl-resource"]], "netscaler.adc.nsspparams module \u2013 Configuration for Surge Protection parameter resource.": [[559, "netscaler-adc-nsspparams-module-configuration-for-surge-protection-parameter-resource"]], "netscaler.adc.nsstats module \u2013 Configuration for stats resource.": [[560, "netscaler-adc-nsstats-module-configuration-for-stats-resource"]], "netscaler.adc.nssurgeq module \u2013 Configuration for surge queue resource.": [[561, "netscaler-adc-nssurgeq-module-configuration-for-surge-queue-resource"]], "netscaler.adc.nstcpbufparam module \u2013 Configuration for tcp buffer parameter resource.": [[562, "netscaler-adc-nstcpbufparam-module-configuration-for-tcp-buffer-parameter-resource"]], "netscaler.adc.nstcpparam module \u2013 Configuration for tcp parameters resource.": [[563, "netscaler-adc-nstcpparam-module-configuration-for-tcp-parameters-resource"]], "netscaler.adc.nstcpprofile module \u2013 Configuration for TCP profile resource.": [[564, "netscaler-adc-nstcpprofile-module-configuration-for-tcp-profile-resource"]], "netscaler.adc.nstimeout module \u2013 Configuration for timeout resource.": [[565, "netscaler-adc-nstimeout-module-configuration-for-timeout-resource"]], "netscaler.adc.nstimer_autoscalepolicy_binding module \u2013 Binding Resource definition for describing association between nstimer and autoscalepolicy resources": [[566, "netscaler-adc-nstimer-autoscalepolicy-binding-module-binding-resource-definition-for-describing-association-between-nstimer-and-autoscalepolicy-resources"]], "netscaler.adc.nstimer module \u2013 Configuration for Timer resource.": [[567, "netscaler-adc-nstimer-module-configuration-for-timer-resource"]], "netscaler.adc.nstrace module \u2013 Configuration for nstrace operations resource.": [[568, "netscaler-adc-nstrace-module-configuration-for-nstrace-operations-resource"]], "netscaler.adc.nstrafficdomain_bridgegroup_binding module \u2013 Binding Resource definition for describing association between nstrafficdomain and bridgegroup resources": [[569, "netscaler-adc-nstrafficdomain-bridgegroup-binding-module-binding-resource-definition-for-describing-association-between-nstrafficdomain-and-bridgegroup-resources"]], "netscaler.adc.nstrafficdomain module \u2013 Configuration for Traffic Domain resource.": [[570, "netscaler-adc-nstrafficdomain-module-configuration-for-traffic-domain-resource"]], "netscaler.adc.nstrafficdomain_vlan_binding module \u2013 Binding Resource definition for describing association between nstrafficdomain and vlan resources": [[571, "netscaler-adc-nstrafficdomain-vlan-binding-module-binding-resource-definition-for-describing-association-between-nstrafficdomain-and-vlan-resources"]], "netscaler.adc.nstrafficdomain_vxlan_binding module \u2013 Binding Resource definition for describing association between nstrafficdomain and vxlan resources": [[572, "netscaler-adc-nstrafficdomain-vxlan-binding-module-binding-resource-definition-for-describing-association-between-nstrafficdomain-and-vxlan-resources"]], "netscaler.adc.nsvariable module \u2013 Configuration for variable resource.": [[573, "netscaler-adc-nsvariable-module-configuration-for-variable-resource"]], "netscaler.adc.nsvpxparam module \u2013 Configuration for \u201cVPX\u201d resource.": [[574, "netscaler-adc-nsvpxparam-module-configuration-for-vpx-resource"]], "netscaler.adc.nsweblogparam module \u2013 Configuration for Web log parameters resource.": [[575, "netscaler-adc-nsweblogparam-module-configuration-for-web-log-parameters-resource"]], "netscaler.adc.nsxmlnamespace module \u2013 Configuration for XML namespace resource.": [[576, "netscaler-adc-nsxmlnamespace-module-configuration-for-xml-namespace-resource"]], "netscaler.adc.ntpparam module \u2013 Configuration for NTP parameter resource.": [[577, "netscaler-adc-ntpparam-module-configuration-for-ntp-parameter-resource"]], "netscaler.adc.ntpserver module \u2013 Configuration for NTP server resource.": [[578, "netscaler-adc-ntpserver-module-configuration-for-ntp-server-resource"]], "netscaler.adc.onlinkipv6prefix module \u2013 Configuration for on-link IPv6 global prefixes for Router Advertisment resource.": [[579, "netscaler-adc-onlinkipv6prefix-module-configuration-for-on-link-ipv6-global-prefixes-for-router-advertisment-resource"]], "netscaler.adc.pcpprofile module \u2013 Configuration for PCP Profile resource.": [[580, "netscaler-adc-pcpprofile-module-configuration-for-pcp-profile-resource"]], "netscaler.adc.pcpserver module \u2013 Configuration for server resource.": [[581, "netscaler-adc-pcpserver-module-configuration-for-server-resource"]], "netscaler.adc.ping6 module \u2013 Configuration for 0 resource.": [[582, "netscaler-adc-ping6-module-configuration-for-0-resource"]], "netscaler.adc.ping module \u2013 Configuration for 0 resource.": [[583, "netscaler-adc-ping-module-configuration-for-0-resource"]], "netscaler.adc.policydataset module \u2013 Configuration for TYPE set resource.": [[584, "netscaler-adc-policydataset-module-configuration-for-type-set-resource"]], "netscaler.adc.policydataset_value_binding module \u2013 Binding Resource definition for describing association between policydataset and value resources": [[585, "netscaler-adc-policydataset-value-binding-module-binding-resource-definition-for-describing-association-between-policydataset-and-value-resources"]], "netscaler.adc.policyexpression module \u2013 Configuration for expression resource.": [[586, "netscaler-adc-policyexpression-module-configuration-for-expression-resource"]], "netscaler.adc.policyhttpcallout module \u2013 Configuration for HTTP callout resource.": [[587, "netscaler-adc-policyhttpcallout-module-configuration-for-http-callout-resource"]], "netscaler.adc.policymap module \u2013 Configuration for map policy resource.": [[588, "netscaler-adc-policymap-module-configuration-for-map-policy-resource"]], "netscaler.adc.policyparam module \u2013 Configuration for policy parameter resource.": [[589, "netscaler-adc-policyparam-module-configuration-for-policy-parameter-resource"]], "netscaler.adc.policypatset module \u2013 Configuration for PAT set resource.": [[590, "netscaler-adc-policypatset-module-configuration-for-pat-set-resource"]], "netscaler.adc.policypatset_pattern_binding module \u2013 Binding Resource definition for describing association between policypatset and pattern resources": [[591, "netscaler-adc-policypatset-pattern-binding-module-binding-resource-definition-for-describing-association-between-policypatset-and-pattern-resources"]], "netscaler.adc.policypatsetfile module \u2013 Configuration for patset file resource.": [[592, "netscaler-adc-policypatsetfile-module-configuration-for-patset-file-resource"]], "netscaler.adc.policystringmap module \u2013 Configuration for string map resource.": [[593, "netscaler-adc-policystringmap-module-configuration-for-string-map-resource"]], "netscaler.adc.policystringmap_pattern_binding module \u2013 Binding Resource definition for describing association between policystringmap and pattern resources": [[594, "netscaler-adc-policystringmap-pattern-binding-module-binding-resource-definition-for-describing-association-between-policystringmap-and-pattern-resources"]], "netscaler.adc.policyurlset module \u2013 Configuration for URL set resource.": [[595, "netscaler-adc-policyurlset-module-configuration-for-url-set-resource"]], "netscaler.adc.protocolhttpband module \u2013 Configuration for HTTP request/response band resource.": [[596, "netscaler-adc-protocolhttpband-module-configuration-for-http-request-response-band-resource"]], "netscaler.adc.ptp module \u2013 Configuration for Precision Time Protocol resource.": [[597, "netscaler-adc-ptp-module-configuration-for-precision-time-protocol-resource"]], "netscaler.adc.quicbridgeprofile module \u2013 Configuration for QUIC BRIDGE profile resource.": [[598, "netscaler-adc-quicbridgeprofile-module-configuration-for-quic-bridge-profile-resource"]], "netscaler.adc.quicparam module \u2013 Configuration for Citrix ADC QUIC parameters resource.": [[599, "netscaler-adc-quicparam-module-configuration-for-citrix-adc-quic-parameters-resource"]], "netscaler.adc.quicprofile module \u2013 Configuration for QUIC profile resource.": [[600, "netscaler-adc-quicprofile-module-configuration-for-quic-profile-resource"]], "netscaler.adc.radiusnode module \u2013 Configuration for RADIUS Node resource.": [[601, "netscaler-adc-radiusnode-module-configuration-for-radius-node-resource"]], "netscaler.adc.rdpclientprofile module \u2013 Configuration for RDP clientprofile resource.": [[602, "netscaler-adc-rdpclientprofile-module-configuration-for-rdp-clientprofile-resource"]], "netscaler.adc.rdpconnections module \u2013 Configuration for active rdp connections resource.": [[603, "netscaler-adc-rdpconnections-module-configuration-for-active-rdp-connections-resource"]], "netscaler.adc.rdpserverprofile module \u2013 Configuration for RDP serverprofile resource.": [[604, "netscaler-adc-rdpserverprofile-module-configuration-for-rdp-serverprofile-resource"]], "netscaler.adc.reboot module \u2013 Configuration for 0 resource.": [[605, "netscaler-adc-reboot-module-configuration-for-0-resource"]], "netscaler.adc.reportingconfig module \u2013 Configuration for reporting config resource.": [[606, "netscaler-adc-reportingconfig-module-configuration-for-reporting-config-resource"]], "netscaler.adc.reputationsettings module \u2013 Configuration for Reputation service settings resource.": [[607, "netscaler-adc-reputationsettings-module-configuration-for-reputation-service-settings-resource"]], "netscaler.adc.responderaction module \u2013 Configuration for responder action resource.": [[608, "netscaler-adc-responderaction-module-configuration-for-responder-action-resource"]], "netscaler.adc.responderglobal_responderpolicy_binding module \u2013 Binding Resource definition for describing association between responderglobal and responderpolicy resources": [[609, "netscaler-adc-responderglobal-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-responderglobal-and-responderpolicy-resources"]], "netscaler.adc.responderhtmlpage module \u2013 Configuration for Responder HTML page resource.": [[610, "netscaler-adc-responderhtmlpage-module-configuration-for-responder-html-page-resource"]], "netscaler.adc.responderparam module \u2013 Configuration for responser parameter resource.": [[611, "netscaler-adc-responderparam-module-configuration-for-responser-parameter-resource"]], "netscaler.adc.responderpolicy module \u2013 Configuration for responder policy resource.": [[612, "netscaler-adc-responderpolicy-module-configuration-for-responder-policy-resource"]], "netscaler.adc.responderpolicylabel module \u2013 Configuration for responder policy label resource.": [[613, "netscaler-adc-responderpolicylabel-module-configuration-for-responder-policy-label-resource"]], "netscaler.adc.responderpolicylabel_responderpolicy_binding module \u2013 Binding Resource definition for describing association between responderpolicylabel and responderpolicy resources": [[614, "netscaler-adc-responderpolicylabel-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-responderpolicylabel-and-responderpolicy-resources"]], "netscaler.adc.rewriteaction module \u2013 Configuration for rewrite action resource.": [[615, "netscaler-adc-rewriteaction-module-configuration-for-rewrite-action-resource"]], "netscaler.adc.rewriteglobal_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between rewriteglobal and rewritepolicy resources": [[616, "netscaler-adc-rewriteglobal-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-rewriteglobal-and-rewritepolicy-resources"]], "netscaler.adc.rewriteparam module \u2013 Configuration for rewrite parameter resource.": [[617, "netscaler-adc-rewriteparam-module-configuration-for-rewrite-parameter-resource"]], "netscaler.adc.rewritepolicy module \u2013 Configuration for rewrite policy resource.": [[618, "netscaler-adc-rewritepolicy-module-configuration-for-rewrite-policy-resource"]], "netscaler.adc.rewritepolicylabel module \u2013 Configuration for rewrite policy label resource.": [[619, "netscaler-adc-rewritepolicylabel-module-configuration-for-rewrite-policy-label-resource"]], "netscaler.adc.rewritepolicylabel_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between rewritepolicylabel and rewritepolicy resources": [[620, "netscaler-adc-rewritepolicylabel-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-rewritepolicylabel-and-rewritepolicy-resources"]], "netscaler.adc.rnat6 module \u2013 Configuration for IPv6 RNAT configured route resource.": [[621, "netscaler-adc-rnat6-module-configuration-for-ipv6-rnat-configured-route-resource"]], "netscaler.adc.rnat6_nsip6_binding module \u2013 Binding Resource definition for describing association between rnat6 and nsip6 resources": [[622, "netscaler-adc-rnat6-nsip6-binding-module-binding-resource-definition-for-describing-association-between-rnat6-and-nsip6-resources"]], "netscaler.adc.rnat module \u2013 Configuration for RNAT configured route resource.": [[623, "netscaler-adc-rnat-module-configuration-for-rnat-configured-route-resource"]], "netscaler.adc.rnat_nsip_binding module \u2013 Binding Resource definition for describing association between rnat and nsip resources": [[624, "netscaler-adc-rnat-nsip-binding-module-binding-resource-definition-for-describing-association-between-rnat-and-nsip-resources"]], "netscaler.adc.rnat_retainsourceportset_binding module \u2013 Binding Resource definition for describing association between rnat and retainsourceportset resources": [[625, "netscaler-adc-rnat-retainsourceportset-binding-module-binding-resource-definition-for-describing-association-between-rnat-and-retainsourceportset-resources"]], "netscaler.adc.rnatglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between rnatglobal and auditsyslogpolicy resources": [[626, "netscaler-adc-rnatglobal-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-rnatglobal-and-auditsyslogpolicy-resources"]], "netscaler.adc.rnatparam module \u2013 Configuration for RNAT parameter resource.": [[627, "netscaler-adc-rnatparam-module-configuration-for-rnat-parameter-resource"]], "netscaler.adc.rnatsession module \u2013 Configuration for RNAT session resource.": [[628, "netscaler-adc-rnatsession-module-configuration-for-rnat-session-resource"]], "netscaler.adc.route6 module \u2013 Configuration for route 6 resource.": [[629, "netscaler-adc-route6-module-configuration-for-route-6-resource"]], "netscaler.adc.route module \u2013 Configuration for route resource.": [[630, "netscaler-adc-route-module-configuration-for-route-resource"]], "netscaler.adc.routerdynamicrouting module \u2013 Configuration for dynamic routing config resource.": [[631, "netscaler-adc-routerdynamicrouting-module-configuration-for-dynamic-routing-config-resource"]], "netscaler.adc.rsskeytype module \u2013 Configuration for RSS key type resource.": [[632, "netscaler-adc-rsskeytype-module-configuration-for-rss-key-type-resource"]], "netscaler.adc.server module \u2013 Configuration for server resource.": [[633, "netscaler-adc-server-module-configuration-for-server-resource"]], "netscaler.adc.service_lbmonitor_binding module \u2013 Binding Resource definition for describing association between service and lbmonitor resources": [[634, "netscaler-adc-service-lbmonitor-binding-module-binding-resource-definition-for-describing-association-between-service-and-lbmonitor-resources"]], "netscaler.adc.service module \u2013 Configuration for service resource.": [[635, "netscaler-adc-service-module-configuration-for-service-resource"]], "netscaler.adc.servicegroup_lbmonitor_binding module \u2013 Binding Resource definition for describing association between servicegroup and lbmonitor resources": [[636, "netscaler-adc-servicegroup-lbmonitor-binding-module-binding-resource-definition-for-describing-association-between-servicegroup-and-lbmonitor-resources"]], "netscaler.adc.servicegroup module \u2013 Configuration for service group resource.": [[637, "netscaler-adc-servicegroup-module-configuration-for-service-group-resource"]], "netscaler.adc.servicegroup_servicegroupmember_binding module \u2013 Binding Resource definition for describing association between servicegroup and servicegroupmember resources": [[638, "netscaler-adc-servicegroup-servicegroupmember-binding-module-binding-resource-definition-for-describing-association-between-servicegroup-and-servicegroupmember-resources"]], "netscaler.adc.smppparam module \u2013 Configuration for SMPP configuration parameters resource.": [[639, "netscaler-adc-smppparam-module-configuration-for-smpp-configuration-parameters-resource"]], "netscaler.adc.smppuser module \u2013 Configuration for SMPP user resource.": [[640, "netscaler-adc-smppuser-module-configuration-for-smpp-user-resource"]], "netscaler.adc.snmpalarm module \u2013 Configuration for alarm resource.": [[641, "netscaler-adc-snmpalarm-module-configuration-for-alarm-resource"]], "netscaler.adc.snmpcommunity module \u2013 Configuration for community resource.": [[642, "netscaler-adc-snmpcommunity-module-configuration-for-community-resource"]], "netscaler.adc.snmpengineid module \u2013 Configuration for SNMP engine id resource.": [[643, "netscaler-adc-snmpengineid-module-configuration-for-snmp-engine-id-resource"]], "netscaler.adc.snmpgroup module \u2013 Configuration for SNMP group resource.": [[644, "netscaler-adc-snmpgroup-module-configuration-for-snmp-group-resource"]], "netscaler.adc.snmpmanager module \u2013 Configuration for manager resource.": [[645, "netscaler-adc-snmpmanager-module-configuration-for-manager-resource"]], "netscaler.adc.snmpmib module \u2013 Configuration for SNMP mib resource.": [[646, "netscaler-adc-snmpmib-module-configuration-for-snmp-mib-resource"]], "netscaler.adc.snmpoption module \u2013 Configuration for SNMP option resource.": [[647, "netscaler-adc-snmpoption-module-configuration-for-snmp-option-resource"]], "netscaler.adc.snmptrap module \u2013 Configuration for snmp trap resource.": [[648, "netscaler-adc-snmptrap-module-configuration-for-snmp-trap-resource"]], "netscaler.adc.snmptrap_snmpuser_binding module \u2013 Binding Resource definition for describing association between snmptrap and snmpuser resources": [[649, "netscaler-adc-snmptrap-snmpuser-binding-module-binding-resource-definition-for-describing-association-between-snmptrap-and-snmpuser-resources"]], "netscaler.adc.snmpuser module \u2013 Configuration for SNMP user resource.": [[650, "netscaler-adc-snmpuser-module-configuration-for-snmp-user-resource"]], "netscaler.adc.snmpview module \u2013 Configuration for view resource.": [[651, "netscaler-adc-snmpview-module-configuration-for-view-resource"]], "netscaler.adc.spilloveraction module \u2013 Configuration for Spillover action resource.": [[652, "netscaler-adc-spilloveraction-module-configuration-for-spillover-action-resource"]], "netscaler.adc.spilloverpolicy module \u2013 Configuration for Spillover policy resource.": [[653, "netscaler-adc-spilloverpolicy-module-configuration-for-spillover-policy-resource"]], "netscaler.adc.sslaction module \u2013 Configuration for SSL action resource.": [[654, "netscaler-adc-sslaction-module-configuration-for-ssl-action-resource"]], "netscaler.adc.sslcacertgroup module \u2013 Configuration for Group of CA certificate-key pairs resource.": [[655, "netscaler-adc-sslcacertgroup-module-configuration-for-group-of-ca-certificate-key-pairs-resource"]], "netscaler.adc.sslcacertgroup_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslcacertgroup and sslcertkey resources": [[656, "netscaler-adc-sslcacertgroup-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-sslcacertgroup-and-sslcertkey-resources"]], "netscaler.adc.sslcert module \u2013 Configuration for cerificate resource.": [[657, "netscaler-adc-sslcert-module-configuration-for-cerificate-resource"]], "netscaler.adc.sslcertbundle module \u2013 Configuration for Imported Certbundle resource.": [[658, "netscaler-adc-sslcertbundle-module-configuration-for-imported-certbundle-resource"]], "netscaler.adc.sslcertfile module \u2013 Configuration for Imported Certfile resource.": [[659, "netscaler-adc-sslcertfile-module-configuration-for-imported-certfile-resource"]], "netscaler.adc.sslcertificatechain module \u2013 Configuration for linked certificate resource.": [[660, "netscaler-adc-sslcertificatechain-module-configuration-for-linked-certificate-resource"]], "netscaler.adc.sslcertkey module \u2013 Configuration for certificate key resource.": [[661, "netscaler-adc-sslcertkey-module-configuration-for-certificate-key-resource"]], "netscaler.adc.sslcertkey_sslocspresponder_binding module \u2013 Binding Resource definition for describing association between sslcertkey and sslocspresponder resources": [[662, "netscaler-adc-sslcertkey-sslocspresponder-binding-module-binding-resource-definition-for-describing-association-between-sslcertkey-and-sslocspresponder-resources"]], "netscaler.adc.sslcertkeybundle module \u2013 Configuration for certkey bundle resource.": [[663, "netscaler-adc-sslcertkeybundle-module-configuration-for-certkey-bundle-resource"]], "netscaler.adc.sslcertreq module \u2013 Configuration for certificate request resource.": [[664, "netscaler-adc-sslcertreq-module-configuration-for-certificate-request-resource"]], "netscaler.adc.sslcipher module \u2013 Configuration for cipher resource.": [[665, "netscaler-adc-sslcipher-module-configuration-for-cipher-resource"]], "netscaler.adc.sslcipher_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslcipher and sslciphersuite resources": [[666, "netscaler-adc-sslcipher-sslciphersuite-binding-module-binding-resource-definition-for-describing-association-between-sslcipher-and-sslciphersuite-resources"]], "netscaler.adc.sslcrl module \u2013 Configuration for Certificate Revocation List resource.": [[667, "netscaler-adc-sslcrl-module-configuration-for-certificate-revocation-list-resource"]], "netscaler.adc.sslcrlfile module \u2013 Configuration for Imported crl files resource.": [[668, "netscaler-adc-sslcrlfile-module-configuration-for-imported-crl-files-resource"]], "netscaler.adc.ssldhfile module \u2013 Configuration for dh imported file resource.": [[669, "netscaler-adc-ssldhfile-module-configuration-for-dh-imported-file-resource"]], "netscaler.adc.ssldhparam module \u2013 Configuration for dh Parameter resource.": [[670, "netscaler-adc-ssldhparam-module-configuration-for-dh-parameter-resource"]], "netscaler.adc.ssldtlsprofile module \u2013 Configuration for DTLS profile resource.": [[671, "netscaler-adc-ssldtlsprofile-module-configuration-for-dtls-profile-resource"]], "netscaler.adc.sslecdsakey module \u2013 Configuration for ecdsa key resource.": [[672, "netscaler-adc-sslecdsakey-module-configuration-for-ecdsa-key-resource"]], "netscaler.adc.sslfips module \u2013 Configuration for fips resource.": [[673, "netscaler-adc-sslfips-module-configuration-for-fips-resource"]], "netscaler.adc.sslfipskey module \u2013 Configuration for FIPS key resource.": [[674, "netscaler-adc-sslfipskey-module-configuration-for-fips-key-resource"]], "netscaler.adc.sslfipssimsource module \u2013 Configuration for FIPsSIM source resource.": [[675, "netscaler-adc-sslfipssimsource-module-configuration-for-fipssim-source-resource"]], "netscaler.adc.sslfipssimtarget module \u2013 Configuration for FIPS SIM Target resource.": [[676, "netscaler-adc-sslfipssimtarget-module-configuration-for-fips-sim-target-resource"]], "netscaler.adc.sslglobal_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslglobal and sslpolicy resources": [[677, "netscaler-adc-sslglobal-sslpolicy-binding-module-binding-resource-definition-for-describing-association-between-sslglobal-and-sslpolicy-resources"]], "netscaler.adc.sslhsmkey module \u2013 Configuration for HSM key resource.": [[678, "netscaler-adc-sslhsmkey-module-configuration-for-hsm-key-resource"]], "netscaler.adc.sslkeyfile module \u2013 Configuration for Imported ssl key files resource.": [[679, "netscaler-adc-sslkeyfile-module-configuration-for-imported-ssl-key-files-resource"]], "netscaler.adc.ssllogprofile module \u2013 Configuration for SSL logging Profile resource.": [[680, "netscaler-adc-ssllogprofile-module-configuration-for-ssl-logging-profile-resource"]], "netscaler.adc.sslocspresponder module \u2013 Configuration for OCSP responser resource.": [[681, "netscaler-adc-sslocspresponder-module-configuration-for-ocsp-responser-resource"]], "netscaler.adc.sslparameter module \u2013 Configuration for SSL parameter resource.": [[682, "netscaler-adc-sslparameter-module-configuration-for-ssl-parameter-resource"]], "netscaler.adc.sslpkcs12 module \u2013 Configuration for pkcs12 resource.": [[683, "netscaler-adc-sslpkcs12-module-configuration-for-pkcs12-resource"]], "netscaler.adc.sslpkcs8 module \u2013 Configuration for pkcs8 resource.": [[684, "netscaler-adc-sslpkcs8-module-configuration-for-pkcs8-resource"]], "netscaler.adc.sslpolicy module \u2013 Configuration for SSL policy resource.": [[685, "netscaler-adc-sslpolicy-module-configuration-for-ssl-policy-resource"]], "netscaler.adc.sslpolicylabel module \u2013 Configuration for SSL policy label resource.": [[686, "netscaler-adc-sslpolicylabel-module-configuration-for-ssl-policy-label-resource"]], "netscaler.adc.sslpolicylabel_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslpolicylabel and sslpolicy resources": [[687, "netscaler-adc-sslpolicylabel-sslpolicy-binding-module-binding-resource-definition-for-describing-association-between-sslpolicylabel-and-sslpolicy-resources"]], "netscaler.adc.sslprofile_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslprofile and ecccurve resources": [[688, "netscaler-adc-sslprofile-ecccurve-binding-module-binding-resource-definition-for-describing-association-between-sslprofile-and-ecccurve-resources"]], "netscaler.adc.sslprofile module \u2013 Configuration for SSL profile resource.": [[689, "netscaler-adc-sslprofile-module-configuration-for-ssl-profile-resource"]], "netscaler.adc.sslprofile_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslprofile and sslcertkey resources": [[690, "netscaler-adc-sslprofile-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-sslprofile-and-sslcertkey-resources"]], "netscaler.adc.sslprofile_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslprofile and sslcipher resources": [[691, "netscaler-adc-sslprofile-sslcipher-binding-module-binding-resource-definition-for-describing-association-between-sslprofile-and-sslcipher-resources"]], "netscaler.adc.sslprofile_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslprofile and sslciphersuite resources": [[692, "netscaler-adc-sslprofile-sslciphersuite-binding-module-binding-resource-definition-for-describing-association-between-sslprofile-and-sslciphersuite-resources"]], "netscaler.adc.sslrsakey module \u2013 Configuration for RSA key resource.": [[693, "netscaler-adc-sslrsakey-module-configuration-for-rsa-key-resource"]], "netscaler.adc.sslservice_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslservice and ecccurve resources": [[694, "netscaler-adc-sslservice-ecccurve-binding-module-binding-resource-definition-for-describing-association-between-sslservice-and-ecccurve-resources"]], "netscaler.adc.sslservice module \u2013 Configuration for SSL service resource.": [[695, "netscaler-adc-sslservice-module-configuration-for-ssl-service-resource"]], "netscaler.adc.sslservice_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslservice and sslcertkey resources": [[696, "netscaler-adc-sslservice-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-sslservice-and-sslcertkey-resources"]], "netscaler.adc.sslservice_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslservice and sslcipher resources": [[697, "netscaler-adc-sslservice-sslcipher-binding-module-binding-resource-definition-for-describing-association-between-sslservice-and-sslcipher-resources"]], "netscaler.adc.sslservice_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslservice and sslciphersuite resources": [[698, "netscaler-adc-sslservice-sslciphersuite-binding-module-binding-resource-definition-for-describing-association-between-sslservice-and-sslciphersuite-resources"]], "netscaler.adc.sslservice_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslservice and sslpolicy resources": [[699, "netscaler-adc-sslservice-sslpolicy-binding-module-binding-resource-definition-for-describing-association-between-sslservice-and-sslpolicy-resources"]], "netscaler.adc.sslservicegroup_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and ecccurve resources": [[700, "netscaler-adc-sslservicegroup-ecccurve-binding-module-binding-resource-definition-for-describing-association-between-sslservicegroup-and-ecccurve-resources"]], "netscaler.adc.sslservicegroup module \u2013 Configuration for SSL service group resource.": [[701, "netscaler-adc-sslservicegroup-module-configuration-for-ssl-service-group-resource"]], "netscaler.adc.sslservicegroup_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and sslcertkey resources": [[702, "netscaler-adc-sslservicegroup-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-sslservicegroup-and-sslcertkey-resources"]], "netscaler.adc.sslservicegroup_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and sslcipher resources": [[703, "netscaler-adc-sslservicegroup-sslcipher-binding-module-binding-resource-definition-for-describing-association-between-sslservicegroup-and-sslcipher-resources"]], "netscaler.adc.sslservicegroup_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslservicegroup and sslciphersuite resources": [[704, "netscaler-adc-sslservicegroup-sslciphersuite-binding-module-binding-resource-definition-for-describing-association-between-sslservicegroup-and-sslciphersuite-resources"]], "netscaler.adc.sslvserver_ecccurve_binding module \u2013 Binding Resource definition for describing association between sslvserver and ecccurve resources": [[705, "netscaler-adc-sslvserver-ecccurve-binding-module-binding-resource-definition-for-describing-association-between-sslvserver-and-ecccurve-resources"]], "netscaler.adc.sslvserver module \u2013 Configuration for SSL virtual server resource.": [[706, "netscaler-adc-sslvserver-module-configuration-for-ssl-virtual-server-resource"]], "netscaler.adc.sslvserver_sslcertkey_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslcertkey resources": [[707, "netscaler-adc-sslvserver-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-sslvserver-and-sslcertkey-resources"]], "netscaler.adc.sslvserver_sslcertkeybundle_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslcertkeybundle resources": [[708, "netscaler-adc-sslvserver-sslcertkeybundle-binding-module-binding-resource-definition-for-describing-association-between-sslvserver-and-sslcertkeybundle-resources"]], "netscaler.adc.sslvserver_sslcipher_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslcipher resources": [[709, "netscaler-adc-sslvserver-sslcipher-binding-module-binding-resource-definition-for-describing-association-between-sslvserver-and-sslcipher-resources"]], "netscaler.adc.sslvserver_sslciphersuite_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslciphersuite resources": [[710, "netscaler-adc-sslvserver-sslciphersuite-binding-module-binding-resource-definition-for-describing-association-between-sslvserver-and-sslciphersuite-resources"]], "netscaler.adc.sslvserver_sslpolicy_binding module \u2013 Binding Resource definition for describing association between sslvserver and sslpolicy resources": [[711, "netscaler-adc-sslvserver-sslpolicy-binding-module-binding-resource-definition-for-describing-association-between-sslvserver-and-sslpolicy-resources"]], "netscaler.adc.sslwrapkey module \u2013 Configuration for WRAP key resource.": [[712, "netscaler-adc-sslwrapkey-module-configuration-for-wrap-key-resource"]], "netscaler.adc.streamidentifier module \u2013 Configuration for identifier resource.": [[713, "netscaler-adc-streamidentifier-module-configuration-for-identifier-resource"]], "netscaler.adc.streamselector module \u2013 Configuration for selector resource.": [[714, "netscaler-adc-streamselector-module-configuration-for-selector-resource"]], "netscaler.adc.streamsession module \u2013 Configuration for active connection resource.": [[715, "netscaler-adc-streamsession-module-configuration-for-active-connection-resource"]], "netscaler.adc.subscribergxinterface module \u2013 Configuration for Gx interface Parameters resource.": [[716, "netscaler-adc-subscribergxinterface-module-configuration-for-gx-interface-parameters-resource"]], "netscaler.adc.subscriberparam module \u2013 Configuration for Subscriber Params resource.": [[717, "netscaler-adc-subscriberparam-module-configuration-for-subscriber-params-resource"]], "netscaler.adc.subscriberprofile module \u2013 Configuration for Subscriber Profile resource.": [[718, "netscaler-adc-subscriberprofile-module-configuration-for-subscriber-profile-resource"]], "netscaler.adc.subscriberradiusinterface module \u2013 Configuration for RADIUS interface Parameters resource.": [[719, "netscaler-adc-subscriberradiusinterface-module-configuration-for-radius-interface-parameters-resource"]], "netscaler.adc.subscribersessions module \u2013 Configuration for subscriber sesions resource.": [[720, "netscaler-adc-subscribersessions-module-configuration-for-subscriber-sesions-resource"]], "netscaler.adc.systemadmuserinfo module \u2013 Configuration for 0 resource.": [[721, "netscaler-adc-systemadmuserinfo-module-configuration-for-0-resource"]], "netscaler.adc.systembackup module \u2013 Configuration for Backup Data for ns backup and restore resource.": [[722, "netscaler-adc-systembackup-module-configuration-for-backup-data-for-ns-backup-and-restore-resource"]], "netscaler.adc.systemcmdpolicy module \u2013 Configuration for command policy resource.": [[723, "netscaler-adc-systemcmdpolicy-module-configuration-for-command-policy-resource"]], "netscaler.adc.systemcollectionparam module \u2013 Configuration for collection parameter resource.": [[724, "netscaler-adc-systemcollectionparam-module-configuration-for-collection-parameter-resource"]], "netscaler.adc.systemcpuparam module \u2013 Configuration for 0 resource.": [[725, "netscaler-adc-systemcpuparam-module-configuration-for-0-resource"]], "netscaler.adc.systementitydata module \u2013 Configuration for entity data resource.": [[726, "netscaler-adc-systementitydata-module-configuration-for-entity-data-resource"]], "netscaler.adc.systemextramgmtcpu module \u2013 Configuration for 0 resource.": [[727, "netscaler-adc-systemextramgmtcpu-module-configuration-for-0-resource"]], "netscaler.adc.systemfile module \u2013 Configuration for file resource.": [[728, "netscaler-adc-systemfile-module-configuration-for-file-resource"]], "netscaler.adc.systemglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and auditnslogpolicy resources": [[729, "netscaler-adc-systemglobal-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-auditnslogpolicy-resources"]], "netscaler.adc.systemglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and auditsyslogpolicy resources": [[730, "netscaler-adc-systemglobal-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-auditsyslogpolicy-resources"]], "netscaler.adc.systemglobal_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationldappolicy resources": [[731, "netscaler-adc-systemglobal-authenticationldappolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-authenticationldappolicy-resources"]], "netscaler.adc.systemglobal_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationlocalpolicy resources": [[732, "netscaler-adc-systemglobal-authenticationlocalpolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-authenticationlocalpolicy-resources"]], "netscaler.adc.systemglobal_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationpolicy resources": [[733, "netscaler-adc-systemglobal-authenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-authenticationpolicy-resources"]], "netscaler.adc.systemglobal_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationradiuspolicy resources": [[734, "netscaler-adc-systemglobal-authenticationradiuspolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-authenticationradiuspolicy-resources"]], "netscaler.adc.systemglobal_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between systemglobal and authenticationtacacspolicy resources": [[735, "netscaler-adc-systemglobal-authenticationtacacspolicy-binding-module-binding-resource-definition-for-describing-association-between-systemglobal-and-authenticationtacacspolicy-resources"]], "netscaler.adc.systemgroup module \u2013 Configuration for system group resource.": [[736, "netscaler-adc-systemgroup-module-configuration-for-system-group-resource"]], "netscaler.adc.systemgroup_nspartition_binding module \u2013 Binding Resource definition for describing association between systemgroup and nspartition resources": [[737, "netscaler-adc-systemgroup-nspartition-binding-module-binding-resource-definition-for-describing-association-between-systemgroup-and-nspartition-resources"]], "netscaler.adc.systemgroup_systemcmdpolicy_binding module \u2013 Binding Resource definition for describing association between systemgroup and systemcmdpolicy resources": [[738, "netscaler-adc-systemgroup-systemcmdpolicy-binding-module-binding-resource-definition-for-describing-association-between-systemgroup-and-systemcmdpolicy-resources"]], "netscaler.adc.systemgroup_systemuser_binding module \u2013 Binding Resource definition for describing association between systemgroup and systemuser resources": [[739, "netscaler-adc-systemgroup-systemuser-binding-module-binding-resource-definition-for-describing-association-between-systemgroup-and-systemuser-resources"]], "netscaler.adc.systemhwerror module \u2013 Configuration for Hardware errors resource.": [[740, "netscaler-adc-systemhwerror-module-configuration-for-hardware-errors-resource"]], "netscaler.adc.systemkek module \u2013 Configuration for Key encryption Key resource.": [[741, "netscaler-adc-systemkek-module-configuration-for-key-encryption-key-resource"]], "netscaler.adc.systemparameter module \u2013 Configuration for system parameter resource.": [[742, "netscaler-adc-systemparameter-module-configuration-for-system-parameter-resource"]], "netscaler.adc.systemrestorepoint module \u2013 Configuration for Setting restorepoints for auto restore resource.": [[743, "netscaler-adc-systemrestorepoint-module-configuration-for-setting-restorepoints-for-auto-restore-resource"]], "netscaler.adc.systemsession module \u2013 Configuration for system session resource.": [[744, "netscaler-adc-systemsession-module-configuration-for-system-session-resource"]], "netscaler.adc.systemsshkey module \u2013 Configuration for 0 resource.": [[745, "netscaler-adc-systemsshkey-module-configuration-for-0-resource"]], "netscaler.adc.systemuser module \u2013 Configuration for system user resource.": [[746, "netscaler-adc-systemuser-module-configuration-for-system-user-resource"]], "netscaler.adc.systemuser_nspartition_binding module \u2013 Binding Resource definition for describing association between systemuser and nspartition resources": [[747, "netscaler-adc-systemuser-nspartition-binding-module-binding-resource-definition-for-describing-association-between-systemuser-and-nspartition-resources"]], "netscaler.adc.systemuser_systemcmdpolicy_binding module \u2013 Binding Resource definition for describing association between systemuser and systemcmdpolicy resources": [[748, "netscaler-adc-systemuser-systemcmdpolicy-binding-module-binding-resource-definition-for-describing-association-between-systemuser-and-systemcmdpolicy-resources"]], "netscaler.adc.tmformssoaction module \u2013 Configuration for Form sso action resource.": [[749, "netscaler-adc-tmformssoaction-module-configuration-for-form-sso-action-resource"]], "netscaler.adc.tmglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and auditnslogpolicy resources": [[750, "netscaler-adc-tmglobal-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-tmglobal-and-auditnslogpolicy-resources"]], "netscaler.adc.tmglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and auditsyslogpolicy resources": [[751, "netscaler-adc-tmglobal-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-tmglobal-and-auditsyslogpolicy-resources"]], "netscaler.adc.tmglobal_tmsessionpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and tmsessionpolicy resources": [[752, "netscaler-adc-tmglobal-tmsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-tmglobal-and-tmsessionpolicy-resources"]], "netscaler.adc.tmglobal_tmtrafficpolicy_binding module \u2013 Binding Resource definition for describing association between tmglobal and tmtrafficpolicy resources": [[753, "netscaler-adc-tmglobal-tmtrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-tmglobal-and-tmtrafficpolicy-resources"]], "netscaler.adc.tmsamlssoprofile module \u2013 Configuration for SAML sso action resource.": [[754, "netscaler-adc-tmsamlssoprofile-module-configuration-for-saml-sso-action-resource"]], "netscaler.adc.tmsessionaction module \u2013 Configuration for TM session action resource.": [[755, "netscaler-adc-tmsessionaction-module-configuration-for-tm-session-action-resource"]], "netscaler.adc.tmsessionparameter module \u2013 Configuration for session parameter resource.": [[756, "netscaler-adc-tmsessionparameter-module-configuration-for-session-parameter-resource"]], "netscaler.adc.tmsessionpolicy module \u2013 Configuration for TM session policy resource.": [[757, "netscaler-adc-tmsessionpolicy-module-configuration-for-tm-session-policy-resource"]], "netscaler.adc.tmtrafficaction module \u2013 Configuration for TM traffic action resource.": [[758, "netscaler-adc-tmtrafficaction-module-configuration-for-tm-traffic-action-resource"]], "netscaler.adc.tmtrafficpolicy module \u2013 Configuration for TM traffic policy resource.": [[759, "netscaler-adc-tmtrafficpolicy-module-configuration-for-tm-traffic-policy-resource"]], "netscaler.adc.traceroute6 module \u2013 Configuration for 0 resource.": [[760, "netscaler-adc-traceroute6-module-configuration-for-0-resource"]], "netscaler.adc.traceroute module \u2013 Configuration for 0 resource.": [[761, "netscaler-adc-traceroute-module-configuration-for-0-resource"]], "netscaler.adc.transformaction module \u2013 Configuration for transform action resource.": [[762, "netscaler-adc-transformaction-module-configuration-for-transform-action-resource"]], "netscaler.adc.transformglobal_transformpolicy_binding module \u2013 Binding Resource definition for describing association between transformglobal and transformpolicy resources": [[763, "netscaler-adc-transformglobal-transformpolicy-binding-module-binding-resource-definition-for-describing-association-between-transformglobal-and-transformpolicy-resources"]], "netscaler.adc.transformpolicy module \u2013 Configuration for URL Transformation policy resource.": [[764, "netscaler-adc-transformpolicy-module-configuration-for-url-transformation-policy-resource"]], "netscaler.adc.transformpolicylabel module \u2013 Configuration for transform policy label resource.": [[765, "netscaler-adc-transformpolicylabel-module-configuration-for-transform-policy-label-resource"]], "netscaler.adc.transformpolicylabel_transformpolicy_binding module \u2013 Binding Resource definition for describing association between transformpolicylabel and transformpolicy resources": [[766, "netscaler-adc-transformpolicylabel-transformpolicy-binding-module-binding-resource-definition-for-describing-association-between-transformpolicylabel-and-transformpolicy-resources"]], "netscaler.adc.transformprofile module \u2013 Configuration for URL Transformation profile resource.": [[767, "netscaler-adc-transformprofile-module-configuration-for-url-transformation-profile-resource"]], "netscaler.adc.tunnelglobal_tunneltrafficpolicy_binding module \u2013 Binding Resource definition for describing association between tunnelglobal and tunneltrafficpolicy resources": [[768, "netscaler-adc-tunnelglobal-tunneltrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-tunnelglobal-and-tunneltrafficpolicy-resources"]], "netscaler.adc.tunneltrafficpolicy module \u2013 Configuration for tunnel policy resource.": [[769, "netscaler-adc-tunneltrafficpolicy-module-configuration-for-tunnel-policy-resource"]], "netscaler.adc.ulfdserver module \u2013 Configuration for ulfd server resource.": [[770, "netscaler-adc-ulfdserver-module-configuration-for-ulfd-server-resource"]], "netscaler.adc.urlfilteringcategorization module \u2013 Configuration for Categorization resource.": [[771, "netscaler-adc-urlfilteringcategorization-module-configuration-for-categorization-resource"]], "netscaler.adc.urlfilteringparameter module \u2013 Configuration for URLFILTERING paramter resource.": [[772, "netscaler-adc-urlfilteringparameter-module-configuration-for-urlfiltering-paramter-resource"]], "netscaler.adc.userprotocol module \u2013 Configuration for user protocol resource.": [[773, "netscaler-adc-userprotocol-module-configuration-for-user-protocol-resource"]], "netscaler.adc.uservserver module \u2013 Configuration for virtual server resource.": [[774, "netscaler-adc-uservserver-module-configuration-for-virtual-server-resource"]], "netscaler.adc.videooptimizationdetectionaction module \u2013 Configuration for videooptimization detectionaction resource.": [[775, "netscaler-adc-videooptimizationdetectionaction-module-configuration-for-videooptimization-detectionaction-resource"]], "netscaler.adc.videooptimizationdetectionpolicy module \u2013 Configuration for videooptimization detectionpolicy resource.": [[776, "netscaler-adc-videooptimizationdetectionpolicy-module-configuration-for-videooptimization-detectionpolicy-resource"]], "netscaler.adc.videooptimizationdetectionpolicylabel module \u2013 Configuration for videooptimization detection policy label resource.": [[777, "netscaler-adc-videooptimizationdetectionpolicylabel-module-configuration-for-videooptimization-detection-policy-label-resource"]], "netscaler.adc.videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationdetectionpolicylabel and videooptimizationdetectionpolicy resources": [[778, "netscaler-adc-videooptimizationdetectionpolicylabel-videooptimizationdetectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-videooptimizationdetectionpolicylabel-and-videooptimizationdetectionpolicy-resources"]], "netscaler.adc.videooptimizationglobaldetection_videooptimizationdetectionpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationglobaldetection and videooptimizationdetectionpolicy resources": [[779, "netscaler-adc-videooptimizationglobaldetection-videooptimizationdetectionpolicy-binding-module-binding-resource-definition-for-describing-association-between-videooptimizationglobaldetection-and-videooptimizationdetectionpolicy-resources"]], "netscaler.adc.videooptimizationglobalpacing_videooptimizationpacingpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationglobalpacing and videooptimizationpacingpolicy resources": [[780, "netscaler-adc-videooptimizationglobalpacing-videooptimizationpacingpolicy-binding-module-binding-resource-definition-for-describing-association-between-videooptimizationglobalpacing-and-videooptimizationpacingpolicy-resources"]], "netscaler.adc.videooptimizationpacingaction module \u2013 Configuration for videooptimization pacingaction resource.": [[781, "netscaler-adc-videooptimizationpacingaction-module-configuration-for-videooptimization-pacingaction-resource"]], "netscaler.adc.videooptimizationpacingpolicy module \u2013 Configuration for videooptimization pacingpolicy resource.": [[782, "netscaler-adc-videooptimizationpacingpolicy-module-configuration-for-videooptimization-pacingpolicy-resource"]], "netscaler.adc.videooptimizationpacingpolicylabel module \u2013 Configuration for videooptimization pacing policy label resource.": [[783, "netscaler-adc-videooptimizationpacingpolicylabel-module-configuration-for-videooptimization-pacing-policy-label-resource"]], "netscaler.adc.videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_binding module \u2013 Binding Resource definition for describing association between videooptimizationpacingpolicylabel and videooptimizationpacingpolicy resources": [[784, "netscaler-adc-videooptimizationpacingpolicylabel-videooptimizationpacingpolicy-binding-module-binding-resource-definition-for-describing-association-between-videooptimizationpacingpolicylabel-and-videooptimizationpacingpolicy-resources"]], "netscaler.adc.videooptimizationparameter module \u2013 Configuration for VideoOptimization parameter resource.": [[785, "netscaler-adc-videooptimizationparameter-module-configuration-for-videooptimization-parameter-resource"]], "netscaler.adc.vlan_channel_binding module \u2013 Binding Resource definition for describing association between vlan and channel resources": [[786, "netscaler-adc-vlan-channel-binding-module-binding-resource-definition-for-describing-association-between-vlan-and-channel-resources"]], "netscaler.adc.vlan_interface_binding module \u2013 Binding Resource definition for describing association between vlan and interface resources": [[787, "netscaler-adc-vlan-interface-binding-module-binding-resource-definition-for-describing-association-between-vlan-and-interface-resources"]], "netscaler.adc.vlan_linkset_binding module \u2013 Binding Resource definition for describing association between vlan and linkset resources": [[788, "netscaler-adc-vlan-linkset-binding-module-binding-resource-definition-for-describing-association-between-vlan-and-linkset-resources"]], "netscaler.adc.vlan module \u2013 Configuration for \u201cVLAN\u201d resource.": [[789, "netscaler-adc-vlan-module-configuration-for-vlan-resource"]], "netscaler.adc.vlan_nsip6_binding module \u2013 Binding Resource definition for describing association between vlan and nsip6 resources": [[790, "netscaler-adc-vlan-nsip6-binding-module-binding-resource-definition-for-describing-association-between-vlan-and-nsip6-resources"]], "netscaler.adc.vlan_nsip_binding module \u2013 Binding Resource definition for describing association between vlan and nsip resources": [[791, "netscaler-adc-vlan-nsip-binding-module-binding-resource-definition-for-describing-association-between-vlan-and-nsip-resources"]], "netscaler.adc.vpnalwaysonprofile module \u2013 Configuration for AlwyasON profile resource.": [[792, "netscaler-adc-vpnalwaysonprofile-module-configuration-for-alwyason-profile-resource"]], "netscaler.adc.vpnclientlessaccesspolicy module \u2013 Configuration for Clientless VPN rewrite policy resource.": [[793, "netscaler-adc-vpnclientlessaccesspolicy-module-configuration-for-clientless-vpn-rewrite-policy-resource"]], "netscaler.adc.vpnclientlessaccessprofile module \u2013 Configuration for Clientless VPN rewrite profile resource.": [[794, "netscaler-adc-vpnclientlessaccessprofile-module-configuration-for-clientless-vpn-rewrite-profile-resource"]], "netscaler.adc.vpnepaprofile module \u2013 Configuration for Epa profile resource.": [[795, "netscaler-adc-vpnepaprofile-module-configuration-for-epa-profile-resource"]], "netscaler.adc.vpneula module \u2013 Configuration for EULA for vservers resource.": [[796, "netscaler-adc-vpneula-module-configuration-for-eula-for-vservers-resource"]], "netscaler.adc.vpnformssoaction module \u2013 Configuration for Form sso action resource.": [[797, "netscaler-adc-vpnformssoaction-module-configuration-for-form-sso-action-resource"]], "netscaler.adc.vpnglobal_appcontroller_binding module \u2013 Binding Resource definition for describing association between vpnglobal and appcontroller resources": [[798, "netscaler-adc-vpnglobal-appcontroller-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-appcontroller-resources"]], "netscaler.adc.vpnglobal_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and auditnslogpolicy resources": [[799, "netscaler-adc-vpnglobal-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-auditnslogpolicy-resources"]], "netscaler.adc.vpnglobal_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and auditsyslogpolicy resources": [[800, "netscaler-adc-vpnglobal-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-auditsyslogpolicy-resources"]], "netscaler.adc.vpnglobal_authenticationcertpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationcertpolicy resources": [[801, "netscaler-adc-vpnglobal-authenticationcertpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationcertpolicy-resources"]], "netscaler.adc.vpnglobal_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationldappolicy resources": [[802, "netscaler-adc-vpnglobal-authenticationldappolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationldappolicy-resources"]], "netscaler.adc.vpnglobal_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationlocalpolicy resources": [[803, "netscaler-adc-vpnglobal-authenticationlocalpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationlocalpolicy-resources"]], "netscaler.adc.vpnglobal_authenticationnegotiatepolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationnegotiatepolicy resources": [[804, "netscaler-adc-vpnglobal-authenticationnegotiatepolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationnegotiatepolicy-resources"]], "netscaler.adc.vpnglobal_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationpolicy resources": [[805, "netscaler-adc-vpnglobal-authenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationpolicy-resources"]], "netscaler.adc.vpnglobal_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationradiuspolicy resources": [[806, "netscaler-adc-vpnglobal-authenticationradiuspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationradiuspolicy-resources"]], "netscaler.adc.vpnglobal_authenticationsamlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationsamlpolicy resources": [[807, "netscaler-adc-vpnglobal-authenticationsamlpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationsamlpolicy-resources"]], "netscaler.adc.vpnglobal_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and authenticationtacacspolicy resources": [[808, "netscaler-adc-vpnglobal-authenticationtacacspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-authenticationtacacspolicy-resources"]], "netscaler.adc.vpnglobal_domain_binding module \u2013 Binding Resource definition for describing association between vpnglobal and domain resources": [[809, "netscaler-adc-vpnglobal-domain-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-domain-resources"]], "netscaler.adc.vpnglobal_intranetip6_binding module \u2013 Binding Resource definition for describing association between vpnglobal and intranetip6 resources": [[810, "netscaler-adc-vpnglobal-intranetip6-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-intranetip6-resources"]], "netscaler.adc.vpnglobal_intranetip_binding module \u2013 Binding Resource definition for describing association between vpnglobal and intranetip resources": [[811, "netscaler-adc-vpnglobal-intranetip-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-intranetip-resources"]], "netscaler.adc.vpnglobal_sharefileserver_binding module \u2013 Binding Resource definition for describing association between vpnglobal and sharefileserver resources": [[812, "netscaler-adc-vpnglobal-sharefileserver-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-sharefileserver-resources"]], "netscaler.adc.vpnglobal_sslcertkey_binding module \u2013 Binding Resource definition for describing association between vpnglobal and sslcertkey resources": [[813, "netscaler-adc-vpnglobal-sslcertkey-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-sslcertkey-resources"]], "netscaler.adc.vpnglobal_staserver_binding module \u2013 Binding Resource definition for describing association between vpnglobal and staserver resources": [[814, "netscaler-adc-vpnglobal-staserver-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-staserver-resources"]], "netscaler.adc.vpnglobal_vpnclientlessaccesspolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnclientlessaccesspolicy resources": [[815, "netscaler-adc-vpnglobal-vpnclientlessaccesspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnclientlessaccesspolicy-resources"]], "netscaler.adc.vpnglobal_vpneula_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpneula resources": [[816, "netscaler-adc-vpnglobal-vpneula-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpneula-resources"]], "netscaler.adc.vpnglobal_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnintranetapplication resources": [[817, "netscaler-adc-vpnglobal-vpnintranetapplication-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnintranetapplication-resources"]], "netscaler.adc.vpnglobal_vpnnexthopserver_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnnexthopserver resources": [[818, "netscaler-adc-vpnglobal-vpnnexthopserver-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnnexthopserver-resources"]], "netscaler.adc.vpnglobal_vpnportaltheme_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnportaltheme resources": [[819, "netscaler-adc-vpnglobal-vpnportaltheme-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnportaltheme-resources"]], "netscaler.adc.vpnglobal_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnsessionpolicy resources": [[820, "netscaler-adc-vpnglobal-vpnsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnsessionpolicy-resources"]], "netscaler.adc.vpnglobal_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpntrafficpolicy resources": [[821, "netscaler-adc-vpnglobal-vpntrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpntrafficpolicy-resources"]], "netscaler.adc.vpnglobal_vpnurl_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnurl resources": [[822, "netscaler-adc-vpnglobal-vpnurl-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnurl-resources"]], "netscaler.adc.vpnglobal_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnglobal and vpnurlpolicy resources": [[823, "netscaler-adc-vpnglobal-vpnurlpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnglobal-and-vpnurlpolicy-resources"]], "netscaler.adc.vpnicaconnection module \u2013 Configuration for active ica connections resource.": [[824, "netscaler-adc-vpnicaconnection-module-configuration-for-active-ica-connections-resource"]], "netscaler.adc.vpnintranetapplication module \u2013 Configuration for SSLVPN intranet application resource.": [[825, "netscaler-adc-vpnintranetapplication-module-configuration-for-sslvpn-intranet-application-resource"]], "netscaler.adc.vpnnexthopserver module \u2013 Configuration for Next Hop Server resource.": [[826, "netscaler-adc-vpnnexthopserver-module-configuration-for-next-hop-server-resource"]], "netscaler.adc.vpnparameter module \u2013 Configuration for VPN parameter resource.": [[827, "netscaler-adc-vpnparameter-module-configuration-for-vpn-parameter-resource"]], "netscaler.adc.vpnpcoipconnection module \u2013 Configuration for PCoIP connection resource.": [[828, "netscaler-adc-vpnpcoipconnection-module-configuration-for-pcoip-connection-resource"]], "netscaler.adc.vpnpcoipprofile module \u2013 Configuration for PCoIP session profile resource.": [[829, "netscaler-adc-vpnpcoipprofile-module-configuration-for-pcoip-session-profile-resource"]], "netscaler.adc.vpnpcoipvserverprofile module \u2013 Configuration for PCoIP vserver profile resource.": [[830, "netscaler-adc-vpnpcoipvserverprofile-module-configuration-for-pcoip-vserver-profile-resource"]], "netscaler.adc.vpnportaltheme module \u2013 Configuration for portaltheme resource.": [[831, "netscaler-adc-vpnportaltheme-module-configuration-for-portaltheme-resource"]], "netscaler.adc.vpnsamlssoprofile module \u2013 Configuration for SAML sso action resource.": [[832, "netscaler-adc-vpnsamlssoprofile-module-configuration-for-saml-sso-action-resource"]], "netscaler.adc.vpnsessionaction module \u2013 Configuration for VPN session action resource.": [[833, "netscaler-adc-vpnsessionaction-module-configuration-for-vpn-session-action-resource"]], "netscaler.adc.vpnsessionpolicy module \u2013 Configuration for VPN session policy resource.": [[834, "netscaler-adc-vpnsessionpolicy-module-configuration-for-vpn-session-policy-resource"]], "netscaler.adc.vpntrafficaction module \u2013 Configuration for VPN traffic action resource.": [[835, "netscaler-adc-vpntrafficaction-module-configuration-for-vpn-traffic-action-resource"]], "netscaler.adc.vpntrafficpolicy module \u2013 Configuration for VPN traffic policy resource.": [[836, "netscaler-adc-vpntrafficpolicy-module-configuration-for-vpn-traffic-policy-resource"]], "netscaler.adc.vpnurl module \u2013 Configuration for VPN URL resource.": [[837, "netscaler-adc-vpnurl-module-configuration-for-vpn-url-resource"]], "netscaler.adc.vpnurlaction module \u2013 Configuration for VPN url action resource.": [[838, "netscaler-adc-vpnurlaction-module-configuration-for-vpn-url-action-resource"]], "netscaler.adc.vpnurlpolicy module \u2013 Configuration for VPN url policy resource.": [[839, "netscaler-adc-vpnurlpolicy-module-configuration-for-vpn-url-policy-resource"]], "netscaler.adc.vpnvserver_aaapreauthenticationpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and aaapreauthenticationpolicy resources": [[840, "netscaler-adc-vpnvserver-aaapreauthenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-aaapreauthenticationpolicy-resources"]], "netscaler.adc.vpnvserver_analyticsprofile_binding module \u2013 Binding Resource definition for describing association between vpnvserver and analyticsprofile resources": [[841, "netscaler-adc-vpnvserver-analyticsprofile-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-analyticsprofile-resources"]], "netscaler.adc.vpnvserver_appcontroller_binding module \u2013 Binding Resource definition for describing association between vpnvserver and appcontroller resources": [[842, "netscaler-adc-vpnvserver-appcontroller-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-appcontroller-resources"]], "netscaler.adc.vpnvserver_appflowpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and appflowpolicy resources": [[843, "netscaler-adc-vpnvserver-appflowpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-appflowpolicy-resources"]], "netscaler.adc.vpnvserver_auditnslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and auditnslogpolicy resources": [[844, "netscaler-adc-vpnvserver-auditnslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-auditnslogpolicy-resources"]], "netscaler.adc.vpnvserver_auditsyslogpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and auditsyslogpolicy resources": [[845, "netscaler-adc-vpnvserver-auditsyslogpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-auditsyslogpolicy-resources"]], "netscaler.adc.vpnvserver_authenticationcertpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationcertpolicy resources": [[846, "netscaler-adc-vpnvserver-authenticationcertpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationcertpolicy-resources"]], "netscaler.adc.vpnvserver_authenticationdfapolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationdfapolicy resources": [[847, "netscaler-adc-vpnvserver-authenticationdfapolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationdfapolicy-resources"]], "netscaler.adc.vpnvserver_authenticationldappolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationldappolicy resources": [[848, "netscaler-adc-vpnvserver-authenticationldappolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationldappolicy-resources"]], "netscaler.adc.vpnvserver_authenticationlocalpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationlocalpolicy resources": [[849, "netscaler-adc-vpnvserver-authenticationlocalpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationlocalpolicy-resources"]], "netscaler.adc.vpnvserver_authenticationloginschemapolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationloginschemapolicy resources": [[850, "netscaler-adc-vpnvserver-authenticationloginschemapolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationloginschemapolicy-resources"]], "netscaler.adc.vpnvserver_authenticationnegotiatepolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationnegotiatepolicy resources": [[851, "netscaler-adc-vpnvserver-authenticationnegotiatepolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationnegotiatepolicy-resources"]], "netscaler.adc.vpnvserver_authenticationoauthidppolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationoauthidppolicy resources": [[852, "netscaler-adc-vpnvserver-authenticationoauthidppolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationoauthidppolicy-resources"]], "netscaler.adc.vpnvserver_authenticationpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationpolicy resources": [[853, "netscaler-adc-vpnvserver-authenticationpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationpolicy-resources"]], "netscaler.adc.vpnvserver_authenticationradiuspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationradiuspolicy resources": [[854, "netscaler-adc-vpnvserver-authenticationradiuspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationradiuspolicy-resources"]], "netscaler.adc.vpnvserver_authenticationsamlidppolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationsamlidppolicy resources": [[855, "netscaler-adc-vpnvserver-authenticationsamlidppolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationsamlidppolicy-resources"]], "netscaler.adc.vpnvserver_authenticationsamlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationsamlpolicy resources": [[856, "netscaler-adc-vpnvserver-authenticationsamlpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationsamlpolicy-resources"]], "netscaler.adc.vpnvserver_authenticationtacacspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationtacacspolicy resources": [[857, "netscaler-adc-vpnvserver-authenticationtacacspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationtacacspolicy-resources"]], "netscaler.adc.vpnvserver_authenticationwebauthpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and authenticationwebauthpolicy resources": [[858, "netscaler-adc-vpnvserver-authenticationwebauthpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-authenticationwebauthpolicy-resources"]], "netscaler.adc.vpnvserver_cachepolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and cachepolicy resources": [[859, "netscaler-adc-vpnvserver-cachepolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-cachepolicy-resources"]], "netscaler.adc.vpnvserver_cspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and cspolicy resources": [[860, "netscaler-adc-vpnvserver-cspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-cspolicy-resources"]], "netscaler.adc.vpnvserver_feopolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and feopolicy resources": [[861, "netscaler-adc-vpnvserver-feopolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-feopolicy-resources"]], "netscaler.adc.vpnvserver_icapolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and icapolicy resources": [[862, "netscaler-adc-vpnvserver-icapolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-icapolicy-resources"]], "netscaler.adc.vpnvserver_intranetip6_binding module \u2013 Binding Resource definition for describing association between vpnvserver and intranetip6 resources": [[863, "netscaler-adc-vpnvserver-intranetip6-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-intranetip6-resources"]], "netscaler.adc.vpnvserver_intranetip_binding module \u2013 Binding Resource definition for describing association between vpnvserver and intranetip resources": [[864, "netscaler-adc-vpnvserver-intranetip-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-intranetip-resources"]], "netscaler.adc.vpnvserver module \u2013 Configuration for VPN virtual server resource.": [[865, "netscaler-adc-vpnvserver-module-configuration-for-vpn-virtual-server-resource"]], "netscaler.adc.vpnvserver_responderpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and responderpolicy resources": [[866, "netscaler-adc-vpnvserver-responderpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-responderpolicy-resources"]], "netscaler.adc.vpnvserver_rewritepolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and rewritepolicy resources": [[867, "netscaler-adc-vpnvserver-rewritepolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-rewritepolicy-resources"]], "netscaler.adc.vpnvserver_sharefileserver_binding module \u2013 Binding Resource definition for describing association between vpnvserver and sharefileserver resources": [[868, "netscaler-adc-vpnvserver-sharefileserver-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-sharefileserver-resources"]], "netscaler.adc.vpnvserver_staserver_binding module \u2013 Binding Resource definition for describing association between vpnvserver and staserver resources": [[869, "netscaler-adc-vpnvserver-staserver-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-staserver-resources"]], "netscaler.adc.vpnvserver_vpnclientlessaccesspolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnclientlessaccesspolicy resources": [[870, "netscaler-adc-vpnvserver-vpnclientlessaccesspolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnclientlessaccesspolicy-resources"]], "netscaler.adc.vpnvserver_vpnepaprofile_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnepaprofile resources": [[871, "netscaler-adc-vpnvserver-vpnepaprofile-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnepaprofile-resources"]], "netscaler.adc.vpnvserver_vpneula_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpneula resources": [[872, "netscaler-adc-vpnvserver-vpneula-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpneula-resources"]], "netscaler.adc.vpnvserver_vpnintranetapplication_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnintranetapplication resources": [[873, "netscaler-adc-vpnvserver-vpnintranetapplication-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnintranetapplication-resources"]], "netscaler.adc.vpnvserver_vpnnexthopserver_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnnexthopserver resources": [[874, "netscaler-adc-vpnvserver-vpnnexthopserver-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnnexthopserver-resources"]], "netscaler.adc.vpnvserver_vpnportaltheme_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnportaltheme resources": [[875, "netscaler-adc-vpnvserver-vpnportaltheme-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnportaltheme-resources"]], "netscaler.adc.vpnvserver_vpnsessionpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnsessionpolicy resources": [[876, "netscaler-adc-vpnvserver-vpnsessionpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnsessionpolicy-resources"]], "netscaler.adc.vpnvserver_vpntrafficpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpntrafficpolicy resources": [[877, "netscaler-adc-vpnvserver-vpntrafficpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpntrafficpolicy-resources"]], "netscaler.adc.vpnvserver_vpnurl_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnurl resources": [[878, "netscaler-adc-vpnvserver-vpnurl-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnurl-resources"]], "netscaler.adc.vpnvserver_vpnurlpolicy_binding module \u2013 Binding Resource definition for describing association between vpnvserver and vpnurlpolicy resources": [[879, "netscaler-adc-vpnvserver-vpnurlpolicy-binding-module-binding-resource-definition-for-describing-association-between-vpnvserver-and-vpnurlpolicy-resources"]], "netscaler.adc.vrid6_channel_binding module \u2013 Binding Resource definition for describing association between vrid6 and channel resources": [[880, "netscaler-adc-vrid6-channel-binding-module-binding-resource-definition-for-describing-association-between-vrid6-and-channel-resources"]], "netscaler.adc.vrid6_interface_binding module \u2013 Binding Resource definition for describing association between vrid6 and interface resources": [[881, "netscaler-adc-vrid6-interface-binding-module-binding-resource-definition-for-describing-association-between-vrid6-and-interface-resources"]], "netscaler.adc.vrid6 module \u2013 Configuration for Virtual Router ID for IPv6 resource.": [[882, "netscaler-adc-vrid6-module-configuration-for-virtual-router-id-for-ipv6-resource"]], "netscaler.adc.vrid6_trackinterface_binding module \u2013 Binding Resource definition for describing association between vrid6 and trackinterface resources": [[883, "netscaler-adc-vrid6-trackinterface-binding-module-binding-resource-definition-for-describing-association-between-vrid6-and-trackinterface-resources"]], "netscaler.adc.vrid_channel_binding module \u2013 Binding Resource definition for describing association between vrid and channel resources": [[884, "netscaler-adc-vrid-channel-binding-module-binding-resource-definition-for-describing-association-between-vrid-and-channel-resources"]], "netscaler.adc.vrid_interface_binding module \u2013 Binding Resource definition for describing association between vrid and interface resources": [[885, "netscaler-adc-vrid-interface-binding-module-binding-resource-definition-for-describing-association-between-vrid-and-interface-resources"]], "netscaler.adc.vrid module \u2013 Configuration for Virtual Router ID resource.": [[886, "netscaler-adc-vrid-module-configuration-for-virtual-router-id-resource"]], "netscaler.adc.vrid_trackinterface_binding module \u2013 Binding Resource definition for describing association between vrid and trackinterface resources": [[887, "netscaler-adc-vrid-trackinterface-binding-module-binding-resource-definition-for-describing-association-between-vrid-and-trackinterface-resources"]], "netscaler.adc.vridparam module \u2013 Configuration for VR ID parameter resource.": [[888, "netscaler-adc-vridparam-module-configuration-for-vr-id-parameter-resource"]], "netscaler.adc.vserver module \u2013 Configuration for virtual server resource.": [[889, "netscaler-adc-vserver-module-configuration-for-virtual-server-resource"]], "netscaler.adc.vxlan module \u2013 Configuration for \u201cVXLAN\u201d resource.": [[890, "netscaler-adc-vxlan-module-configuration-for-vxlan-resource"]], "netscaler.adc.vxlan_nsip6_binding module \u2013 Binding Resource definition for describing association between vxlan and nsip6 resources": [[891, "netscaler-adc-vxlan-nsip6-binding-module-binding-resource-definition-for-describing-association-between-vxlan-and-nsip6-resources"]], "netscaler.adc.vxlan_nsip_binding module \u2013 Binding Resource definition for describing association between vxlan and nsip resources": [[892, "netscaler-adc-vxlan-nsip-binding-module-binding-resource-definition-for-describing-association-between-vxlan-and-nsip-resources"]], "netscaler.adc.vxlan_srcip_binding module \u2013 Binding Resource definition for describing association between vxlan and srcip resources": [[893, "netscaler-adc-vxlan-srcip-binding-module-binding-resource-definition-for-describing-association-between-vxlan-and-srcip-resources"]], "netscaler.adc.vxlanvlanmap module \u2013 Configuration for vxlan vlan mapping resource.": [[894, "netscaler-adc-vxlanvlanmap-module-configuration-for-vxlan-vlan-mapping-resource"]], "netscaler.adc.vxlanvlanmap_vxlan_binding module \u2013 Binding Resource definition for describing association between vxlanvlanmap and vxlan resources": [[895, "netscaler-adc-vxlanvlanmap-vxlan-binding-module-binding-resource-definition-for-describing-association-between-vxlanvlanmap-and-vxlan-resources"]], "Collections in the Netscaler Namespace": [[896, "collections-in-the-netscaler-namespace"]], "Welcome to my Ansible collection documentation": [[897, "welcome-to-my-ansible-collection-documentation"]], "Collections:": [[897, null]], "Plugin indexes:": [[897, null]], "Reference indexes:": [[897, null]]}, "indexentries": {}}) \ No newline at end of file diff --git a/examples/aaaparameter.yaml b/examples/aaaparameter.yaml index ce982149..52898953 100644 --- a/examples/aaaparameter.yaml +++ b/examples/aaaparameter.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | aaaparameter diff --git a/examples/appflowparam.yaml b/examples/appflowparam.yaml index 450699a4..7a484339 100644 --- a/examples/appflowparam.yaml +++ b/examples/appflowparam.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | appflowparam diff --git a/examples/appfwjsoncontenttype.yaml b/examples/appfwjsoncontenttype.yaml index de65603d..480f0eb8 100644 --- a/examples/appfwjsoncontenttype.yaml +++ b/examples/appfwjsoncontenttype.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | appfwJSONContentType diff --git a/examples/appfwmultipartformcontenttype.yaml b/examples/appfwmultipartformcontenttype.yaml index a6554dd4..b9ae18f0 100644 --- a/examples/appfwmultipartformcontenttype.yaml +++ b/examples/appfwmultipartformcontenttype.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | appfwmultipartFormContentType diff --git a/examples/appfwurlencodedformcontenttype.yaml b/examples/appfwurlencodedformcontenttype.yaml index 53c4ffe1..2b155347 100644 --- a/examples/appfwurlencodedformcontenttype.yaml +++ b/examples/appfwurlencodedformcontenttype.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | appfwurlEncodedFormContentType diff --git a/examples/appfwxmlcontenttype.yaml b/examples/appfwxmlcontenttype.yaml index 6df4ef41..a9b9b26c 100644 --- a/examples/appfwxmlcontenttype.yaml +++ b/examples/appfwxmlcontenttype.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | appfwXMLContentType diff --git a/examples/basic-content-switching.yaml b/examples/basic-content-switching.yaml index 2dcdb881..19b75e6c 100644 --- a/examples/basic-content-switching.yaml +++ b/examples/basic-content-switching.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook | Generated by nscli_to_ansible_playbook.py - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Playbook | snip @@ -7,7 +7,7 @@ netscaler.adc.nsip: state: present - ipaddress: 10.222.74.185 + ipaddress: 10.10.10.185 netmask: 255.255.255.192 type: SNIP @@ -17,7 +17,7 @@ state: present name: svc-red-server - ipaddress: 10.106.210.15 + ipaddress: 10.10.10.15 servicetype: HTTP port: 80 @@ -27,7 +27,7 @@ state: present name: svc-green-server - ipaddress: 10.222.74.166 + ipaddress: 10.10.10.166 servicetype: HTTP port: 80 @@ -116,7 +116,7 @@ name: demo-csvserver servicetype: HTTP - ipv46: 10.222.74.150 + ipv46: 10.10.10.150 port: 80 csvserver_cspolicy_binding: diff --git a/examples/cachecontentgroup.yaml b/examples/cachecontentgroup.yaml index a21115a9..dfbf02f5 100644 --- a/examples/cachecontentgroup.yaml +++ b/examples/cachecontentgroup.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | cachecontentgroup diff --git a/examples/cacheparameter.yaml b/examples/cacheparameter.yaml index 52808ded..8a2c7131 100644 --- a/examples/cacheparameter.yaml +++ b/examples/cacheparameter.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | cacheparameter diff --git a/examples/cachepolicy.yaml b/examples/cachepolicy.yaml index 2c728d98..b7fae2fd 100644 --- a/examples/cachepolicy.yaml +++ b/examples/cachepolicy.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | cachepolicy diff --git a/examples/cachepolicylabel.yaml b/examples/cachepolicylabel.yaml index 26bb23d1..04adcf72 100644 --- a/examples/cachepolicylabel.yaml +++ b/examples/cachepolicylabel.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | cachepolicylabel diff --git a/examples/callhome.yaml b/examples/callhome.yaml index 8de8ef91..fe819235 100644 --- a/examples/callhome.yaml +++ b/examples/callhome.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | callhome diff --git a/examples/channel.yaml b/examples/channel.yaml index 5535a8b2..66453a27 100644 --- a/examples/channel.yaml +++ b/examples/channel.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | channel diff --git a/examples/csaction.yaml b/examples/csaction.yaml index 7aadb7ae..59b78bf0 100644 --- a/examples/csaction.yaml +++ b/examples/csaction.yaml @@ -1,7 +1,7 @@ --- - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false diff --git a/examples/csvserver.yaml b/examples/csvserver.yaml index e97624df..d119ab07 100644 --- a/examples/csvserver.yaml +++ b/examples/csvserver.yaml @@ -1,7 +1,7 @@ --- - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false diff --git a/examples/dnsaddrec.yaml b/examples/dnsaddrec.yaml index bc2cfa6f..70ed4161 100644 --- a/examples/dnsaddrec.yaml +++ b/examples/dnsaddrec.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | dnsaddRec diff --git a/examples/dnsnsrec.yaml b/examples/dnsnsrec.yaml index 3c5743a7..4b6d1e87 100644 --- a/examples/dnsnsrec.yaml +++ b/examples/dnsnsrec.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | dnsnsRec diff --git a/examples/hanode.yaml b/examples/hanode.yaml index 56b15941..e87fc285 100644 --- a/examples/hanode.yaml +++ b/examples/hanode.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | HAnode @@ -7,4 +7,4 @@ netscaler.adc.hanode: state: present id: 1 - ipaddress: 10.222.74.141 + ipaddress: 10.10.10.141 diff --git a/examples/ip6tunnelparam.yaml b/examples/ip6tunnelparam.yaml index 6dc3b297..50beb9bf 100644 --- a/examples/ip6tunnelparam.yaml +++ b/examples/ip6tunnelparam.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | ip6TunnelParam diff --git a/examples/ipset.yaml b/examples/ipset.yaml index 76ad94be..6f83cfd0 100644 --- a/examples/ipset.yaml +++ b/examples/ipset.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | ipset diff --git a/examples/l3param.yaml b/examples/l3param.yaml new file mode 100644 index 00000000..116a5833 --- /dev/null +++ b/examples/l3param.yaml @@ -0,0 +1,17 @@ +--- +- name: Sample Task + hosts: localhost + + gather_facts: false + + tasks: + - name: Sample task | set l3param + delegate_to: localhost + netscaler.adc.l3param: + state: present + acllogtime: 3000 + - name: Sample task | unset l3param + delegate_to: localhost + netscaler.adc.l3param: + state: absent # absent for l3param calls unset action + acllogtime: "true" diff --git a/examples/lacp.yaml b/examples/lacp.yaml index 7e8dfdd3..8e11ebf4 100644 --- a/examples/lacp.yaml +++ b/examples/lacp.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | lacp diff --git a/examples/lbmonitor.yaml b/examples/lbmonitor.yaml index dca19f29..a60d7f29 100644 --- a/examples/lbmonitor.yaml +++ b/examples/lbmonitor.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | lbmonitor @@ -25,3 +25,12 @@ units3: MIN resptimeout: 4 downtime: 5 + - name: Sample Task | lbmonitor | 3 + delegate_to: localhost + tags: test + netscaler.adc.lbmonitor: + state: present + monitorname: test-monitor1 + type: TCP + interval: 15 + retries: 20 diff --git a/examples/lbparameter.yaml b/examples/lbparameter.yaml index 455f825e..62d5b852 100644 --- a/examples/lbparameter.yaml +++ b/examples/lbparameter.yaml @@ -1,7 +1,7 @@ --- - name: Sample Task - hosts: demo_netscalers + hosts: localhost gather_facts: false diff --git a/examples/lbvserver.yaml b/examples/lbvserver.yaml index 758c1d8a..d370f3b7 100644 --- a/examples/lbvserver.yaml +++ b/examples/lbvserver.yaml @@ -1,7 +1,7 @@ --- - name: Simple LBVserver playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false @@ -19,7 +19,7 @@ state: present name: s1 - ipaddress: 10.222.74.181 + ipaddress: 10.10.10.181 servicetype: HTTP port: 80 @@ -65,7 +65,7 @@ # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable - state: enabled + state: present name: test_lbvser servicetype: HTTP diff --git a/examples/lbvserver_service_binding.yaml b/examples/lbvserver_service_binding.yaml index d77b5d0f..46f69ab0 100644 --- a/examples/lbvserver_service_binding.yaml +++ b/examples/lbvserver_service_binding.yaml @@ -1,7 +1,7 @@ --- - name: Simple lbvserver_service_binding playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false @@ -16,7 +16,7 @@ # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable - state: present + state: absent name: test_lbvser servicename: s1 diff --git a/examples/locationfile.yaml b/examples/locationfile.yaml new file mode 100644 index 00000000..e23f3835 --- /dev/null +++ b/examples/locationfile.yaml @@ -0,0 +1,11 @@ +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | sslcert + delegate_to: localhost + netscaler.adc.locationfile: + state: imported + + locationfile: my_file + src: local:my_location_file diff --git a/examples/nd6ravariables.yaml b/examples/nd6ravariables.yaml index b67cddc8..2e69d58b 100644 --- a/examples/nd6ravariables.yaml +++ b/examples/nd6ravariables.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | nd6RAvariables diff --git a/examples/netprofile.yaml b/examples/netprofile.yaml index e7549ba3..a68a86f6 100644 --- a/examples/netprofile.yaml +++ b/examples/netprofile.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | netProfile diff --git a/examples/nsconfig.yaml b/examples/nsconfig.yaml index e2399031..242e09ac 100644 --- a/examples/nsconfig.yaml +++ b/examples/nsconfig.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | nsconfig diff --git a/examples/nsdiameter.yaml b/examples/nsdiameter.yaml index 3f7e4ddf..6040cd9d 100644 --- a/examples/nsdiameter.yaml +++ b/examples/nsdiameter.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | nsdiameter diff --git a/examples/nsfeature.yaml b/examples/nsfeature.yaml index 283a3059..e8956c65 100644 --- a/examples/nsfeature.yaml +++ b/examples/nsfeature.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | nsfeature diff --git a/examples/nshostname.yaml b/examples/nshostname.yaml index 1afac32c..9136ce79 100644 --- a/examples/nshostname.yaml +++ b/examples/nshostname.yaml @@ -1,9 +1,9 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | nshostName delegate_to: localhost netscaler.adc.nshostname: state: present - hostname: HA-NetScaler-Pair + hostname: ansible-test diff --git a/examples/nshttpprofile.yaml b/examples/nshttpprofile.yaml index 90e05d42..64784b67 100644 --- a/examples/nshttpprofile.yaml +++ b/examples/nshttpprofile.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | nshttpProfile diff --git a/examples/nsip.yaml b/examples/nsip.yaml index 8a45031f..590121ce 100644 --- a/examples/nsip.yaml +++ b/examples/nsip.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | nsip diff --git a/examples/nsip6.yaml b/examples/nsip6.yaml index d32cad12..c1e0d5c5 100644 --- a/examples/nsip6.yaml +++ b/examples/nsip6.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | nsip6 diff --git a/examples/nsparam.yaml b/examples/nsparam.yaml index d32de0cd..34cebba8 100644 --- a/examples/nsparam.yaml +++ b/examples/nsparam.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | nsparam diff --git a/examples/nsspparams.yaml b/examples/nsspparams.yaml index efc96f3b..7032514e 100644 --- a/examples/nsspparams.yaml +++ b/examples/nsspparams.yaml @@ -1,7 +1,7 @@ --- - name: Sample Task - hosts: demo_netscalers + hosts: localhost gather_facts: false diff --git a/examples/nstcpprofile.yaml b/examples/nstcpprofile.yaml index b2ca3a7e..e4f413f3 100644 --- a/examples/nstcpprofile.yaml +++ b/examples/nstcpprofile.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | nstcpProfile diff --git a/examples/nsvpxparam.yaml b/examples/nsvpxparam.yaml index 5cee9a9d..9864191b 100644 --- a/examples/nsvpxparam.yaml +++ b/examples/nsvpxparam.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | nsvpxparam diff --git a/examples/nsweblogparam.yaml b/examples/nsweblogparam.yaml index cb6bb412..f3cf460d 100644 --- a/examples/nsweblogparam.yaml +++ b/examples/nsweblogparam.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | nsweblogparam diff --git a/examples/password_change_first_boot.yaml b/examples/password_change_first_boot.yaml index 20d52a98..1a85861b 100644 --- a/examples/password_change_first_boot.yaml +++ b/examples/password_change_first_boot.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook | Change password on first boot - hosts: demo_netscalers + hosts: localhost gather_facts: false diff --git a/examples/password_change_for_already_logged_in_user.yaml b/examples/password_change_for_already_logged_in_user.yaml index 1e13f310..a66b216d 100644 --- a/examples/password_change_for_already_logged_in_user.yaml +++ b/examples/password_change_for_already_logged_in_user.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook | Change password for already logged in user - hosts: demo_netscalers + hosts: localhost gather_facts: false diff --git a/examples/route.yaml b/examples/route.yaml index cb4e6d85..fbe2e9b3 100644 --- a/examples/route.yaml +++ b/examples/route.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | route diff --git a/examples/rsskeytype.yaml b/examples/rsskeytype.yaml index 771a523d..86069593 100644 --- a/examples/rsskeytype.yaml +++ b/examples/rsskeytype.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | rsskeytype diff --git a/examples/server.yaml b/examples/server.yaml index 236d25c7..23a9f3de 100644 --- a/examples/server.yaml +++ b/examples/server.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | server @@ -8,3 +8,10 @@ state: present name: 10.10.10.10 ipaddress: 10.10.10.10 + - name: Sample Task | server 2 + delegate_to: localhost + tags: test + netscaler.adc.server: + state: present + domain: test.ap-southeast-1.example.com + name: test.ap-southeast-1.example.com diff --git a/examples/service.yaml b/examples/service.yaml index d9438e55..d699fe50 100644 --- a/examples/service.yaml +++ b/examples/service.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | service @@ -10,3 +10,39 @@ servicetype: HTTP ipaddress: 172.18.0.4 port: 5000 + - name: Sample Task | ipset-001 + delegate_to: localhost + netscaler.adc.ipset: + state: present + name: ipset-001 + - name: Sample Task | netProfile + delegate_to: localhost + netscaler.adc.netprofile: + state: present + name: test-netprofile + srcip: ipset-001 + mbf: DISABLED + - name: Sample Task | lbmonitor | 3 + delegate_to: localhost + tags: test + netscaler.adc.lbmonitor: + state: present + monitorname: test-monitor + type: TCP + interval: 15 + retries: 20 + - name: Setup services + delegate_to: localhost + tags: test + netscaler.adc.service: + state: present + name: 10.123.123.123-tcp-12345 + servicetype: TCP + ipaddress: 10.123.123.123 + port: 12345 + healthmonitor: "NO" + netprofile: test-netprofile + service_lbmonitor_binding: + binding_members: + - monitor_name: test-monitor + name: 10.123.123.123-tcp-12345 diff --git a/examples/servicegroup.yaml b/examples/servicegroup.yaml new file mode 100644 index 00000000..3f5b969c --- /dev/null +++ b/examples/servicegroup.yaml @@ -0,0 +1,25 @@ +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Setup servers + delegate_to: localhost + netscaler.adc.server: + state: present + name: foo.example.com + domain: foo.example.com + + - name: Setup servicegroups + delegate_to: localhost + tags: test + netscaler.adc.servicegroup: + state: absent + servicegroupname: test1-1 + servicetype: TCP + autoscale: DNS + healthmonitor: "YES" + servicegroup_servicegroupmember_binding: + binding_members: + - servername: foo.example.com + port: 443 + servicegroupname: test1-1 diff --git a/examples/sessionid_based_authentication_via_login_logout.yaml b/examples/sessionid_based_authentication_via_login_logout.yaml index 7027802e..b0523c6a 100644 --- a/examples/sessionid_based_authentication_via_login_logout.yaml +++ b/examples/sessionid_based_authentication_via_login_logout.yaml @@ -1,6 +1,6 @@ --- - name: Sample login and logout playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false @@ -14,8 +14,8 @@ # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable - username: nsroot - password: verysecretpassword + username: "{{ lookup('env', 'NETSCALER_NITRO_USER') }}" + password: "{{ lookup('env', 'NETSCALER_NITRO_PASS') }}" - name: Print login sessionid ansible.builtin.debug: @@ -36,6 +36,20 @@ netmask: 255.255.255.192 type: VIP + - name: Sample Task | nsip + delegate_to: localhost + netscaler.adc.nsip: + nitro_auth_token: "{{ login_result.sessionid }}" # This can also be given via NETSCALER_NITRO_AUTH_TOKEN environment variable + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: absent + + ipaddress: 4.4.4.4 + netmask: 255.255.255.192 + type: VIP - name: Sample Task | logout delegate_to: localhost netscaler.adc.logout: diff --git a/examples/snmpgroup.yaml b/examples/snmpgroup.yaml index b747ba76..08218f6e 100644 --- a/examples/snmpgroup.yaml +++ b/examples/snmpgroup.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | snmpgroup diff --git a/examples/snmptrap.yaml b/examples/snmptrap.yaml index 7ab5431a..a09262d1 100644 --- a/examples/snmptrap.yaml +++ b/examples/snmptrap.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | snmptrap diff --git a/examples/snmpuser.yaml b/examples/snmpuser.yaml index c6be7b2a..f96baba6 100644 --- a/examples/snmpuser.yaml +++ b/examples/snmpuser.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | snmpuser diff --git a/examples/snmpview.yaml b/examples/snmpview.yaml index a84b729d..d88c7195 100644 --- a/examples/snmpview.yaml +++ b/examples/snmpview.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | snmpview diff --git a/examples/sslcert.yaml b/examples/sslcert.yaml new file mode 100644 index 00000000..92599f1a --- /dev/null +++ b/examples/sslcert.yaml @@ -0,0 +1,20 @@ +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | sslcert + delegate_to: localhost + netscaler.adc.sslcert: + state: created + + certfile: test1-sni.crt + reqfile: test1-sni.csr + certtype: SRVR_CERT + keyform: PEM + days: 1480 + certform: PEM + cacert: ns-root.cert + cacertform: PEM + cakey: ns-root.key + cakeyform: PEM + caserial: ns-root.srl diff --git a/examples/sslcertfile.yaml b/examples/sslcertfile.yaml new file mode 100644 index 00000000..999936e0 --- /dev/null +++ b/examples/sslcertfile.yaml @@ -0,0 +1,20 @@ +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | import sslcertfile + delegate_to: localhost + netscaler.adc.sslcertfile: + state: imported + + name: ansible-test.crt + src: http://10.06.10.10:8000/test-certfile.crt + # src: local:test-certfile.crt # `local:` means `/var/tmp/` in netscaler + - name: Sample Task | remove sslcertfile + delegate_to: localhost + netscaler.adc.sslcertfile: + state: absent + + name: ansible-test.crt + src: http://10.10.10.10:8000/test-certfile.crt + # src: local:test-certfile.crt # `local:` means `/var/tmp/` in netscaler diff --git a/examples/sslcertkey.yaml b/examples/sslcertkey.yaml index ba6f1cdf..73556074 100644 --- a/examples/sslcertkey.yaml +++ b/examples/sslcertkey.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | sslcertKey diff --git a/examples/sslservice.yaml b/examples/sslservice.yaml index d6d4c285..f9859bd0 100644 --- a/examples/sslservice.yaml +++ b/examples/sslservice.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | sslservice diff --git a/examples/subscribergxinterface.yaml b/examples/subscribergxinterface.yaml index 69c01c98..26a2e187 100644 --- a/examples/subscribergxinterface.yaml +++ b/examples/subscribergxinterface.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | subscribergxInterface diff --git a/examples/systemgroup.yaml b/examples/systemgroup.yaml index df819f09..1a93ec94 100644 --- a/examples/systemgroup.yaml +++ b/examples/systemgroup.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | systemgroup diff --git a/examples/systemparameter.yaml b/examples/systemparameter.yaml index 3e39a7e9..a24a3a0f 100644 --- a/examples/systemparameter.yaml +++ b/examples/systemparameter.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | systemparameter diff --git a/examples/systemuser.yaml b/examples/systemuser.yaml index 298565c2..6c4f8e98 100644 --- a/examples/systemuser.yaml +++ b/examples/systemuser.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | systemuser diff --git a/examples/videooptimizationparameter.yaml b/examples/videooptimizationparameter.yaml index 3a11d2d7..6940405b 100644 --- a/examples/videooptimizationparameter.yaml +++ b/examples/videooptimizationparameter.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | videooptimizationparameter diff --git a/examples/vlan.yaml b/examples/vlan.yaml index 17fef327..deb630bb 100644 --- a/examples/vlan.yaml +++ b/examples/vlan.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | vlan diff --git a/examples/vpnparameter.yaml b/examples/vpnparameter.yaml index 349ed8d1..7f17038b 100644 --- a/examples/vpnparameter.yaml +++ b/examples/vpnparameter.yaml @@ -1,5 +1,5 @@ - name: Sample Playbook - hosts: demo_netscalers + hosts: localhost gather_facts: false tasks: - name: Sample Task | vpnparameter diff --git a/features_v2.md b/features_v2.md index 18fd6682..560cac04 100644 --- a/features_v2.md +++ b/features_v2.md @@ -14,9 +14,11 @@ The `netscaler.adc` collection supports 4 modes of operation. | `absent` | Resource will be deleted from the target NetScaler ADC nodes | | `enabled` | Resource will be enalbed on the NetScaler ADC nodes | | `disabled` | Resource will be disabled on the NetScaler ADC nodes | +| `created` | Resource will be created on the NetScaler ADC nodes | +| `imported` | Resource will be imported on the NetScaler ADC nodes | +| `switched` | TBD: Resource will be switched on the NetScaler ADC nodes. Eg: Partition switch | -> NOTE: The `enabled` and `disabled` modes are supported only for the modules that have `enable` and `disable` operations in the NetScaler ADC NITRO API. - +> NOTE: The `enabled`, `disabled`, `created`, `imported`, `switched` modes are supported only for the modules that have `enable`, `disable`, `create`, `import`, `switch` operations in the NetScaler ADC NITRO API. ## `--diff` support @@ -36,8 +38,7 @@ The `netscaler.adc` collection supports 4 modes of operation. `--check` mode is support for all the modules. - -## in-built bindings support +## In-built bindings support The `netscaler.adc` collection provides in-built bindings support for all the modules. diff --git a/galaxy.yml b/galaxy.yml index f1281116..f60f3b90 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -8,7 +8,7 @@ namespace: netscaler name: adc # The version of the collection. Must be compatible with semantic versioning -version: 2.0.3 +version: 2.1.0 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/playbook_anatomy.md b/playbook_anatomy.md index a81cf10f..c796c960 100644 --- a/playbook_anatomy.md +++ b/playbook_anatomy.md @@ -23,7 +23,7 @@ This is how a typical playbook for `netscaler.adc` collection looks like: # Should the module save the config after making the changes. This is optional. Default is false. save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable - state: present # This is the desired state of the resource. The module will make sure that the resource is in this state. Valid values are `present`, `absent`, `enabled`, `disabled`. However, not all modules support all the states. Refer to the module documentation for the supported states. + state: present # This is the desired state of the resource. The module will make sure that the resource is in this state. Valid values are `present`, `absent`, `enabled`, `disabled`, `imported`, `created`. However, not all modules support all the states. Refer to the module documentation for the supported states. # The following are the module parameters. Refer to the module documentation for the list of supported parameters. name: s1 diff --git a/plugins/module_utils/client.py b/plugins/module_utils/client.py index f45cc4d2..f1d35fa7 100644 --- a/plugins/module_utils/client.py +++ b/plugins/module_utils/client.py @@ -52,6 +52,7 @@ def __init__(self, module): self._headers["X-NITRO-USER"] = self._module.params["nitro_user"] self._headers["X-NITRO-PASS"] = self._module.params["nitro_pass"] + @trace def url_builder( self, resource, @@ -170,10 +171,12 @@ def send(self, method, url, data=None): log("DEBUG: Traceback = %s" % traceback.format_exc()) return status_code, {} + @trace def get(self, resource, id=None, args=None, attrs=None, filter=None): url = self.url_builder(resource, id=id, args=args, attrs=attrs, filter=filter) return self.send("GET", url) + @trace def post(self, post_data, resource, action=None): url = self.url_builder(resource, action=action) data = self._module.jsonify(post_data) @@ -184,11 +187,13 @@ def post(self, post_data, resource, action=None): self._headers.pop("Cookie", None) return self.send("POST", url, data) + @trace def put(self, put_data, resource=None, id=None): url = self.url_builder(resource, id=id) data = self._module.jsonify(put_data) return self.send("PUT", url, data) + @trace def delete(self, resource, id=None, args=None): url = self.url_builder(resource, id=id, args=args) return self.send("DELETE", url) diff --git a/plugins/module_utils/common.py b/plugins/module_utils/common.py index 27e725a1..ddaa1b5e 100644 --- a/plugins/module_utils/common.py +++ b/plugins/module_utils/common.py @@ -9,7 +9,11 @@ import re -from .constants import HTTP_RESOURCE_NOT_FOUND, HTTP_SUCCESS_CODES +from .constants import ( + HTTP_RESOURCE_ALREADY_EXISTS, + HTTP_RESOURCE_NOT_FOUND, + HTTP_SUCCESS_CODES, +) from .decorators import trace from .logger import log from .nitro_resource_map import NITRO_RESOURCE_MAP @@ -75,11 +79,12 @@ def is_resource_exists( attrs=attrs, filter=filter, ) + # FIXME: Handle the case where invalid argument caused 599 status code return True if status_code in HTTP_SUCCESS_CODES else False @trace -def _check_create_resource_params(resource_name, resource_module_params): +def _check_create_resource_params(resource_name, resource_module_params, action=None): # check if resource_module_params contains any key other than allowed keys for the resource # check also if resource_module_params contains all the required keys for the resource # if not, return False, err @@ -87,9 +92,18 @@ def _check_create_resource_params(resource_name, resource_module_params): post_data = {} resource_add_keys = NITRO_RESOURCE_MAP[resource_name]["add_payload_keys"] + try: + resource_action_keys = NITRO_RESOURCE_MAP[resource_name]["action_payload_keys"][ + action + ] + except KeyError: + resource_action_keys = [] resource_primary_key = NITRO_RESOURCE_MAP[resource_name]["primary_key"] - if resource_primary_key not in resource_module_params.keys(): + if ( + resource_primary_key + and resource_primary_key not in resource_module_params.keys() + ): err = "ERROR: Primary key `{}` is missing for the resource `{}`".format( resource_primary_key, resource_name ) @@ -101,20 +115,59 @@ def _check_create_resource_params(resource_name, resource_module_params): # TODO: Should we allow non-add keys for the resource? OR should we error out if any non-add key is passed? for key in resource_module_params.keys(): - if key in resource_add_keys: - post_data[key] = resource_module_params[key] - elif resource_name == "service" and key == "ipaddress": - post_data["ip"] = resource_module_params[key] + if not action: + if key in resource_add_keys: + post_data[key] = resource_module_params[key] + elif resource_name == "service" and key == "ipaddress": + post_data["ip"] = resource_module_params[key] + else: + log( + "WARNING: Key `{}` is not allowed for the resource `{}` for CREATE operation. Skipping the key for the operation".format( + key, resource_name + ) + ) else: - log( - "WARNING: Key `{}` is not allowed for the resource `{}` for CREATE operation. Skipping the key for the operation".format( - key, resource_name + if key in resource_action_keys: + post_data[key] = resource_module_params[key] + else: + log( + "WARNING: Key `{}` is not allowed for the resource `{}` for CREATE operation. Skipping the key for the operation".format( + key, resource_name + ) ) - ) return True, None, post_data +@trace +def create_resource_with_action(client, resource_name, resource_module_params, action): + ok, err, post_data = _check_create_resource_params( + resource_name, resource_module_params, action=action + ) + if not ok: + return False, err + + # FIXME: if action=unset, check for idempotency, as of now, unset always leads to changed state + + post_data = {resource_name: post_data} + status_code, response_body = client.post( + post_data=post_data, + resource=resource_name, + action=action, + ) + + if status_code == HTTP_RESOURCE_ALREADY_EXISTS: + response_body.update({"status_code": status_code}) + return True, response_body + + return return_response( + status_code=status_code, + response_body=response_body, + operation="create_resource", + resource_name=resource_name, + ) + + @trace def create_resource(client, resource_name, resource_module_params, action=None): ok, err, post_data = _check_create_resource_params( @@ -215,7 +268,10 @@ def _check_delete_resource_params(resource_name, resource_module_params): resource_primary_key = NITRO_RESOURCE_MAP[resource_name]["primary_key"] - if resource_primary_key not in resource_module_params.keys(): + if ( + resource_primary_key + and resource_primary_key not in resource_module_params.keys() + ): err = "ERROR: Primary key `{}` is missing for the resource `{}`".format( resource_primary_key, resource_name ) @@ -233,6 +289,7 @@ def delete_resource(client, resource_name, resource_module_params): args = {} for arg_key in NITRO_RESOURCE_MAP[resource_name]["delete_arg_keys"]: + log("DEBUG: arg_key: {}".format(arg_key)) # FIXME: after discussion with Nitro team if ( resource_name == "lbvserver_servicegroup_binding" @@ -251,13 +308,19 @@ def delete_resource(client, resource_name, resource_module_params): ) continue - resource_id = resource_module_params[ - NITRO_RESOURCE_MAP[resource_name]["primary_key"] - ] + if NITRO_RESOURCE_MAP[resource_name]["primary_key"]: + resource_id = resource_module_params[ + NITRO_RESOURCE_MAP[resource_name]["primary_key"] + ] + else: + resource_id = None if resource_name.endswith("_binding"): if not is_resource_exists(client, resource_name, resource_id, filter=args): return True, None + elif resource_name in {"sslcertfile"}: + if not is_resource_exists(client, resource_name, resource_id, filter=args): + return True, None else: if not is_resource_exists(client, resource_name, resource_id, args=args): return True, None @@ -436,13 +499,35 @@ def get_supported_operations(resource_name): def get_valid_desired_states(resource_name): desired_states = set() # Read the desired states from the resource map + # All supported operations are + # {'delete', 'change', 'Ping6', 'get-byname', 'enable', 'Switch', 'Force', 'init', 'Traceroute6', 'kill', 'Traceroute', 'add', 'check', 'reset', 'rename', 'convert', 'unset', 'send', 'clear', 'update', 'Reboot', 'unsign', 'Install', 'Ping', 'export', 'save', 'expire', 'get-all', 'flush', 'unlock', 'diff', 'Import', 'disable', 'create', 'sign', 'get', 'apply', 'restore', 'unlink', 'link', 'count', 'join', 'renumber', 'sync'} supported_operations = NITRO_RESOURCE_MAP[resource_name]["_supported_operations"] if "add" in supported_operations or "update" in supported_operations: desired_states.add("present") - if "delete" in supported_operations: + if "delete" in supported_operations or "unset" in supported_operations: desired_states.add("absent") if "enable" in supported_operations: desired_states.add("enabled") if "disable" in supported_operations: desired_states.add("disabled") + if "create" in supported_operations: + desired_states.add("created") + if "import" in supported_operations or "Import" in supported_operations: + desired_states.add("imported") + if "Switch" in supported_operations: + desired_states.add("switched") return desired_states + + +@trace +def is_global_binding(resource_name): + return ( + True + if (resource_name.endswith("_binding") and "global" in resource_name) + else False + ) + + +@trace +def is_singleton_resource(resource_name): + return NITRO_RESOURCE_MAP[resource_name]["singleton"] diff --git a/plugins/module_utils/module_executor.py b/plugins/module_utils/module_executor.py index 29b81477..7ca45b00 100644 --- a/plugins/module_utils/module_executor.py +++ b/plugins/module_utils/module_executor.py @@ -17,6 +17,7 @@ adc_logout, bind_resource, create_resource, + create_resource_with_action, delete_resource, disable_resource, enable_resource, @@ -24,12 +25,15 @@ get_netscaler_version, get_resource, get_valid_desired_states, + is_global_binding, + is_singleton_resource, save_config, unbind_resource, update_resource, ) from .constants import ( ATTRIBUTES_NOT_PRESENT_IN_GET_RESPONSE, + HTTP_RESOURCE_ALREADY_EXISTS, NETSCALER_COMMON_ARGUMENTS, NETSCALER_NO_GET_RESOURCE, ) @@ -172,7 +176,9 @@ def _filter_desired_bindings(self): @trace def _filter_resource_module_params(self): + log("DEBUG: self.module.params: %s" % self.module.params) for k, v in self.module.params.items(): + log("DEBUG: k: %s, v: %s" % (k, v)) if (not k.endswith("_binding")) and ( k in NITRO_RESOURCE_MAP[self.resource_name]["readwrite_arguments"].keys() @@ -386,6 +392,19 @@ def delete_bindings( ) log(msg) continue + + # FIXME: This is a hack to handle `servicegroup_servicegroupmember_binding` resource + # The `ip` and `servername` are mutually exclusive args in the `servicegroup_servicegroupmember_binding` resource + # Reason:{'errorcode': 1092, 'message': 'Arguments cannot both be specified [serverName, IP]', 'severity': 'ERROR'}" + if binding_name == "servicegroup_servicegroupmember_binding": + try: + if ( + deleting_binding["ip"] == "0.0.0.0" + and deleting_binding["servername"] + ): + deleting_binding.pop("ip") + except KeyError: + pass ok, err = unbind_resource( self.client, binding_name=binding_name, @@ -518,6 +537,14 @@ def sync_single_binding(self, binding_name): ) log("DEBUG: Existing `%s` bindings: %s" % (binding_name, existing_bindings)) + # FIXME: This is a hack to handle `servicegroup_servicegroupmember_binding` resource + # In the NITRO API spec, bind_primary_key of `servicegroup_servicegroupmember_binding` resource's wrongly documented as `ip`. + # `ip` and `servername` are the two possible bind_primary_keys for `servicegroup_servicegroupmember_binding` resource. + if binding_name == "servicegroup_servicegroupmember_binding": + for x in desired_binding_members: + if bindprimary_key == "ip" and ("ip" not in x or x["ip"] == ""): + bindprimary_key = "servername" + desired_binding_members_bindprimary_keys = { x[bindprimary_key] for x in desired_binding_members } @@ -559,26 +586,45 @@ def sync_single_binding(self, binding_name): # we will delete the existing bindings. If there are no existing and desired bindings, # we will do nothing. - log("DEBUG: To be deleted bindings: %s" % to_be_deleted_bindings) - log("DEBUG: To be added bindings: %s" % to_be_added_bindings) - log("DEBUG: To be updated bindings: %s" % to_be_updated_bindings) + log("DEBUG: to_be_deleted_bindings bindings: %s" % to_be_deleted_bindings) + log("DEBUG: to_be_added_bindings bindings: %s" % to_be_added_bindings) + log("DEBUG: to_be_updated_bindings bindings: %s" % to_be_updated_bindings) - if to_be_deleted_bindings: - ok, err = self.delete_bindings( + if to_be_added_bindings: + ok, err = self.add_bindings( binding_name=binding_name, bindprimary_key=bindprimary_key, - to_be_deleted_bindings=to_be_deleted_bindings, - existing_bindings=existing_bindings, + to_be_added_bindings=to_be_added_bindings, + desired_bindings=desired_binding_members, ) if not ok: self.return_failure(err) - if to_be_added_bindings: - ok, err = self.add_bindings( + # If there is any default bindings, after adding the custom bindings, the default bindings will be deleted automatically + # Hence GET the existing bindings again and construct the `to_be_deleted_bindings` list + existing_bindings = get_bindings( + self.client, + binding_name=binding_name, + binding_id=self.resource_id, + ) + existing_binding_members_bindprimary_keys = { + x[bindprimary_key] for x in existing_bindings + } + to_be_deleted_bindings = ( + existing_binding_members_bindprimary_keys + - desired_binding_members_bindprimary_keys + ) + log( + "DEBUG: New to_be_deleted_bindings bindings: %s" + % to_be_deleted_bindings + ) + + if to_be_deleted_bindings: + ok, err = self.delete_bindings( binding_name=binding_name, bindprimary_key=bindprimary_key, - to_be_added_bindings=to_be_added_bindings, - desired_bindings=desired_binding_members, + to_be_deleted_bindings=to_be_deleted_bindings, + existing_bindings=existing_bindings, ) if not ok: self.return_failure(err) @@ -737,6 +783,24 @@ def logout(self): msg = "Exception %s: %s" % (type(e), str(e)) self.return_failure(msg) + @trace + def act_on_resource(self, action): + self.module_result["changed"] = True + ok, err = create_resource_with_action( + self.client, + self.resource_name, + self.resource_module_params, + action=action, + ) + if ok: + if ( + "status_code" in err + and err["status_code"] == HTTP_RESOURCE_ALREADY_EXISTS + ): + self.module_result["changed"] = False + else: + self.return_failure(err) + @trace def main(self): try: @@ -758,6 +822,14 @@ def main(self): if "bindings" in NITRO_RESOURCE_MAP[self.resource_name].keys(): self.sync_all_bindings() + elif self.module.params["state"] in {"created", "imported"}: + state_action_map = { + "created": "create", + "imported": "import", + } + self.act_on_resource( + action=state_action_map[self.module.params["state"]] + ) elif self.module.params["state"] in {"absent"}: if self.resource_primary_key: # Bindings @@ -765,11 +837,35 @@ def main(self): self.sync_all_bindings() self.delete() else: - # `primary_key` will not be present for `update-only` resources such as - # `sslparameter`, `lbparameter`, etc. Hence `DELETE` is not supported - # for such resources. - # FIXME: Should we `unset` the resource instead? - pass + # `primary_key` will not be present for + # 1. `update-only` resources such as `sslparameter`, `lbparameter`, etc. Hence `DELETE` is not supported + # FIXME: for such resources. Should we `unset` the resource instead? + # 2. Few other resources -- `appfwlearningdata`, `application`, `bridgetable`, `gslbldnsentry`, `locationfile`, `locationfile6`, `routerdynamicrouting`, `sslcertbundle`, `sslcertfile`, `sslcrlfile`, `ssldhfile`, `sslkeyfile`, `systementitydata` and global bindings + # FIXME: challenge is there is no `primary_key` and in most cases `get_args_keys`. How can we get the exact resource to GET before DELETE for itempotency? + # ASK-SWETHA + + if is_global_binding(self.resource_name): + self.delete() + elif is_singleton_resource(self.resource_name): + if "delete" in self.supported_operations: + self.delete() + elif "unset" in self.supported_operations: + # unset action + self.act_on_resource(action="unset") + else: + msg = ( + "ERROR: `state=absent` is not supported for resource `%s`" + % self.resource_name + ) + self.return_failure(msg) + elif NITRO_RESOURCE_MAP[self.resource_name]["delete_arg_keys"]: + self.delete() + else: + msg = ( + "ERROR: `state=absent` is not supported for resource `%s`" + % self.resource_name + ) + self.return_failure(msg) else: msg = "Unknown state `%s`. Valid states are %s" % ( self.module.params["state"], diff --git a/plugins/module_utils/nitro_resource_map.py b/plugins/module_utils/nitro_resource_map.py index e2644248..9a353dbc 100644 --- a/plugins/module_utils/nitro_resource_map.py +++ b/plugins/module_utils/nitro_resource_map.py @@ -34,6 +34,7 @@ "no_log": True, }, }, + "singleton": False, "update_payload_keys": [], }, "logout": { @@ -48,6 +49,7 @@ "immutable_keys": [], "primary_key": "", "readwrite_arguments": {}, + "singleton": False, "update_payload_keys": [], }, "change_password": { @@ -88,10 +90,14 @@ "no_log": False, }, }, + "singleton": False, "update_payload_keys": [], }, "aaacertparams": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": ["defaultauthenticationgroup", "groupnamefield", "usernamefield"] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -107,6 +113,7 @@ "groupnamefield": {"no_log": False, "type": "str"}, "usernamefield": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "defaultauthenticationgroup", "groupnamefield", @@ -115,6 +122,7 @@ }, "aaaglobal_aaapreauthenticationpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["policy", "priority"], "bindprimary_key": "policy", "delete_arg_keys": ["policy"], @@ -134,10 +142,12 @@ "policy": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "aaaglobal_authenticationnegotiateaction_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["windowsprofile"], "bindprimary_key": "windowsprofile", "delete_arg_keys": ["windowsprofile"], @@ -148,10 +158,12 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"windowsprofile": {"no_log": False, "type": "str"}}, + "singleton": False, "update_payload_keys": [], }, "aaagroup": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["groupname", "weight"], "bindings": [ "aaagroup_aaauser_binding", @@ -372,10 +384,12 @@ "loggedin": {"no_log": False, "type": "bool"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "aaagroup_aaauser_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "groupname", "username"], "bindprimary_key": "username", "delete_arg_keys": ["username"], @@ -390,10 +404,12 @@ "groupname": {"no_log": False, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaagroup_auditnslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupname", @@ -422,15 +438,16 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "aaagroup_auditsyslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupname", @@ -459,15 +476,16 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "aaagroup_authorizationpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupname", @@ -496,15 +514,16 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "aaagroup_intranetip6_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupname", @@ -530,10 +549,12 @@ "intranetip6": {"no_log": False, "type": "str"}, "numaddr": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "aaagroup_intranetip_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupname", @@ -559,10 +580,12 @@ "intranetip": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaagroup_tmsessionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupname", @@ -591,15 +614,16 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "aaagroup_vpnintranetapplication_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupname", @@ -622,10 +646,12 @@ "groupname": {"no_log": False, "type": "str"}, "intranetapplication": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaagroup_vpnsessionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupname", @@ -654,15 +680,16 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "aaagroup_vpntrafficpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupname", @@ -691,15 +718,16 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "aaagroup_vpnurl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "groupname", "urlname"], "bindprimary_key": "urlname", "delete_arg_keys": ["urlname"], @@ -714,10 +742,12 @@ "groupname": {"no_log": False, "type": "str"}, "urlname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaagroup_vpnurlpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupname", @@ -746,11 +776,11 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "aaakcdaccount": { @@ -764,6 +794,17 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "cacert", + "enterpriserealm", + "kcdaccount", + "keytab", + "servicespn", + "usercert", + "userrealm", + ] + }, "add_payload_keys": [ "cacert", "delegateduser", @@ -797,6 +838,7 @@ "usercert": {"no_log": False, "type": "str"}, "userrealm": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "cacert", "delegateduser", @@ -812,6 +854,31 @@ }, "aaaldapparams": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "authtimeout", + "defaultauthenticationgroup", + "groupattrname", + "groupnameidentifier", + "groupsearchattribute", + "groupsearchfilter", + "groupsearchsubattribute", + "ldapbase", + "ldapbinddn", + "ldapbinddnpassword", + "ldaploginname", + "maxnestinglevel", + "nestedgroupextraction", + "passwdchange", + "searchfilter", + "sectype", + "serverip", + "serverport", + "ssonameattribute", + "subattributename", + "svrtype", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -823,7 +890,7 @@ "password_keys": ["ldapbinddnpassword"], "primary_key": "", "readwrite_arguments": { - "authtimeout": {"default": 3, "no_log": False, "type": "float"}, + "authtimeout": {"no_log": False, "type": "float"}, "defaultauthenticationgroup": {"no_log": False, "type": "str"}, "groupattrname": {"no_log": False, "type": "str"}, "groupnameidentifier": {"no_log": False, "type": "str"}, @@ -834,32 +901,30 @@ "ldapbinddn": {"no_log": False, "type": "str"}, "ldapbinddnpassword": {"no_log": True, "type": "str"}, "ldaploginname": {"no_log": False, "type": "str"}, - "maxnestinglevel": {"default": 2, "no_log": False, "type": "float"}, + "maxnestinglevel": {"no_log": False, "type": "float"}, "nestedgroupextraction": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "passwdchange": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "searchfilter": {"no_log": False, "type": "str"}, "sectype": { "choices": ["PLAINTEXT", "SSL", "TLS"], - "default": "TLS", "no_log": False, "type": "str", }, "serverip": {"no_log": False, "type": "str"}, - "serverport": {"default": 389, "no_log": False, "type": "int"}, + "serverport": {"no_log": False, "type": "int"}, "ssonameattribute": {"no_log": False, "type": "str"}, "subattributename": {"no_log": False, "type": "str"}, "svrtype": {"choices": ["AD", "NDS"], "no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "authtimeout", "defaultauthenticationgroup", @@ -886,6 +951,7 @@ }, "aaaotpparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["encryption", "maxotpdevices"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -897,18 +963,39 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "encryption": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, - "maxotpdevices": {"default": 4, "no_log": False, "type": "float"}, + "encryption": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "maxotpdevices": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": ["encryption", "maxotpdevices"], }, "aaaparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "aaadloglevel", + "aaadnatip", + "aaasessionloglevel", + "apitokencache", + "defaultauthtype", + "defaultcspheader", + "dynaddr", + "enableenhancedauthfeedback", + "enablesessionstickiness", + "enablestaticpagecaching", + "ftmode", + "httponlycookie", + "loginencryption", + "maxaaausers", + "maxkbquestions", + "maxloginattempts", + "maxsamldeflatesize", + "persistentloginattempts", + "pwdexpirynotificationdays", + "samesite", + "tokenintrospectioninterval", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -931,7 +1018,6 @@ "NOTICE", "WARNING", ], - "default": "INFORMATIONAL", "no_log": False, "type": "str", }, @@ -952,62 +1038,44 @@ }, "apitokencache": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "defaultauthtype": { "choices": ["CERT", "LDAP", "LOCAL", "RADIUS", "TACACS"], - "default": "LOCAL", "no_log": False, "type": "str", }, "defaultcspheader": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "dynaddr": { - "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, + "dynaddr": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "enableenhancedauthfeedback": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "enablesessionstickiness": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "enablestaticpagecaching": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "failedlogintimeout": {"no_log": False, "type": "float"}, - "ftmode": { - "choices": ["HA", "OFF", "ON"], - "default": "ON", - "no_log": False, - "type": "str", - }, + "ftmode": {"choices": ["HA", "OFF", "ON"], "no_log": False, "type": "str"}, "httponlycookie": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "loginencryption": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -1017,7 +1085,6 @@ "maxsamldeflatesize": {"no_log": False, "type": "float"}, "persistentloginattempts": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -1029,6 +1096,7 @@ }, "tokenintrospectioninterval": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "aaadloglevel", "aaadnatip", @@ -1064,6 +1132,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["defaultepagroup", "deletefiles", "killprocess", "name"] + }, "add_payload_keys": [ "defaultepagroup", "deletefiles", @@ -1091,6 +1162,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "defaultepagroup", "deletefiles", @@ -1101,6 +1173,9 @@ }, "aaapreauthenticationparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": ["deletefiles", "killprocess", "preauthenticationaction", "rule"] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -1121,6 +1196,7 @@ }, "rule": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "deletefiles", "killprocess", @@ -1137,6 +1213,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "reqaction", "rule"], "bindings": [], "bindprimary_key": "", @@ -1152,10 +1229,35 @@ "reqaction": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "reqaction", "rule"], }, "aaaradiusparams": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "accounting", + "authentication", + "authservretry", + "authtimeout", + "callingstationid", + "defaultauthenticationgroup", + "ipattributetype", + "ipvendorid", + "passencoding", + "pwdattributetype", + "pwdvendorid", + "radattributetype", + "radgroupseparator", + "radgroupsprefix", + "radnasid", + "radnasip", + "radvendorid", + "serverip", + "serverport", + "tunnelendpointclientip", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -1170,15 +1272,13 @@ "accounting": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "authentication": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, - "authservretry": {"default": 3, "no_log": False, "type": "float"}, - "authtimeout": {"default": 3, "no_log": False, "type": "float"}, + "authservretry": {"no_log": False, "type": "float"}, + "authtimeout": {"no_log": False, "type": "float"}, "callingstationid": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -1187,7 +1287,6 @@ "ipvendorid": {"no_log": False, "type": "float"}, "passencoding": { "choices": ["chap", "mschapv1", "mschapv2", "pap"], - "default": "mschapv2", "no_log": False, "type": "str", }, @@ -1205,14 +1304,14 @@ }, "radvendorid": {"no_log": False, "type": "float"}, "serverip": {"no_log": False, "type": "str"}, - "serverport": {"default": 1812, "no_log": False, "type": "int"}, + "serverport": {"no_log": False, "type": "int"}, "tunnelendpointclientip": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "accounting", "authentication", @@ -1239,6 +1338,7 @@ }, "aaasession": { "_supported_operations": ["count", "get", "kill"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -1258,6 +1358,7 @@ "sessionkey": {"no_log": False, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaassoprofile": { @@ -1269,6 +1370,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "password", "username"], "bindings": [], "bindprimary_key": "", @@ -1284,10 +1386,24 @@ "password": {"no_log": True, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "password", "username"], }, "aaatacacsparams": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "accounting", + "auditfailedcmds", + "authorization", + "authtimeout", + "defaultauthenticationgroup", + "groupattrname", + "serverip", + "serverport", + "tacacssecret", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -1306,13 +1422,14 @@ "type": "str", }, "authorization": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "authtimeout": {"default": 3, "no_log": False, "type": "float"}, + "authtimeout": {"no_log": False, "type": "float"}, "defaultauthenticationgroup": {"no_log": False, "type": "str"}, "groupattrname": {"no_log": False, "type": "str"}, "serverip": {"no_log": False, "type": "str"}, - "serverport": {"default": 49, "no_log": False, "type": "int"}, + "serverport": {"no_log": False, "type": "int"}, "tacacssecret": {"no_log": True, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "accounting", "auditfailedcmds", @@ -1335,6 +1452,7 @@ "unlock", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["password", "username"], "bindings": [ "aaauser_auditnslogpolicy_binding", @@ -1538,10 +1656,12 @@ "password": {"no_log": True, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["password", "username"], }, "aaauser_auditnslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "policy", @@ -1569,16 +1689,17 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaauser_auditsyslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "policy", @@ -1606,16 +1727,17 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaauser_authorizationpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "policy", @@ -1643,16 +1765,17 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaauser_intranetip6_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "intranetip6", @@ -1678,10 +1801,12 @@ "numaddr": {"no_log": False, "type": "float"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaauser_intranetip_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "intranetip", @@ -1707,10 +1832,12 @@ "netmask": {"no_log": False, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaauser_tmsessionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "policy", @@ -1738,16 +1865,17 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaauser_vpnintranetapplication_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "intranetapplication", @@ -1766,10 +1894,12 @@ "intranetapplication": {"no_log": False, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaauser_vpnsessionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "policy", @@ -1797,16 +1927,17 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaauser_vpntrafficpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "policy", @@ -1834,16 +1965,17 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaauser_vpnurl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "urlname", "username"], "bindprimary_key": "urlname", "delete_arg_keys": ["urlname"], @@ -1858,10 +1990,12 @@ "urlname": {"no_log": False, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "aaauser_vpnurlpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "policy", @@ -1889,16 +2023,17 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["DNS_REQUEST", "ICMP_REQUEST", "REQUEST", "UDP_REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "admparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["admserviceconnect"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -1912,15 +2047,16 @@ "readwrite_arguments": { "admserviceconnect": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", } }, + "singleton": True, "update_payload_keys": ["admserviceconnect"], }, "analyticsglobal_analyticsprofile_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["analyticsprofile"], "bindprimary_key": "analyticsprofile", "delete_arg_keys": ["analyticsprofile"], @@ -1931,6 +2067,7 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"analyticsprofile": {"no_log": False, "type": "str"}}, + "singleton": False, "update_payload_keys": [], }, "analyticsprofile": { @@ -1943,6 +2080,47 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "allhttpheaders", + "analyticsauthtoken", + "analyticsendpointcontenttype", + "analyticsendpointmetadata", + "analyticsendpointurl", + "auditlogs", + "collectors", + "cqareporting", + "events", + "grpcstatus", + "httpauthentication", + "httpclientsidemeasurements", + "httpcontenttype", + "httpcookie", + "httpdomainname", + "httphost", + "httplocation", + "httpmethod", + "httppagetracking", + "httpreferer", + "httpsetcookie", + "httpsetcookie2", + "httpurl", + "httpurlquery", + "httpuseragent", + "httpvia", + "httpxforwardedforheader", + "integratedcache", + "metrics", + "metricsexportfrequency", + "name", + "outputmode", + "schemafile", + "servemode", + "tcpburstreporting", + "type", + "urlcategory", + ] + }, "add_payload_keys": [ "allhttpheaders", "analyticsauthtoken", @@ -1994,7 +2172,6 @@ "readwrite_arguments": { "allhttpheaders": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -2004,161 +2181,131 @@ "analyticsendpointurl": {"no_log": False, "type": "str"}, "auditlogs": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "collectors": {"no_log": False, "type": "str"}, "cqareporting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "events": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "grpcstatus": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpauthentication": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpclientsidemeasurements": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpcontenttype": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpcookie": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpdomainname": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httphost": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httplocation": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpmethod": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httppagetracking": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpreferer": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpsetcookie": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpsetcookie2": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpurl": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpurlquery": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpuseragent": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpvia": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpxforwardedforheader": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "integratedcache": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "metrics": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "metricsexportfrequency": {"default": 30, "no_log": False, "type": "float"}, + "metricsexportfrequency": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, "outputmode": { "choices": ["avro", "influx", "prometheus"], - "default": "avro", "no_log": False, "type": "str", }, "schemafile": {"no_log": False, "type": "str"}, - "servemode": { - "choices": ["Pull", "Push"], - "default": "Push", - "no_log": False, - "type": "str", - }, + "servemode": {"choices": ["Pull", "Push"], "no_log": False, "type": "str"}, "tcpburstreporting": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -2182,11 +2329,11 @@ }, "urlcategory": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "allhttpheaders", "analyticsauthtoken", @@ -2236,6 +2383,7 @@ "get", "get-byname", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["file", "name", "type"], "bindings": [], "bindprimary_key": "", @@ -2251,15 +2399,20 @@ "name": {"no_log": False, "type": "str"}, "type": { "choices": ["GRAPHQL", "OAS", "PROTO"], - "default": "PROTO", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "apispecfile": { "_supported_operations": ["Import", "count", "delete", "get"], + "action_payload_keys": { + "import": ["name", "password", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -2275,10 +2428,12 @@ "password": {"no_log": False, "type": "str"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appalgparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["pptpgreidletimeout"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -2290,8 +2445,9 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "pptpgreidletimeout": {"default": 9000, "no_log": False, "type": "float"} + "pptpgreidletimeout": {"no_log": False, "type": "float"} }, + "singleton": True, "update_payload_keys": ["pptpgreidletimeout"], }, "appflowaction": { @@ -2305,6 +2461,20 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "botinsight", + "ciinsight", + "clientsidemeasurements", + "comment", + "distributionalgorithm", + "name", + "pagetracking", + "securityinsight", + "videoanalytics", + "webinsight", + ] + }, "add_payload_keys": [ "botinsight", "ciinsight", @@ -2348,19 +2518,16 @@ }, "botinsight": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "ciinsight": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "clientsidemeasurements": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -2368,7 +2535,6 @@ "comment": {"no_log": False, "type": "str"}, "distributionalgorithm": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -2377,35 +2543,31 @@ "newname": {"no_log": False, "type": "str"}, "pagetracking": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "securityinsight": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "transactionlog": { "choices": ["ALL", "ANOMALOUS"], - "default": "ALL", "no_log": False, "type": "str", }, "videoanalytics": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "webinsight": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "botinsight", "ciinsight", @@ -2422,6 +2584,7 @@ }, "appflowaction_analyticsprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["analyticsprofile", "name"], "bindprimary_key": "analyticsprofile", "delete_arg_keys": ["analyticsprofile"], @@ -2435,6 +2598,7 @@ "analyticsprofile": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appflowcollector": { @@ -2448,6 +2612,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["ipaddress", "name", "netprofile", "port"]}, "add_payload_keys": ["ipaddress", "name", "netprofile", "port", "transport"], "bindings": [], "bindprimary_key": "", @@ -2466,15 +2631,16 @@ "port": {"no_log": False, "type": "int"}, "transport": { "choices": ["ipfix", "logstream", "rest"], - "default": "ipfix", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": ["ipaddress", "name", "netprofile", "port"], }, "appflowglobal_appflowpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -2508,7 +2674,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -2545,10 +2710,66 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "appflowparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "aaausername", + "analyticsauthtoken", + "appnamerefresh", + "auditlogs", + "cacheinsight", + "clienttrafficonly", + "connectionchaining", + "cqareporting", + "distributedtracing", + "disttracingsamplingrate", + "emailaddress", + "events", + "flowrecordinterval", + "gxsessionreporting", + "httpauthorization", + "httpcontenttype", + "httpcookie", + "httpdomain", + "httphost", + "httplocation", + "httpmethod", + "httpquerywithurl", + "httpreferer", + "httpsetcookie", + "httpsetcookie2", + "httpurl", + "httpuseragent", + "httpvia", + "httpxforwardedfor", + "identifiername", + "identifiersessionname", + "logstreamovernsip", + "lsnlogging", + "metrics", + "observationdomainid", + "observationdomainname", + "observationpointid", + "securityinsightrecordinterval", + "securityinsighttraffic", + "skipcacheredirectionhttptransaction", + "subscriberawareness", + "subscriberidobfuscation", + "subscriberidobfuscationalgo", + "tcpattackcounterinterval", + "templaterefresh", + "timeseriesovernsip", + "udppmtu", + "urlcategory", + "usagerecordinterval", + "videoinsight", + "websaasappusagereporting", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -2562,255 +2783,213 @@ "readwrite_arguments": { "aaausername": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "analyticsauthtoken": {"no_log": True, "type": "str"}, - "appnamerefresh": {"default": 600, "no_log": False, "type": "float"}, + "appnamerefresh": {"no_log": False, "type": "float"}, "auditlogs": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "cacheinsight": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "clienttrafficonly": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "connectionchaining": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "cqareporting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "distributedtracing": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "disttracingsamplingrate": {"no_log": False, "type": "float"}, "emailaddress": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "events": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "flowrecordinterval": {"default": 60, "no_log": False, "type": "float"}, + "flowrecordinterval": {"no_log": False, "type": "float"}, "gxsessionreporting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpauthorization": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpcontenttype": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpcookie": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpdomain": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httphost": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httplocation": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpmethod": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpquerywithurl": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpreferer": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpsetcookie": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpsetcookie2": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpurl": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpuseragent": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpvia": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpxforwardedfor": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "identifiername": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "identifiersessionname": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "logstreamovernsip": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "lsnlogging": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "metrics": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "observationdomainid": {"no_log": False, "type": "float"}, "observationdomainname": {"no_log": False, "type": "str"}, "observationpointid": {"no_log": False, "type": "float"}, - "securityinsightrecordinterval": { - "default": 600, - "no_log": False, - "type": "float", - }, + "securityinsightrecordinterval": {"no_log": False, "type": "float"}, "securityinsighttraffic": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "skipcacheredirectionhttptransaction": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "subscriberawareness": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "subscriberidobfuscation": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "subscriberidobfuscationalgo": { "choices": ["MD5", "SHA256"], - "default": "MD5", "no_log": False, "type": "str", }, "tcpattackcounterinterval": {"no_log": False, "type": "float"}, - "templaterefresh": {"default": 600, "no_log": False, "type": "float"}, + "templaterefresh": {"no_log": False, "type": "float"}, "timeseriesovernsip": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "udppmtu": {"default": 1472, "no_log": False, "type": "float"}, + "udppmtu": {"no_log": False, "type": "float"}, "urlcategory": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "usagerecordinterval": {"no_log": False, "type": "float"}, "videoinsight": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "websaasappusagereporting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "aaausername", "analyticsauthtoken", @@ -2876,6 +3055,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name", "undefaction"]}, "add_payload_keys": ["action", "comment", "name", "rule", "undefaction"], "bindings": ["appflowpolicylabel_appflowpolicy_binding"], "bindprimary_key": "", @@ -2910,6 +3090,7 @@ "rule": {"no_log": False, "type": "str"}, "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "comment", "name", "rule", "undefaction"], }, "appflowpolicylabel": { @@ -2921,6 +3102,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["labelname", "policylabeltype"], "bindings": ["appflowpolicylabel_appflowpolicy_binding"], "bindprimary_key": "", @@ -2952,15 +3134,16 @@ "newname": {"no_log": False, "type": "str"}, "policylabeltype": { "choices": ["HTTP", "HTTP_QUIC", "OTHERTCP"], - "default": "HTTP", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "appflowpolicylabel_appflowpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -2999,10 +3182,16 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwarchive": { "_supported_operations": ["Import", "delete", "export", "get"], + "action_payload_keys": { + "import": ["comment", "name", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -3019,10 +3208,12 @@ "src": {"no_log": False, "type": "str"}, "target": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "appfwconfidfield": { "_supported_operations": ["add", "count", "delete", "get", "unset", "update"], + "action_payload_keys": {"unset": ["comment", "fieldname", "isregex", "url"]}, "add_payload_keys": ["comment", "fieldname", "isregex", "url"], "bindings": [], "bindprimary_key": "", @@ -3038,16 +3229,17 @@ "fieldname": {"no_log": False, "type": "str"}, "isregex": { "choices": ["NOTREGEX", "REGEX"], - "default": "NOTREGEX", "no_log": False, "type": "str", }, "url": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["comment", "fieldname", "isregex", "url"], }, "appfwcustomsettings": { "_supported_operations": ["export"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -3062,6 +3254,7 @@ "name": {"no_log": False, "type": "str"}, "target": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "appfwfieldtype": { @@ -3073,6 +3266,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "name", "priority", "regex"], "bindings": [], "bindprimary_key": "", @@ -3090,10 +3284,12 @@ "priority": {"no_log": False, "type": "float"}, "regex": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["comment", "name", "priority", "regex"], }, "appfwglobal_appfwpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -3127,7 +3323,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -3153,10 +3348,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "appfwglobal_auditnslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -3205,10 +3402,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "appfwglobal_auditsyslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -3257,10 +3456,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "appfwgrpccontenttype": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["grpccontenttypevalue", "isregex"], "bindings": [], "bindprimary_key": "", @@ -3275,15 +3476,16 @@ "grpccontenttypevalue": {"no_log": False, "type": "str"}, "isregex": { "choices": ["NOTREGEX", "REGEX"], - "default": "NOTREGEX", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "appfwgrpcwebjsoncontenttype": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["grpcwebjsoncontenttypevalue", "isregex"], "bindings": [], "bindprimary_key": "", @@ -3298,15 +3500,16 @@ "grpcwebjsoncontenttypevalue": {"no_log": False, "type": "str"}, "isregex": { "choices": ["NOTREGEX", "REGEX"], - "default": "NOTREGEX", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "appfwgrpcwebtextcontenttype": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["grpcwebtextcontenttypevalue", "isregex"], "bindings": [], "bindprimary_key": "", @@ -3321,15 +3524,20 @@ "grpcwebtextcontenttypevalue": {"no_log": False, "type": "str"}, "isregex": { "choices": ["NOTREGEX", "REGEX"], - "default": "NOTREGEX", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "appfwhtmlerrorpage": { "_supported_operations": ["Import", "change", "delete", "get", "get-byname"], + "action_payload_keys": { + "import": ["comment", "name", "overwrite", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -3346,10 +3554,12 @@ "overwrite": {"no_log": False, "type": "bool"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "appfwjsoncontenttype": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["isregex", "jsoncontenttypevalue"], "bindings": [], "bindprimary_key": "", @@ -3363,16 +3573,21 @@ "readwrite_arguments": { "isregex": { "choices": ["NOTREGEX", "REGEX"], - "default": "NOTREGEX", "no_log": False, "type": "str", }, "jsoncontenttypevalue": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwjsonerrorpage": { "_supported_operations": ["Import", "change", "delete", "get", "get-byname"], + "action_payload_keys": { + "import": ["comment", "name", "overwrite", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -3389,10 +3604,12 @@ "overwrite": {"no_log": False, "type": "bool"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "appfwlearningdata": { "_supported_operations": ["count", "delete", "export", "get", "reset"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -3494,10 +3711,46 @@ "xmldoscheck": {"no_log": False, "type": "str"}, "xmlwsicheck": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwlearningsettings": { "_supported_operations": ["count", "get", "get-byname", "unset", "update"], + "action_payload_keys": { + "unset": [ + "contenttypeautodeploygraceperiod", + "contenttypeminthreshold", + "contenttypepercentthreshold", + "cookieconsistencyautodeploygraceperiod", + "cookieconsistencyminthreshold", + "cookieconsistencypercentthreshold", + "creditcardnumberminthreshold", + "creditcardnumberpercentthreshold", + "crosssitescriptingautodeploygraceperiod", + "crosssitescriptingminthreshold", + "crosssitescriptingpercentthreshold", + "csrftagautodeploygraceperiod", + "csrftagminthreshold", + "csrftagpercentthreshold", + "fieldconsistencyautodeploygraceperiod", + "fieldconsistencyminthreshold", + "fieldconsistencypercentthreshold", + "fieldformatautodeploygraceperiod", + "fieldformatminthreshold", + "fieldformatpercentthreshold", + "profilename", + "sqlinjectionautodeploygraceperiod", + "sqlinjectionminthreshold", + "sqlinjectionpercentthreshold", + "starturlautodeploygraceperiod", + "starturlminthreshold", + "starturlpercentthreshold", + "xmlattachmentminthreshold", + "xmlattachmentpercentthreshold", + "xmlwsiminthreshold", + "xmlwsipercentthreshold", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -3509,94 +3762,45 @@ "password_keys": [], "primary_key": "profilename", "readwrite_arguments": { - "contenttypeautodeploygraceperiod": { - "default": 10080, - "no_log": False, - "type": "float", - }, - "contenttypeminthreshold": {"default": 1, "no_log": False, "type": "float"}, + "contenttypeautodeploygraceperiod": {"no_log": False, "type": "float"}, + "contenttypeminthreshold": {"no_log": False, "type": "float"}, "contenttypepercentthreshold": {"no_log": False, "type": "float"}, "cookieconsistencyautodeploygraceperiod": { - "default": 10080, - "no_log": False, - "type": "float", - }, - "cookieconsistencyminthreshold": { - "default": 1, "no_log": False, "type": "float", }, + "cookieconsistencyminthreshold": {"no_log": False, "type": "float"}, "cookieconsistencypercentthreshold": {"no_log": False, "type": "float"}, - "creditcardnumberminthreshold": { - "default": 1, - "no_log": False, - "type": "float", - }, + "creditcardnumberminthreshold": {"no_log": False, "type": "float"}, "creditcardnumberpercentthreshold": {"no_log": False, "type": "float"}, "crosssitescriptingautodeploygraceperiod": { - "default": 10080, - "no_log": False, - "type": "float", - }, - "crosssitescriptingminthreshold": { - "default": 1, "no_log": False, "type": "float", }, + "crosssitescriptingminthreshold": {"no_log": False, "type": "float"}, "crosssitescriptingpercentthreshold": {"no_log": False, "type": "float"}, - "csrftagautodeploygraceperiod": { - "default": 10080, - "no_log": False, - "type": "float", - }, - "csrftagminthreshold": {"default": 1, "no_log": False, "type": "float"}, + "csrftagautodeploygraceperiod": {"no_log": False, "type": "float"}, + "csrftagminthreshold": {"no_log": False, "type": "float"}, "csrftagpercentthreshold": {"no_log": False, "type": "float"}, - "fieldconsistencyautodeploygraceperiod": { - "default": 10080, - "no_log": False, - "type": "float", - }, - "fieldconsistencyminthreshold": { - "default": 1, - "no_log": False, - "type": "float", - }, + "fieldconsistencyautodeploygraceperiod": {"no_log": False, "type": "float"}, + "fieldconsistencyminthreshold": {"no_log": False, "type": "float"}, "fieldconsistencypercentthreshold": {"no_log": False, "type": "float"}, - "fieldformatautodeploygraceperiod": { - "default": 10080, - "no_log": False, - "type": "float", - }, - "fieldformatminthreshold": {"default": 1, "no_log": False, "type": "float"}, + "fieldformatautodeploygraceperiod": {"no_log": False, "type": "float"}, + "fieldformatminthreshold": {"no_log": False, "type": "float"}, "fieldformatpercentthreshold": {"no_log": False, "type": "float"}, "profilename": {"no_log": False, "type": "str"}, - "sqlinjectionautodeploygraceperiod": { - "default": 10080, - "no_log": False, - "type": "float", - }, - "sqlinjectionminthreshold": { - "default": 1, - "no_log": False, - "type": "float", - }, + "sqlinjectionautodeploygraceperiod": {"no_log": False, "type": "float"}, + "sqlinjectionminthreshold": {"no_log": False, "type": "float"}, "sqlinjectionpercentthreshold": {"no_log": False, "type": "float"}, - "starturlautodeploygraceperiod": { - "default": 10080, - "no_log": False, - "type": "float", - }, - "starturlminthreshold": {"default": 1, "no_log": False, "type": "float"}, + "starturlautodeploygraceperiod": {"no_log": False, "type": "float"}, + "starturlminthreshold": {"no_log": False, "type": "float"}, "starturlpercentthreshold": {"no_log": False, "type": "float"}, - "xmlattachmentminthreshold": { - "default": 1, - "no_log": False, - "type": "float", - }, + "xmlattachmentminthreshold": {"no_log": False, "type": "float"}, "xmlattachmentpercentthreshold": {"no_log": False, "type": "float"}, - "xmlwsiminthreshold": {"default": 1, "no_log": False, "type": "float"}, + "xmlwsiminthreshold": {"no_log": False, "type": "float"}, "xmlwsipercentthreshold": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "contenttypeautodeploygraceperiod", "contenttypeminthreshold", @@ -3633,6 +3837,7 @@ }, "appfwmultipartformcontenttype": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["isregex", "multipartformcontenttypevalue"], "bindings": [], "bindprimary_key": "", @@ -3646,12 +3851,12 @@ "readwrite_arguments": { "isregex": { "choices": ["NOTREGEX", "REGEX"], - "default": "NOTREGEX", "no_log": False, "type": "str", }, "multipartformcontenttypevalue": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwpolicy": { @@ -3665,6 +3870,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "logaction", "name"]}, "add_payload_keys": ["comment", "logaction", "name", "profilename", "rule"], "bindings": ["appfwpolicylabel_appfwpolicy_binding"], "bindprimary_key": "", @@ -3699,6 +3905,7 @@ "profilename": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["comment", "logaction", "name", "profilename", "rule"], }, "appfwpolicylabel": { @@ -3710,6 +3917,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["labelname", "policylabeltype"], "bindings": ["appfwpolicylabel_appfwpolicy_binding"], "bindprimary_key": "", @@ -3745,10 +3953,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "appfwpolicylabel_appfwpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -3787,6 +3997,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile": { @@ -3800,6 +4011,134 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "addcookieflags", + "apispec", + "as_prof_bypass_list_enable", + "as_prof_deny_list_enable", + "blockkeywordaction", + "bufferoverflowaction", + "bufferoverflowmaxcookielength", + "bufferoverflowmaxheaderlength", + "bufferoverflowmaxquerylength", + "bufferoverflowmaxtotalheaderlength", + "bufferoverflowmaxurllength", + "canonicalizehtmlresponse", + "ceflogging", + "checkrequestheaders", + "clientipexpression", + "cmdinjectionaction", + "cmdinjectiongrammar", + "cmdinjectiontype", + "comment", + "contenttypeaction", + "cookieconsistencyaction", + "cookieencryption", + "cookiehijackingaction", + "cookieproxying", + "cookiesamesiteattribute", + "cookietransforms", + "creditcard", + "creditcardaction", + "creditcardmaxallowed", + "creditcardxout", + "crosssitescriptingaction", + "crosssitescriptingcheckcompleteurls", + "crosssitescriptingtransformunsafehtml", + "csrftagaction", + "defaultcharset", + "defaultfieldformatmaxlength", + "defaultfieldformatminlength", + "defaultfieldformattype", + "denyurlaction", + "dosecurecreditcardlogging", + "dynamiclearning", + "enableformtagging", + "errorurl", + "excludefileuploadfromchecks", + "exemptclosureurlsfromsecuritychecks", + "fakeaccountdetection", + "fieldconsistencyaction", + "fieldformataction", + "fileuploadmaxnum", + "fileuploadtypesaction", + "geolocationlogging", + "grpcaction", + "htmlerrorobject", + "htmlerrorstatuscode", + "htmlerrorstatusmessage", + "infercontenttypexmlpayloadaction", + "insertcookiesamesiteattribute", + "inspectcontenttypes", + "inspectquerycontenttypes", + "invalidpercenthandling", + "jsonblockkeywordaction", + "jsoncmdinjectionaction", + "jsoncmdinjectiongrammar", + "jsoncmdinjectiontype", + "jsondosaction", + "jsonerrorobject", + "jsonerrorstatuscode", + "jsonerrorstatusmessage", + "jsonsqlinjectionaction", + "jsonsqlinjectiongrammar", + "jsonsqlinjectiontype", + "jsonxssaction", + "logeverypolicyhit", + "multipleheaderaction", + "name", + "optimizepartialreqs", + "percentdecoderecursively", + "postbodylimit", + "postbodylimitaction", + "postbodylimitsignature", + "protofileobject", + "refererheadercheck", + "requestcontenttype", + "responsecontenttype", + "restaction", + "rfcprofile", + "semicolonfieldseparator", + "sessioncookiename", + "sessionlessfieldconsistency", + "sessionlessurlclosure", + "signatures", + "sqlinjectionaction", + "sqlinjectionchecksqlwildchars", + "sqlinjectiongrammar", + "sqlinjectiononlycheckfieldswithsqlchars", + "sqlinjectionparsecomments", + "sqlinjectionruletype", + "sqlinjectiontransformspecialchars", + "sqlinjectiontype", + "starturlaction", + "starturlclosure", + "streaming", + "striphtmlcomments", + "stripxmlcomments", + "trace", + "type", + "urldecoderequestcookies", + "usehtmlerrorobject", + "verboseloglevel", + "xmlattachmentaction", + "xmldosaction", + "xmlerrorobject", + "xmlerrorstatuscode", + "xmlerrorstatusmessage", + "xmlformataction", + "xmlsoapfaultaction", + "xmlsqlinjectionaction", + "xmlsqlinjectionchecksqlwildchars", + "xmlsqlinjectiononlycheckfieldswithsqlchars", + "xmlsqlinjectionparsecomments", + "xmlsqlinjectiontype", + "xmlvalidationaction", + "xmlwsiaction", + "xmlxssaction", + ] + }, "add_payload_keys": [ "addcookieflags", "apispec", @@ -3972,7 +4311,6 @@ "readwrite_arguments": { "addcookieflags": { "choices": ["all", "httpOnly", "none", "secure"], - "default": "none", "no_log": False, "type": "str", }, @@ -4492,20 +4830,17 @@ "archivename": {"no_log": False, "type": "str"}, "as_prof_bypass_list_enable": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "as_prof_deny_list_enable": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "augment": {"no_log": False, "type": "bool"}, "blockkeywordaction": { "choices": ["block", "log", "none", "stats"], - "default": "none", "elements": "str", "no_log": False, "type": "list", @@ -4516,55 +4851,31 @@ "no_log": False, "type": "list", }, - "bufferoverflowmaxcookielength": { - "default": 4096, - "no_log": False, - "type": "float", - }, - "bufferoverflowmaxheaderlength": { - "default": 4096, - "no_log": False, - "type": "float", - }, - "bufferoverflowmaxquerylength": { - "default": 65535, - "no_log": False, - "type": "float", - }, - "bufferoverflowmaxtotalheaderlength": { - "default": 65535, - "no_log": False, - "type": "float", - }, - "bufferoverflowmaxurllength": { - "default": 1024, - "no_log": False, - "type": "float", - }, + "bufferoverflowmaxcookielength": {"no_log": False, "type": "float"}, + "bufferoverflowmaxheaderlength": {"no_log": False, "type": "float"}, + "bufferoverflowmaxquerylength": {"no_log": False, "type": "float"}, + "bufferoverflowmaxtotalheaderlength": {"no_log": False, "type": "float"}, + "bufferoverflowmaxurllength": {"no_log": False, "type": "float"}, "canonicalizehtmlresponse": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, "ceflogging": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "checkrequestheaders": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "clientipexpression": {"no_log": False, "type": "str"}, "cmdinjectionaction": { "choices": ["block", "log", "none", "stats"], - "default": "none", "elements": "str", "no_log": False, "type": "list", }, "cmdinjectiongrammar": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -4576,7 +4887,6 @@ "CMDSplCharORKeyword", "None", ], - "default": "CMDSplCharANDKeyword", "no_log": False, "type": "str", }, @@ -4589,39 +4899,33 @@ }, "cookieconsistencyaction": { "choices": ["block", "learn", "log", "none", "stats"], - "default": "none", "elements": "str", "no_log": False, "type": "list", }, "cookieencryption": { "choices": ["decryptOnly", "encryptAll", "encryptSessionOnly", "none"], - "default": "none", "no_log": False, "type": "str", }, "cookiehijackingaction": { "choices": ["block", "log", "none", "stats"], - "default": "none", "elements": "str", "no_log": False, "type": "list", }, "cookieproxying": { "choices": ["none", "sessionOnly"], - "default": "none", "no_log": False, "type": "str", }, "cookiesamesiteattribute": { "choices": ["LAX", "None", "STRICT"], - "default": "LAX", "no_log": False, "type": "str", }, "cookietransforms": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -4635,14 +4939,12 @@ "none", "visa", ], - "default": "none", "elements": "str", "no_log": False, "type": "list", }, "creditcardaction": { "choices": ["block", "learn", "log", "none", "stats"], - "default": "none", "elements": "str", "no_log": False, "type": "list", @@ -4650,7 +4952,6 @@ "creditcardmaxallowed": {"no_log": False, "type": "float"}, "creditcardxout": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -4662,30 +4963,23 @@ }, "crosssitescriptingcheckcompleteurls": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "crosssitescriptingtransformunsafehtml": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "csrftagaction": { "choices": ["block", "learn", "log", "none", "stats"], - "default": "none", "elements": "str", "no_log": False, "type": "list", }, "customsettings": {"no_log": False, "type": "str"}, "defaultcharset": {"no_log": False, "type": "str"}, - "defaultfieldformatmaxlength": { - "default": 65535, - "no_log": False, - "type": "float", - }, + "defaultfieldformatmaxlength": {"no_log": False, "type": "float"}, "defaultfieldformatminlength": {"no_log": False, "type": "float"}, "defaultfieldformattype": {"no_log": False, "type": "str"}, "defaults": { @@ -4701,7 +4995,6 @@ }, "dosecurecreditcardlogging": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, @@ -4723,32 +5016,27 @@ }, "enableformtagging": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, "errorurl": {"no_log": False, "type": "str"}, "excludefileuploadfromchecks": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "exemptclosureurlsfromsecuritychecks": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, "fakeaccountdetection": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "fieldconsistencyaction": { "choices": ["block", "learn", "log", "none", "stats"], - "default": "none", "elements": "str", "no_log": False, "type": "list", @@ -4759,7 +5047,7 @@ "no_log": False, "type": "list", }, - "fileuploadmaxnum": {"default": 65535, "no_log": False, "type": "float"}, + "fileuploadmaxnum": {"no_log": False, "type": "float"}, "fileuploadtypesaction": { "choices": ["block", "log", "none", "stats"], "elements": "str", @@ -4778,7 +5066,7 @@ "type": "list", }, "htmlerrorobject": {"no_log": False, "type": "str"}, - "htmlerrorstatuscode": {"default": 200, "no_log": False, "type": "float"}, + "htmlerrorstatuscode": {"no_log": False, "type": "float"}, "htmlerrorstatusmessage": {"no_log": False, "type": "str"}, "importprofilename": {"no_log": False, "type": "str"}, "infercontenttypexmlpayloadaction": { @@ -4789,7 +5077,6 @@ }, "insertcookiesamesiteattribute": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -4815,13 +5102,11 @@ }, "invalidpercenthandling": { "choices": ["asp_mode", "secure_mode"], - "default": "secure_mode", "no_log": False, "type": "str", }, "jsonblockkeywordaction": { "choices": ["block", "log", "none", "stats"], - "default": "none", "elements": "str", "no_log": False, "type": "list", @@ -4834,7 +5119,6 @@ }, "jsoncmdinjectiongrammar": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -4846,7 +5130,6 @@ "CMDSplCharORKeyword", "None", ], - "default": "CMDSplCharANDKeyword", "no_log": False, "type": "str", }, @@ -4857,7 +5140,7 @@ "type": "list", }, "jsonerrorobject": {"no_log": False, "type": "str"}, - "jsonerrorstatuscode": {"default": 200, "no_log": False, "type": "float"}, + "jsonerrorstatuscode": {"no_log": False, "type": "float"}, "jsonerrorstatusmessage": {"no_log": False, "type": "str"}, "jsonsqlinjectionaction": { "choices": ["block", "log", "none", "stats"], @@ -4867,7 +5150,6 @@ }, "jsonsqlinjectiongrammar": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -4879,7 +5161,6 @@ "SQLSplCharANDKeyword", "SQLSplCharORKeyword", ], - "default": "SQLSplCharANDKeyword", "no_log": False, "type": "str", }, @@ -4891,7 +5172,6 @@ }, "logeverypolicyhit": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -4905,29 +5185,23 @@ "name": {"no_log": False, "type": "str"}, "optimizepartialreqs": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, "overwrite": {"no_log": False, "type": "bool"}, "percentdecoderecursively": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, - "postbodylimit": {"default": 20000000, "no_log": False, "type": "float"}, + "postbodylimit": {"no_log": False, "type": "float"}, "postbodylimitaction": { "choices": ["block", "log", "stats"], "elements": "str", "no_log": False, "type": "list", }, - "postbodylimitsignature": { - "default": 2048, - "no_log": False, - "type": "float", - }, + "postbodylimitsignature": {"no_log": False, "type": "float"}, "protofileobject": {"no_log": False, "type": "str"}, "refererheadercheck": { "choices": [ @@ -4936,7 +5210,6 @@ "OFF", "if_present", ], - "default": "OFF", "no_log": False, "type": "str", }, @@ -4953,20 +5226,17 @@ "rfcprofile": {"no_log": False, "type": "str"}, "semicolonfieldseparator": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "sessioncookiename": {"no_log": False, "type": "str"}, "sessionlessfieldconsistency": { "choices": ["OFF", "ON", "postOnly"], - "default": "OFF", "no_log": False, "type": "str", }, "sessionlessurlclosure": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -4979,19 +5249,16 @@ }, "sqlinjectionchecksqlwildchars": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "sqlinjectiongrammar": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "sqlinjectiononlycheckfieldswithsqlchars": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, @@ -5002,13 +5269,11 @@ }, "sqlinjectionruletype": { "choices": ["ALLOW", "DENY"], - "default": "ALLOW", "no_log": False, "type": "str", }, "sqlinjectiontransformspecialchars": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -5020,7 +5285,6 @@ "SQLSplCharANDKeyword", "SQLSplCharORKeyword", ], - "default": "SQLSplCharANDKeyword", "no_log": False, "type": "str", }, @@ -5032,62 +5296,40 @@ }, "starturlclosure": { "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, - "streaming": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, - "stripcomments": { - "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, + "streaming": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "stripcomments": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "striphtmlcomments": { "choices": ["all", "exclude_script_tag", "none"], - "default": "none", "no_log": False, "type": "str", }, "stripxmlcomments": { "choices": ["all", "none"], - "default": "none", - "no_log": False, - "type": "str", - }, - "trace": { - "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, + "trace": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "type": { "choices": ["HTML", "JSON", "XML"], - "default": "HTML", "elements": "str", "no_log": False, "type": "list", }, "urldecoderequestcookies": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "usehtmlerrorobject": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "verboseloglevel": { "choices": ["pattern", "patternPayload", "patternPayloadHeader"], - "default": "pattern", "no_log": False, "type": "str", }, @@ -5104,7 +5346,7 @@ "type": "list", }, "xmlerrorobject": {"no_log": False, "type": "str"}, - "xmlerrorstatuscode": {"default": 200, "no_log": False, "type": "float"}, + "xmlerrorstatuscode": {"no_log": False, "type": "float"}, "xmlerrorstatusmessage": {"no_log": False, "type": "str"}, "xmlformataction": { "choices": ["block", "log", "none", "stats"], @@ -5126,19 +5368,16 @@ }, "xmlsqlinjectionchecksqlwildchars": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "xmlsqlinjectiononlycheckfieldswithsqlchars": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, "xmlsqlinjectionparsecomments": { "choices": ["ansi", "ansinested", "checkall", "nested"], - "default": "checkall", "no_log": False, "type": "str", }, @@ -5150,7 +5389,6 @@ "SQLSplCharANDKeyword", "SQLSplCharORKeyword", ], - "default": "SQLSplCharANDKeyword", "no_log": False, "type": "str", }, @@ -5173,6 +5411,7 @@ "type": "list", }, }, + "singleton": False, "update_payload_keys": [ "addcookieflags", "apispec", @@ -5302,6 +5541,7 @@ }, "appfwprofile_appfwconfidfield_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "cffield_url", "comment", @@ -5348,10 +5588,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_blockkeyword_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_blockkeyword_formurl", "as_fieldname_isregex_blockkeyword", @@ -5398,7 +5640,6 @@ "as_blockkeyword_formurl": {"no_log": False, "type": "str"}, "as_fieldname_isregex_blockkeyword": { "choices": ["NOTREGEX", "REGEX"], - "default": "NOTREGEX", "no_log": False, "type": "str", }, @@ -5419,10 +5660,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_bypasslist_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_bypass_list", "as_bypass_list_action", @@ -5466,7 +5709,6 @@ }, "as_bypass_list_value_type": { "choices": ["Expression", "PCRE", "literal"], - "default": "literal", "no_log": False, "type": "str", }, @@ -5480,10 +5722,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_cmdinjection_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_scan_location_cmd", "as_value_expr_cmd", @@ -5568,10 +5812,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_contenttype_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "contenttype", @@ -5608,10 +5854,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_cookieconsistency_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "cookieconsistency", @@ -5655,10 +5903,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_creditcardnumber_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "creditcardnumber", @@ -5698,10 +5948,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_crosssitescripting_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_scan_location_xss", "as_value_expr_xss", @@ -5786,10 +6038,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_csrftag_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "csrfformactionurl", @@ -5829,10 +6083,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_denylist_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_deny_list", "as_deny_list_action", @@ -5866,7 +6122,6 @@ "as_deny_list": {"no_log": False, "type": "str"}, "as_deny_list_action": { "choices": ["REDIRECT", "RESET", "log", "none"], - "default": "REDIRECT", "elements": "str", "no_log": False, "type": "list", @@ -5878,7 +6133,6 @@ }, "as_deny_list_value_type": { "choices": ["Expression", "PCRE", "literal"], - "default": "literal", "no_log": False, "type": "str", }, @@ -5892,10 +6146,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_denyurl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "denyurl", @@ -5932,10 +6188,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_excluderescontenttype_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "excluderescontenttype", @@ -5972,10 +6230,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_fakeaccount_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "fakeaccount", @@ -6040,10 +6300,12 @@ "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, "tag": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_fieldconsistency_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "fieldconsistency", @@ -6090,10 +6352,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_fieldformat_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "fieldformat", @@ -6149,10 +6413,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_fileuploadtype_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_fileuploadtypes_url", "comment", @@ -6212,7 +6478,6 @@ }, "isnameregex": { "choices": ["NOTREGEX", "REGEX"], - "default": "NOTREGEX", "no_log": False, "type": "str", }, @@ -6225,10 +6490,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_jsonblockkeyword_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "isautodeployed", @@ -6280,7 +6547,6 @@ }, "iskeyregex_json_blockkeyword": { "choices": ["NOTREGEX", "REGEX"], - "default": "NOTREGEX", "no_log": False, "type": "str", }, @@ -6296,10 +6562,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_jsoncmdurl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_value_expr_json_cmd", "as_value_type_json_cmd", @@ -6375,10 +6643,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_jsondosurl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "isautodeployed", @@ -6435,53 +6705,37 @@ "type": "str", }, "jsondosurl": {"no_log": False, "type": "str"}, - "jsonmaxarraylength": {"default": 10000, "no_log": False, "type": "float"}, + "jsonmaxarraylength": {"no_log": False, "type": "float"}, "jsonmaxarraylengthcheck": { "choices": ["OFF", "ON"], "no_log": False, "type": "str", }, - "jsonmaxcontainerdepth": {"default": 5, "no_log": False, "type": "float"}, + "jsonmaxcontainerdepth": {"no_log": False, "type": "float"}, "jsonmaxcontainerdepthcheck": { "choices": ["OFF", "ON"], "no_log": False, "type": "str", }, - "jsonmaxdocumentlength": { - "default": 20000000, - "no_log": False, - "type": "float", - }, + "jsonmaxdocumentlength": {"no_log": False, "type": "float"}, "jsonmaxdocumentlengthcheck": { "choices": ["OFF", "ON"], "no_log": False, "type": "str", }, - "jsonmaxobjectkeycount": { - "default": 10000, - "no_log": False, - "type": "float", - }, + "jsonmaxobjectkeycount": {"no_log": False, "type": "float"}, "jsonmaxobjectkeycountcheck": { "choices": ["OFF", "ON"], "no_log": False, "type": "str", }, - "jsonmaxobjectkeylength": { - "default": 128, - "no_log": False, - "type": "float", - }, + "jsonmaxobjectkeylength": {"no_log": False, "type": "float"}, "jsonmaxobjectkeylengthcheck": { "choices": ["OFF", "ON"], "no_log": False, "type": "str", }, - "jsonmaxstringlength": { - "default": 1000000, - "no_log": False, - "type": "float", - }, + "jsonmaxstringlength": {"no_log": False, "type": "float"}, "jsonmaxstringlengthcheck": { "choices": ["OFF", "ON"], "no_log": False, @@ -6491,10 +6745,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_jsonsqlurl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_value_expr_json_sql", "as_value_type_json_sql", @@ -6570,10 +6826,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_jsonxssurl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_value_expr_json_xss", "as_value_type_json_xss", @@ -6649,10 +6907,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_logexpression_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_logexpression", "comment", @@ -6692,10 +6952,12 @@ "resourceid": {"no_log": False, "type": "str"}, "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_safeobject_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "action", "as_expression", @@ -6746,10 +7008,12 @@ "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, "safeobject": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_sqlinjection_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_scan_location_sql", "as_value_expr_sql", @@ -6834,10 +7098,12 @@ "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, "sqlinjection": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_starturl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "isautodeployed", @@ -6874,10 +7140,12 @@ "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, "starturl": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_trustedlearningclients_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "isautodeployed", @@ -6914,10 +7182,12 @@ "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, "trustedlearningclients": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_xmlattachmenturl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "isautodeployed", @@ -6974,10 +7244,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_xmldosurl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "isautodeployed", @@ -7190,10 +7462,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_xmlsqlinjection_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_scan_location_xmlsql", "comment", @@ -7244,10 +7518,12 @@ "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, "xmlsqlinjection": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_xmlvalidationurl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "isautodeployed", @@ -7321,10 +7597,12 @@ "xmlvalidationurl": {"no_log": False, "type": "str"}, "xmlwsdl": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_xmlwsiurl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "comment", "isautodeployed", @@ -7364,10 +7642,12 @@ "xmlwsichecks": {"no_log": False, "type": "str"}, "xmlwsiurl": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprofile_xmlxss_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "as_scan_location_xmlxss", "comment", @@ -7418,10 +7698,16 @@ "ruletype": {"choices": ["ALLOW", "DENY"], "no_log": False, "type": "str"}, "xmlxss": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwprotofile": { "_supported_operations": ["Import", "change", "delete", "get", "get-byname"], + "action_payload_keys": { + "import": ["comment", "name", "overwrite", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -7438,10 +7724,37 @@ "overwrite": {"no_log": False, "type": "bool"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "appfwsettings": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "ceflogging", + "centralizedlearning", + "clientiploggingheader", + "cookiepostencryptprefix", + "defaultprofile", + "entitydecoding", + "geolocationlogging", + "importsizelimit", + "learnratelimit", + "malformedreqaction", + "proxypassword", + "proxyport", + "proxyserver", + "proxyusername", + "sessioncookiename", + "sessionlifetime", + "sessionlimit", + "sessiontimeout", + "signatureautoupdate", + "signatureurl", + "undefaction", + "useconfigurablesecretkey", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -7453,42 +7766,29 @@ "password_keys": ["proxypassword"], "primary_key": "", "readwrite_arguments": { - "ceflogging": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "ceflogging": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "centralizedlearning": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "clientiploggingheader": {"no_log": False, "type": "str"}, "cookiepostencryptprefix": {"no_log": False, "type": "str"}, - "defaultprofile": { - "default": "APPFW_BYPASS", - "no_log": False, - "type": "str", - }, + "defaultprofile": {"no_log": False, "type": "str"}, "entitydecoding": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "geolocationlogging": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, - "importsizelimit": {"default": 134217728, "no_log": False, "type": "float"}, - "learnratelimit": {"default": 400, "no_log": False, "type": "float"}, + "importsizelimit": {"no_log": False, "type": "float"}, + "learnratelimit": {"no_log": False, "type": "float"}, "logmalformedreq": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, @@ -7499,32 +7799,27 @@ "type": "list", }, "proxypassword": {"no_log": True, "type": "str"}, - "proxyport": {"default": 8080, "no_log": False, "type": "int"}, + "proxyport": {"no_log": False, "type": "int"}, "proxyserver": {"no_log": False, "type": "str"}, "proxyusername": {"no_log": False, "type": "str"}, "sessioncookiename": {"no_log": False, "type": "str"}, "sessionlifetime": {"no_log": False, "type": "float"}, - "sessionlimit": {"default": 100000, "no_log": False, "type": "float"}, - "sessiontimeout": {"default": 900, "no_log": False, "type": "float"}, + "sessionlimit": {"no_log": False, "type": "float"}, + "sessiontimeout": {"no_log": False, "type": "float"}, "signatureautoupdate": { "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, - "signatureurl": { - "default": "https://s3.amazonaws.com/NSAppFwSignatures/SignaturesMapping.xml", "no_log": False, "type": "str", }, - "undefaction": {"default": "APPFW_BLOCK", "no_log": False, "type": "str"}, + "signatureurl": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "str"}, "useconfigurablesecretkey": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "ceflogging", "centralizedlearning", @@ -7552,6 +7847,26 @@ }, "appfwsignatures": { "_supported_operations": ["Import", "change", "delete", "get", "get-byname"], + "action_payload_keys": { + "import": [ + "action", + "autoenablenewsignatures", + "category", + "comment", + "enabled", + "merge", + "name", + "overwrite", + "preservedefactions", + "ruleid", + "sha1", + "src", + "vendortype", + "xslt", + ], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -7571,18 +7886,12 @@ }, "autoenablenewsignatures": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "category": {"no_log": False, "type": "str"}, "comment": {"no_log": False, "type": "str"}, - "enabled": { - "choices": ["OFF", "ON"], - "default": "ON", - "no_log": False, - "type": "str", - }, + "enabled": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "merge": {"no_log": False, "type": "bool"}, "mergedefault": {"no_log": False, "type": "bool"}, "name": {"no_log": False, "type": "str"}, @@ -7594,10 +7903,12 @@ "vendortype": {"choices": ["Snort"], "no_log": False, "type": "str"}, "xslt": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "appfwurlencodedformcontenttype": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["isregex", "urlencodedformcontenttypevalue"], "bindings": [], "bindprimary_key": "", @@ -7611,16 +7922,21 @@ "readwrite_arguments": { "isregex": { "choices": ["NOTREGEX", "REGEX"], - "default": "NOTREGEX", "no_log": False, "type": "str", }, "urlencodedformcontenttypevalue": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwwsdl": { "_supported_operations": ["Import", "delete", "get", "get-byname"], + "action_payload_keys": { + "import": ["comment", "name", "overwrite", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -7637,10 +7953,12 @@ "overwrite": {"no_log": False, "type": "bool"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "appfwxmlcontenttype": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["isregex", "xmlcontenttypevalue"], "bindings": [], "bindprimary_key": "", @@ -7654,16 +7972,21 @@ "readwrite_arguments": { "isregex": { "choices": ["NOTREGEX", "REGEX"], - "default": "NOTREGEX", "no_log": False, "type": "str", }, "xmlcontenttypevalue": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appfwxmlerrorpage": { "_supported_operations": ["Import", "change", "delete", "get", "get-byname"], + "action_payload_keys": { + "import": ["comment", "name", "overwrite", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -7680,10 +8003,16 @@ "overwrite": {"no_log": False, "type": "bool"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "appfwxmlschema": { "_supported_operations": ["Import", "delete", "get", "get-byname"], + "action_payload_keys": { + "import": ["comment", "name", "overwrite", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -7700,10 +8029,16 @@ "overwrite": {"no_log": False, "type": "bool"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "application": { "_supported_operations": ["Import", "delete", "export"], + "action_payload_keys": { + "import": ["appname", "apptemplatefilename", "deploymentfilename"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -7719,6 +8054,7 @@ "apptemplatefilename": {"no_log": False, "type": "str"}, "deploymentfilename": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "appqoeaction": { @@ -7731,6 +8067,23 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "altcontentpath", + "altcontentsvcname", + "delay", + "dosaction", + "maxconn", + "name", + "numretries", + "polqdepth", + "priority", + "priqdepth", + "retryonreset", + "retryontimeout", + "tcpprofile", + ] + }, "add_payload_keys": [ "altcontentpath", "altcontentsvcname", @@ -7771,7 +8124,7 @@ "dostrigexpression": {"no_log": False, "type": "str"}, "maxconn": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, - "numretries": {"default": 3, "no_log": False, "type": "float"}, + "numretries": {"no_log": False, "type": "float"}, "polqdepth": {"no_log": False, "type": "float"}, "priority": { "choices": ["HIGH", "LOW", "LOWEST", "MEDIUM"], @@ -7780,15 +8133,11 @@ }, "priqdepth": {"no_log": False, "type": "float"}, "respondwith": {"choices": ["ACS", "NS"], "no_log": False, "type": "str"}, - "retryonreset": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "retryonreset": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "retryontimeout": {"no_log": False, "type": "float"}, "tcpprofile": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "altcontentpath", "altcontentsvcname", @@ -7808,6 +8157,7 @@ }, "appqoecustomresp": { "_supported_operations": ["Import", "change", "count", "delete", "get"], + "action_payload_keys": {"import": ["name", "src"], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -7822,10 +8172,19 @@ "name": {"no_log": False, "type": "str"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "appqoeparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "avgwaitingclient", + "dosattackthresh", + "maxaltrespbandwidth", + "sessionlife", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -7837,11 +8196,12 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "avgwaitingclient": {"default": 1000000, "no_log": False, "type": "float"}, - "dosattackthresh": {"default": 2000, "no_log": False, "type": "float"}, - "maxaltrespbandwidth": {"default": 100, "no_log": False, "type": "float"}, - "sessionlife": {"default": 300, "no_log": False, "type": "float"}, + "avgwaitingclient": {"no_log": False, "type": "float"}, + "dosattackthresh": {"no_log": False, "type": "float"}, + "maxaltrespbandwidth": {"no_log": False, "type": "float"}, + "sessionlife": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "avgwaitingclient", "dosattackthresh", @@ -7858,6 +8218,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["action", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -7873,10 +8234,12 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "name", "rule"], }, "arp": { "_supported_operations": ["add", "count", "delete", "get", "send"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "ifnum", "ipaddress", @@ -7917,10 +8280,12 @@ "vtep": {"no_log": False, "type": "str"}, "vxlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "arpparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["spoofvalidation", "timeout"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -7934,12 +8299,12 @@ "readwrite_arguments": { "spoofvalidation": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "timeout": {"default": 1200, "no_log": False, "type": "float"}, + "timeout": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": ["spoofvalidation", "timeout"], }, "auditmessageaction": { @@ -7952,6 +8317,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["bypasssafetycheck", "logtonewnslog", "name"] + }, "add_payload_keys": [ "bypasssafetycheck", "loglevel", @@ -7971,7 +8339,6 @@ "readwrite_arguments": { "bypasssafetycheck": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, @@ -7993,6 +8360,7 @@ "name": {"no_log": False, "type": "str"}, "stringbuilderexpr": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "bypasssafetycheck", "loglevel", @@ -8011,6 +8379,26 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "acl", + "alg", + "appflowexport", + "contentinspectionlog", + "dateformat", + "logfacility", + "loglevel", + "lsn", + "name", + "serverport", + "sslinterception", + "subscriberlog", + "tcp", + "timezone", + "urlfiltering", + "userdefinedauditlog", + ] + }, "add_payload_keys": [ "acl", "alg", @@ -8060,7 +8448,7 @@ "type": "str", }, "domainresolvenow": {"no_log": False, "type": "bool"}, - "domainresolveretry": {"default": 5, "no_log": False, "type": "int"}, + "domainresolveretry": {"no_log": False, "type": "int"}, "logfacility": { "choices": [ "LOCAL0", @@ -8124,6 +8512,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "acl", "alg", @@ -8149,6 +8538,7 @@ }, "auditnslogglobal_auditnslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["globalbindtype", "policyname", "priority"], "bindprimary_key": "policyname", "delete_arg_keys": ["globalbindtype", "policyname"], @@ -8172,17 +8562,37 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "auditnslogparams": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "acl", + "alg", + "appflowexport", + "contentinspectionlog", + "dateformat", + "logfacility", + "loglevel", + "lsn", + "serverip", + "serverport", + "sslinterception", + "subscriberlog", + "tcp", + "timezone", + "urlfiltering", + "userdefinedauditlog", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -8272,6 +8682,7 @@ "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "acl", "alg", @@ -8300,6 +8711,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["action", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -8315,6 +8727,7 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "name", "rule"], }, "auditsyslogaction": { @@ -8327,6 +8740,30 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "acl", + "alg", + "appflowexport", + "contentinspectionlog", + "dateformat", + "dns", + "logfacility", + "loglevel", + "lsn", + "maxlogdatasizetohold", + "name", + "netprofile", + "serverport", + "sslinterception", + "subscriberlog", + "tcp", + "tcpprofilename", + "timezone", + "urlfiltering", + "userdefinedauditlog", + ] + }, "add_payload_keys": [ "acl", "alg", @@ -8383,7 +8820,7 @@ }, "dns": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "domainresolvenow": {"no_log": False, "type": "bool"}, - "domainresolveretry": {"default": 5, "no_log": False, "type": "int"}, + "domainresolveretry": {"no_log": False, "type": "int"}, "lbvservername": {"no_log": False, "type": "str"}, "logfacility": { "choices": [ @@ -8417,7 +8854,7 @@ "type": "list", }, "lsn": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "maxlogdatasizetohold": {"default": 500, "no_log": False, "type": "float"}, + "maxlogdatasizetohold": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, "netprofile": {"no_log": False, "type": "str"}, "serverdomainname": {"no_log": False, "type": "str"}, @@ -8452,6 +8889,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "acl", "alg", @@ -8482,6 +8920,7 @@ }, "auditsyslogglobal_auditsyslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["globalbindtype", "policyname", "priority"], "bindprimary_key": "policyname", "delete_arg_keys": ["globalbindtype", "policyname"], @@ -8582,17 +9021,38 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "auditsyslogparams": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "acl", + "alg", + "appflowexport", + "contentinspectionlog", + "dateformat", + "dns", + "logfacility", + "loglevel", + "lsn", + "serverip", + "serverport", + "sslinterception", + "subscriberlog", + "tcp", + "timezone", + "urlfiltering", + "userdefinedauditlog", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -8683,6 +9143,7 @@ "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "acl", "alg", @@ -8712,6 +9173,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["action", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -8727,6 +9189,7 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "name", "rule"], }, "authenticationadfsproxyprofile": { @@ -8738,6 +9201,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "certkeyname", "name", @@ -8761,6 +9225,7 @@ "serverurl": {"no_log": False, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "certkeyname", "name", @@ -8779,6 +9244,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["authenticationdomain", "authenticationlevel", "name"] + }, "add_payload_keys": [ "authenticationdomain", "authenticationhost", @@ -8802,6 +9270,7 @@ "authnvsname": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "authenticationdomain", "authenticationhost", @@ -8820,6 +9289,16 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "authentication", + "defaultauthenticationgroup", + "name", + "pushservice", + "refreshinterval", + "signaturealg", + ] + }, "add_payload_keys": [ "authentication", "clientid", @@ -8846,7 +9325,6 @@ "readwrite_arguments": { "authentication": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -8855,18 +9333,14 @@ "defaultauthenticationgroup": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "pushservice": {"no_log": False, "type": "str"}, - "refreshinterval": {"default": 50, "no_log": False, "type": "float"}, + "refreshinterval": {"no_log": False, "type": "float"}, "servicekeyname": {"no_log": False, "type": "str"}, - "signaturealg": { - "choices": ["RS256"], - "default": "RS256", - "no_log": False, - "type": "str", - }, + "signaturealg": {"choices": ["RS256"], "no_log": False, "type": "str"}, "tenantid": {"no_log": False, "type": "str"}, "tokenendpoint": {"no_log": False, "type": "str"}, "vaultname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "authentication", "clientid", @@ -8892,6 +9366,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["defaultauthenticationgroup", "name", "serverurl"] + }, "add_payload_keys": [ "defaultauthenticationgroup", "name", @@ -8915,6 +9392,7 @@ "serverurl": {"no_log": False, "type": "str"}, "sitekey": {"no_log": True, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "defaultauthenticationgroup", "name", @@ -8933,6 +9411,15 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "defaultauthenticationgroup", + "groupnamefield", + "name", + "twofactor", + "usernamefield", + ] + }, "add_payload_keys": [ "defaultauthenticationgroup", "groupnamefield", @@ -8953,14 +9440,10 @@ "defaultauthenticationgroup": {"no_log": False, "type": "str"}, "groupnamefield": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, - "twofactor": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "twofactor": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "usernamefield": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "defaultauthenticationgroup", "groupnamefield", @@ -8979,6 +9462,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "reqaction", "rule"]}, "add_payload_keys": ["name", "reqaction", "rule"], "bindings": [], "bindprimary_key": "", @@ -8994,6 +9478,7 @@ "reqaction": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "reqaction", "rule"], }, "authenticationcitrixauthaction": { @@ -9006,6 +9491,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["authentication", "authenticationtype", "name"] + }, "add_payload_keys": ["authentication", "authenticationtype", "name"], "bindings": [], "bindprimary_key": "", @@ -9019,18 +9507,17 @@ "readwrite_arguments": { "authentication": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "authenticationtype": { "choices": ["ATHENA", "CITRIXCONNECTOR"], - "default": "CITRIXCONNECTOR", "no_log": False, "type": "str", }, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["authentication", "authenticationtype", "name"], }, "authenticationdfaaction": { @@ -9043,6 +9530,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["clientid", "defaultauthenticationgroup", "name", "serverurl"] + }, "add_payload_keys": [ "clientid", "defaultauthenticationgroup", @@ -9066,6 +9556,7 @@ "passphrase": {"no_log": True, "type": "str"}, "serverurl": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "clientid", "defaultauthenticationgroup", @@ -9083,6 +9574,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["action", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -9098,6 +9590,7 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "name", "rule"], }, "authenticationemailaction": { @@ -9110,6 +9603,16 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "content", + "defaultauthenticationgroup", + "emailaddress", + "name", + "timeout", + "type", + ] + }, "add_payload_keys": [ "content", "defaultauthenticationgroup", @@ -9137,15 +9640,11 @@ "name": {"no_log": False, "type": "str"}, "password": {"no_log": True, "type": "str"}, "serverurl": {"no_log": False, "type": "str"}, - "timeout": {"default": 180, "no_log": False, "type": "float"}, - "type": { - "choices": ["ATHENA", "SMTP"], - "default": "SMTP", - "no_log": False, - "type": "str", - }, + "timeout": {"no_log": False, "type": "float"}, + "type": {"choices": ["ATHENA", "SMTP"], "no_log": False, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "content", "defaultauthenticationgroup", @@ -9168,6 +9667,15 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "defaultepagroup", + "deletefiles", + "killprocess", + "name", + "quarantinegroup", + ] + }, "add_payload_keys": [ "csecexpr", "defaultepagroup", @@ -9193,6 +9701,7 @@ "name": {"no_log": False, "type": "str"}, "quarantinegroup": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "csecexpr", "defaultepagroup", @@ -9212,6 +9721,62 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "alternateemailattr", + "attribute1", + "attribute10", + "attribute11", + "attribute12", + "attribute13", + "attribute14", + "attribute15", + "attribute16", + "attribute2", + "attribute3", + "attribute4", + "attribute5", + "attribute6", + "attribute7", + "attribute8", + "attribute9", + "attributes", + "authentication", + "authtimeout", + "cloudattributes", + "defaultauthenticationgroup", + "email", + "followreferrals", + "groupattrname", + "groupnameidentifier", + "groupsearchattribute", + "groupsearchfilter", + "groupsearchsubattribute", + "kbattribute", + "ldapbase", + "ldapbinddn", + "ldapbinddnpassword", + "ldaphostname", + "ldaploginname", + "maxldapreferrals", + "maxnestinglevel", + "mssrvrecordlocation", + "name", + "nestedgroupextraction", + "otpsecret", + "passwdchange", + "pushservice", + "referraldnslookup", + "requireuser", + "searchfilter", + "sectype", + "serverport", + "ssonameattribute", + "subattributename", + "svrtype", + "validateservercert", + ] + }, "add_payload_keys": [ "alternateemailattr", "attribute1", @@ -9299,22 +9864,19 @@ "attributes": {"no_log": False, "type": "str"}, "authentication": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "authtimeout": {"default": 3, "no_log": False, "type": "float"}, + "authtimeout": {"no_log": False, "type": "float"}, "cloudattributes": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "email": {"default": "mail", "no_log": False, "type": "str"}, + "email": {"no_log": False, "type": "str"}, "followreferrals": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -9329,57 +9891,48 @@ "ldapbinddnpassword": {"no_log": True, "type": "str"}, "ldaphostname": {"no_log": False, "type": "str"}, "ldaploginname": {"no_log": False, "type": "str"}, - "maxldapreferrals": {"default": 1, "no_log": False, "type": "float"}, - "maxnestinglevel": {"default": 2, "no_log": False, "type": "float"}, + "maxldapreferrals": {"no_log": False, "type": "float"}, + "maxnestinglevel": {"no_log": False, "type": "float"}, "mssrvrecordlocation": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "nestedgroupextraction": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "otpsecret": {"no_log": False, "type": "str"}, "passwdchange": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "pushservice": {"no_log": False, "type": "str"}, "referraldnslookup": { "choices": ["A-REC", "MSSRV-REC", "SRV-REC"], - "default": "A-REC", - "no_log": False, - "type": "str", - }, - "requireuser": { - "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, + "requireuser": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "searchfilter": {"no_log": False, "type": "str"}, "sectype": { "choices": ["PLAINTEXT", "SSL", "TLS"], - "default": "PLAINTEXT", "no_log": False, "type": "str", }, "serverip": {"no_log": False, "type": "str"}, "servername": {"no_log": False, "type": "str"}, - "serverport": {"default": 389, "no_log": False, "type": "int"}, + "serverport": {"no_log": False, "type": "int"}, "sshpublickey": {"no_log": False, "type": "str"}, "ssonameattribute": {"no_log": False, "type": "str"}, "subattributename": {"no_log": False, "type": "str"}, "svrtype": {"choices": ["AD", "NDS"], "no_log": False, "type": "str"}, "validateservercert": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "alternateemailattr", "attribute1", @@ -9448,6 +10001,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "reqaction", "rule"]}, "add_payload_keys": ["name", "reqaction", "rule"], "bindings": [], "bindprimary_key": "", @@ -9463,6 +10017,7 @@ "reqaction": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "reqaction", "rule"], }, "authenticationlocalpolicy": { @@ -9474,6 +10029,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "rule"], "bindings": [], "bindprimary_key": "", @@ -9488,6 +10044,7 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "rule"], }, "authenticationloginschema": { @@ -9500,6 +10057,17 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "authenticationstrength", + "name", + "passwdexpression", + "passwordcredentialindex", + "ssocredentials", + "usercredentialindex", + "userexpression", + ] + }, "add_payload_keys": [ "authenticationschema", "authenticationstrength", @@ -9527,13 +10095,13 @@ "passwordcredentialindex": {"no_log": False, "type": "float"}, "ssocredentials": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "usercredentialindex": {"no_log": False, "type": "float"}, "userexpression": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "authenticationschema", "authenticationstrength", @@ -9556,6 +10124,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "logaction", "name", "undefaction"] + }, "add_payload_keys": [ "action", "comment", @@ -9582,6 +10153,7 @@ "rule": {"no_log": False, "type": "str"}, "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "action", "comment", @@ -9601,6 +10173,17 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "defaultauthenticationgroup", + "domain", + "domainuser", + "domainuserpasswd", + "name", + "ntlmpath", + "ou", + ] + }, "add_payload_keys": [ "defaultauthenticationgroup", "domain", @@ -9630,6 +10213,7 @@ "ntlmpath": {"no_log": False, "type": "str"}, "ou": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "defaultauthenticationgroup", "domain", @@ -9650,6 +10234,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "reqaction", "rule"], "bindings": [], "bindprimary_key": "", @@ -9665,6 +10250,7 @@ "reqaction": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "reqaction", "rule"], }, "authenticationnoauthaction": { @@ -9677,6 +10263,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["defaultauthenticationgroup", "name"]}, "add_payload_keys": ["defaultauthenticationgroup", "name"], "bindings": [], "bindprimary_key": "", @@ -9691,6 +10278,7 @@ "defaultauthenticationgroup": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["defaultauthenticationgroup", "name"], }, "authenticationoauthaction": { @@ -9703,6 +10291,47 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "allowedalgorithms", + "attribute1", + "attribute10", + "attribute11", + "attribute12", + "attribute13", + "attribute14", + "attribute15", + "attribute16", + "attribute2", + "attribute3", + "attribute4", + "attribute5", + "attribute6", + "attribute7", + "attribute8", + "attribute9", + "attributes", + "audience", + "authentication", + "certendpoint", + "certfilepath", + "defaultauthenticationgroup", + "graphendpoint", + "idtokendecryptendpoint", + "introspecturl", + "issuer", + "metadataurl", + "name", + "oauthtype", + "pkce", + "refreshinterval", + "resourceuri", + "skewtime", + "tokenendpointauthmethod", + "userinfourl", + "usernamefield", + ] + }, "add_payload_keys": [ "allowedalgorithms", "attribute1", @@ -9784,7 +10413,6 @@ "audience": {"no_log": False, "type": "str"}, "authentication": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -9796,7 +10424,6 @@ "defaultauthenticationgroup": {"no_log": False, "type": "str"}, "granttype": { "choices": ["CODE", "PASSWORD"], - "default": "CODE", "no_log": False, "type": "str", }, @@ -9808,19 +10435,17 @@ "name": {"no_log": False, "type": "str"}, "oauthtype": { "choices": ["ATHENA", "GENERIC", "INTUNE"], - "default": "GENERIC", "no_log": False, "type": "str", }, "pkce": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "refreshinterval": {"default": 1440, "no_log": False, "type": "float"}, + "refreshinterval": {"no_log": False, "type": "float"}, "resourceuri": {"no_log": False, "type": "str"}, - "skewtime": {"default": 5, "no_log": False, "type": "float"}, + "skewtime": {"no_log": False, "type": "float"}, "tenantid": {"no_log": False, "type": "str"}, "tokenendpoint": {"no_log": False, "type": "str"}, "tokenendpointauthmethod": { @@ -9830,13 +10455,13 @@ "client_secret_post", "private_key_jwt", ], - "default": "client_secret_post", "no_log": False, "type": "str", }, "userinfourl": {"no_log": False, "type": "str"}, "usernamefield": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "allowedalgorithms", "attribute1", @@ -9894,6 +10519,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "logaction", "name", "undefaction"] + }, "add_payload_keys": [ "action", "comment", @@ -9920,6 +10548,7 @@ "rule": {"no_log": False, "type": "str"}, "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "action", "comment", @@ -9939,6 +10568,23 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "attributes", + "audience", + "configservice", + "defaultauthenticationgroup", + "encrypttoken", + "issuer", + "name", + "refreshinterval", + "relyingpartymetadataurl", + "sendpassword", + "signaturealg", + "signatureservice", + "skewtime", + ] + }, "add_payload_keys": [ "attributes", "audience", @@ -9973,32 +10619,22 @@ "clientsecret": {"no_log": True, "type": "str"}, "configservice": {"no_log": False, "type": "str"}, "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "encrypttoken": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "encrypttoken": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "issuer": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "redirecturl": {"no_log": False, "type": "str"}, - "refreshinterval": {"default": 50, "no_log": False, "type": "float"}, + "refreshinterval": {"no_log": False, "type": "float"}, "relyingpartymetadataurl": {"no_log": False, "type": "str"}, - "sendpassword": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "sendpassword": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "signaturealg": { "choices": ["RS256", "RS512"], - "default": "RS256", "no_log": False, "type": "str", }, "signatureservice": {"no_log": False, "type": "str"}, - "skewtime": {"default": 5, "no_log": False, "type": "float"}, + "skewtime": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "attributes", "audience", @@ -10029,6 +10665,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "logaction", "name", "undefaction"] + }, "add_payload_keys": [ "action", "comment", @@ -10071,6 +10710,7 @@ "rule": {"no_log": False, "type": "str"}, "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "action", "comment", @@ -10089,6 +10729,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "labelname", "loginschema", "type"], "bindings": ["authenticationpolicylabel_authenticationpolicy_binding"], "bindprimary_key": "", @@ -10122,15 +10763,16 @@ "newname": {"no_log": False, "type": "str"}, "type": { "choices": ["AAATM_REQ", "RBA_REQ"], - "default": "AAATM_REQ", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "authenticationpolicylabel_authenticationpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "labelname", @@ -10159,6 +10801,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationpushservice": { @@ -10171,6 +10814,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "refreshinterval"]}, "add_payload_keys": [ "clientid", "clientsecret", @@ -10192,8 +10836,9 @@ "clientsecret": {"no_log": True, "type": "str"}, "customerid": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, - "refreshinterval": {"default": 50, "no_log": False, "type": "float"}, + "refreshinterval": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "clientid", "clientsecret", @@ -10212,6 +10857,32 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "accounting", + "authentication", + "authservretry", + "authtimeout", + "callingstationid", + "defaultauthenticationgroup", + "ipattributetype", + "ipvendorid", + "name", + "passencoding", + "pwdattributetype", + "pwdvendorid", + "radattributetype", + "radgroupseparator", + "radgroupsprefix", + "radnasid", + "radnasip", + "radvendorid", + "serverport", + "targetlbvserver", + "transport", + "tunnelendpointclientip", + ] + }, "add_payload_keys": [ "accounting", "authentication", @@ -10252,15 +10923,13 @@ "accounting": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "authentication": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, - "authservretry": {"default": 3, "no_log": False, "type": "float"}, - "authtimeout": {"default": 3, "no_log": False, "type": "float"}, + "authservretry": {"no_log": False, "type": "float"}, + "authtimeout": {"no_log": False, "type": "float"}, "callingstationid": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -10270,7 +10939,6 @@ "name": {"no_log": False, "type": "str"}, "passencoding": { "choices": ["chap", "mschapv1", "mschapv2", "pap"], - "default": "pap", "no_log": False, "type": "str", }, @@ -10293,17 +10961,16 @@ "targetlbvserver": {"no_log": False, "type": "str"}, "transport": { "choices": ["TCP", "TLS", "UDP"], - "default": "UDP", "no_log": False, "type": "str", }, "tunnelendpointclientip": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "accounting", "authentication", @@ -10342,6 +11009,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "reqaction", "rule"]}, "add_payload_keys": ["name", "reqaction", "rule"], "bindings": [], "bindprimary_key": "", @@ -10357,6 +11025,7 @@ "reqaction": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "reqaction", "rule"], }, "authenticationsamlaction": { @@ -10369,6 +11038,57 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "artifactresolutionserviceurl", + "attribute1", + "attribute10", + "attribute11", + "attribute12", + "attribute13", + "attribute14", + "attribute15", + "attribute16", + "attribute2", + "attribute3", + "attribute4", + "attribute5", + "attribute6", + "attribute7", + "attribute8", + "attribute9", + "attributeconsumingserviceindex", + "attributes", + "audience", + "authnctxclassref", + "customauthnctxclassref", + "defaultauthenticationgroup", + "digestmethod", + "enforceusername", + "forceauthn", + "groupnamefield", + "logoutbinding", + "logouturl", + "metadatarefreshinterval", + "metadataurl", + "name", + "relaystaterule", + "requestedauthncontext", + "samlacsindex", + "samlbinding", + "samlissuername", + "samlredirecturl", + "samlrejectunsignedassertion", + "samlsigningcertname", + "samltwofactor", + "samluserfield", + "sendthumbprint", + "signaturealg", + "skewtime", + "statechecks", + "storesamlresponse", + ] + }, "add_payload_keys": [ "artifactresolutionserviceurl", "attribute1", @@ -10446,11 +11166,7 @@ "attribute7": {"no_log": False, "type": "str"}, "attribute8": {"no_log": False, "type": "str"}, "attribute9": {"no_log": False, "type": "str"}, - "attributeconsumingserviceindex": { - "default": 255, - "no_log": False, - "type": "float", - }, + "attributeconsumingserviceindex": {"no_log": False, "type": "float"}, "attributes": {"no_log": False, "type": "str"}, "audience": {"no_log": False, "type": "str"}, "authnctxclassref": { @@ -10490,48 +11206,34 @@ "defaultauthenticationgroup": {"no_log": False, "type": "str"}, "digestmethod": { "choices": ["SHA1", "SHA256"], - "default": "SHA256", "no_log": False, "type": "str", }, "enforceusername": { "choices": ["OFF", "ON"], - "default": "ON", - "no_log": False, - "type": "str", - }, - "forceauthn": { - "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, + "forceauthn": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "groupnamefield": {"no_log": False, "type": "str"}, "logoutbinding": { "choices": ["POST", "REDIRECT"], - "default": "POST", "no_log": False, "type": "str", }, "logouturl": {"no_log": False, "type": "str"}, - "metadatarefreshinterval": { - "default": 3600, - "no_log": False, - "type": "float", - }, + "metadatarefreshinterval": {"no_log": False, "type": "float"}, "metadataurl": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "relaystaterule": {"no_log": False, "type": "str"}, "requestedauthncontext": { "choices": ["better", "exact", "maximum", "minimum"], - "default": "exact", "no_log": False, "type": "str", }, - "samlacsindex": {"default": 255, "no_log": False, "type": "float"}, + "samlacsindex": {"no_log": False, "type": "float"}, "samlbinding": { "choices": ["ARTIFACT", "POST", "REDIRECT"], - "default": "POST", "no_log": False, "type": "str", }, @@ -10540,39 +11242,31 @@ "samlredirecturl": {"no_log": False, "type": "str"}, "samlrejectunsignedassertion": { "choices": ["OFF", "ON", "STRICT"], - "default": "ON", "no_log": False, "type": "str", }, "samlsigningcertname": {"no_log": False, "type": "str"}, - "samltwofactor": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "samltwofactor": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "samluserfield": {"no_log": False, "type": "str"}, "sendthumbprint": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "signaturealg": { "choices": ["RSA-SHA1", "RSA-SHA256"], - "default": "RSA-SHA256", "no_log": False, "type": "str", }, - "skewtime": {"default": 5, "no_log": False, "type": "float"}, + "skewtime": {"no_log": False, "type": "float"}, "statechecks": {"no_log": False, "type": "str"}, "storesamlresponse": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "artifactresolutionserviceurl", "attribute1", @@ -10635,6 +11329,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "logaction", "name", "undefaction"] + }, "add_payload_keys": [ "action", "comment", @@ -10661,6 +11358,7 @@ "rule": {"no_log": False, "type": "str"}, "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "action", "comment", @@ -10680,6 +11378,86 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "acsurlrule", + "assertionconsumerserviceurl", + "attribute1", + "attribute10", + "attribute10format", + "attribute10friendlyname", + "attribute11", + "attribute11format", + "attribute11friendlyname", + "attribute12", + "attribute12format", + "attribute12friendlyname", + "attribute13", + "attribute13format", + "attribute13friendlyname", + "attribute14", + "attribute14format", + "attribute14friendlyname", + "attribute15", + "attribute15format", + "attribute15friendlyname", + "attribute16", + "attribute16format", + "attribute16friendlyname", + "attribute1format", + "attribute1friendlyname", + "attribute2", + "attribute2format", + "attribute2friendlyname", + "attribute3", + "attribute3format", + "attribute3friendlyname", + "attribute4", + "attribute4format", + "attribute4friendlyname", + "attribute5", + "attribute5format", + "attribute5friendlyname", + "attribute6", + "attribute6format", + "attribute6friendlyname", + "attribute7", + "attribute7format", + "attribute7friendlyname", + "attribute8", + "attribute8format", + "attribute8friendlyname", + "attribute9", + "attribute9format", + "attribute9friendlyname", + "audience", + "defaultauthenticationgroup", + "digestmethod", + "encryptassertion", + "encryptionalgorithm", + "keytransportalg", + "logoutbinding", + "metadatarefreshinterval", + "metadataurl", + "name", + "nameidexpr", + "nameidformat", + "rejectunsignedrequests", + "samlbinding", + "samlidpcertname", + "samlissuername", + "samlsigningcertversion", + "samlspcertname", + "samlspcertversion", + "sendpassword", + "serviceproviderid", + "signassertion", + "signaturealg", + "signatureservice", + "skewtime", + "splogouturl", + ] + }, "add_payload_keys": [ "acsurlrule", "assertionconsumerserviceurl", @@ -10918,39 +11696,30 @@ "defaultauthenticationgroup": {"no_log": False, "type": "str"}, "digestmethod": { "choices": ["SHA1", "SHA256"], - "default": "SHA256", "no_log": False, "type": "str", }, "encryptassertion": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "encryptionalgorithm": { "choices": ["AES128", "AES192", "AES256", "DES3"], - "default": "AES256", "no_log": False, "type": "str", }, "keytransportalg": { "choices": ["RSA-V1_5", "RSA_OAEP"], - "default": "RSA_OAEP", "no_log": False, "type": "str", }, "logoutbinding": { "choices": ["POST", "REDIRECT"], - "default": "POST", "no_log": False, "type": "str", }, - "metadatarefreshinterval": { - "default": 3600, - "no_log": False, - "type": "float", - }, + "metadatarefreshinterval": {"no_log": False, "type": "float"}, "metadataurl": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "nameidexpr": {"no_log": False, "type": "str"}, @@ -10965,19 +11734,16 @@ "persistent", "transient", ], - "default": "transient", "no_log": False, "type": "str", }, "rejectunsignedrequests": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, "samlbinding": { "choices": ["ARTIFACT", "POST", "REDIRECT"], - "default": "POST", "no_log": False, "type": "str", }, @@ -10986,29 +11752,23 @@ "samlsigningcertversion": {"no_log": False, "type": "str"}, "samlspcertname": {"no_log": False, "type": "str"}, "samlspcertversion": {"no_log": False, "type": "str"}, - "sendpassword": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "sendpassword": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "serviceproviderid": {"no_log": False, "type": "str"}, "signassertion": { "choices": ["ASSERTION", "BOTH", "NONE", "RESPONSE"], - "default": "ASSERTION", "no_log": False, "type": "str", }, "signaturealg": { "choices": ["RSA-SHA1", "RSA-SHA256"], - "default": "RSA-SHA256", "no_log": False, "type": "str", }, "signatureservice": {"no_log": False, "type": "str"}, - "skewtime": {"default": 5, "no_log": False, "type": "float"}, + "skewtime": {"no_log": False, "type": "float"}, "splogouturl": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "acsurlrule", "assertionconsumerserviceurl", @@ -11114,6 +11874,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "reqaction", "rule"]}, "add_payload_keys": ["name", "reqaction", "rule"], "bindings": [], "bindprimary_key": "", @@ -11129,6 +11890,7 @@ "reqaction": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "reqaction", "rule"], }, "authenticationsmartaccesspolicy": { @@ -11141,6 +11903,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name"]}, "add_payload_keys": ["action", "comment", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -11157,6 +11920,7 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "comment", "name", "rule"], }, "authenticationsmartaccessprofile": { @@ -11169,6 +11933,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name"]}, "add_payload_keys": ["comment", "name", "tags"], "bindings": [], "bindprimary_key": "", @@ -11184,6 +11949,7 @@ "name": {"no_log": False, "type": "str"}, "tags": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["comment", "name", "tags"], }, "authenticationstorefrontauthaction": { @@ -11196,6 +11962,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["defaultauthenticationgroup", "domain", "name"] + }, "add_payload_keys": [ "defaultauthenticationgroup", "domain", @@ -11217,6 +11986,7 @@ "name": {"no_log": False, "type": "str"}, "serverurl": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "defaultauthenticationgroup", "domain", @@ -11234,6 +12004,37 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "accounting", + "attribute1", + "attribute10", + "attribute11", + "attribute12", + "attribute13", + "attribute14", + "attribute15", + "attribute16", + "attribute2", + "attribute3", + "attribute4", + "attribute5", + "attribute6", + "attribute7", + "attribute8", + "attribute9", + "attributes", + "auditfailedcmds", + "authorization", + "authtimeout", + "defaultauthenticationgroup", + "groupattrname", + "name", + "serverip", + "serverport", + "tacacssecret", + ] + }, "add_payload_keys": [ "accounting", "attribute1", @@ -11297,14 +12098,15 @@ "type": "str", }, "authorization": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "authtimeout": {"default": 3, "no_log": False, "type": "float"}, + "authtimeout": {"no_log": False, "type": "float"}, "defaultauthenticationgroup": {"no_log": False, "type": "str"}, "groupattrname": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "serverip": {"no_log": False, "type": "str"}, - "serverport": {"default": 49, "no_log": False, "type": "int"}, + "serverport": {"no_log": False, "type": "int"}, "tacacssecret": {"no_log": True, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "accounting", "attribute1", @@ -11345,6 +12147,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "reqaction", "rule"]}, "add_payload_keys": ["name", "reqaction", "rule"], "bindings": [], "bindprimary_key": "", @@ -11360,6 +12163,7 @@ "reqaction": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "reqaction", "rule"], }, "authenticationvserver": { @@ -11375,6 +12179,19 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "appflowlog", + "authentication", + "authenticationdomain", + "certkeynames", + "comment", + "failedlogintimeout", + "maxloginattempts", + "name", + "samesite", + ] + }, "add_payload_keys": [ "appflowlog", "authentication", @@ -11426,13 +12243,11 @@ "readwrite_arguments": { "appflowlog": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "authentication": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, @@ -11781,20 +12596,16 @@ "name": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, "port": {"no_log": False, "type": "int"}, - "range": {"default": 1, "no_log": False, "type": "float"}, + "range": {"no_log": False, "type": "float"}, "samesite": { "choices": ["LAX", "None", "STRICT"], "no_log": False, "type": "str", }, - "servicetype": { - "choices": ["SSL"], - "default": "SSL", - "no_log": False, - "type": "str", - }, + "servicetype": {"choices": ["SSL"], "no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "appflowlog", "authentication", @@ -11810,6 +12621,7 @@ }, "authenticationvserver_auditnslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -11858,10 +12670,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_auditsyslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -11910,10 +12724,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationcertpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -11962,10 +12778,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationldappolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12014,10 +12832,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationlocalpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12066,10 +12886,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationloginschemapolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12118,10 +12940,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationnegotiatepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12170,10 +12994,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationoauthidppolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12222,10 +13048,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12274,10 +13102,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationradiuspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12326,10 +13156,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationsamlidppolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12378,10 +13210,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationsamlpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12430,10 +13264,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationsmartaccesspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12482,10 +13318,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationtacacspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12534,10 +13372,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_authenticationwebauthpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12586,10 +13426,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_cachepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12638,10 +13480,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_cspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12690,10 +13534,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_responderpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12742,10 +13588,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_rewritepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12794,10 +13642,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_tmsessionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -12846,10 +13696,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationvserver_vpnportaltheme_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "portaltheme"], "bindprimary_key": "portaltheme", "delete_arg_keys": ["portaltheme"], @@ -12863,6 +13715,7 @@ "name": {"no_log": False, "type": "str"}, "portaltheme": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "authenticationwebauthaction": { @@ -12875,6 +13728,31 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "attribute1", + "attribute10", + "attribute11", + "attribute12", + "attribute13", + "attribute14", + "attribute15", + "attribute16", + "attribute2", + "attribute3", + "attribute4", + "attribute5", + "attribute6", + "attribute7", + "attribute8", + "attribute9", + "defaultauthenticationgroup", + "fullreqexpr", + "name", + "serverip", + "serverport", + ] + }, "add_payload_keys": [ "attribute1", "attribute10", @@ -12934,6 +13812,7 @@ "serverport": {"no_log": False, "type": "int"}, "successrule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "attribute1", "attribute10", @@ -12969,6 +13848,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["action", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -12984,6 +13864,7 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "name", "rule"], }, "authorizationpolicy": { @@ -12996,6 +13877,7 @@ "rename", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["action", "name", "rule"], "bindings": ["authorizationpolicylabel_authorizationpolicy_binding"], "bindprimary_key": "", @@ -13028,6 +13910,7 @@ "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "name", "rule"], }, "authorizationpolicylabel": { @@ -13039,6 +13922,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["labelname"], "bindings": ["authorizationpolicylabel_authorizationpolicy_binding"], "bindprimary_key": "", @@ -13069,10 +13953,12 @@ "labelname": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "authorizationpolicylabel_authorizationpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -13111,6 +13997,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "autoscaleaction": { @@ -13123,6 +14010,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "quiettime", "vmdestroygraceperiod"]}, "add_payload_keys": [ "name", "parameters", @@ -13145,15 +14033,16 @@ "name": {"no_log": False, "type": "str"}, "parameters": {"no_log": False, "type": "str"}, "profilename": {"no_log": False, "type": "str"}, - "quiettime": {"default": 300, "no_log": False, "type": "float"}, + "quiettime": {"no_log": False, "type": "float"}, "type": { "choices": ["SCALE_DOWN", "SCALE_UP"], "no_log": False, "type": "str", }, - "vmdestroygraceperiod": {"default": 10, "no_log": False, "type": "float"}, + "vmdestroygraceperiod": {"no_log": False, "type": "float"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "name", "parameters", @@ -13174,6 +14063,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["action", "comment", "logaction", "name", "rule"] + }, "add_payload_keys": ["action", "comment", "logaction", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -13192,6 +14084,7 @@ "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "comment", "logaction", "name", "rule"], }, "autoscaleprofile": { @@ -13203,6 +14096,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["apikey", "name", "sharedsecret", "type", "url"], "bindings": [], "bindprimary_key": "", @@ -13220,10 +14114,12 @@ "type": {"choices": ["CLOUDSTACK"], "no_log": False, "type": "str"}, "url": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["apikey", "name", "sharedsecret", "url"], }, "azureapplication": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "clientid", "clientsecret", @@ -13256,10 +14152,12 @@ "tokenendpoint": {"no_log": False, "type": "str"}, "vaultresource": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "azurekeyvault": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["azureapplication", "azurevaultname", "name"], "bindings": [], "bindprimary_key": "", @@ -13275,10 +14173,12 @@ "azurevaultname": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "botglobal_botpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -13312,7 +14212,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -13332,6 +14231,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "botpolicy": { @@ -13345,6 +14245,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "logaction", "name", "undefaction"] + }, "add_payload_keys": [ "comment", "logaction", @@ -13387,6 +14290,7 @@ "rule": {"no_log": False, "type": "str"}, "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "comment", "logaction", @@ -13405,6 +14309,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "labelname"], "bindings": ["botpolicylabel_botpolicy_binding"], "bindprimary_key": "", @@ -13436,10 +14341,12 @@ "labelname": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "botpolicylabel_botpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -13478,6 +14385,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "botprofile": { @@ -13490,6 +14398,37 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "bot_enable_black_list", + "bot_enable_ip_reputation", + "bot_enable_rate_limit", + "bot_enable_tps", + "bot_enable_white_list", + "clientipexpression", + "comment", + "devicefingerprint", + "devicefingerprintaction", + "devicefingerprintmobile", + "dfprequestlimit", + "errorurl", + "headlessbrowserdetection", + "kmdetection", + "kmeventspostbodylimit", + "kmjavascriptname", + "name", + "sessioncookiename", + "sessiontimeout", + "signature", + "signaturemultipleuseragentheaderaction", + "signaturenouseragentheaderaction", + "spoofedreqaction", + "trap", + "trapaction", + "trapurl", + "verboseloglevel", + ] + }, "add_payload_keys": [ "bot_enable_black_list", "bot_enable_ip_reputation", @@ -13541,31 +14480,26 @@ "readwrite_arguments": { "bot_enable_black_list": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "bot_enable_ip_reputation": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "bot_enable_rate_limit": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "bot_enable_tps": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "bot_enable_white_list": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -13717,20 +14651,17 @@ "comment": {"no_log": False, "type": "str"}, "devicefingerprint": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "devicefingerprintaction": { "choices": ["DROP", "LOG", "MITIGATION", "NONE", "REDIRECT", "RESET"], - "default": "NONE", "elements": "str", "no_log": False, "type": "list", }, "devicefingerprintmobile": { "choices": ["Android", "NONE", "iOS"], - "default": "NONE", "elements": "str", "no_log": False, "type": "list", @@ -13739,16 +14670,10 @@ "errorurl": {"no_log": False, "type": "str"}, "headlessbrowserdetection": { "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, - "kmdetection": { - "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, + "kmdetection": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "kmeventspostbodylimit": {"no_log": False, "type": "float"}, "kmjavascriptname": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, @@ -13757,34 +14682,25 @@ "signature": {"no_log": False, "type": "str"}, "signaturemultipleuseragentheaderaction": { "choices": ["CHECKLAST", "DROP", "LOG", "REDIRECT", "RESET"], - "default": "CHECKLAST", "elements": "str", "no_log": False, "type": "list", }, "signaturenouseragentheaderaction": { "choices": ["DROP", "LOG", "NONE", "REDIRECT", "RESET"], - "default": "DROP", "elements": "str", "no_log": False, "type": "list", }, "spoofedreqaction": { "choices": ["DROP", "LOG", "NONE", "REDIRECT", "RESET"], - "default": "LOG", "elements": "str", "no_log": False, "type": "list", }, - "trap": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "trap": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "trapaction": { "choices": ["DROP", "LOG", "NONE", "REDIRECT", "RESET"], - "default": "NONE", "elements": "str", "no_log": False, "type": "list", @@ -13792,11 +14708,11 @@ "trapurl": {"no_log": False, "type": "str"}, "verboseloglevel": { "choices": ["HTTP_FULL_HEADER", "NONE"], - "default": "NONE", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "bot_enable_black_list", "bot_enable_ip_reputation", @@ -13829,6 +14745,7 @@ }, "botprofile_blacklist_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bot_bind_comment", "bot_blacklist", @@ -13861,14 +14778,12 @@ "bot_blacklist": {"no_log": False, "type": "bool"}, "bot_blacklist_action": { "choices": ["DROP", "LOG", "NONE", "REDIRECT", "RESET"], - "default": "NONE", "elements": "str", "no_log": False, "type": "list", }, "bot_blacklist_enabled": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -13881,10 +14796,12 @@ "logmessage": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "botprofile_captcha_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bot_bind_comment", "bot_captcha_action", @@ -13924,31 +14841,31 @@ "bot_bind_comment": {"no_log": False, "type": "str"}, "bot_captcha_action": { "choices": ["DROP", "LOG", "NONE", "REDIRECT", "RESET"], - "default": "NONE", "elements": "str", "no_log": False, "type": "list", }, "bot_captcha_enabled": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "bot_captcha_url": {"no_log": False, "type": "str"}, "captcharesource": {"no_log": False, "type": "bool"}, - "graceperiod": {"default": 900, "no_log": False, "type": "float"}, + "graceperiod": {"no_log": False, "type": "float"}, "logmessage": {"no_log": False, "type": "str"}, - "muteperiod": {"default": 300, "no_log": False, "type": "float"}, + "muteperiod": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, - "requestsizelimit": {"default": 8000, "no_log": False, "type": "float"}, - "retryattempts": {"default": 3, "no_log": False, "type": "float"}, - "waittime": {"default": 15, "no_log": False, "type": "float"}, + "requestsizelimit": {"no_log": False, "type": "float"}, + "retryattempts": {"no_log": False, "type": "float"}, + "waittime": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "botprofile_ipreputation_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bot_bind_comment", "bot_iprep_action", @@ -13978,14 +14895,12 @@ "bot_bind_comment": {"no_log": False, "type": "str"}, "bot_iprep_action": { "choices": ["DROP", "LOG", "MITIGATION", "NONE", "REDIRECT", "RESET"], - "default": "NONE", "elements": "str", "no_log": False, "type": "list", }, "bot_iprep_enabled": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -14019,10 +14934,12 @@ "logmessage": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "botprofile_kmdetectionexpr_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bot_bind_comment", "bot_km_detection_enabled", @@ -14052,7 +14969,6 @@ "bot_bind_comment": {"no_log": False, "type": "str"}, "bot_km_detection_enabled": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -14062,10 +14978,12 @@ "logmessage": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "botprofile_logexpression_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bot_bind_comment", "bot_log_expression_enabled", @@ -14095,7 +15013,6 @@ "bot_bind_comment": {"no_log": False, "type": "str"}, "bot_log_expression_enabled": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -14105,10 +15022,12 @@ "logmessage": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "botprofile_ratelimit_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bot_bind_comment", "bot_rate_limit_action", @@ -14160,14 +15079,12 @@ "bot_bind_comment": {"no_log": False, "type": "str"}, "bot_rate_limit_action": { "choices": ["DROP", "LOG", "NONE", "REDIRECT", "RESET"], - "default": "NONE", "elements": "str", "no_log": False, "type": "list", }, "bot_rate_limit_enabled": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -14442,13 +15359,15 @@ }, "logmessage": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, - "rate": {"default": 1, "no_log": False, "type": "float"}, - "timeslice": {"default": 1000, "no_log": False, "type": "float"}, + "rate": {"no_log": False, "type": "float"}, + "timeslice": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "botprofile_tps_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bot_bind_comment", "bot_tps", @@ -14483,14 +15402,12 @@ "bot_tps": {"no_log": False, "type": "bool"}, "bot_tps_action": { "choices": ["DROP", "LOG", "MITIGATION", "NONE", "REDIRECT", "RESET"], - "default": "NONE", "elements": "str", "no_log": False, "type": "list", }, "bot_tps_enabled": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, @@ -14504,10 +15421,12 @@ "percentage": {"no_log": False, "type": "float"}, "threshold": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "botprofile_trapinsertionurl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bot_bind_comment", "bot_trap_url", @@ -14536,7 +15455,6 @@ "bot_trap_url": {"no_log": False, "type": "str"}, "bot_trap_url_insertion_enabled": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -14544,10 +15462,12 @@ "name": {"no_log": False, "type": "str"}, "trapinsertionurl": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "botprofile_whitelist_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bot_bind_comment", "bot_whitelist", @@ -14580,7 +15500,6 @@ "bot_whitelist": {"no_log": False, "type": "bool"}, "bot_whitelist_enabled": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -14590,19 +15509,34 @@ "type": "str", }, "bot_whitelist_value": {"no_log": False, "type": "str"}, - "log": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "log": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "logmessage": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "botsettings": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "defaultnonintrusiveprofile", + "defaultprofile", + "dfprequestlimit", + "javascriptname", + "proxypassword", + "proxyport", + "proxyserver", + "proxyusername", + "sessioncookiename", + "sessiontimeout", + "signatureautoupdate", + "signatureurl", + "trapurlautogenerate", + "trapurlinterval", + "trapurllength", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -14616,7 +15550,6 @@ "readwrite_arguments": { "defaultnonintrusiveprofile": { "choices": ["BOT_BYPASS", "BOT_LOG", "BOT_STATS"], - "default": "BOT_STATS", "no_log": False, "type": "str", }, @@ -14624,31 +15557,26 @@ "dfprequestlimit": {"no_log": False, "type": "float"}, "javascriptname": {"no_log": False, "type": "str"}, "proxypassword": {"no_log": True, "type": "str"}, - "proxyport": {"default": 8080, "no_log": False, "type": "int"}, + "proxyport": {"no_log": False, "type": "int"}, "proxyserver": {"no_log": False, "type": "str"}, "proxyusername": {"no_log": False, "type": "str"}, "sessioncookiename": {"no_log": False, "type": "str"}, "sessiontimeout": {"no_log": False, "type": "float"}, "signatureautoupdate": { "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, - "signatureurl": { - "default": "https://nsbotsignatures.s3.amazonaws.com/BotSignatureMapping.json", "no_log": False, "type": "str", }, + "signatureurl": {"no_log": False, "type": "str"}, "trapurlautogenerate": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, - "trapurlinterval": {"default": 3600, "no_log": False, "type": "float"}, - "trapurllength": {"default": 32, "no_log": False, "type": "float"}, + "trapurlinterval": {"no_log": False, "type": "float"}, + "trapurllength": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "defaultnonintrusiveprofile", "defaultprofile", @@ -14669,6 +15597,11 @@ }, "botsignature": { "_supported_operations": ["Import", "change", "delete", "get", "get-byname"], + "action_payload_keys": { + "import": ["comment", "name", "overwrite", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -14685,6 +15618,7 @@ "overwrite": {"no_log": False, "type": "bool"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "bridgegroup": { @@ -14697,6 +15631,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["dynamicrouting", "id", "ipv6dynamicrouting"] + }, "add_payload_keys": ["dynamicrouting", "id", "ipv6dynamicrouting"], "bindings": [ "bridgegroup_nsip6_binding", @@ -14762,22 +15699,22 @@ }, "dynamicrouting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "id": {"no_log": False, "type": "float"}, "ipv6dynamicrouting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": ["dynamicrouting", "id", "ipv6dynamicrouting"], }, "bridgegroup_nsip6_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ipaddress", "netmask", "ownergroup", "td"], "bindprimary_key": "ipaddress", "delete_arg_keys": ["ipaddress", "netmask", "ownergroup", "td"], @@ -14791,13 +15728,15 @@ "id": {"no_log": False, "type": "float"}, "ipaddress": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "bridgegroup_nsip_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ipaddress", "netmask", "ownergroup", "td"], "bindprimary_key": "ipaddress", "delete_arg_keys": ["ipaddress", "netmask", "ownergroup", "td"], @@ -14811,13 +15750,15 @@ "id": {"no_log": False, "type": "float"}, "ipaddress": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "bridgegroup_vlan_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "vlan"], "bindprimary_key": "vlan", "delete_arg_keys": ["vlan"], @@ -14831,6 +15772,7 @@ "id": {"no_log": False, "type": "float"}, "vlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "bridgetable": { @@ -14843,6 +15785,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["bridgeage"]}, "add_payload_keys": ["devicevlan", "mac", "vni", "vtep", "vxlan"], "bindings": [], "bindprimary_key": "", @@ -14854,7 +15797,7 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "bridgeage": {"default": 300, "no_log": False, "type": "float"}, + "bridgeage": {"no_log": False, "type": "float"}, "devicevlan": {"no_log": False, "type": "float"}, "ifnum": {"no_log": False, "type": "str"}, "mac": {"no_log": False, "type": "str"}, @@ -14864,6 +15807,7 @@ "vtep": {"no_log": False, "type": "str"}, "vxlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": ["bridgeage"], }, "cachecontentgroup": { @@ -14879,6 +15823,48 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "absexpiry", + "absexpirygmt", + "alwaysevalpolicies", + "cachecontrol", + "expireatlastbyte", + "flashcache", + "heurexpiryparam", + "hitparams", + "hitselector", + "ignoreparamvaluecase", + "ignorereloadreq", + "ignorereqcachinghdrs", + "insertage", + "insertetag", + "insertvia", + "invalparams", + "invalrestrictedtohost", + "invalselector", + "lazydnsresolve", + "matchcookies", + "maxressize", + "memlimit", + "minhits", + "minressize", + "name", + "persistha", + "pinned", + "polleverytime", + "prefetch", + "prefetchmaxpending", + "prefetchperiod", + "prefetchperiodmillisec", + "quickabortsize", + "relexpiry", + "relexpirymillisec", + "removecookies", + "weaknegrelexpiry", + "weakposrelexpiry", + ] + }, "add_payload_keys": [ "absexpiry", "absexpirygmt", @@ -14934,23 +15920,16 @@ "absexpirygmt": {"elements": "str", "no_log": False, "type": "list"}, "alwaysevalpolicies": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "cachecontrol": {"no_log": False, "type": "str"}, "expireatlastbyte": { "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, - "flashcache": { - "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, + "flashcache": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "heurexpiryparam": {"no_log": False, "type": "float"}, "hitparams": {"elements": "str", "no_log": False, "type": "list"}, "hitselector": {"no_log": False, "type": "str"}, @@ -14962,34 +15941,17 @@ }, "ignorereloadreq": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "ignorereqcachinghdrs": { "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, - "insertage": { - "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, - "insertetag": { - "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, - "insertvia": { - "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, + "insertage": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "insertetag": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "insertvia": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "invalparams": {"elements": "str", "no_log": False, "type": "list"}, "invalrestrictedtohost": { "choices": ["NO", "YES"], @@ -14999,69 +15961,38 @@ "invalselector": {"no_log": False, "type": "str"}, "lazydnsresolve": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "matchcookies": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "maxressize": {"default": 80, "no_log": False, "type": "float"}, - "memlimit": {"default": 65536, "no_log": False, "type": "float"}, + "maxressize": {"no_log": False, "type": "float"}, + "memlimit": {"no_log": False, "type": "float"}, "minhits": {"no_log": False, "type": "int"}, "minressize": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, - "persistha": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, - "pinned": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, - "polleverytime": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, - "prefetch": { - "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, + "persistha": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "pinned": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "polleverytime": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "prefetch": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "prefetchmaxpending": {"no_log": False, "type": "float"}, "prefetchperiod": {"no_log": False, "type": "float"}, "prefetchperiodmillisec": {"no_log": False, "type": "float"}, "query": {"no_log": False, "type": "str"}, - "quickabortsize": {"default": 4194303, "no_log": False, "type": "float"}, + "quickabortsize": {"no_log": False, "type": "float"}, "relexpiry": {"no_log": False, "type": "float"}, "relexpirymillisec": {"no_log": False, "type": "float"}, - "removecookies": { - "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, + "removecookies": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "selectorvalue": {"no_log": False, "type": "str"}, - "tosecondary": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "tosecondary": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "type": { "choices": ["HTTP", "MSSQL", "MYSQL"], - "default": "HTTP", "no_log": False, "type": "str", }, "weaknegrelexpiry": {"no_log": False, "type": "float"}, "weakposrelexpiry": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "absexpiry", "absexpirygmt", @@ -15105,6 +16036,7 @@ }, "cacheforwardproxy": { "_supported_operations": ["add", "count", "delete", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ipaddress", "port"], "bindings": [], "bindprimary_key": "", @@ -15119,10 +16051,12 @@ "ipaddress": {"no_log": False, "type": "str"}, "port": {"no_log": False, "type": "int"}, }, + "singleton": False, "update_payload_keys": [], }, "cacheglobal_cachepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -15158,7 +16092,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -15173,7 +16106,6 @@ "policy": {"no_log": False, "type": "str"}, "precededefrules": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, @@ -15193,10 +16125,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "cacheobject": { "_supported_operations": ["count", "expire", "flush", "get", "save"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -15222,12 +16156,7 @@ "group": {"no_log": False, "type": "str"}, "groupname": {"no_log": False, "type": "str"}, "host": {"no_log": False, "type": "str"}, - "httpmethod": { - "choices": ["GET", "POST"], - "default": "GET", - "no_log": False, - "type": "str", - }, + "httpmethod": {"choices": ["GET", "POST"], "no_log": False, "type": "str"}, "httpstatus": {"no_log": False, "type": "float"}, "ignoremarkerobjects": { "choices": ["OFF", "ON"], @@ -15241,19 +16170,27 @@ }, "locator": {"no_log": False, "type": "float"}, "nodeid": {"no_log": False, "type": "float"}, - "port": {"default": 80, "no_log": False, "type": "int"}, - "tosecondary": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "port": {"no_log": False, "type": "int"}, + "tosecondary": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "url": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "cacheparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "enablebypass", + "enablehaobjpersist", + "maxpostlen", + "memlimit", + "prefetchmaxpending", + "undefaction", + "verifyusing", + "via", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -15268,11 +16205,10 @@ "enablebypass": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "enablehaobjpersist": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "maxpostlen": {"default": 4096, "no_log": False, "type": "float"}, + "maxpostlen": {"no_log": False, "type": "float"}, "memlimit": {"no_log": False, "type": "float"}, "prefetchmaxpending": {"no_log": False, "type": "float"}, "undefaction": { @@ -15287,6 +16223,7 @@ }, "via": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "enablebypass", "enablehaobjpersist", @@ -15309,6 +16246,15 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "invalgroups", + "invalobjects", + "policyname", + "storeingroup", + "undefaction", + ] + }, "add_payload_keys": [ "action", "invalgroups", @@ -15361,6 +16307,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "action", "invalgroups", @@ -15380,6 +16327,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["evaluates", "labelname"], "bindings": ["cachepolicylabel_cachepolicy_binding"], "bindprimary_key": "", @@ -15424,10 +16372,12 @@ "labelname": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "cachepolicylabel_cachepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -15466,6 +16416,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "cacheselector": { @@ -15477,6 +16428,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["rule", "selectorname"], "bindings": [], "bindprimary_key": "", @@ -15491,10 +16443,22 @@ "rule": {"elements": "str", "no_log": False, "type": "list"}, "selectorname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["rule", "selectorname"], }, "callhome": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "emailaddress", + "hbcustominterval", + "ipaddress", + "mode", + "port", + "proxyauthservice", + "proxymode", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -15507,24 +16471,15 @@ "primary_key": "", "readwrite_arguments": { "emailaddress": {"no_log": False, "type": "str"}, - "hbcustominterval": {"default": 7, "no_log": False, "type": "float"}, + "hbcustominterval": {"no_log": False, "type": "float"}, "ipaddress": {"no_log": False, "type": "str"}, - "mode": { - "choices": ["CSP", "Default"], - "default": "Default", - "no_log": False, - "type": "str", - }, + "mode": {"choices": ["CSP", "Default"], "no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, "port": {"no_log": False, "type": "int"}, "proxyauthservice": {"no_log": False, "type": "str"}, - "proxymode": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "proxymode": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "emailaddress", "hbcustominterval", @@ -15545,6 +16500,23 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "bandwidthhigh", + "bandwidthnormal", + "flowctl", + "haheartbeat", + "hamonitor", + "id", + "ifalias", + "linkredundancy", + "lrminthroughput", + "mtu", + "speed", + "tagall", + "throughput", + ] + }, "add_payload_keys": [ "bandwidthhigh", "bandwidthnormal", @@ -15594,29 +16566,17 @@ }, "flowctl": { "choices": ["OFF", "ON", "RX", "RXTX", "TX"], - "default": "OFF", - "no_log": False, - "type": "str", - }, - "haheartbeat": { - "choices": ["OFF", "ON"], - "default": "ON", - "no_log": False, - "type": "str", - }, - "hamonitor": { - "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, + "haheartbeat": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "hamonitor": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "id": {"no_log": False, "type": "str"}, - "ifalias": {"default": '" "', "no_log": False, "type": "str"}, + "ifalias": {"no_log": False, "type": "str"}, "ifnum": {"elements": "str", "no_log": False, "type": "list"}, "lamac": {"no_log": False, "type": "str"}, "linkredundancy": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -15627,7 +16587,7 @@ "type": "str", }, "mode": {"choices": ["AUTO", "MANUAL"], "no_log": False, "type": "str"}, - "mtu": {"default": 1500, "no_log": False, "type": "float"}, + "mtu": {"no_log": False, "type": "float"}, "speed": { "choices": [ "10", @@ -15640,24 +16600,14 @@ "50000", "AUTO", ], - "default": "AUTO", - "no_log": False, - "type": "str", - }, - "tagall": { - "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, + "tagall": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "throughput": {"no_log": False, "type": "float"}, - "trunk": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "trunk": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "bandwidthhigh", "bandwidthnormal", @@ -15677,6 +16627,7 @@ }, "channel_interface_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ifnum"], "bindprimary_key": "ifnum", "delete_arg_keys": ["ifnum"], @@ -15691,6 +16642,7 @@ "ifnum": {"elements": "str", "no_log": False, "type": "list"}, "svmcmd": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "cloudallowedngsticketprofile": { @@ -15702,6 +16654,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["creator", "name"], "bindings": [], "bindprimary_key": "", @@ -15716,10 +16669,12 @@ "creator": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["creator", "name"], }, "cloudawsparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["rolearn"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -15731,10 +16686,12 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"rolearn": {"no_log": False, "type": "str"}}, + "singleton": True, "update_payload_keys": ["rolearn"], }, "cloudcredential": { "_supported_operations": ["get", "update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -15750,6 +16707,7 @@ "applicationsecret": {"no_log": True, "type": "str"}, "tenantidentifier": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "applicationid", "applicationsecret", @@ -15758,6 +16716,14 @@ }, "cloudngsparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "allowdtls12", + "allowedudtversion", + "blockonallowedngstktprof", + "csvserverticketingdecouple", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -15769,31 +16735,24 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "allowdtls12": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "allowdtls12": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "allowedudtversion": { "choices": ["V4", "V5", "V6", "V7"], - "default": "V4", "no_log": False, "type": "str", }, "blockonallowedngstktprof": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "csvserverticketingdecouple": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "allowdtls12", "allowedudtversion", @@ -15803,6 +16762,9 @@ }, "cloudparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": ["customerid", "instanceid", "resourcelocation"] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -15831,6 +16793,7 @@ "instanceid": {"no_log": False, "type": "str"}, "resourcelocation": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "activationcode", "connectorresidence", @@ -15844,6 +16807,7 @@ }, "cloudparaminternal": { "_supported_operations": ["count", "get", "update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -15857,10 +16821,12 @@ "readwrite_arguments": { "nonftumode": {"choices": ["NO", "YES"], "no_log": False, "type": "str"} }, + "singleton": False, "update_payload_keys": ["nonftumode"], }, "cloudprofile": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "azurepollperiod", "azuretagname", @@ -15902,7 +16868,7 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "azurepollperiod": {"default": 60, "no_log": False, "type": "float"}, + "azurepollperiod": {"no_log": False, "type": "float"}, "azuretagname": {"no_log": False, "type": "str"}, "azuretagvalue": {"no_log": False, "type": "str"}, "boundservicegroupsvctype": { @@ -15960,12 +16926,7 @@ "type": "str", }, "delay": {"no_log": False, "type": "float"}, - "graceful": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "graceful": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "ipaddress": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "port": {"no_log": False, "type": "int"}, @@ -16028,10 +16989,12 @@ "vservername": {"no_log": False, "type": "str"}, "vsvrbindsvcport": {"no_log": False, "type": "int"}, }, + "singleton": False, "update_payload_keys": [], }, "cloudtunnelparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["subnetresourcelocationmappings"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -16048,6 +17011,7 @@ "resourcelocation": {"no_log": False, "type": "str"}, "subnetresourcelocationmappings": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "controllerfqdn", "fqdn", @@ -16064,6 +17028,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["listenpolicy", "listenpriority", "name", "servicetype"], "bindings": [], "bindprimary_key": "", @@ -16075,15 +17040,17 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "listenpolicy": {"default": '"none"', "no_log": False, "type": "str"}, - "listenpriority": {"default": 101, "no_log": False, "type": "float"}, + "listenpolicy": {"no_log": False, "type": "str"}, + "listenpriority": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, "servicetype": {"choices": ["TCP", "UDP"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["listenpolicy", "listenpriority", "name"], }, "cluster": { "_supported_operations": ["join"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [ "clusternode_routemonitor_binding", @@ -16303,10 +17270,12 @@ }, "password": {"no_log": True, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "clusterfiles": { "_supported_operations": ["sync"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -16337,6 +17306,7 @@ "type": "list", } }, + "singleton": True, "update_payload_keys": [], }, "clusterinstance": { @@ -16351,6 +17321,23 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "backplanebasedview", + "clid", + "clusterproxyarp", + "deadinterval", + "dfdretainl2params", + "hellointerval", + "inc", + "nodegroup", + "preemption", + "processlocal", + "quorumtype", + "retainconnectionsoncluster", + "syncstatusstrictmode", + ] + }, "add_payload_keys": [ "backplanebasedview", "clid", @@ -16377,63 +17364,51 @@ "readwrite_arguments": { "backplanebasedview": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "clid": {"no_log": False, "type": "float"}, "clusterproxyarp": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "deadinterval": {"default": 3, "no_log": False, "type": "float"}, + "deadinterval": {"no_log": False, "type": "float"}, "dfdretainl2params": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "hellointerval": {"default": 200, "no_log": False, "type": "float"}, - "inc": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, + "hellointerval": {"no_log": False, "type": "float"}, + "inc": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "nodegroup": {"no_log": False, "type": "str"}, "preemption": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "processlocal": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "quorumtype": { "choices": ["MAJORITY", "NONE"], - "default": "MAJORITY", "no_log": False, "type": "str", }, "retainconnectionsoncluster": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "syncstatusstrictmode": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "backplanebasedview", "clid", @@ -16460,6 +17435,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["backplane", "delay", "nodeid", "priority", "tunnelmode"] + }, "add_payload_keys": [ "backplane", "delay", @@ -16495,7 +17473,6 @@ "backplane": {"no_log": False, "type": "str"}, "clearnodegroupconfig": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, @@ -16693,16 +17670,16 @@ }, "delay": {"no_log": False, "type": "float"}, "ipaddress": {"no_log": False, "type": "str"}, - "nodegroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "nodegroup": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, - "priority": {"default": 31, "no_log": False, "type": "float"}, + "priority": {"no_log": False, "type": "float"}, "tunnelmode": { "choices": ["GRE", "NONE", "UDP"], - "default": "NONE", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "backplane", "delay", @@ -16713,6 +17690,7 @@ }, "clusternode_routemonitor_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["netmask", "nodeid", "routemonitor"], "bindprimary_key": "routemonitor", "delete_arg_keys": ["netmask", "routemonitor"], @@ -16727,6 +17705,7 @@ "nodeid": {"no_log": False, "type": "float"}, "routemonitor": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "clusternodegroup": { @@ -16739,6 +17718,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "strict"]}, "add_payload_keys": ["name", "priority", "sticky", "strict"], "bindings": [ "clusternodegroup_authenticationvserver_binding", @@ -16940,23 +17920,15 @@ }, "name": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, - "sticky": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, - "strict": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "sticky": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "strict": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "priority", "strict"], }, "clusternodegroup_authenticationvserver_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "vserver"], "bindprimary_key": "vserver", "delete_arg_keys": ["vserver"], @@ -16970,10 +17942,12 @@ "name": {"no_log": False, "type": "str"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "clusternodegroup_clusternode_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "node"], "bindprimary_key": "node", "delete_arg_keys": ["node"], @@ -16987,10 +17961,12 @@ "name": {"no_log": False, "type": "str"}, "node": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "clusternodegroup_crvserver_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "vserver"], "bindprimary_key": "vserver", "delete_arg_keys": ["vserver"], @@ -17004,10 +17980,12 @@ "name": {"no_log": False, "type": "str"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "clusternodegroup_csvserver_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "vserver"], "bindprimary_key": "vserver", "delete_arg_keys": ["vserver"], @@ -17021,10 +17999,12 @@ "name": {"no_log": False, "type": "str"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "clusternodegroup_gslbsite_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gslbsite", "name"], "bindprimary_key": "gslbsite", "delete_arg_keys": ["gslbsite"], @@ -17038,10 +18018,12 @@ "gslbsite": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "clusternodegroup_gslbvserver_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "vserver"], "bindprimary_key": "vserver", "delete_arg_keys": ["vserver"], @@ -17055,10 +18037,12 @@ "name": {"no_log": False, "type": "str"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "clusternodegroup_lbvserver_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "vserver"], "bindprimary_key": "vserver", "delete_arg_keys": ["vserver"], @@ -17072,10 +18056,12 @@ "name": {"no_log": False, "type": "str"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "clusternodegroup_nslimitidentifier_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["identifiername", "name"], "bindprimary_key": "identifiername", "delete_arg_keys": ["identifiername"], @@ -17089,10 +18075,12 @@ "identifiername": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "clusternodegroup_service_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "service"], "bindprimary_key": "service", "delete_arg_keys": ["service"], @@ -17106,10 +18094,12 @@ "name": {"no_log": False, "type": "str"}, "service": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "clusternodegroup_streamidentifier_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["identifiername", "name"], "bindprimary_key": "identifiername", "delete_arg_keys": ["identifiername"], @@ -17123,10 +18113,12 @@ "identifiername": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "clusternodegroup_vpnvserver_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "vserver"], "bindprimary_key": "vserver", "delete_arg_keys": ["vserver"], @@ -17140,10 +18132,12 @@ "name": {"no_log": False, "type": "str"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "clusterpropstatus": { "_supported_operations": ["clear", "count", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -17155,6 +18149,7 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"nodeid": {"no_log": False, "type": "float"}}, + "singleton": False, "update_payload_keys": [], }, "cmpaction": { @@ -17168,6 +18163,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["addvaryheader", "name"]}, "add_payload_keys": ["addvaryheader", "cmptype", "name", "varyheadervalue"], "bindings": [], "bindprimary_key": "", @@ -17181,7 +18177,6 @@ "readwrite_arguments": { "addvaryheader": { "choices": ["DISABLED", "ENABLED", "GLOBAL"], - "default": "GLOBAL", "no_log": False, "type": "str", }, @@ -17192,7 +18187,6 @@ }, "deltatype": { "choices": ["PERPOLICY", "PERURL"], - "default": "PERURL", "no_log": False, "type": "str", }, @@ -17200,10 +18194,12 @@ "newname": {"no_log": False, "type": "str"}, "varyheadervalue": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["addvaryheader", "cmptype", "name", "varyheadervalue"], }, "cmpglobal_cmppolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -17237,7 +18233,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -17267,10 +18262,25 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "cmpparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "addvaryheader", + "cmpbypasspct", + "cmplevel", + "cmponpush", + "externalcache", + "minressize", + "policytype", + "quantumsize", + "servercmp", + "varyheadervalue", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -17284,53 +18294,31 @@ "readwrite_arguments": { "addvaryheader": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "cmpbypasspct": {"default": 100, "no_log": False, "type": "float"}, + "cmpbypasspct": {"no_log": False, "type": "float"}, "cmplevel": { "choices": ["bestcompression", "bestspeed", "optimal"], - "default": "optimal", "no_log": False, "type": "str", }, "cmponpush": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "externalcache": { - "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "heurexpiry": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, - "heurexpiryhistwt": {"default": 50, "no_log": False, "type": "float"}, - "heurexpirythres": {"default": 100, "no_log": False, "type": "float"}, + "externalcache": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "heurexpiry": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "heurexpiryhistwt": {"no_log": False, "type": "float"}, + "heurexpirythres": {"no_log": False, "type": "float"}, "minressize": {"no_log": False, "type": "float"}, - "policytype": { - "choices": ["ADVANCED"], - "default": "ADVANCED", - "no_log": False, - "type": "str", - }, - "quantumsize": {"default": 57344, "no_log": False, "type": "float"}, - "servercmp": { - "choices": ["OFF", "ON"], - "default": "ON", - "no_log": False, - "type": "str", - }, + "policytype": {"choices": ["ADVANCED"], "no_log": False, "type": "str"}, + "quantumsize": {"no_log": False, "type": "float"}, + "servercmp": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "varyheadervalue": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "addvaryheader", "cmpbypasspct", @@ -17354,6 +18342,7 @@ "rename", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "resaction", "rule"], "bindings": ["cmppolicylabel_cmppolicy_binding"], "bindprimary_key": "", @@ -17386,6 +18375,7 @@ "resaction": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "resaction", "rule"], }, "cmppolicylabel": { @@ -17397,6 +18387,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["labelname", "type"], "bindings": ["cmppolicylabel_cmppolicy_binding"], "bindprimary_key": "", @@ -17432,10 +18423,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "cmppolicylabel_cmppolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -17474,6 +18467,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "contentinspectionaction": { @@ -17486,6 +18480,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["ifserverdown", "name", "serverport"]}, "add_payload_keys": [ "icapprofilename", "ifserverdown", @@ -17508,20 +18503,20 @@ "icapprofilename": {"no_log": False, "type": "str"}, "ifserverdown": { "choices": ["CONTINUE", "DROP", "RESET"], - "default": "RESET", "no_log": False, "type": "str", }, "name": {"no_log": False, "type": "str"}, "serverip": {"no_log": False, "type": "str"}, "servername": {"no_log": False, "type": "str"}, - "serverport": {"default": 1344, "no_log": False, "type": "float"}, + "serverport": {"no_log": False, "type": "float"}, "type": { "choices": ["ICAP", "INLINEINSPECTION", "MIRROR", "NOINSPECTION"], "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "icapprofilename", "ifserverdown", @@ -17541,6 +18536,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name", "serverport"]}, "add_payload_keys": [ "comment", "name", @@ -17573,9 +18569,10 @@ }, "serverip": {"no_log": False, "type": "str"}, "servername": {"no_log": False, "type": "str"}, - "serverport": {"default": 1344, "no_log": False, "type": "float"}, + "serverport": {"no_log": False, "type": "float"}, "type": {"choices": ["ICAP"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "comment", "name", @@ -17589,6 +18586,7 @@ }, "contentinspectionglobal_contentinspectionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -17622,7 +18620,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -17647,10 +18644,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "contentinspectionparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["undefaction"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -17661,9 +18660,8 @@ "immutable_keys": [], "password_keys": [], "primary_key": "", - "readwrite_arguments": { - "undefaction": {"default": '"NOINSPECTION"', "no_log": False, "type": "str"} - }, + "readwrite_arguments": {"undefaction": {"no_log": False, "type": "str"}}, + "singleton": True, "update_payload_keys": ["undefaction"], }, "contentinspectionpolicy": { @@ -17677,6 +18675,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "logaction", "name", "undefaction"] + }, "add_payload_keys": [ "action", "comment", @@ -17719,6 +18720,7 @@ "rule": {"no_log": False, "type": "str"}, "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "action", "comment", @@ -17737,6 +18739,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "labelname", "type"], "bindings": ["contentinspectionpolicylabel_contentinspectionpolicy_binding"], "bindprimary_key": "", @@ -17769,10 +18772,12 @@ "newname": {"no_log": False, "type": "str"}, "type": {"choices": ["REQ", "RES"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "contentinspectionpolicylabel_contentinspectionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -17811,6 +18816,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "contentinspectionprofile": { @@ -17823,6 +18829,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["egressvlan", "ingressvlan", "name"]}, "add_payload_keys": [ "egressinterface", "egressvlan", @@ -17854,6 +18861,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "egressinterface", "egressvlan", @@ -17874,6 +18882,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["logaction", "policyname"]}, "add_payload_keys": ["action", "logaction", "policyname", "rule"], "bindings": [], "bindprimary_key": "", @@ -17891,6 +18900,7 @@ "policyname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "logaction", "policyname", "rule"], }, "crvserver": { @@ -17906,6 +18916,45 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "appflowlog", + "arp", + "backendssl", + "backupvserver", + "clttimeout", + "comment", + "destinationvserver", + "disableprimaryondown", + "disallowserviceaccess", + "dnsvservername", + "domain", + "downstateflush", + "httpprofilename", + "icmpvsrresponse", + "ipset", + "l2conn", + "listenpolicy", + "listenpriority", + "name", + "netprofile", + "onpolicymatch", + "originusip", + "precedence", + "probeprotocol", + "probesuccessresponsecode", + "redirect", + "redirecturl", + "reuse", + "rhistate", + "srcipexpr", + "tcpprobeport", + "tcpprofilename", + "useoriginipportforcache", + "useportrange", + "via", + ] + }, "add_payload_keys": [ "appflowlog", "arp", @@ -17994,14 +19043,12 @@ "readwrite_arguments": { "appflowlog": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "arp": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "backendssl": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -18257,13 +19304,11 @@ "destinationvserver": {"no_log": False, "type": "str"}, "disableprimaryondown": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "disallowserviceaccess": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -18271,7 +19316,6 @@ "domain": {"no_log": False, "type": "str"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -18280,61 +19324,43 @@ "httpprofilename": {"no_log": False, "type": "str"}, "icmpvsrresponse": { "choices": ["ACTIVE", "PASSIVE"], - "default": "PASSIVE", "no_log": False, "type": "str", }, "ipset": {"no_log": False, "type": "str"}, "ipv46": {"no_log": False, "type": "str"}, "l2conn": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "listenpolicy": {"default": '"NONE"', "no_log": False, "type": "str"}, - "listenpriority": {"default": 101, "no_log": False, "type": "float"}, + "listenpolicy": {"no_log": False, "type": "str"}, + "listenpriority": {"no_log": False, "type": "float"}, "map": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "netprofile": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, "onpolicymatch": { "choices": ["CACHE", "ORIGIN"], - "default": "ORIGIN", "no_log": False, "type": "str", }, "originusip": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "port": {"default": 80, "no_log": False, "type": "int"}, - "precedence": { - "choices": ["RULE", "URL"], - "default": "RULE", - "no_log": False, - "type": "str", - }, + "port": {"no_log": False, "type": "int"}, + "precedence": {"choices": ["RULE", "URL"], "no_log": False, "type": "str"}, "probeport": {"no_log": False, "type": "int"}, "probeprotocol": { "choices": ["HTTP", "TCP"], "no_log": False, "type": "str", }, - "probesuccessresponsecode": { - "default": '"200 ' 'OK"', - "no_log": False, - "type": "str", - }, - "range": {"default": 1, "no_log": False, "type": "float"}, + "probesuccessresponsecode": {"no_log": False, "type": "str"}, + "range": {"no_log": False, "type": "float"}, "redirect": { "choices": ["CACHE", "ORIGIN", "POLICY"], - "default": "POLICY", "no_log": False, "type": "str", }, "redirecturl": {"no_log": False, "type": "str"}, - "reuse": { - "choices": ["OFF", "ON"], - "default": "ON", - "no_log": False, - "type": "str", - }, + "reuse": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "rhistate": { "choices": ["ACTIVE", "PASSIVE"], - "default": "PASSIVE", "no_log": False, "type": "str", }, @@ -18351,23 +19377,13 @@ "td": {"no_log": False, "type": "float"}, "useoriginipportforcache": { "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, - "useportrange": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, - "via": { - "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, + "useportrange": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "via": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "appflowlog", "arp", @@ -18410,6 +19426,7 @@ }, "crvserver_analyticsprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["analyticsprofile", "name"], "bindprimary_key": "analyticsprofile", "delete_arg_keys": ["analyticsprofile"], @@ -18423,10 +19440,12 @@ "analyticsprofile": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_appflowpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -18475,10 +19494,12 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_appfwpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -18527,10 +19548,12 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_appqoepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -18579,10 +19602,12 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_cachepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -18631,10 +19656,12 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_cmppolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -18683,10 +19710,12 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_crpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -18735,10 +19764,12 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_cspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -18787,10 +19818,12 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_feopolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -18839,10 +19872,12 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_icapolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -18891,10 +19926,12 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_lbvserver_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["lbvserver", "name"], "bindprimary_key": "lbvserver", "delete_arg_keys": ["lbvserver"], @@ -18908,10 +19945,12 @@ "lbvserver": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_policymap_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -18960,10 +19999,12 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_responderpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -19012,10 +20053,12 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_rewritepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -19064,10 +20107,12 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "crvserver_spilloverpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -19116,6 +20161,7 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csaction": { @@ -19129,6 +20175,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name"]}, "add_payload_keys": [ "comment", "name", @@ -19153,6 +20200,7 @@ "targetvserver": {"no_log": False, "type": "str"}, "targetvserverexpr": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "comment", "name", @@ -19163,6 +20211,7 @@ }, "csparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["stateupdate"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -19176,11 +20225,11 @@ "readwrite_arguments": { "stateupdate": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", } }, + "singleton": True, "update_payload_keys": ["stateupdate"], }, "cspolicy": { @@ -19194,6 +20243,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["logaction", "policyname"]}, "add_payload_keys": ["action", "logaction", "policyname", "rule"], "bindings": ["cspolicylabel_cspolicy_binding"], "bindprimary_key": "", @@ -19227,6 +20277,7 @@ "policyname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "logaction", "policyname", "rule"], }, "cspolicylabel": { @@ -19238,6 +20289,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["cspolicylabeltype", "labelname"], "bindings": ["cspolicylabel_cspolicy_binding"], "bindprimary_key": "", @@ -19297,10 +20349,12 @@ "labelname": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "cspolicylabel_cspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -19338,6 +20392,7 @@ "priority": {"no_log": False, "type": "float"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver": { @@ -19353,6 +20408,73 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "appflowlog", + "authentication", + "authenticationhost", + "authn401", + "authnprofile", + "authnvsname", + "backuppersistencetimeout", + "backupvserver", + "cacheable", + "casesensitive", + "clttimeout", + "comment", + "cookiename", + "dbprofilename", + "disableprimaryondown", + "dnsprofilename", + "dnsrecordtype", + "downstateflush", + "dtls", + "httpprofilename", + "httpsredirecturl", + "icmpvsrresponse", + "insertvserveripport", + "ipset", + "l2conn", + "listenpolicy", + "listenpriority", + "mssqlserverversion", + "mysqlcharacterset", + "mysqlprotocolversion", + "mysqlservercapabilities", + "mysqlserverversion", + "name", + "netprofile", + "oracleserverversion", + "persistencebackup", + "persistenceid", + "persistencetype", + "persistmask", + "precedence", + "probeprotocol", + "probesuccessresponsecode", + "push", + "pushlabel", + "pushmulticlients", + "pushvserver", + "quicprofilename", + "redirectfromport", + "redirectportrewrite", + "redirecturl", + "rhistate", + "rtspnat", + "sobackupaction", + "somethod", + "sopersistence", + "sopersistencetimeout", + "sothreshold", + "stateupdate", + "tcpprobeport", + "tcpprofilename", + "timeout", + "v6persistmasklen", + "vipheader", + ] + }, "add_payload_keys": [ "appflowlog", "authentication", @@ -19470,44 +20592,23 @@ "readwrite_arguments": { "appflowlog": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "authentication": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "authenticationhost": {"no_log": False, "type": "str"}, - "authn401": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "authn401": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "authnprofile": {"no_log": False, "type": "str"}, "authnvsname": {"no_log": False, "type": "str"}, "backupip": {"no_log": False, "type": "str"}, - "backuppersistencetimeout": { - "default": 2, - "no_log": False, - "type": "float", - }, + "backuppersistencetimeout": {"no_log": False, "type": "float"}, "backupvserver": {"no_log": False, "type": "str"}, - "cacheable": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, - "casesensitive": { - "choices": ["OFF", "ON"], - "default": "ON", - "no_log": False, - "type": "str", - }, + "cacheable": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "casesensitive": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "clttimeout": {"no_log": False, "type": "float"}, "comment": {"no_log": False, "type": "str"}, "cookiedomain": {"no_log": False, "type": "str"}, @@ -19868,7 +20969,6 @@ "dbprofilename": {"no_log": False, "type": "str"}, "disableprimaryondown": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -19881,21 +20981,14 @@ "domainname": {"no_log": False, "type": "str"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", - "no_log": False, - "type": "str", - }, - "dtls": { - "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, + "dtls": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "httpprofilename": {"no_log": False, "type": "str"}, "httpsredirecturl": {"no_log": False, "type": "str"}, "icmpvsrresponse": { "choices": ["ACTIVE", "PASSIVE"], - "default": "PASSIVE", "no_log": False, "type": "str", }, @@ -19909,8 +21002,8 @@ "ipset": {"no_log": False, "type": "str"}, "ipv46": {"no_log": False, "type": "str"}, "l2conn": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "listenpolicy": {"default": '"NONE"', "no_log": False, "type": "str"}, - "listenpriority": {"default": 101, "no_log": False, "type": "float"}, + "listenpolicy": {"no_log": False, "type": "str"}, + "listenpriority": {"no_log": False, "type": "float"}, "mssqlserverversion": { "choices": [ "2000", @@ -19922,24 +21015,18 @@ "2014", "70", ], - "default": "2008R2", "no_log": False, "type": "str", }, - "mysqlcharacterset": {"default": 8, "no_log": False, "type": "float"}, - "mysqlprotocolversion": {"default": 10, "no_log": False, "type": "float"}, - "mysqlservercapabilities": { - "default": 41613, - "no_log": False, - "type": "float", - }, + "mysqlcharacterset": {"no_log": False, "type": "float"}, + "mysqlprotocolversion": {"no_log": False, "type": "float"}, + "mysqlservercapabilities": {"no_log": False, "type": "float"}, "mysqlserverversion": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "netprofile": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, "oracleserverversion": { "choices": ["10G", "11G"], - "default": "10G", "no_log": False, "type": "str", }, @@ -19956,59 +21043,41 @@ }, "persistmask": {"no_log": False, "type": "str"}, "port": {"no_log": False, "type": "int"}, - "precedence": { - "choices": ["RULE", "URL"], - "default": "RULE", - "no_log": False, - "type": "str", - }, + "precedence": {"choices": ["RULE", "URL"], "no_log": False, "type": "str"}, "probeport": {"no_log": False, "type": "int"}, "probeprotocol": { "choices": ["HTTP", "TCP"], "no_log": False, "type": "str", }, - "probesuccessresponsecode": { - "default": '"200 ' 'OK"', - "no_log": False, - "type": "str", - }, + "probesuccessresponsecode": {"no_log": False, "type": "str"}, "push": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "pushlabel": {"default": '"none"', "no_log": False, "type": "str"}, + "pushlabel": {"no_log": False, "type": "str"}, "pushmulticlients": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "pushvserver": {"no_log": False, "type": "str"}, "quicprofilename": {"no_log": False, "type": "str"}, - "range": {"default": 1, "no_log": False, "type": "float"}, + "range": {"no_log": False, "type": "float"}, "redirectfromport": {"no_log": False, "type": "int"}, "redirectportrewrite": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "redirecturl": {"no_log": False, "type": "str"}, "rhistate": { "choices": ["ACTIVE", "PASSIVE"], - "default": "PASSIVE", - "no_log": False, - "type": "str", - }, - "rtspnat": { - "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, + "rtspnat": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "servicetype": { "choices": [ "ANY", @@ -20061,15 +21130,13 @@ }, "sopersistence": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "sopersistencetimeout": {"default": 2, "no_log": False, "type": "float"}, + "sopersistencetimeout": {"no_log": False, "type": "float"}, "sothreshold": {"no_log": False, "type": "float"}, "stateupdate": { "choices": ["DISABLED", "ENABLED", "UPDATEONBACKENDUPDATE"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -20077,11 +21144,12 @@ "tcpprobeport": {"no_log": False, "type": "int"}, "tcpprofilename": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, - "timeout": {"default": 2, "no_log": False, "type": "float"}, + "timeout": {"no_log": False, "type": "float"}, "ttl": {"no_log": False, "type": "float"}, - "v6persistmasklen": {"default": 128, "no_log": False, "type": "float"}, + "v6persistmasklen": {"no_log": False, "type": "float"}, "vipheader": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "appflowlog", "authentication", @@ -20160,6 +21228,7 @@ }, "csvserver_analyticsprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["analyticsprofile", "name"], "bindprimary_key": "analyticsprofile", "delete_arg_keys": ["analyticsprofile"], @@ -20173,10 +21242,12 @@ "analyticsprofile": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_appflowpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -20231,10 +21302,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_appfwpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -20289,10 +21362,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_appqoepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -20347,10 +21422,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_auditnslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -20405,10 +21482,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_auditsyslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -20463,10 +21542,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_authorizationpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -20521,10 +21602,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_botpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -20579,10 +21662,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_cachepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -20637,10 +21722,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_cmppolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -20695,10 +21782,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_contentinspectionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -20753,10 +21842,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_cspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -20811,10 +21902,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_domain_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "backupip", "cookiedomain", @@ -20841,6 +21934,7 @@ "sitedomainttl": {"no_log": False, "type": "float"}, "ttl": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "backupip", "cookiedomain", @@ -20853,6 +21947,7 @@ }, "csvserver_feopolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -20907,10 +22002,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_gslbvserver_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "vserver"], "bindprimary_key": "vserver", "delete_arg_keys": ["vserver"], @@ -20924,10 +22021,12 @@ "name": {"no_log": False, "type": "str"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_lbvserver_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["lbvserver", "name", "targetvserver"], "bindprimary_key": "lbvserver", "delete_arg_keys": ["lbvserver"], @@ -20942,10 +22041,12 @@ "name": {"no_log": False, "type": "str"}, "targetvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_responderpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -21000,10 +22101,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_rewritepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -21058,10 +22161,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_spilloverpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -21116,10 +22221,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_tmtrafficpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -21174,10 +22281,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_transformpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -21232,10 +22341,12 @@ "priority": {"no_log": False, "type": "float"}, "targetlbvserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "csvserver_vpnvserver_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "vserver"], "bindprimary_key": "vserver", "delete_arg_keys": ["vserver"], @@ -21249,6 +22360,7 @@ "name": {"no_log": False, "type": "str"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "dbdbprofile": { @@ -21261,6 +22373,16 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "conmultiplex", + "enablecachingconmuxoff", + "interpretquery", + "kcdaccount", + "name", + "stickiness", + ] + }, "add_payload_keys": [ "conmultiplex", "enablecachingconmuxoff", @@ -21281,31 +22403,24 @@ "readwrite_arguments": { "conmultiplex": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "enablecachingconmuxoff": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "interpretquery": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "kcdaccount": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, - "stickiness": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "stickiness": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "conmultiplex", "enablecachingconmuxoff", @@ -21324,6 +22439,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["password", "username"], "bindings": [], "bindprimary_key": "", @@ -21339,10 +22455,12 @@ "password": {"no_log": True, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["password", "username"], }, "dnsaaaarec": { "_supported_operations": ["add", "count", "delete", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["hostname", "ipv6address", "ttl"], "bindings": [], "bindprimary_key": "", @@ -21358,13 +22476,14 @@ "hostname": {"no_log": False, "type": "str"}, "ipv6address": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "float"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "dnsaction": { @@ -21377,6 +22496,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["actionname", "dnsprofilename", "ttl"]}, "add_payload_keys": [ "actionname", "actiontype", @@ -21412,9 +22532,10 @@ "dnsprofilename": {"no_log": False, "type": "str"}, "ipaddress": {"elements": "str", "no_log": False, "type": "list"}, "preferredloclist": {"elements": "str", "no_log": False, "type": "list"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "float"}, "viewname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "actionname", "dnsprofilename", @@ -21434,6 +22555,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["actionname", "excluderule", "mappedrule", "prefix"] + }, "add_payload_keys": ["actionname", "excluderule", "mappedrule", "prefix"], "bindings": [], "bindprimary_key": "", @@ -21450,10 +22574,12 @@ "mappedrule": {"no_log": False, "type": "str"}, "prefix": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["actionname", "excluderule", "mappedrule", "prefix"], }, "dnsaddrec": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["hostname", "ipaddress", "ttl"], "bindings": [], "bindprimary_key": "", @@ -21469,17 +22595,19 @@ "hostname": {"no_log": False, "type": "str"}, "ipaddress": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "float"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "dnscaarec": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["domain", "flag", "tag", "ttl", "valuestring"], "bindings": [], "bindprimary_key": "", @@ -21496,20 +22624,21 @@ "flag": {"choices": ["CRITICAL", "NONE"], "no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, "recordid": {"no_log": False, "type": "float"}, - "tag": {"default": '"issue"', "no_log": False, "type": "str"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "tag": {"no_log": False, "type": "str"}, + "ttl": {"no_log": False, "type": "float"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], - "default": "ADNS", "no_log": False, "type": "str", }, "valuestring": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "dnscnamerec": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["aliasname", "canonicalname", "ttl"], "bindings": [], "bindprimary_key": "", @@ -21525,18 +22654,19 @@ "canonicalname": {"no_log": False, "type": "str"}, "ecssubnet": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "float"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], - "default": "ADNS", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "dnsglobal_dnspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -21570,7 +22700,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -21591,6 +22720,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "dnskey": { @@ -21605,6 +22735,16 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "expires", + "keyname", + "notificationperiod", + "ttl", + "units1", + "units2", + ] + }, "add_payload_keys": [ "expires", "keyname", @@ -21628,40 +22768,37 @@ "readwrite_arguments": { "algorithm": { "choices": ["RSASHA1", "RSASHA256", "RSASHA512"], - "default": "RSASHA1", "no_log": False, "type": "str", }, - "expires": {"default": 120, "no_log": False, "type": "float"}, + "expires": {"no_log": False, "type": "float"}, "filenameprefix": {"no_log": False, "type": "str"}, "keyname": {"no_log": False, "type": "str"}, - "keysize": {"default": 512, "no_log": False, "type": "float"}, + "keysize": {"no_log": False, "type": "float"}, "keytype": { "choices": ["KSK", "KeySigningKey", "ZSK", "ZoneSigningKey"], - "default": "ZSK", "no_log": False, "type": "str", }, - "notificationperiod": {"default": 7, "no_log": False, "type": "float"}, + "notificationperiod": {"no_log": False, "type": "float"}, "password": {"no_log": True, "type": "str"}, "privatekey": {"no_log": False, "type": "str"}, "publickey": {"no_log": False, "type": "str"}, "src": {"no_log": False, "type": "str"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "float"}, "units1": { "choices": ["DAYS", "HOURS", "MINUTES"], - "default": "DAYS", "no_log": False, "type": "str", }, "units2": { "choices": ["DAYS", "HOURS", "MINUTES"], - "default": "DAYS", "no_log": False, "type": "str", }, "zonename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "expires", "keyname", @@ -21681,6 +22818,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["domain", "mx", "ttl"]}, "add_payload_keys": ["domain", "mx", "pref", "ttl"], "bindings": [], "bindprimary_key": "", @@ -21697,14 +22835,14 @@ "mx": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, "pref": {"no_log": False, "type": "float"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "float"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], - "default": "ADNS", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": ["domain", "mx", "pref", "ttl"], }, "dnsnameserver": { @@ -21718,6 +22856,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["dnsprofilename", "ip", "type"]}, "add_payload_keys": ["dnsprofilename", "dnsvservername", "ip", "local", "type"], "bindings": [], "bindprimary_key": "", @@ -21735,15 +22874,16 @@ "local": {"no_log": False, "type": "bool"}, "type": { "choices": ["TCP", "UDP", "UDP_TCP"], - "default": "UDP", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": ["dnsprofilename", "ip", "type"], }, "dnsnaptrrec": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "domain", "flags", @@ -21792,18 +22932,19 @@ "regexp": {"no_log": False, "type": "str"}, "replacement": {"no_log": False, "type": "str"}, "services": {"no_log": False, "type": "str"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "float"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], - "default": "ADNS", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "dnsnsrec": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["domain", "nameserver", "ttl"], "bindings": [], "bindprimary_key": "", @@ -21819,17 +22960,43 @@ "ecssubnet": {"no_log": False, "type": "str"}, "nameserver": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "float"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "dnsparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "cacheecszeroprefix", + "cachehitbypass", + "cachenoexpire", + "cacherecords", + "dns64timeout", + "dnsrootreferral", + "dnssec", + "ecsmaxsubnets", + "maxcachesize", + "maxnegativecachesize", + "maxnegcachettl", + "maxpipeline", + "maxttl", + "maxudppacketsize", + "minttl", + "namelookuppriority", + "nxdomainratelimitthreshold", + "recursion", + "resolutionorder", + "retries", + "splitpktqueryprocessing", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -21843,59 +23010,47 @@ "readwrite_arguments": { "cacheecszeroprefix": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "cachehitbypass": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "cachenoexpire": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "cacherecords": { - "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, + "cacherecords": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "dns64timeout": {"no_log": False, "type": "float"}, "dnsrootreferral": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dnssec": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "ecsmaxsubnets": {"no_log": False, "type": "float"}, "maxcachesize": {"no_log": False, "type": "float"}, "maxnegativecachesize": {"no_log": False, "type": "float"}, - "maxnegcachettl": {"default": 604800, "no_log": False, "type": "float"}, + "maxnegcachettl": {"no_log": False, "type": "float"}, "maxpipeline": {"no_log": False, "type": "float"}, - "maxttl": {"default": 604800, "no_log": False, "type": "float"}, - "maxudppacketsize": {"default": 1280, "no_log": False, "type": "float"}, + "maxttl": {"no_log": False, "type": "float"}, + "maxudppacketsize": {"no_log": False, "type": "float"}, "minttl": {"no_log": False, "type": "float"}, "namelookuppriority": { "choices": ["DNS", "WINS"], - "default": "WINS", "no_log": False, "type": "str", }, "nxdomainratelimitthreshold": {"no_log": False, "type": "float"}, "recursion": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -21906,18 +23061,17 @@ "OnlyAAAAQuery", "OnlyAQuery", ], - "default": "OnlyAQuery", "no_log": False, "type": "str", }, - "retries": {"default": 5, "no_log": False, "type": "float"}, + "retries": {"no_log": False, "type": "float"}, "splitpktqueryprocessing": { "choices": ["ALLOW", "DROP"], - "default": "ALLOW", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "cacheecszeroprefix", "cachehitbypass", @@ -21952,6 +23106,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["logaction", "name"]}, "add_payload_keys": ["actionname", "logaction", "name", "rule"], "bindings": ["dnspolicylabel_dnspolicy_binding"], "bindprimary_key": "", @@ -21989,6 +23144,7 @@ "rule": {"no_log": False, "type": "str"}, "viewname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["actionname", "logaction", "name", "rule"], }, "dnspolicy64": { @@ -22000,6 +23156,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["action", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -22015,6 +23172,7 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "name", "rule"], }, "dnspolicylabel": { @@ -22026,6 +23184,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["labelname", "transform"], "bindings": ["dnspolicylabel_dnspolicy_binding"], "bindprimary_key": "", @@ -22061,10 +23220,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "dnspolicylabel_dnspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -22099,6 +23260,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "dnsprofile": { @@ -22111,6 +23273,19 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "cacheecsresponses", + "cachenegativeresponses", + "cacherecords", + "dnsanswerseclogging", + "dnserrorlogging", + "dnsextendedlogging", + "dnsprofilename", + "dnsquerylogging", + "dropmultiqueryrequest", + ] + }, "add_payload_keys": [ "cacheecsresponses", "cachenegativeresponses", @@ -22134,54 +23309,47 @@ "readwrite_arguments": { "cacheecsresponses": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "cachenegativeresponses": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "cacherecords": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "dnsanswerseclogging": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dnserrorlogging": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dnsextendedlogging": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dnsprofilename": {"no_log": False, "type": "str"}, "dnsquerylogging": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dropmultiqueryrequest": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "cacheecsresponses", "cachenegativeresponses", @@ -22196,6 +23364,7 @@ }, "dnsproxyrecords": { "_supported_operations": ["flush"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -22233,10 +23402,12 @@ "type": "str", }, }, + "singleton": True, "update_payload_keys": [], }, "dnsptrrec": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["domain", "reversedomain", "ttl"], "bindings": [], "bindprimary_key": "", @@ -22252,13 +23423,14 @@ "ecssubnet": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, "reversedomain": {"no_log": False, "type": "str"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "float"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "dnssoarec": { @@ -22271,6 +23443,17 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "domain", + "expire", + "minimum", + "refresh", + "retry", + "serial", + "ttl", + ] + }, "add_payload_keys": [ "contact", "domain", @@ -22295,20 +23478,21 @@ "contact": {"no_log": False, "type": "str"}, "domain": {"no_log": False, "type": "str"}, "ecssubnet": {"no_log": False, "type": "str"}, - "expire": {"default": 3600, "no_log": False, "type": "float"}, - "minimum": {"default": 5, "no_log": False, "type": "float"}, + "expire": {"no_log": False, "type": "float"}, + "minimum": {"no_log": False, "type": "float"}, "nodeid": {"no_log": False, "type": "float"}, "originserver": {"no_log": False, "type": "str"}, - "refresh": {"default": 3600, "no_log": False, "type": "float"}, - "retry": {"default": 3, "no_log": False, "type": "float"}, - "serial": {"default": 100, "no_log": False, "type": "float"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "refresh": {"no_log": False, "type": "float"}, + "retry": {"no_log": False, "type": "float"}, + "serial": {"no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "float"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "contact", "domain", @@ -22323,6 +23507,7 @@ }, "dnssrvrec": { "_supported_operations": ["add", "count", "delete", "get", "unset", "update"], + "action_payload_keys": {"unset": ["domain", "target", "ttl"]}, "add_payload_keys": ["domain", "port", "priority", "target", "ttl", "weight"], "bindings": [], "bindprimary_key": "", @@ -22340,7 +23525,7 @@ "port": {"no_log": False, "type": "float"}, "priority": {"no_log": False, "type": "float"}, "target": {"no_log": False, "type": "str"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "float"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], "no_log": False, @@ -22348,6 +23533,7 @@ }, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "domain", "port", @@ -22359,6 +23545,7 @@ }, "dnssubnetcache": { "_supported_operations": ["count", "flush", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -22374,10 +23561,12 @@ "ecssubnet": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "dnssuffix": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["dnssuffix"], "bindings": [], "bindprimary_key": "", @@ -22388,11 +23577,13 @@ "immutable_keys": ["dnssuffix"], "password_keys": [], "primary_key": "dnssuffix", - "readwrite_arguments": {"Dnssuffix": {"no_log": False, "type": "str"}}, + "readwrite_arguments": {"dnssuffix": {"no_log": False, "type": "str"}}, + "singleton": False, "update_payload_keys": [], }, "dnstxtrec": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["domain", "string", "ttl"], "bindings": [], "bindprimary_key": "", @@ -22404,23 +23595,24 @@ "password_keys": [], "primary_key": "domain", "readwrite_arguments": { - "String": {"elements": "str", "no_log": False, "type": "list"}, "domain": {"no_log": False, "type": "str"}, "ecssubnet": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, "recordid": {"no_log": False, "type": "float"}, - "ttl": {"default": 3600, "no_log": False, "type": "float"}, + "string": {"elements": "str", "no_log": False, "type": "list"}, + "ttl": {"no_log": False, "type": "float"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], - "default": "ADNS", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "dnsview": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["viewname"], "bindings": [], "bindprimary_key": "", @@ -22432,6 +23624,7 @@ "password_keys": [], "primary_key": "viewname", "readwrite_arguments": {"viewname": {"no_log": False, "type": "str"}}, + "singleton": False, "update_payload_keys": [], }, "dnszone": { @@ -22446,6 +23639,9 @@ "unsign", "update", ], + "action_payload_keys": { + "unset": ["dnssecoffload", "nsec", "proxymode", "zonename"] + }, "add_payload_keys": ["dnssecoffload", "nsec", "proxymode", "zonename"], "bindings": [], "bindprimary_key": "", @@ -22459,14 +23655,12 @@ "readwrite_arguments": { "dnssecoffload": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "keyname": {"elements": "str", "no_log": False, "type": "list"}, "nsec": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -22478,6 +23672,7 @@ }, "zonename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["dnssecoffload", "nsec", "proxymode", "zonename"], }, "endpointinfo": { @@ -22490,6 +23685,14 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "endpointkind", + "endpointlabelsjson", + "endpointmetadata", + "endpointname", + ] + }, "add_payload_keys": [ "endpointkind", "endpointlabelsjson", @@ -22506,16 +23709,12 @@ "password_keys": [], "primary_key": "endpointkind", "readwrite_arguments": { - "endpointkind": { - "choices": ["IP"], - "default": "IP", - "no_log": False, - "type": "str", - }, + "endpointkind": {"choices": ["IP"], "no_log": False, "type": "str"}, "endpointlabelsjson": {"no_log": False, "type": "str"}, "endpointmetadata": {"no_log": False, "type": "str"}, "endpointname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "endpointkind", "endpointlabelsjson", @@ -22525,6 +23724,7 @@ }, "extendedmemoryparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["memlimit"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -22536,6 +23736,7 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"memlimit": {"no_log": False, "type": "float"}}, + "singleton": True, "update_payload_keys": ["memlimit"], }, "feoaction": { @@ -22548,6 +23749,31 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "clientsidemeasurements", + "convertimporttolink", + "csscombine", + "cssimginline", + "cssinline", + "cssminify", + "cssmovetohead", + "domainsharding", + "htmlminify", + "imggiftopng", + "imginline", + "imglazyload", + "imgshrinktoattrib", + "imgtojpegxr", + "imgtowebp", + "jpgoptimize", + "jsinline", + "jsminify", + "jsmovetoend", + "name", + "pageextendcache", + ] + }, "add_payload_keys": [ "cachemaxage", "clientsidemeasurements", @@ -22583,7 +23809,7 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "cachemaxage": {"default": 30, "no_log": False, "type": "float"}, + "cachemaxage": {"no_log": False, "type": "float"}, "clientsidemeasurements": {"no_log": False, "type": "bool"}, "convertimporttolink": {"no_log": False, "type": "bool"}, "csscombine": {"no_log": False, "type": "bool"}, @@ -22607,6 +23833,7 @@ "name": {"no_log": False, "type": "str"}, "pageextendcache": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [ "cachemaxage", "clientsidemeasurements", @@ -22635,6 +23862,7 @@ }, "feoglobal_feopolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "policyname", @@ -22657,7 +23885,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -22678,10 +23905,19 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "feoparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "cssinlinethressize", + "imginlinethressize", + "jpegqualitypercent", + "jsinlinethressize", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -22693,11 +23929,12 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "cssinlinethressize": {"default": 1024, "no_log": False, "type": "float"}, - "imginlinethressize": {"default": 1024, "no_log": False, "type": "float"}, - "jpegqualitypercent": {"default": 75, "no_log": False, "type": "float"}, - "jsinlinethressize": {"default": 1024, "no_log": False, "type": "float"}, + "cssinlinethressize": {"no_log": False, "type": "float"}, + "imginlinethressize": {"no_log": False, "type": "float"}, + "jpegqualitypercent": {"no_log": False, "type": "float"}, + "jsinlinethressize": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "cssinlinethressize", "imginlinethressize", @@ -22715,6 +23952,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["action", "name", "rule"]}, "add_payload_keys": ["action", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -22730,10 +23968,12 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "name", "rule"], }, "fis": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "ownernode"], "bindings": ["fis_channel_binding", "fis_interface_binding"], "bindprimary_key": "", @@ -22780,10 +24020,12 @@ "name": {"no_log": False, "type": "str"}, "ownernode": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "fis_channel_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ifnum", "name"], "bindprimary_key": "ifnum", "delete_arg_keys": ["ifnum"], @@ -22798,10 +24040,12 @@ "name": {"no_log": False, "type": "str"}, "ownernode": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "fis_interface_binding": { "_supported_operations": ["add", "delete"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ifnum", "name"], "bindprimary_key": "ifnum", "delete_arg_keys": ["ifnum"], @@ -22816,6 +24060,7 @@ "name": {"no_log": False, "type": "str"}, "ownernode": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "forwardingsession": { @@ -22827,6 +24072,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "acl6name", "aclname", @@ -22852,7 +24098,6 @@ "aclname": {"no_log": False, "type": "str"}, "connfailover": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -22861,18 +24106,17 @@ "network": {"no_log": False, "type": "str"}, "processlocal": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sourceroutecache": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "acl6name", "aclname", @@ -22884,6 +24128,7 @@ }, "gslbconfig": { "_supported_operations": ["sync"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -22902,10 +24147,12 @@ "preview": {"no_log": False, "type": "bool"}, "saveconfig": {"no_log": False, "type": "bool"}, }, + "singleton": True, "update_payload_keys": [], }, "gslbldnsentries": { "_supported_operations": ["clear", "count", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -22917,10 +24164,12 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"nodeid": {"no_log": False, "type": "float"}}, + "singleton": False, "update_payload_keys": [], }, "gslbldnsentry": { "_supported_operations": ["delete"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -22932,10 +24181,31 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"ipaddress": {"no_log": False, "type": "str"}}, + "singleton": True, "update_payload_keys": [], }, "gslbparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "automaticconfigsync", + "dropldnsreq", + "gslbconfigsyncmonitor", + "gslbsvcstatedelaytime", + "gslbsyncinterval", + "gslbsynclocfiles", + "gslbsyncmode", + "gslbsyncsaveconfigcommand", + "ldnsentrytimeout", + "ldnsmask", + "ldnsprobeorder", + "mepkeepalivetimeout", + "rtttolerance", + "svcstatelearningtime", + "undefaction", + "v6ldnsmasklen", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -22949,43 +24219,37 @@ "readwrite_arguments": { "automaticconfigsync": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dropldnsreq": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "gslbconfigsyncmonitor": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "gslbsvcstatedelaytime": {"no_log": False, "type": "float"}, - "gslbsyncinterval": {"default": 10, "no_log": False, "type": "float"}, + "gslbsyncinterval": {"no_log": False, "type": "float"}, "gslbsynclocfiles": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "gslbsyncmode": { "choices": ["FullSync", "IncrementalSync"], - "default": "IncrementalSync", "no_log": False, "type": "str", }, "gslbsyncsaveconfigcommand": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "ldnsentrytimeout": {"default": 180, "no_log": False, "type": "float"}, + "ldnsentrytimeout": {"no_log": False, "type": "float"}, "ldnsmask": {"no_log": False, "type": "str"}, "ldnsprobeorder": { "choices": ["DNS", "PING", "TCP"], @@ -22993,12 +24257,13 @@ "no_log": False, "type": "list", }, - "mepkeepalivetimeout": {"default": 10, "no_log": False, "type": "float"}, - "rtttolerance": {"default": 5, "no_log": False, "type": "float"}, + "mepkeepalivetimeout": {"no_log": False, "type": "float"}, + "rtttolerance": {"no_log": False, "type": "float"}, "svcstatelearningtime": {"no_log": False, "type": "float"}, - "undefaction": {"default": '"NOLBACTION"', "no_log": False, "type": "str"}, - "v6ldnsmasklen": {"default": 128, "no_log": False, "type": "float"}, + "undefaction": {"no_log": False, "type": "str"}, + "v6ldnsmasklen": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "automaticconfigsync", "dropldnsreq", @@ -23029,6 +24294,31 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "appflowlog", + "cip", + "cipheader", + "comment", + "downstateflush", + "hashid", + "healthmonitor", + "maxaaausers", + "maxbandwidth", + "maxclient", + "monthreshold", + "naptrdomainttl", + "naptrorder", + "naptrpreference", + "naptrreplacement", + "naptrservices", + "publicip", + "publicport", + "servicename", + "sitepersistence", + "siteprefix", + ] + }, "add_payload_keys": [ "appflowlog", "cip", @@ -23090,16 +24380,10 @@ "readwrite_arguments": { "appflowlog": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", - "no_log": False, - "type": "str", - }, - "cip": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, + "cip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "cipheader": {"no_log": False, "type": "str"}, "clttimeout": {"no_log": False, "type": "float"}, "cnameentry": {"no_log": False, "type": "str"}, @@ -23175,12 +24459,7 @@ "type": "dict", }, "hashid": {"no_log": False, "type": "float"}, - "healthmonitor": { - "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, + "healthmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "ip": {"no_log": False, "type": "str"}, "ipaddress": {"no_log": False, "type": "str"}, "maxaaausers": {"no_log": False, "type": "float"}, @@ -23188,9 +24467,9 @@ "maxclient": {"no_log": False, "type": "float"}, "monitor_name_svc": {"no_log": False, "type": "str"}, "monthreshold": {"no_log": False, "type": "float"}, - "naptrdomainttl": {"default": 3600, "no_log": False, "type": "float"}, - "naptrorder": {"default": 1, "no_log": False, "type": "float"}, - "naptrpreference": {"default": 1, "no_log": False, "type": "float"}, + "naptrdomainttl": {"no_log": False, "type": "float"}, + "naptrorder": {"no_log": False, "type": "float"}, + "naptrpreference": {"no_log": False, "type": "float"}, "naptrreplacement": {"no_log": False, "type": "str"}, "naptrservices": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, @@ -23235,6 +24514,7 @@ "viewname": {"no_log": False, "type": "str"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "appflowlog", "cip", @@ -23266,6 +24546,7 @@ }, "gslbservice_dnsview_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["servicename", "viewip", "viewname"], "bindprimary_key": "viewname", "delete_arg_keys": ["viewname"], @@ -23280,10 +24561,12 @@ "viewip": {"no_log": False, "type": "str"}, "viewname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["viewip", "viewname", "viewname"], }, "gslbservice_lbmonitor_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["monitor_name", "monstate", "servicename", "weight"], "bindprimary_key": "monitor_name", "delete_arg_keys": ["monitor_name"], @@ -23303,6 +24586,7 @@ "servicename": {"no_log": False, "type": "str"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "gslbservicegroup": { @@ -23318,6 +24602,33 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "appflowlog", + "cip", + "cipheader", + "clttimeout", + "comment", + "downstateflush", + "dup_weight", + "hashid", + "healthmonitor", + "maxbandwidth", + "maxclient", + "monitor_name_svc", + "monthreshold", + "order", + "port", + "publicip", + "publicport", + "servername", + "servicegroupname", + "sitepersistence", + "siteprefix", + "svrtimeout", + "weight", + ] + }, "add_payload_keys": [ "appflowlog", "autodelayedtrofs", @@ -23365,19 +24676,16 @@ "readwrite_arguments": { "appflowlog": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "autodelayedtrofs": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "autoscale": { "choices": ["DISABLED", "DNS"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -23388,17 +24696,11 @@ "delay": {"no_log": False, "type": "float"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "dup_weight": {"no_log": False, "type": "float"}, - "graceful": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "graceful": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "gslbservicegroup_gslbservicegroupmember_binding": { "no_log": False, "options": { @@ -23432,12 +24734,7 @@ "type": "dict", }, "hashid": {"no_log": False, "type": "float"}, - "healthmonitor": { - "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, + "healthmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "includemembers": {"no_log": False, "type": "bool"}, "maxbandwidth": {"no_log": False, "type": "float"}, "maxclient": {"no_log": False, "type": "float"}, @@ -23484,6 +24781,7 @@ "svrtimeout": {"no_log": False, "type": "float"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "appflowlog", "cip", @@ -23512,6 +24810,7 @@ }, "gslbservicegroup_gslbservicegroupmember_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "hashid", "ip", @@ -23555,10 +24854,12 @@ "siteprefix": {"no_log": False, "type": "str"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "gslbservicegroup_lbmonitor_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "hashid", "monitor_name", @@ -23609,6 +24910,7 @@ "siteprefix": {"no_log": False, "type": "str"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "gslbsite": { @@ -23621,6 +24923,17 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "backupparentlist", + "metricexchange", + "naptrreplacementsuffix", + "nwmetricexchange", + "sessionexchange", + "sitename", + "triggermonitor", + ] + }, "add_payload_keys": [ "backupparentlist", "clip", @@ -23657,14 +24970,12 @@ "clip": {"no_log": False, "type": "str"}, "metricexchange": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "naptrreplacementsuffix": {"no_log": False, "type": "str"}, "nwmetricexchange": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -23673,7 +24984,6 @@ "publicip": {"no_log": False, "type": "str"}, "sessionexchange": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -23686,11 +24996,11 @@ }, "triggermonitor": { "choices": ["ALWAYS", "MEPDOWN", "MEPDOWN_SVCDOWN"], - "default": "ALWAYS", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "backupparentlist", "metricexchange", @@ -23714,6 +25024,44 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "appflowlog", + "backuplbmethod", + "backupvserver", + "comment", + "considereffectivestate", + "disableprimaryondown", + "dnsrecordtype", + "dynamicweight", + "ecs", + "ecsaddrvalidation", + "edr", + "lbmethod", + "mir", + "name", + "netmask", + "order", + "orderthreshold", + "persistenceid", + "persistencetype", + "persistmask", + "rule", + "servicegroupname", + "servicename", + "sobackupaction", + "somethod", + "sopersistence", + "sopersistencetimeout", + "sothreshold", + "timeout", + "toggleorder", + "tolerance", + "v6netmasklen", + "v6persistmasklen", + "weight", + ] + }, "add_payload_keys": [ "appflowlog", "backuplbmethod", @@ -23765,7 +25113,6 @@ "readwrite_arguments": { "appflowlog": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -23791,7 +25138,6 @@ "comment": {"no_log": False, "type": "str"}, "considereffectivestate": { "choices": ["NONE", "STATE_ONLY"], - "default": "NONE", "no_log": False, "type": "str", }, @@ -23799,41 +25145,27 @@ "cookietimeout": {"no_log": False, "type": "float"}, "disableprimaryondown": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dnsrecordtype": { "choices": ["A", "AAAA", "CNAME", "NAPTR"], - "default": "A", "no_log": False, "type": "str", }, "domainname": {"no_log": False, "type": "str"}, "dynamicweight": { "choices": ["DISABLED", "SERVICECOUNT", "SERVICEWEIGHT"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "ecs": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, + "ecs": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "ecsaddrvalidation": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "edr": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, + "edr": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "gslbvserver_domain_binding": { "no_log": False, "options": { @@ -23914,12 +25246,7 @@ }, "type": "dict", }, - "iptype": { - "choices": ["IPV4", "IPV6"], - "default": "IPV4", - "no_log": False, - "type": "str", - }, + "iptype": {"choices": ["IPV4", "IPV6"], "no_log": False, "type": "str"}, "lbmethod": { "choices": [ "API", @@ -23933,16 +25260,10 @@ "SOURCEIPHASH", "STATICPROXIMITY", ], - "default": "LEASTCONNECTION", - "no_log": False, - "type": "str", - }, - "mir": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, + "mir": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, @@ -23955,7 +25276,7 @@ "type": "str", }, "persistmask": {"no_log": False, "type": "str"}, - "rule": {"default": '"none"', "no_log": False, "type": "str"}, + "rule": {"no_log": False, "type": "str"}, "servicegroupname": {"no_log": False, "type": "str"}, "servicename": {"no_log": False, "type": "str"}, "servicetype": { @@ -24001,25 +25322,24 @@ }, "sopersistence": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "sopersistencetimeout": {"default": 2, "no_log": False, "type": "float"}, + "sopersistencetimeout": {"no_log": False, "type": "float"}, "sothreshold": {"no_log": False, "type": "float"}, - "timeout": {"default": 2, "no_log": False, "type": "float"}, + "timeout": {"no_log": False, "type": "float"}, "toggleorder": { "choices": ["ASCENDING", "DESCENDING"], - "default": "ASCENDING", "no_log": False, "type": "str", }, "tolerance": {"no_log": False, "type": "float"}, "ttl": {"no_log": False, "type": "float"}, - "v6netmasklen": {"default": 128, "no_log": False, "type": "float"}, - "v6persistmasklen": {"default": 128, "no_log": False, "type": "float"}, + "v6netmasklen": {"no_log": False, "type": "float"}, + "v6persistmasklen": {"no_log": False, "type": "float"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "appflowlog", "backupip", @@ -24065,6 +25385,7 @@ }, "gslbvserver_domain_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "backupip", "cookie_domain", @@ -24095,6 +25416,7 @@ "sitedomainttl": {"no_log": False, "type": "float"}, "ttl": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "backupip", "cookie_domain", @@ -24108,6 +25430,7 @@ }, "gslbvserver_gslbservice_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "order", "servicename", "weight"], "bindprimary_key": "servicename", "delete_arg_keys": ["servicename"], @@ -24124,10 +25447,12 @@ "servicename": {"no_log": False, "type": "str"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": ["order", "servicename", "servicename", "weight"], }, "gslbvserver_gslbservicegroup_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "order", "servicegroupname"], "bindprimary_key": "servicegroupname", "delete_arg_keys": ["servicegroupname"], @@ -24142,10 +25467,12 @@ "order": {"no_log": False, "type": "float"}, "servicegroupname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["order", "servicegroupname", "servicegroupname"], }, "gslbvserver_lbpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "name", @@ -24181,10 +25508,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "gslbvserver_spilloverpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "name", @@ -24220,10 +25549,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "hafailover": { "_supported_operations": ["Force"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -24235,10 +25566,12 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"force": {"no_log": False, "type": "bool"}}, + "singleton": True, "update_payload_keys": [], }, "hafiles": { "_supported_operations": ["sync"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -24269,6 +25602,7 @@ "type": "list", } }, + "singleton": True, "update_payload_keys": [], }, "hanode": { @@ -24281,6 +25615,21 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "deadinterval", + "failsafe", + "haprop", + "hastatus", + "hasync", + "hellointerval", + "id", + "maxflips", + "maxfliptime", + "syncstatusstrictmode", + "syncvlan", + ] + }, "add_payload_keys": ["id", "inc", "ipaddress"], "bindings": ["hanode_routemonitor6_binding", "hanode_routemonitor_binding"], "bindprimary_key": "", @@ -24292,13 +25641,8 @@ "password_keys": [], "primary_key": "id", "readwrite_arguments": { - "deadinterval": {"default": 3, "no_log": False, "type": "float"}, - "failsafe": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "deadinterval": {"no_log": False, "type": "float"}, + "failsafe": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "hanode_routemonitor6_binding": { "no_log": False, "options": { @@ -24333,7 +25677,6 @@ }, "haprop": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -24344,29 +25687,23 @@ }, "hasync": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "hellointerval": {"default": 200, "no_log": False, "type": "float"}, + "hellointerval": {"no_log": False, "type": "float"}, "id": {"no_log": False, "type": "float"}, - "inc": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, + "inc": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "ipaddress": {"no_log": False, "type": "str"}, "maxflips": {"no_log": False, "type": "float"}, "maxfliptime": {"no_log": False, "type": "float"}, "syncstatusstrictmode": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "syncvlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "deadinterval", "failsafe", @@ -24383,6 +25720,7 @@ }, "hanode_routemonitor6_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "netmask", "routemonitor"], "bindprimary_key": "routemonitor", "delete_arg_keys": ["netmask", "routemonitor"], @@ -24397,10 +25735,12 @@ "netmask": {"no_log": False, "type": "str"}, "routemonitor": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "hanode_routemonitor_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "netmask", "routemonitor"], "bindprimary_key": "routemonitor", "delete_arg_keys": ["netmask", "routemonitor"], @@ -24415,10 +25755,12 @@ "netmask": {"no_log": False, "type": "str"}, "routemonitor": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "hasync": { "_supported_operations": ["Force"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -24433,6 +25775,7 @@ "force": {"no_log": False, "type": "bool"}, "save": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "icaaccessprofile": { @@ -24445,6 +25788,20 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "clientaudioredirection", + "clientclipboardredirection", + "clientcomportredirection", + "clientdriveredirection", + "clientprinterredirection", + "clientusbdriveredirection", + "connectclientlptports", + "localremotedatasharing", + "multistream", + "name", + ] + }, "add_payload_keys": [ "clientaudioredirection", "clientclipboardredirection", @@ -24469,60 +25826,52 @@ "readwrite_arguments": { "clientaudioredirection": { "choices": ["DEFAULT", "DISABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "clientclipboardredirection": { "choices": ["DEFAULT", "DISABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "clientcomportredirection": { "choices": ["DEFAULT", "DISABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "clientdriveredirection": { "choices": ["DEFAULT", "DISABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "clientprinterredirection": { "choices": ["DEFAULT", "DISABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "clientusbdriveredirection": { "choices": ["DEFAULT", "DISABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "connectclientlptports": { "choices": ["DEFAULT", "DISABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "localremotedatasharing": { "choices": ["DEFAULT", "DISABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "multistream": { "choices": ["DEFAULT", "DISABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "clientaudioredirection", "clientclipboardredirection", @@ -24547,6 +25896,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["accessprofilename", "latencyprofilename", "name"] + }, "add_payload_keys": ["accessprofilename", "latencyprofilename", "name"], "bindings": [], "bindprimary_key": "", @@ -24563,10 +25915,12 @@ "name": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["accessprofilename", "latencyprofilename", "name"], }, "icaglobal_icapolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "policyname", @@ -24589,7 +25943,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -24602,6 +25955,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "icalatencyprofile": { @@ -24614,6 +25968,16 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "l7latencymaxnotifycount", + "l7latencymonitoring", + "l7latencynotifyinterval", + "l7latencythresholdfactor", + "l7latencywaittime", + "name", + ] + }, "add_payload_keys": [ "l7latencymaxnotifycount", "l7latencymonitoring", @@ -24632,26 +25996,18 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "l7latencymaxnotifycount": {"default": 5, "no_log": False, "type": "float"}, + "l7latencymaxnotifycount": {"no_log": False, "type": "float"}, "l7latencymonitoring": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "l7latencynotifyinterval": { - "default": 20, - "no_log": False, - "type": "float", - }, - "l7latencythresholdfactor": { - "default": 4, - "no_log": False, - "type": "float", - }, - "l7latencywaittime": {"default": 20, "no_log": False, "type": "float"}, + "l7latencynotifyinterval": {"no_log": False, "type": "float"}, + "l7latencythresholdfactor": {"no_log": False, "type": "float"}, + "l7latencywaittime": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "l7latencymaxnotifycount", "l7latencymonitoring", @@ -24663,6 +26019,15 @@ }, "icaparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "edtpmtuddf", + "edtpmtuddftimeout", + "enablesronhafailover", + "hdxinsightnonnsap", + "l7latencyfrequency", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -24676,25 +26041,23 @@ "readwrite_arguments": { "edtpmtuddf": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "edtpmtuddftimeout": {"default": 100, "no_log": False, "type": "float"}, + "edtpmtuddftimeout": {"no_log": False, "type": "float"}, "enablesronhafailover": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "hdxinsightnonnsap": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "l7latencyfrequency": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "edtpmtuddf", "edtpmtuddftimeout", @@ -24714,6 +26077,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "logaction", "name"]}, "add_payload_keys": ["action", "comment", "logaction", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -24732,6 +26096,7 @@ "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "comment", "logaction", "name", "rule"], }, "inat": { @@ -24744,6 +26109,20 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "connfailover", + "ftp", + "mode", + "name", + "proxyip", + "tcpproxy", + "tftp", + "useproxyport", + "usip", + "usnip", + ] + }, "add_payload_keys": [ "connfailover", "ftp", @@ -24771,16 +26150,10 @@ "readwrite_arguments": { "connfailover": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "ftp": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, + "ftp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "mode": {"choices": ["STATELESS"], "no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "privateip": {"no_log": False, "type": "str"}, @@ -24788,26 +26161,24 @@ "publicip": {"no_log": False, "type": "str"}, "tcpproxy": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "td": {"no_log": False, "type": "float"}, "tftp": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "useproxyport": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "usip": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "usnip": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "connfailover", "ftp", @@ -24824,6 +26195,7 @@ }, "inatparam": { "_supported_operations": ["count", "get", "get-byname", "unset", "update"], + "action_payload_keys": {"unset": ["nat46v6prefix", "td"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -24837,26 +26209,24 @@ "readwrite_arguments": { "nat46fragheader": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "nat46ignoretos": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "nat46v6mtu": {"default": 1280, "no_log": False, "type": "float"}, + "nat46v6mtu": {"no_log": False, "type": "float"}, "nat46v6prefix": {"no_log": False, "type": "str"}, "nat46zerochecksum": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "nat46fragheader", "nat46ignoretos", @@ -24868,6 +26238,7 @@ }, "install": { "_supported_operations": ["Install"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -24887,10 +26258,12 @@ "url": {"no_log": False, "type": "str"}, "y": {"no_log": False, "type": "bool"}, }, + "singleton": True, "update_payload_keys": [], }, "interfacepair": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ifnum"], "bindings": [], "bindprimary_key": "", @@ -24905,10 +26278,12 @@ "id": {"no_log": False, "type": "float"}, "ifnum": {"elements": "str", "no_log": False, "type": "list"}, }, + "singleton": False, "update_payload_keys": [], }, "ip6tunnel": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["local", "name", "ownergroup", "remote"], "bindings": [], "bindprimary_key": "", @@ -24922,13 +26297,23 @@ "readwrite_arguments": { "local": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "remote": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "ip6tunnelparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "dropfrag", + "dropfragcputhreshold", + "srcip", + "srciproundrobin", + "useclientsourceipv6", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -24940,27 +26325,21 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "dropfrag": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "dropfrag": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "dropfragcputhreshold": {"no_log": False, "type": "float"}, "srcip": {"no_log": False, "type": "str"}, "srciproundrobin": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "useclientsourceipv6": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "dropfrag", "dropfragcputhreshold", @@ -24979,6 +26358,15 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "connfailover", + "espgatetimeout", + "espsessiontimeout", + "ikesessiontimeout", + "name", + ] + }, "add_payload_keys": [ "connfailover", "espgatetimeout", @@ -24998,15 +26386,15 @@ "readwrite_arguments": { "connfailover": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "espgatetimeout": {"default": 30, "no_log": False, "type": "float"}, - "espsessiontimeout": {"default": 60, "no_log": False, "type": "float"}, - "ikesessiontimeout": {"default": 60, "no_log": False, "type": "float"}, + "espgatetimeout": {"no_log": False, "type": "float"}, + "espsessiontimeout": {"no_log": False, "type": "float"}, + "ikesessiontimeout": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "connfailover", "espgatetimeout", @@ -25017,6 +26405,7 @@ }, "ipsecalgsession": { "_supported_operations": ["count", "flush", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -25035,10 +26424,24 @@ "sourceip": {"no_log": False, "type": "str"}, "sourceip_alg": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "ipsecparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "encalgo", + "hashalgo", + "ikeretryinterval", + "ikeversion", + "lifetime", + "livenesscheckinterval", + "perfectforwardsecrecy", + "replaywindowsize", + "retransmissiontime", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -25052,7 +26455,6 @@ "readwrite_arguments": { "encalgo": { "choices": ["AES", "AES192", "AES256"], - "default": "AES", "elements": "str", "no_log": False, "type": "list", @@ -25065,29 +26467,23 @@ "HMAC_SHA384", "HMAC_SHA512", ], - "default": "HMAC_SHA256", "elements": "str", "no_log": False, "type": "list", }, "ikeretryinterval": {"no_log": False, "type": "float"}, - "ikeversion": { - "choices": ["V1", "V2"], - "default": "V2", - "no_log": False, - "type": "str", - }, + "ikeversion": {"choices": ["V1", "V2"], "no_log": False, "type": "str"}, "lifetime": {"no_log": False, "type": "float"}, "livenesscheckinterval": {"no_log": False, "type": "float"}, "perfectforwardsecrecy": { "choices": ["DISABLE", "ENABLE"], - "default": "DISABLE", "no_log": False, "type": "str", }, "replaywindowsize": {"no_log": False, "type": "float"}, "retransmissiontime": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "encalgo", "hashalgo", @@ -25102,6 +26498,7 @@ }, "ipsecprofile": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "encalgo", "hashalgo", @@ -25178,10 +26575,12 @@ "replaywindowsize": {"no_log": False, "type": "float"}, "retransmissiontime": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "ipset": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "td"], "bindings": ["ipset_nsip6_binding", "ipset_nsip_binding"], "bindprimary_key": "", @@ -25228,10 +26627,12 @@ "name": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "ipset_nsip6_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ipaddress", "name"], "bindprimary_key": "ipaddress", "delete_arg_keys": ["ipaddress"], @@ -25245,10 +26646,12 @@ "ipaddress": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "ipset_nsip_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ipaddress", "name"], "bindprimary_key": "ipaddress", "delete_arg_keys": ["ipaddress"], @@ -25262,6 +26665,7 @@ "ipaddress": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "iptunnel": { @@ -25274,6 +26678,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["destport", "name", "tosinherit", "vlantagging"] + }, "add_payload_keys": [ "destport", "grepayload", @@ -25309,24 +26716,18 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "destport": {"default": 6081, "no_log": False, "type": "int"}, + "destport": {"no_log": False, "type": "int"}, "grepayload": { "choices": ["ETHERNET", "ETHERNETwithDOT1Q", "IP"], - "default": "ETHERNETwithDOT1Q", - "no_log": False, - "type": "str", - }, - "ipsecprofilename": { - "default": '"ns_ipsec_default_profile"', "no_log": False, "type": "str", }, + "ipsecprofilename": {"no_log": False, "type": "str"}, "local": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "protocol": { "choices": ["GENEVE", "GRE", "IPIP", "IPSEC", "UDP"], - "default": "IPIP", "no_log": False, "type": "str", }, @@ -25334,23 +26735,34 @@ "remotesubnetmask": {"no_log": False, "type": "str"}, "tosinherit": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "vlan": {"no_log": False, "type": "float"}, "vlantagging": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "vnid": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": ["destport", "name", "tosinherit", "vlantagging"], }, "iptunnelparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "dropfrag", + "dropfragcputhreshold", + "enablestrictrx", + "enablestricttx", + "mac", + "srcip", + "srciproundrobin", + "useclientsourceip", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -25362,22 +26774,15 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "dropfrag": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "dropfrag": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "dropfragcputhreshold": {"no_log": False, "type": "float"}, "enablestrictrx": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "enablestricttx": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, @@ -25385,17 +26790,16 @@ "srcip": {"no_log": False, "type": "str"}, "srciproundrobin": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "useclientsourceip": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "dropfrag", "dropfragcputhreshold", @@ -25409,6 +26813,18 @@ }, "ipv6": { "_supported_operations": ["count", "get", "get-byname", "unset", "update"], + "action_payload_keys": { + "unset": [ + "dodad", + "natprefix", + "ndbasereachtime", + "ndretransmissiontime", + "ralearning", + "routerredirection", + "td", + "usipnatprefix", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -25422,28 +26838,26 @@ "readwrite_arguments": { "dodad": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "natprefix": {"no_log": False, "type": "str"}, - "ndbasereachtime": {"default": 30000, "no_log": False, "type": "float"}, - "ndretransmissiontime": {"default": 1000, "no_log": False, "type": "float"}, + "ndbasereachtime": {"no_log": False, "type": "float"}, + "ndretransmissiontime": {"no_log": False, "type": "float"}, "ralearning": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "routerredirection": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "td": {"no_log": False, "type": "float"}, "usipnatprefix": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "dodad", "natprefix", @@ -25457,6 +26871,26 @@ }, "l2param": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "bdggrpproxyarp", + "bdgsetting", + "bridgeagetimeout", + "garponvridintf", + "garpreply", + "macmodefwdmypkt", + "maxbridgecollision", + "mbfinstlearning", + "mbfpeermacupdate", + "proxyarp", + "returntoethernetsender", + "rstintfonhafo", + "skipproxyingbsdtraffic", + "stopmacmoveupdate", + "usemymac", + "usenetprofilebsdtraffic", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -25470,86 +26904,74 @@ "readwrite_arguments": { "bdggrpproxyarp": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "bdgsetting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "bridgeagetimeout": {"default": 300, "no_log": False, "type": "float"}, + "bridgeagetimeout": {"no_log": False, "type": "float"}, "garponvridintf": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "garpreply": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "macmodefwdmypkt": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "maxbridgecollision": {"default": 20, "no_log": False, "type": "float"}, + "maxbridgecollision": {"no_log": False, "type": "float"}, "mbfinstlearning": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "mbfpeermacupdate": {"default": 10, "no_log": False, "type": "float"}, + "mbfpeermacupdate": {"no_log": False, "type": "float"}, "proxyarp": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "returntoethernetsender": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "rstintfonhafo": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "skipproxyingbsdtraffic": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "stopmacmoveupdate": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "usemymac": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "usenetprofilebsdtraffic": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "bdggrpproxyarp", "bdgsetting", @@ -25571,6 +26993,25 @@ }, "l3param": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "acllogtime", + "allowclasseipv4", + "dropdfflag", + "dropipfragments", + "dynamicrouting", + "externalloopback", + "forwardicmpfragments", + "icmpgenratethreshold", + "implicitaclallow", + "ipv6dynamicrouting", + "miproundrobin", + "overridernat", + "srcnat", + "tnlpmtuwoconn", + "usipserverstraypkt", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -25582,91 +27023,75 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "acllogtime": { - "choices": ["DISABLED", "ENABLED"], - "no_log": False, - "type": "str", - }, + "acllogtime": {"no_log": False, "type": "str"}, "allowclasseipv4": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dropdfflag": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dropipfragments": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dynamicrouting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "externalloopback": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "forwardicmpfragments": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "icmpgenratethreshold": {"default": 100, "no_log": False, "type": "float"}, + "icmpgenratethreshold": {"no_log": False, "type": "float"}, "implicitaclallow": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "ipv6dynamicrouting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "miproundrobin": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "overridernat": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "srcnat": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tnlpmtuwoconn": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "usipserverstraypkt": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "acllogtime", "allowclasseipv4", @@ -25687,6 +27112,7 @@ }, "l4param": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["l2connmethod", "l4switch"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -25708,21 +27134,21 @@ "Vlan", "VlanChannel", ], - "default": "MacVlanChannel", "no_log": False, "type": "str", }, "l4switch": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": ["l2connmethod", "l4switch"], }, "lacp": { "_supported_operations": ["count", "get", "get-byname", "update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -25734,9 +27160,10 @@ "password_keys": [], "primary_key": "ownernode", "readwrite_arguments": { - "ownernode": {"default": 255, "no_log": False, "type": "float"}, - "syspriority": {"default": 32768, "no_log": False, "type": "float"}, + "ownernode": {"no_log": False, "type": "float"}, + "syspriority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": ["ownernode", "syspriority"], }, "lbaction": { @@ -25750,6 +27177,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name"]}, "add_payload_keys": ["comment", "name", "type", "value"], "bindings": [], "bindprimary_key": "", @@ -25771,10 +27199,12 @@ }, "value": {"elements": "str", "no_log": False, "type": "list"}, }, + "singleton": False, "update_payload_keys": ["comment", "name", "value"], }, "lbglobal_lbpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -25808,7 +27238,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -25859,6 +27288,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "lbgroup": { @@ -25872,6 +27302,22 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "backuppersistencetimeout", + "cookiedomain", + "cookiename", + "mastervserver", + "name", + "persistencebackup", + "persistencetype", + "persistmask", + "rule", + "timeout", + "usevserverpersistency", + "v6persistmasklen", + ] + }, "add_payload_keys": [ "backuppersistencetimeout", "cookiedomain", @@ -25896,11 +27342,7 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "backuppersistencetimeout": { - "default": 2, - "no_log": False, - "type": "float", - }, + "backuppersistencetimeout": {"no_log": False, "type": "float"}, "cookiedomain": {"no_log": False, "type": "str"}, "cookiename": {"no_log": False, "type": "str"}, "lbgroup_lbvserver_binding": { @@ -25933,16 +27375,16 @@ "type": "str", }, "persistmask": {"no_log": False, "type": "str"}, - "rule": {"default": '"None"', "no_log": False, "type": "str"}, - "timeout": {"default": 2, "no_log": False, "type": "float"}, + "rule": {"no_log": False, "type": "str"}, + "timeout": {"no_log": False, "type": "float"}, "usevserverpersistency": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "v6persistmasklen": {"default": 128, "no_log": False, "type": "float"}, + "v6persistmasklen": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "backuppersistencetimeout", "cookiedomain", @@ -25960,6 +27402,7 @@ }, "lbgroup_lbvserver_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "vservername"], "bindprimary_key": "vservername", "delete_arg_keys": ["vservername"], @@ -25973,6 +27416,7 @@ "name": {"no_log": False, "type": "str"}, "vservername": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lbmetrictable": { @@ -25984,6 +27428,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["metrictable"], "bindings": ["lbmetrictable_metric_binding"], "bindprimary_key": "", @@ -25995,7 +27440,6 @@ "password_keys": [], "primary_key": "metrictable", "readwrite_arguments": { - "Snmpoid": {"no_log": False, "type": "str"}, "lbmetrictable_metric_binding": { "no_log": False, "options": { @@ -26014,11 +27458,14 @@ }, "metric": {"no_log": False, "type": "str"}, "metrictable": {"no_log": False, "type": "str"}, + "snmpoid": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["metric", "metrictable", "snmpoid"], }, "lbmetrictable_metric_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["metric", "metrictable", "snmpoid"], "bindprimary_key": "metric", "delete_arg_keys": ["metric"], @@ -26029,10 +27476,11 @@ "password_keys": [], "primary_key": "metrictable", "readwrite_arguments": { - "Snmpoid": {"no_log": False, "type": "str"}, "metric": {"no_log": False, "type": "str"}, "metrictable": {"no_log": False, "type": "str"}, + "snmpoid": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["metric", "metric", "snmpoid"], }, "lbmonitor": { @@ -26047,6 +27495,102 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "acctapplicationid", + "action", + "alertretries", + "attribute", + "authapplicationid", + "basedn", + "binddn", + "customheaders", + "database", + "destip", + "destport", + "deviation", + "dispatcherip", + "dispatcherport", + "domain", + "downtime", + "failureretries", + "filename", + "filter", + "firmwarerevision", + "group", + "grpchealthcheck", + "grpcservicename", + "grpcstatuscode", + "hostipaddress", + "httprequest", + "inbandsecurityid", + "interval", + "ipaddress", + "iptunnel", + "kcdaccount", + "lasversion", + "logonpointname", + "lrtm", + "maxforwards", + "metrictable", + "monitorname", + "mqttclientidentifier", + "mqttversion", + "mssqlprotocolversion", + "netprofile", + "oraclesid", + "originhost", + "originrealm", + "password", + "productname", + "query", + "querytype", + "radaccountsession", + "radaccounttype", + "radapn", + "radframedip", + "radkey", + "radmsisdn", + "radnasid", + "radnasip", + "recv", + "respcode", + "resptimeout", + "resptimeoutthresh", + "retries", + "reverse", + "rtsprequest", + "scriptargs", + "scriptname", + "secondarypassword", + "secure", + "secureargs", + "send", + "sipmethod", + "sipreguri", + "snmpcommunity", + "snmpoid", + "snmpthreshold", + "snmpversion", + "sqlquery", + "sslprofile", + "storedb", + "successretries", + "supportedvendorids", + "tos", + "tosid", + "transparent", + "trofscode", + "trofsstring", + "type", + "username", + "validatecred", + "vendorid", + "vendorspecificacctapplicationids", + "vendorspecificauthapplicationids", + "vendorspecificvendorid", + ] + }, "add_payload_keys": [ "acctapplicationid", "action", @@ -26162,11 +27706,9 @@ "password_keys": ["password", "radkey", "secondarypassword", "secureargs"], "primary_key": "monitorname", "readwrite_arguments": { - "Snmpoid": {"no_log": False, "type": "str"}, "acctapplicationid": {"elements": "int", "no_log": False, "type": "list"}, "action": { "choices": ["DOWN", "LOG", "NONE"], - "default": "DOWN", "no_log": False, "type": "str", }, @@ -26184,7 +27726,7 @@ "dispatcherip": {"no_log": False, "type": "str"}, "dispatcherport": {"no_log": False, "type": "int"}, "domain": {"no_log": False, "type": "str"}, - "downtime": {"default": 30, "no_log": False, "type": "int"}, + "downtime": {"no_log": False, "type": "int"}, "evalrule": {"no_log": False, "type": "str"}, "failureretries": {"no_log": False, "type": "int"}, "filename": {"no_log": False, "type": "str"}, @@ -26193,7 +27735,6 @@ "group": {"no_log": False, "type": "str"}, "grpchealthcheck": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, @@ -26207,14 +27748,9 @@ "no_log": False, "type": "str", }, - "interval": {"default": 5, "no_log": False, "type": "int"}, + "interval": {"no_log": False, "type": "int"}, "ipaddress": {"elements": "str", "no_log": False, "type": "list"}, - "iptunnel": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "iptunnel": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "kcdaccount": {"no_log": False, "type": "str"}, "lasversion": {"no_log": False, "type": "str"}, "lbmonitor_metric_binding": { @@ -26255,14 +27791,14 @@ "no_log": False, "type": "str", }, - "maxforwards": {"default": 1, "no_log": False, "type": "float"}, + "maxforwards": {"no_log": False, "type": "float"}, "metric": {"no_log": False, "type": "str"}, "metrictable": {"no_log": False, "type": "str"}, "metricthreshold": {"no_log": False, "type": "float"}, "metricweight": {"no_log": False, "type": "float"}, "monitorname": {"no_log": False, "type": "str"}, "mqttclientidentifier": {"no_log": False, "type": "str"}, - "mqttversion": {"default": 4, "no_log": False, "type": "float"}, + "mqttversion": {"no_log": False, "type": "float"}, "mssqlprotocolversion": { "choices": [ "2000", @@ -26290,7 +27826,7 @@ "type": "str", }, "radaccountsession": {"no_log": False, "type": "str"}, - "radaccounttype": {"default": 1, "no_log": False, "type": "float"}, + "radaccounttype": {"no_log": False, "type": "float"}, "radapn": {"no_log": False, "type": "str"}, "radframedip": {"no_log": False, "type": "str"}, "radkey": {"no_log": True, "type": "str"}, @@ -26299,25 +27835,15 @@ "radnasip": {"no_log": False, "type": "str"}, "recv": {"no_log": False, "type": "str"}, "respcode": {"elements": "str", "no_log": False, "type": "list"}, - "resptimeout": {"default": 2, "no_log": False, "type": "int"}, + "resptimeout": {"no_log": False, "type": "int"}, "resptimeoutthresh": {"no_log": False, "type": "float"}, - "retries": {"default": 3, "no_log": False, "type": "int"}, - "reverse": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "retries": {"no_log": False, "type": "int"}, + "reverse": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "rtsprequest": {"no_log": False, "type": "str"}, "scriptargs": {"no_log": False, "type": "str"}, "scriptname": {"no_log": False, "type": "str"}, "secondarypassword": {"no_log": True, "type": "str"}, - "secure": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "secure": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "secureargs": {"no_log": True, "type": "str"}, "send": {"no_log": False, "type": "str"}, "servicegroupname": {"no_log": False, "type": "str"}, @@ -26331,39 +27857,32 @@ "sipuri": {"no_log": False, "type": "str"}, "sitepath": {"no_log": False, "type": "str"}, "snmpcommunity": {"no_log": False, "type": "str"}, + "snmpoid": {"no_log": False, "type": "str"}, "snmpthreshold": {"no_log": False, "type": "str"}, "snmpversion": {"choices": ["V1", "V2"], "no_log": False, "type": "str"}, "sqlquery": {"no_log": False, "type": "str"}, "sslprofile": {"no_log": False, "type": "str"}, "storedb": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "storefrontacctservice": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "storefrontcheckbackendservices": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "storename": {"no_log": False, "type": "str"}, - "successretries": {"default": 1, "no_log": False, "type": "int"}, + "successretries": {"no_log": False, "type": "int"}, "supportedvendorids": {"elements": "int", "no_log": False, "type": "list"}, "tos": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "tosid": {"no_log": False, "type": "float"}, - "transparent": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "transparent": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "trofscode": {"no_log": False, "type": "float"}, "trofsstring": {"no_log": False, "type": "str"}, "type": { @@ -26423,35 +27942,26 @@ }, "units1": { "choices": ["MIN", "MSEC", "SEC"], - "default": "SEC", "no_log": False, "type": "str", }, "units2": { "choices": ["MIN", "MSEC", "SEC"], - "default": "SEC", "no_log": False, "type": "str", }, "units3": { "choices": ["MIN", "MSEC", "SEC"], - "default": "SEC", "no_log": False, "type": "str", }, "units4": { "choices": ["MIN", "MSEC", "SEC"], - "default": "SEC", "no_log": False, "type": "str", }, "username": {"no_log": False, "type": "str"}, - "validatecred": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "validatecred": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "vendorid": {"no_log": False, "type": "float"}, "vendorspecificacctapplicationids": { "elements": "int", @@ -26465,6 +27975,7 @@ }, "vendorspecificvendorid": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "acctapplicationid", "action", @@ -26576,6 +28087,7 @@ }, "lbmonitor_metric_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "metric", "metricthreshold", @@ -26596,10 +28108,12 @@ "metricweight": {"no_log": False, "type": "float"}, "monitorname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["metric", "metric", "metricthreshold", "metricweight"], }, "lbmonitor_sslcertkey_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "ca", "certkeyname", @@ -26630,10 +28144,37 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "lbparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "allowboundsvcremoval", + "computedadccookieattribute", + "consolidatedlconn", + "cookiepassphrase", + "dbsttl", + "dropmqttjumbomessage", + "httponlycookieflag", + "lbhashalgorithm", + "lbhashfingers", + "literaladccookieattribute", + "maxpipelinenat", + "monitorconnectionclose", + "monitorskipmaxclient", + "preferdirectroute", + "retainservicestate", + "startuprrfactor", + "storemqttclientidandusername", + "undefaction", + "useencryptedpersistencecookie", + "useportforhashlb", + "usesecuredpersistencecookie", + "vserverspecificmac", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -26647,14 +28188,12 @@ "readwrite_arguments": { "allowboundsvcremoval": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "computedadccookieattribute": {"no_log": False, "type": "str"}, "consolidatedlconn": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, @@ -26662,82 +28201,71 @@ "dbsttl": {"no_log": False, "type": "float"}, "dropmqttjumbomessage": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "httponlycookieflag": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "lbhashalgorithm": { "choices": ["DEFAULT", "JARH", "PRAC"], - "default": "DEFAULT", "no_log": False, "type": "str", }, - "lbhashfingers": {"default": 256, "no_log": False, "type": "float"}, + "lbhashfingers": {"no_log": False, "type": "float"}, "literaladccookieattribute": {"no_log": False, "type": "str"}, "maxpipelinenat": {"no_log": False, "type": "float"}, "monitorconnectionclose": { "choices": ["FIN", "RESET"], - "default": "FIN", "no_log": False, "type": "str", }, "monitorskipmaxclient": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "preferdirectroute": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "retainservicestate": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "startuprrfactor": {"no_log": False, "type": "float"}, "storemqttclientidandusername": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "undefaction": {"default": '"NOLBACTION"', "no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "str"}, "useencryptedpersistencecookie": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "useportforhashlb": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "usesecuredpersistencecookie": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "vserverspecificmac": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "allowboundsvcremoval", "computedadccookieattribute", @@ -26765,6 +28293,7 @@ }, "lbpersistentsessions": { "_supported_operations": ["clear", "count", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -26780,6 +28309,7 @@ "persistenceparameter": {"no_log": False, "type": "str"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lbpolicy": { @@ -26793,6 +28323,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "logaction", "name", "undefaction"] + }, "add_payload_keys": [ "action", "comment", @@ -26835,6 +28368,7 @@ "rule": {"no_log": False, "type": "str"}, "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "action", "comment", @@ -26853,6 +28387,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "labelname", "policylabeltype"], "bindings": ["lbpolicylabel_lbpolicy_binding"], "bindprimary_key": "", @@ -26900,15 +28435,16 @@ "SIP_TCP", "SIP_UDP", ], - "default": "HTTP", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "lbpolicylabel_lbpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -26947,6 +28483,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbprofile": { @@ -26959,6 +28496,22 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "computedadccookieattribute", + "cookiepassphrase", + "dbslb", + "httponlycookieflag", + "lbhashalgorithm", + "lbhashfingers", + "lbprofilename", + "literaladccookieattribute", + "processlocal", + "storemqttclientidandusername", + "useencryptedpersistencecookie", + "usesecuredpersistencecookie", + ] + }, "add_payload_keys": [ "computedadccookieattribute", "cookiepassphrase", @@ -26987,50 +28540,44 @@ "cookiepassphrase": {"no_log": True, "type": "str"}, "dbslb": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httponlycookieflag": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "lbhashalgorithm": { "choices": ["DEFAULT", "JARH", "PRAC"], - "default": "DEFAULT", "no_log": False, "type": "str", }, - "lbhashfingers": {"default": 256, "no_log": False, "type": "float"}, + "lbhashfingers": {"no_log": False, "type": "float"}, "lbprofilename": {"no_log": False, "type": "str"}, "literaladccookieattribute": {"no_log": False, "type": "str"}, "processlocal": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "storemqttclientidandusername": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "useencryptedpersistencecookie": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "usesecuredpersistencecookie": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "computedadccookieattribute", "cookiepassphrase", @@ -27048,6 +28595,7 @@ }, "lbroute": { "_supported_operations": ["add", "count", "delete", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gatewayname", "netmask", "network", "td"], "bindings": [], "bindprimary_key": "", @@ -27064,10 +28612,12 @@ "network": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbroute6": { "_supported_operations": ["add", "count", "delete", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gatewayname", "network", "td"], "bindings": [], "bindprimary_key": "", @@ -27083,10 +28633,22 @@ "network": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbsipparameters": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "addrportvip", + "retrydur", + "rnatdstport", + "rnatsecuredstport", + "rnatsecuresrcport", + "rnatsrcport", + "sip503ratethreshold", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -27100,17 +28662,17 @@ "readwrite_arguments": { "addrportvip": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "retrydur": {"default": 120, "no_log": False, "type": "int"}, + "retrydur": {"no_log": False, "type": "int"}, "rnatdstport": {"no_log": False, "type": "int"}, "rnatsecuredstport": {"no_log": False, "type": "int"}, "rnatsecuresrcport": {"no_log": False, "type": "int"}, "rnatsrcport": {"no_log": False, "type": "int"}, - "sip503ratethreshold": {"default": 100, "no_log": False, "type": "float"}, + "sip503ratethreshold": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "addrportvip", "retrydur", @@ -27134,6 +28696,100 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "adfsproxyprofile", + "appflowlog", + "authentication", + "authenticationhost", + "authn401", + "authnprofile", + "authnvsname", + "backuplbmethod", + "backuppersistencetimeout", + "backupvserver", + "cacheable", + "clttimeout", + "comment", + "connfailover", + "cookiename", + "datalength", + "dataoffset", + "dbprofilename", + "dbslb", + "disableprimaryondown", + "dnsprofilename", + "downstateflush", + "hashlength", + "healththreshold", + "httpprofilename", + "httpsredirecturl", + "icmpvsrresponse", + "insertvserveripport", + "ipset", + "l2conn", + "lbmethod", + "lbprofilename", + "listenpolicy", + "listenpriority", + "m", + "macmoderetainvlan", + "maxautoscalemembers", + "minautoscalemembers", + "mssqlserverversion", + "mysqlcharacterset", + "mysqlprotocolversion", + "mysqlservercapabilities", + "mysqlserverversion", + "name", + "netmask", + "netprofile", + "newservicerequest", + "newservicerequestincrementinterval", + "newservicerequestunit", + "oracleserverversion", + "order", + "orderthreshold", + "persistavpno", + "persistencebackup", + "persistencetype", + "persistmask", + "probeprotocol", + "probesuccessresponsecode", + "push", + "pushlabel", + "pushmulticlients", + "pushvserver", + "quicbridgeprofilename", + "quicprofilename", + "recursionavailable", + "redirectfromport", + "redirectportrewrite", + "redirurl", + "resrule", + "retainconnectionsoncluster", + "rhistate", + "rtspnat", + "rule", + "servicename", + "sessionless", + "skippersistency", + "sobackupaction", + "somethod", + "sopersistence", + "sopersistencetimeout", + "sothreshold", + "tcpprobeport", + "tcpprofilename", + "timeout", + "toggleorder", + "tosid", + "trofspersistence", + "v6netmasklen", + "v6persistmasklen", + "vipheader", + ] + }, "add_payload_keys": [ "adfsproxyprofile", "appflowlog", @@ -27273,23 +28929,16 @@ "adfsproxyprofile": {"no_log": False, "type": "str"}, "appflowlog": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "authentication": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "authenticationhost": {"no_log": False, "type": "str"}, - "authn401": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "authn401": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "authnprofile": {"no_log": False, "type": "str"}, "authnvsname": {"no_log": False, "type": "str"}, "backuplbmethod": { @@ -27302,33 +28951,17 @@ "ROUNDROBIN", "SOURCEIPHASH", ], - "default": "ROUNDROBIN", "no_log": False, "type": "str", }, - "backuppersistencetimeout": { - "default": 2, - "no_log": False, - "type": "float", - }, + "backuppersistencetimeout": {"no_log": False, "type": "float"}, "backupvserver": {"no_log": False, "type": "str"}, - "bypassaaaa": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, - "cacheable": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "bypassaaaa": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "cacheable": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "clttimeout": {"no_log": False, "type": "float"}, "comment": {"no_log": False, "type": "str"}, "connfailover": { "choices": ["DISABLED", "STATEFUL", "STATELESS"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -27338,13 +28971,11 @@ "dbprofilename": {"no_log": False, "type": "str"}, "dbslb": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "disableprimaryondown": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -27356,17 +28987,15 @@ "dnsprofilename": {"no_log": False, "type": "str"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "hashlength": {"default": 80, "no_log": False, "type": "float"}, + "hashlength": {"no_log": False, "type": "float"}, "healththreshold": {"no_log": False, "type": "float"}, "httpprofilename": {"no_log": False, "type": "str"}, "httpsredirecturl": {"no_log": False, "type": "str"}, "icmpvsrresponse": { "choices": ["ACTIVE", "PASSIVE"], - "default": "PASSIVE", "no_log": False, "type": "str", }, @@ -27402,7 +29031,6 @@ "URLHASH", "USER_TOKEN", ], - "default": "LEASTCONNECTION", "no_log": False, "type": "str", }, @@ -27775,17 +29403,15 @@ }, "type": "dict", }, - "listenpolicy": {"default": '"NONE"', "no_log": False, "type": "str"}, - "listenpriority": {"default": 101, "no_log": False, "type": "float"}, + "listenpolicy": {"no_log": False, "type": "str"}, + "listenpriority": {"no_log": False, "type": "float"}, "m": { "choices": ["IP", "IPTUNNEL", "MAC", "TOS"], - "default": "IP", "no_log": False, "type": "str", }, "macmoderetainvlan": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -27802,7 +29428,6 @@ "2014", "70", ], - "default": "2008R2", "no_log": False, "type": "str", }, @@ -27818,13 +29443,11 @@ "newservicerequestincrementinterval": {"no_log": False, "type": "float"}, "newservicerequestunit": { "choices": ["PERCENT", "PER_SECOND"], - "default": "PER_SECOND", "no_log": False, "type": "str", }, "oracleserverversion": { "choices": ["10G", "11G"], - "default": "10G", "no_log": False, "type": "str", }, @@ -27864,69 +29487,53 @@ "no_log": False, "type": "str", }, - "probesuccessresponsecode": { - "default": '"200 ' 'OK"', - "no_log": False, - "type": "str", - }, + "probesuccessresponsecode": {"no_log": False, "type": "str"}, "processlocal": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "push": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "pushlabel": {"default": '"none"', "no_log": False, "type": "str"}, + "pushlabel": {"no_log": False, "type": "str"}, "pushmulticlients": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "pushvserver": {"no_log": False, "type": "str"}, "quicbridgeprofilename": {"no_log": False, "type": "str"}, "quicprofilename": {"no_log": False, "type": "str"}, - "range": {"default": 1, "no_log": False, "type": "float"}, + "range": {"no_log": False, "type": "float"}, "recursionavailable": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "redirectfromport": {"no_log": False, "type": "int"}, "redirectportrewrite": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "redirurl": {"no_log": False, "type": "str"}, "redirurlflags": {"no_log": False, "type": "bool"}, - "resrule": {"default": '"none"', "no_log": False, "type": "str"}, + "resrule": {"no_log": False, "type": "str"}, "retainconnectionsoncluster": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "rhistate": { "choices": ["ACTIVE", "PASSIVE"], - "default": "PASSIVE", - "no_log": False, - "type": "str", - }, - "rtspnat": { - "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, - "rule": {"default": '"none"', "no_log": False, "type": "str"}, + "rtspnat": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "rule": {"no_log": False, "type": "str"}, "servicename": {"no_log": False, "type": "str"}, "servicetype": { "choices": [ @@ -27980,13 +29587,11 @@ }, "sessionless": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "skippersistency": { "choices": ["Bypass", "None", "ReLb"], - "default": "None", "no_log": False, "type": "str", }, @@ -28008,34 +29613,32 @@ }, "sopersistence": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "sopersistencetimeout": {"default": 2, "no_log": False, "type": "float"}, + "sopersistencetimeout": {"no_log": False, "type": "float"}, "sothreshold": {"no_log": False, "type": "float"}, "tcpprobeport": {"no_log": False, "type": "int"}, "tcpprofilename": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, - "timeout": {"default": 2, "no_log": False, "type": "float"}, + "timeout": {"no_log": False, "type": "float"}, "toggleorder": { "choices": ["ASCENDING", "DESCENDING"], - "default": "ASCENDING", "no_log": False, "type": "str", }, "tosid": {"no_log": False, "type": "float"}, "trofspersistence": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "v6netmasklen": {"default": 128, "no_log": False, "type": "float"}, - "v6persistmasklen": {"default": 128, "no_log": False, "type": "float"}, + "v6netmasklen": {"no_log": False, "type": "float"}, + "v6persistmasklen": {"no_log": False, "type": "float"}, "vipheader": {"no_log": False, "type": "str"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "adfsproxyprofile", "appflowlog", @@ -28139,6 +29742,7 @@ }, "lbvserver_analyticsprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["analyticsprofile", "name", "order"], "bindprimary_key": "analyticsprofile", "delete_arg_keys": ["analyticsprofile"], @@ -28153,10 +29757,12 @@ "name": {"no_log": False, "type": "str"}, "order": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_appflowpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28205,10 +29811,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_appfwpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28257,10 +29865,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_appqoepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28309,10 +29919,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_auditnslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28361,10 +29973,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_auditsyslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28413,10 +30027,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_authorizationpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28465,10 +30081,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_botpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28517,10 +30135,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_cachepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28569,10 +30189,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_cmppolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28621,10 +30243,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_contentinspectionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28673,10 +30297,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_dnspolicy64_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28725,10 +30351,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_feopolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28777,10 +30405,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_lbpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28829,10 +30459,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_responderpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28881,10 +30513,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_rewritepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -28933,10 +30567,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_service_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "name", "order", @@ -28959,10 +30595,12 @@ "servicename": {"no_log": False, "type": "str"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": ["order", "servicename", "servicename", "weight"], }, "lbvserver_servicegroup_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "name", "order", @@ -28983,12 +30621,14 @@ "order": {"no_log": False, "type": "float"}, "servicegroupname": {"no_log": False, "type": "str"}, "servicename": {"no_log": False, "type": "str"}, - "weight": {"default": 1, "no_log": False, "type": "float"}, + "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": ["order", "servicename", "servicename", "weight"], }, "lbvserver_spilloverpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -29037,10 +30677,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_tmtrafficpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -29089,10 +30731,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_transformpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -29141,10 +30785,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_videooptimizationdetectionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -29193,10 +30839,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbvserver_videooptimizationpacingpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -29245,6 +30893,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lbwlm": { @@ -29257,6 +30906,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["katimeout", "wlmname"]}, "add_payload_keys": ["ipaddress", "katimeout", "lbuid", "port", "wlmname"], "bindings": ["lbwlm_lbvserver_binding"], "bindprimary_key": "", @@ -29269,7 +30919,7 @@ "primary_key": "wlmname", "readwrite_arguments": { "ipaddress": {"no_log": False, "type": "str"}, - "katimeout": {"default": 2, "no_log": False, "type": "float"}, + "katimeout": {"no_log": False, "type": "float"}, "lbuid": {"no_log": False, "type": "str"}, "lbwlm_lbvserver_binding": { "no_log": False, @@ -29290,10 +30940,12 @@ "port": {"no_log": False, "type": "int"}, "wlmname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["katimeout", "wlmname"], }, "lbwlm_lbvserver_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["vservername", "wlmname"], "bindprimary_key": "vservername", "delete_arg_keys": ["vservername"], @@ -29307,10 +30959,12 @@ "vservername": {"no_log": False, "type": "str"}, "wlmname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "linkset": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id"], "bindings": ["linkset_channel_binding", "linkset_interface_binding"], "bindprimary_key": "", @@ -29356,10 +31010,12 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [], }, "linkset_channel_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ifnum"], "bindprimary_key": "ifnum", "delete_arg_keys": ["ifnum"], @@ -29373,10 +31029,12 @@ "id": {"no_log": False, "type": "str"}, "ifnum": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "linkset_interface_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ifnum"], "bindprimary_key": "ifnum", "delete_arg_keys": ["ifnum"], @@ -29390,10 +31048,12 @@ "id": {"no_log": False, "type": "str"}, "ifnum": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lldpneighbors": { "_supported_operations": ["clear", "count", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -29408,10 +31068,12 @@ "ifnum": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lldpparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["holdtimetxmult", "mode", "timer"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -29423,18 +31085,20 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "holdtimetxmult": {"default": 4, "no_log": False, "type": "float"}, + "holdtimetxmult": {"no_log": False, "type": "float"}, "mode": { "choices": ["NONE", "RECEIVER", "TRANSCEIVER", "TRANSMITTER"], "no_log": False, "type": "str", }, - "timer": {"default": 30, "no_log": False, "type": "float"}, + "timer": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": ["holdtimetxmult", "mode", "timer"], }, "location": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "ipfrom", "ipto", @@ -29464,10 +31128,16 @@ "longitude": {"no_log": False, "type": "int"}, "preferredlocation": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "locationfile": { "_supported_operations": ["Import", "add", "delete", "get"], + "action_payload_keys": { + "import": ["locationfile", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": ["format", "locationfile"], "bindings": [], "bindprimary_key": "", @@ -29479,7 +31149,6 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "Locationfile": {"no_log": False, "type": "str"}, "format": { "choices": [ "geoip-city", @@ -29494,16 +31163,22 @@ "ip-country-region-city-isp", "netscaler", ], - "default": "netscaler", "no_log": False, "type": "str", }, + "locationfile": {"no_log": False, "type": "str"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "locationfile6": { "_supported_operations": ["Import", "add", "count", "delete", "get"], + "action_payload_keys": { + "import": ["locationfile", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": ["format", "locationfile"], "bindings": [], "bindprimary_key": "", @@ -29515,19 +31190,31 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "Locationfile": {"no_log": False, "type": "str"}, "format": { "choices": ["geoip-country6", "netscaler6"], - "default": "netscaler6", "no_log": False, "type": "str", }, + "locationfile": {"no_log": False, "type": "str"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "locationparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "context", + "matchwildcardtoany", + "q1label", + "q2label", + "q3label", + "q4label", + "q5label", + "q6label", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -29546,7 +31233,6 @@ }, "matchwildcardtoany": { "choices": ["Expression", "NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, @@ -29557,6 +31243,7 @@ "q5label": {"no_log": False, "type": "str"}, "q6label": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "context", "matchwildcardtoany", @@ -29578,6 +31265,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "sessiontimeout"]}, "add_payload_keys": ["name", "port", "sessiontimeout", "transportprotocol"], "bindings": [], "bindprimary_key": "", @@ -29591,13 +31279,14 @@ "readwrite_arguments": { "name": {"no_log": False, "type": "str"}, "port": {"no_log": False, "type": "str"}, - "sessiontimeout": {"default": 30, "no_log": False, "type": "float"}, + "sessiontimeout": {"no_log": False, "type": "float"}, "transportprotocol": { "choices": ["ICMP", "TCP", "UDP"], "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": ["name", "sessiontimeout"], }, "lsnappsprofile": { @@ -29610,6 +31299,17 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "appsprofilename", + "filtering", + "ippooling", + "l2info", + "mapping", + "tcpproxy", + "td", + ] + }, "add_payload_keys": [ "appsprofilename", "filtering", @@ -29640,19 +31340,16 @@ "ADDRESS-PORT-DEPENDENT", "ENDPOINT-INDEPENDENT", ], - "default": "ADDRESS-PORT-DEPENDENT", "no_log": False, "type": "str", }, "ippooling": { "choices": ["PAIRED", "RANDOM"], - "default": "RANDOM", "no_log": False, "type": "str", }, "l2info": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -29694,23 +31391,22 @@ "ADDRESS-PORT-DEPENDENT", "ENDPOINT-INDEPENDENT", ], - "default": "ADDRESS-PORT-DEPENDENT", "no_log": False, "type": "str", }, "tcpproxy": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "td": {"default": 4095, "no_log": False, "type": "float"}, + "td": {"no_log": False, "type": "float"}, "transportprotocol": { "choices": ["ICMP", "TCP", "UDP"], "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "appsprofilename", "filtering", @@ -29723,6 +31419,7 @@ }, "lsnappsprofile_lsnappsattributes_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["appsattributesname", "appsprofilename"], "bindprimary_key": "appsattributesname", "delete_arg_keys": ["appsattributesname"], @@ -29736,10 +31433,12 @@ "appsattributesname": {"no_log": False, "type": "str"}, "appsprofilename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsnappsprofile_port_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["appsprofilename", "lsnport"], "bindprimary_key": "lsnport", "delete_arg_keys": ["lsnport"], @@ -29753,10 +31452,12 @@ "appsprofilename": {"no_log": False, "type": "str"}, "lsnport": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsnclient": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["clientname"], "bindings": [ "lsnclient_network6_binding", @@ -29839,10 +31540,12 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [], }, "lsnclient_network6_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["clientname", "network6", "td"], "bindprimary_key": "network6", "delete_arg_keys": ["network6", "td"], @@ -29859,10 +31562,12 @@ "network6": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lsnclient_network_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["clientname", "netmask", "network", "td"], "bindprimary_key": "network", "delete_arg_keys": ["netmask", "network", "td"], @@ -29878,10 +31583,12 @@ "network": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lsnclient_nsacl6_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["acl6name", "clientname", "td"], "bindprimary_key": "acl6name", "delete_arg_keys": ["acl6name", "td"], @@ -29896,10 +31603,12 @@ "clientname": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lsnclient_nsacl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["aclname", "clientname", "td"], "bindprimary_key": "aclname", "delete_arg_keys": ["aclname", "td"], @@ -29914,6 +31623,7 @@ "clientname": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lsngroup": { @@ -29926,6 +31636,21 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "ftp", + "ftpcm", + "groupname", + "logging", + "portblocksize", + "pptp", + "rtspalg", + "sessionlogging", + "sessionsync", + "sipalg", + "snmptraplimit", + ] + }, "add_payload_keys": [ "allocpolicy", "clientname", @@ -29965,20 +31690,13 @@ "readwrite_arguments": { "allocpolicy": { "choices": ["IPADDRS", "PORTS"], - "default": "PORTS", "no_log": False, "type": "str", }, "clientname": {"no_log": False, "type": "str"}, - "ftp": { - "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", - "no_log": False, - "type": "str", - }, + "ftp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "ftpcm": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -29986,7 +31704,6 @@ "ip6profile": {"no_log": False, "type": "str"}, "logging": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -30136,43 +31853,38 @@ }, "nattype": { "choices": ["DETERMINISTIC", "DYNAMIC"], - "default": "DYNAMIC", "no_log": False, "type": "str", }, "portblocksize": {"no_log": False, "type": "float"}, "pptp": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "rtspalg": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sessionlogging": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sessionsync": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "sipalg": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "snmptraplimit": {"default": 100, "no_log": False, "type": "float"}, + "snmptraplimit": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "ftp", "ftpcm", @@ -30189,6 +31901,7 @@ }, "lsngroup_ipsecalgprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["groupname", "ipsecalgprofile"], "bindprimary_key": "ipsecalgprofile", "delete_arg_keys": ["ipsecalgprofile"], @@ -30202,10 +31915,12 @@ "groupname": {"no_log": False, "type": "str"}, "ipsecalgprofile": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsngroup_lsnappsprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["appsprofilename", "groupname"], "bindprimary_key": "appsprofilename", "delete_arg_keys": ["appsprofilename"], @@ -30219,10 +31934,12 @@ "appsprofilename": {"no_log": False, "type": "str"}, "groupname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsngroup_lsnhttphdrlogprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["groupname", "httphdrlogprofilename"], "bindprimary_key": "httphdrlogprofilename", "delete_arg_keys": ["httphdrlogprofilename"], @@ -30236,10 +31953,12 @@ "groupname": {"no_log": False, "type": "str"}, "httphdrlogprofilename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsngroup_lsnlogprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["groupname", "logprofilename"], "bindprimary_key": "logprofilename", "delete_arg_keys": ["logprofilename"], @@ -30253,10 +31972,12 @@ "groupname": {"no_log": False, "type": "str"}, "logprofilename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsngroup_lsnpool_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["groupname", "poolname"], "bindprimary_key": "poolname", "delete_arg_keys": ["poolname"], @@ -30270,10 +31991,12 @@ "groupname": {"no_log": False, "type": "str"}, "poolname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsngroup_lsnrtspalgprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["groupname", "rtspalgprofilename"], "bindprimary_key": "rtspalgprofilename", "delete_arg_keys": ["rtspalgprofilename"], @@ -30287,10 +32010,12 @@ "groupname": {"no_log": False, "type": "str"}, "rtspalgprofilename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsngroup_lsnsipalgprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["groupname", "sipalgprofilename"], "bindprimary_key": "sipalgprofilename", "delete_arg_keys": ["sipalgprofilename"], @@ -30304,10 +32029,12 @@ "groupname": {"no_log": False, "type": "str"}, "sipalgprofilename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsngroup_lsntransportprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["groupname", "transportprofilename"], "bindprimary_key": "transportprofilename", "delete_arg_keys": ["transportprofilename"], @@ -30321,10 +32048,12 @@ "groupname": {"no_log": False, "type": "str"}, "transportprofilename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsngroup_pcpserver_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["groupname", "pcpserver"], "bindprimary_key": "pcpserver", "delete_arg_keys": ["pcpserver"], @@ -30338,6 +32067,7 @@ "groupname": {"no_log": False, "type": "str"}, "pcpserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsnhttphdrlogprofile": { @@ -30350,6 +32080,15 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "httphdrlogprofilename", + "loghost", + "logmethod", + "logurl", + "logversion", + ] + }, "add_payload_keys": [ "httphdrlogprofilename", "loghost", @@ -30370,29 +32109,26 @@ "httphdrlogprofilename": {"no_log": False, "type": "str"}, "loghost": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "logmethod": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "logurl": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "logversion": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "httphdrlogprofilename", "loghost", @@ -30403,6 +32139,7 @@ }, "lsnip6profile": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "natprefix", "network6", "type"], "bindings": [], "bindprimary_key": "", @@ -30419,6 +32156,7 @@ "network6": {"no_log": False, "type": "str"}, "type": {"choices": ["DS-Lite", "NAT64"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsnlogprofile": { @@ -30431,6 +32169,16 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "analyticsprofile", + "logcompact", + "logipfix", + "logprofilename", + "logsessdeletion", + "logsubscrinfo", + ] + }, "add_payload_keys": [ "analyticsprofile", "logcompact", @@ -30452,30 +32200,27 @@ "analyticsprofile": {"no_log": False, "type": "str"}, "logcompact": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "logipfix": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "logprofilename": {"no_log": False, "type": "str"}, "logsessdeletion": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "logsubscrinfo": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "analyticsprofile", "logcompact", @@ -30487,6 +32232,7 @@ }, "lsnparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["sessionsync", "subscrsessionremoval"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -30501,17 +32247,16 @@ "memlimit": {"no_log": False, "type": "float"}, "sessionsync": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "subscrsessionremoval": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": ["sessionsync", "subscrsessionremoval"], }, "lsnpool": { @@ -30524,6 +32269,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["maxportrealloctmq", "poolname", "portrealloctimeout"] + }, "add_payload_keys": [ "maxportrealloctmq", "nattype", @@ -30557,26 +32305,26 @@ }, "type": "dict", }, - "maxportrealloctmq": {"default": 65536, "no_log": False, "type": "float"}, + "maxportrealloctmq": {"no_log": False, "type": "float"}, "nattype": { "choices": ["DETERMINISTIC", "DYNAMIC"], - "default": "DYNAMIC", "no_log": False, "type": "str", }, "poolname": {"no_log": False, "type": "str"}, "portblockallocation": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "portrealloctimeout": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": ["maxportrealloctmq", "poolname", "portrealloctimeout"], }, "lsnpool_lsnip_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["lsnip", "ownernode", "poolname"], "bindprimary_key": "lsnip", "delete_arg_keys": ["lsnip", "ownernode"], @@ -30591,6 +32339,7 @@ "ownernode": {"no_log": False, "type": "float"}, "poolname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsnrtspalgprofile": { @@ -30603,6 +32352,14 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "rtspalgprofilename", + "rtspidletimeout", + "rtspportrange", + "rtsptransportprotocol", + ] + }, "add_payload_keys": [ "rtspalgprofilename", "rtspidletimeout", @@ -30620,15 +32377,15 @@ "primary_key": "rtspalgprofilename", "readwrite_arguments": { "rtspalgprofilename": {"no_log": False, "type": "str"}, - "rtspidletimeout": {"default": 120, "no_log": False, "type": "float"}, + "rtspidletimeout": {"no_log": False, "type": "float"}, "rtspportrange": {"no_log": False, "type": "str"}, "rtsptransportprotocol": { "choices": ["TCP", "UDP"], - "default": "TCP", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "rtspalgprofilename", "rtspidletimeout", @@ -30638,6 +32395,7 @@ }, "lsnrtspalgsession": { "_supported_operations": ["count", "flush", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -30652,10 +32410,12 @@ "nodeid": {"no_log": False, "type": "float"}, "sessionid": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "lsnsession": { "_supported_operations": ["count", "flush", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -30680,7 +32440,6 @@ "natport2": {"no_log": False, "type": "int"}, "nattype": { "choices": ["DS-Lite", "NAT44", "NAT64"], - "default": "NAT44", "no_log": False, "type": "str", }, @@ -30690,10 +32449,12 @@ "nodeid": {"no_log": False, "type": "float"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lsnsipalgcall": { "_supported_operations": ["count", "flush", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -30708,6 +32469,7 @@ "callid": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "lsnsipalgprofile": { @@ -30720,6 +32482,23 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "datasessionidletimeout", + "opencontactpinhole", + "openrecordroutepinhole", + "openregisterpinhole", + "openroutepinhole", + "openviapinhole", + "registrationtimeout", + "rport", + "sipalgprofilename", + "sipdstportrange", + "sipsessiontimeout", + "sipsrcportrange", + "siptransportprotocol", + ] + }, "add_payload_keys": [ "datasessionidletimeout", "opencontactpinhole", @@ -30745,51 +32524,41 @@ "password_keys": [], "primary_key": "sipalgprofilename", "readwrite_arguments": { - "datasessionidletimeout": { - "default": 120, - "no_log": False, - "type": "float", - }, + "datasessionidletimeout": {"no_log": False, "type": "float"}, "opencontactpinhole": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "openrecordroutepinhole": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "openregisterpinhole": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "openroutepinhole": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "openviapinhole": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "registrationtimeout": {"default": 60, "no_log": False, "type": "float"}, + "registrationtimeout": {"no_log": False, "type": "float"}, "rport": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "sipalgprofilename": {"no_log": False, "type": "str"}, "sipdstportrange": {"no_log": False, "type": "str"}, - "sipsessiontimeout": {"default": 600, "no_log": False, "type": "float"}, + "sipsessiontimeout": {"no_log": False, "type": "float"}, "sipsrcportrange": {"no_log": False, "type": "str"}, "siptransportprotocol": { "choices": ["TCP", "UDP"], @@ -30797,6 +32566,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "datasessionidletimeout", "opencontactpinhole", @@ -30815,6 +32585,7 @@ }, "lsnstatic": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "destip", "dsttd", @@ -30868,6 +32639,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "lsntransportprofile": { @@ -30880,6 +32652,21 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "finrsttimeout", + "groupsessionlimit", + "portpreserveparity", + "portpreserverange", + "portquota", + "sessionquota", + "sessiontimeout", + "stuntimeout", + "syncheck", + "synidletimeout", + "transportprofilename", + ] + }, "add_payload_keys": [ "finrsttimeout", "groupsessionlimit", @@ -30904,31 +32691,28 @@ "password_keys": [], "primary_key": "transportprofilename", "readwrite_arguments": { - "finrsttimeout": {"default": 30, "no_log": False, "type": "float"}, + "finrsttimeout": {"no_log": False, "type": "float"}, "groupsessionlimit": {"no_log": False, "type": "float"}, "portpreserveparity": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "portpreserverange": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "portquota": {"no_log": False, "type": "float"}, "sessionquota": {"no_log": False, "type": "float"}, - "sessiontimeout": {"default": 120, "no_log": False, "type": "float"}, - "stuntimeout": {"default": 600, "no_log": False, "type": "float"}, + "sessiontimeout": {"no_log": False, "type": "float"}, + "stuntimeout": {"no_log": False, "type": "float"}, "syncheck": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "synidletimeout": {"default": 60, "no_log": False, "type": "float"}, + "synidletimeout": {"no_log": False, "type": "float"}, "transportprofilename": {"no_log": False, "type": "str"}, "transportprotocol": { "choices": ["ICMP", "TCP", "UDP"], @@ -30936,6 +32720,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "finrsttimeout", "groupsessionlimit", @@ -30952,6 +32737,7 @@ }, "mapbmr": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "eabitlength", "name", @@ -30975,7 +32761,7 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "eabitlength": {"default": 16, "no_log": False, "type": "float"}, + "eabitlength": {"no_log": False, "type": "float"}, "mapbmr_bmrv4network_binding": { "no_log": False, "options": { @@ -30993,14 +32779,16 @@ "type": "dict", }, "name": {"no_log": False, "type": "str"}, - "psidlength": {"default": 8, "no_log": False, "type": "float"}, - "psidoffset": {"default": 6, "no_log": False, "type": "float"}, + "psidlength": {"no_log": False, "type": "float"}, + "psidoffset": {"no_log": False, "type": "float"}, "ruleipv6prefix": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "mapbmr_bmrv4network_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "netmask", "network"], "bindprimary_key": "network", "delete_arg_keys": ["netmask", "network"], @@ -31015,10 +32803,12 @@ "netmask": {"no_log": False, "type": "str"}, "network": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "mapdmr": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["bripv6prefix", "name"], "bindings": [], "bindprimary_key": "", @@ -31033,10 +32823,12 @@ "bripv6prefix": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "mapdomain": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["mapdmrname", "name"], "bindings": ["mapdomain_mapbmr_binding"], "bindprimary_key": "", @@ -31067,10 +32859,12 @@ }, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "mapdomain_mapbmr_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["mapbmrname", "name"], "bindprimary_key": "mapbmrname", "delete_arg_keys": ["mapbmrname"], @@ -31084,6 +32878,7 @@ "mapbmrname": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "nat64": { @@ -31096,6 +32891,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "netprofile"]}, "add_payload_keys": ["acl6name", "name", "netprofile"], "bindings": [], "bindprimary_key": "", @@ -31111,10 +32907,20 @@ "name": {"no_log": False, "type": "str"}, "netprofile": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["acl6name", "name", "netprofile"], }, "nat64param": { "_supported_operations": ["count", "get", "get-byname", "unset", "update"], + "action_payload_keys": { + "unset": [ + "nat64fragheader", + "nat64ignoretos", + "nat64v6mtu", + "nat64zerochecksum", + "td", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -31128,25 +32934,23 @@ "readwrite_arguments": { "nat64fragheader": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "nat64ignoretos": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "nat64v6mtu": {"default": 1280, "no_log": False, "type": "float"}, + "nat64v6mtu": {"no_log": False, "type": "float"}, "nat64zerochecksum": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "nat64fragheader", "nat64ignoretos", @@ -31157,6 +32961,7 @@ }, "nd6": { "_supported_operations": ["add", "clear", "count", "delete", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ifnum", "mac", "neighbor", "td", "vlan", "vtep", "vxlan"], "bindings": ["nd6ravariables_onlinkipv6prefix_binding"], "bindprimary_key": "", @@ -31193,10 +32998,29 @@ "vtep": {"no_log": False, "type": "str"}, "vxlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "nd6ravariables": { "_supported_operations": ["count", "get", "get-byname", "unset", "update"], + "action_payload_keys": { + "unset": [ + "ceaserouteradv", + "currhoplimit", + "defaultlifetime", + "linkmtu", + "managedaddrconfig", + "maxrtadvinterval", + "minrtadvinterval", + "onlyunicastrtadvresponse", + "otheraddrconfig", + "reachabletime", + "retranstime", + "sendrouteradv", + "srclinklayeraddroption", + "vlan", + ] + }, "add_payload_keys": [], "bindings": ["nd6ravariables_onlinkipv6prefix_binding"], "bindprimary_key": "", @@ -31210,21 +33034,19 @@ "readwrite_arguments": { "ceaserouteradv": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "currhoplimit": {"default": 64, "no_log": False, "type": "float"}, - "defaultlifetime": {"default": 1800, "no_log": False, "type": "int"}, + "currhoplimit": {"no_log": False, "type": "float"}, + "defaultlifetime": {"no_log": False, "type": "int"}, "linkmtu": {"no_log": False, "type": "float"}, "managedaddrconfig": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "maxrtadvinterval": {"default": 600, "no_log": False, "type": "float"}, - "minrtadvinterval": {"default": 198, "no_log": False, "type": "float"}, + "maxrtadvinterval": {"no_log": False, "type": "float"}, + "minrtadvinterval": {"no_log": False, "type": "float"}, "nd6ravariables_onlinkipv6prefix_binding": { "no_log": False, "options": { @@ -31243,32 +33065,25 @@ }, "onlyunicastrtadvresponse": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "otheraddrconfig": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "reachabletime": {"no_log": False, "type": "float"}, "retranstime": {"no_log": False, "type": "float"}, - "sendrouteradv": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "sendrouteradv": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "srclinklayeraddroption": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "vlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "ceaserouteradv", "currhoplimit", @@ -31288,6 +33103,7 @@ }, "nd6ravariables_onlinkipv6prefix_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ipv6prefix", "vlan"], "bindprimary_key": "ipv6prefix", "delete_arg_keys": ["ipv6prefix"], @@ -31301,6 +33117,7 @@ "ipv6prefix": {"no_log": False, "type": "str"}, "vlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "netbridge": { @@ -31313,6 +33130,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "vxlanvlanmap"]}, "add_payload_keys": ["name", "vxlanvlanmap"], "bindings": [ "netbridge_iptunnel_binding", @@ -31396,10 +33214,12 @@ }, "vxlanvlanmap": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "vxlanvlanmap"], }, "netbridge_iptunnel_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "tunnel"], "bindprimary_key": "tunnel", "delete_arg_keys": ["tunnel"], @@ -31413,10 +33233,12 @@ "name": {"no_log": False, "type": "str"}, "tunnel": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "netbridge_nsip6_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ipaddress", "name", "netmask"], "bindprimary_key": "ipaddress", "delete_arg_keys": ["ipaddress", "netmask"], @@ -31431,10 +33253,12 @@ "name": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "netbridge_nsip_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ipaddress", "name", "netmask"], "bindprimary_key": "ipaddress", "delete_arg_keys": ["ipaddress", "netmask"], @@ -31449,10 +33273,12 @@ "name": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "netbridge_vlan_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "vlan"], "bindprimary_key": "vlan", "delete_arg_keys": ["vlan"], @@ -31466,6 +33292,7 @@ "name": {"no_log": False, "type": "str"}, "vlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "netprofile": { @@ -31478,6 +33305,18 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "mbf", + "name", + "overridelsn", + "proxyprotocol", + "proxyprotocolaftertlshandshake", + "proxyprotocoltxversion", + "srcip", + "srcippersistency", + ] + }, "add_payload_keys": [ "mbf", "name", @@ -31535,37 +33374,33 @@ }, "overridelsn": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "proxyprotocol": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "proxyprotocolaftertlshandshake": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "proxyprotocoltxversion": { "choices": ["V1", "V2"], - "default": "V1", "no_log": False, "type": "str", }, "srcip": {"no_log": False, "type": "str"}, "srcippersistency": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "mbf", "name", @@ -31579,6 +33414,7 @@ }, "netprofile_natrule_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "natrule", "netmask", "rewriteip"], "bindprimary_key": "natrule", "delete_arg_keys": ["natrule", "netmask"], @@ -31594,10 +33430,12 @@ "netmask": {"no_log": False, "type": "str"}, "rewriteip": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "netprofile_srcportset_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "srcportrange"], "bindprimary_key": "srcportrange", "delete_arg_keys": ["srcportrange"], @@ -31611,10 +33449,12 @@ "name": {"no_log": False, "type": "str"}, "srcportrange": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "nsacls": { "_supported_operations": ["apply", "clear", "renumber"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -31626,17 +33466,14 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "type": { - "choices": ["CLASSIC", "DFD"], - "default": "CLASSIC", - "no_log": False, - "type": "str", - } + "type": {"choices": ["CLASSIC", "DFD"], "no_log": False, "type": "str"} }, + "singleton": True, "update_payload_keys": [], }, "nsacls6": { "_supported_operations": ["apply", "clear", "renumber"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -31648,17 +33485,14 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "type": { - "choices": ["CLASSIC", "DFD"], - "default": "CLASSIC", - "no_log": False, - "type": "str", - } + "type": {"choices": ["CLASSIC", "DFD"], "no_log": False, "type": "str"} }, + "singleton": True, "update_payload_keys": [], }, "nsappflowcollector": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ipaddress", "name", "port"], "bindings": [], "bindprimary_key": "", @@ -31672,12 +33506,26 @@ "readwrite_arguments": { "ipaddress": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, - "port": {"default": 4739, "no_log": False, "type": "int"}, + "port": {"no_log": False, "type": "int"}, }, + "singleton": False, "update_payload_keys": [], }, "nsappflowparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "clienttrafficonly", + "httpcookie", + "httphost", + "httpmethod", + "httpreferer", + "httpurl", + "httpuseragent", + "templaterefresh", + "udppmtu", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -31691,49 +33539,43 @@ "readwrite_arguments": { "clienttrafficonly": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "httpcookie": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httphost": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpmethod": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpreferer": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpurl": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "httpuseragent": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "templaterefresh": {"default": 600, "no_log": False, "type": "float"}, - "udppmtu": {"default": 1472, "no_log": False, "type": "float"}, + "templaterefresh": {"no_log": False, "type": "float"}, + "udppmtu": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "clienttrafficonly", "httpcookie", @@ -31748,6 +33590,7 @@ }, "nsaptlicense": { "_supported_operations": ["change", "count", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -31765,13 +33608,9 @@ "licensedir": {"no_log": False, "type": "str"}, "serialno": {"no_log": False, "type": "str"}, "sessionid": {"no_log": False, "type": "str"}, - "useproxy": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "useproxy": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "nsassignment": { @@ -31785,6 +33624,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name"]}, "add_payload_keys": [ "add", "append", @@ -31805,7 +33645,7 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "Add": {"no_log": False, "type": "str"}, + "add": {"no_log": False, "type": "str"}, "append": {"no_log": False, "type": "str"}, "clear": {"no_log": False, "type": "bool"}, "comment": {"no_log": False, "type": "str"}, @@ -31815,6 +33655,7 @@ "sub": {"no_log": False, "type": "str"}, "variable": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "add", "append", @@ -31828,6 +33669,7 @@ }, "nscapacity": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["bandwidth", "platform", "vcpu"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -31895,10 +33737,12 @@ "unit": {"choices": ["Gbps", "Mbps"], "no_log": False, "type": "str"}, "vcpu": {"no_log": False, "type": "bool"}, }, + "singleton": True, "update_payload_keys": ["bandwidth", "edition", "platform", "unit", "vcpu"], }, "nscentralmanagementserver": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "activationcode", "adcpassword", @@ -31941,17 +33785,16 @@ "servername": {"no_log": False, "type": "str"}, "type": {"choices": ["CLOUD", "ONPREM"], "no_log": False, "type": "str"}, "username": {"no_log": False, "type": "str"}, - "validatecert": { - "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, + "validatecert": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "nsconfig": { "_supported_operations": ["clear", "diff", "get", "save", "unset", "update"], + "action_payload_keys": { + "unset": ["ifnum", "ipaddress", "netmask", "nsvlan", "tagged"] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -31972,20 +33815,12 @@ "config2": {"no_log": False, "type": "str"}, "cookieversion": {"choices": ["0", "1"], "no_log": False, "type": "str"}, "crportrange": {"no_log": False, "type": "str"}, - "exclusivequotamaxclient": { - "default": 80, - "no_log": False, - "type": "float", - }, - "exclusivequotaspillover": { - "default": 80, - "no_log": False, - "type": "float", - }, + "exclusivequotamaxclient": {"no_log": False, "type": "float"}, + "exclusivequotaspillover": {"no_log": False, "type": "float"}, "force": {"no_log": False, "type": "bool"}, "ftpportrange": {"no_log": False, "type": "str"}, - "grantquotamaxclient": {"default": 10, "no_log": False, "type": "float"}, - "grantquotaspillover": {"default": 10, "no_log": False, "type": "float"}, + "grantquotamaxclient": {"no_log": False, "type": "float"}, + "grantquotaspillover": {"no_log": False, "type": "float"}, "httpport": {"elements": "int", "no_log": False, "type": "list"}, "ifnum": {"elements": "str", "no_log": False, "type": "list"}, "ignoredevicespecific": {"no_log": False, "type": "bool"}, @@ -32000,38 +33835,25 @@ "netmask": {"no_log": False, "type": "str"}, "nsvlan": {"no_log": False, "type": "float"}, "outtype": {"choices": ["cli", "xml"], "no_log": False, "type": "str"}, - "pmtumin": {"default": 576, "no_log": False, "type": "float"}, - "pmtutimeout": {"default": 10, "no_log": False, "type": "float"}, - "rbaconfig": { - "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, + "pmtumin": {"no_log": False, "type": "float"}, + "pmtutimeout": {"no_log": False, "type": "float"}, + "rbaconfig": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "securecookie": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", - "no_log": False, - "type": "str", - }, - "tagged": { - "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, + "tagged": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "template": {"no_log": False, "type": "bool"}, - "timezone": { - "default": "CoordinatedUniversalTime", - "no_log": False, - "type": "str", - }, + "timezone": {"no_log": False, "type": "str"}, "weakpassword": {"no_log": False, "type": "bool"}, }, + "singleton": True, "update_payload_keys": ["ifnum", "ipaddress", "netmask", "nsvlan", "tagged"], }, "nsconsoleloginprompt": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["promptstring"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -32043,10 +33865,33 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"promptstring": {"no_log": False, "type": "str"}}, + "singleton": True, "update_payload_keys": ["promptstring"], }, "nscqaparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "harqretxdelay", + "lr1coeflist", + "lr1probthresh", + "minrttnet1", + "minrttnet2", + "minrttnet3", + "net1cclscale", + "net1csqscale", + "net1label", + "net1logcoef", + "net2cclscale", + "net2csqscale", + "net2label", + "net2logcoef", + "net3cclscale", + "net3csqscale", + "net3label", + "net3logcoef", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -32079,6 +33924,7 @@ "net3label": {"no_log": False, "type": "str"}, "net3logcoef": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "harqretxdelay", "lr1coeflist", @@ -32104,6 +33950,7 @@ }, "nsdhcpparams": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["dhcpclient", "saveroute"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -32115,23 +33962,15 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "dhcpclient": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, - "saveroute": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "dhcpclient": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "saveroute": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": ["dhcpclient", "saveroute"], }, "nsdiameter": { "_supported_operations": ["count", "get", "get-byname", "unset", "update"], + "action_payload_keys": {"unset": ["ownernode", "serverclosepropagation"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -32144,15 +33983,15 @@ "primary_key": "ownernode", "readwrite_arguments": { "identity": {"no_log": False, "type": "str"}, - "ownernode": {"default": -1, "no_log": False, "type": "float"}, + "ownernode": {"no_log": False, "type": "float"}, "realm": {"no_log": False, "type": "str"}, "serverclosepropagation": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "identity", "ownernode", @@ -32170,6 +34009,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "iv", "name", "padding"]}, "add_payload_keys": ["comment", "iv", "keyvalue", "method", "name", "padding"], "bindings": [], "bindprimary_key": "", @@ -32220,6 +34060,7 @@ "name": {"no_log": False, "type": "str"}, "padding": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "comment", "iv", @@ -32231,6 +34072,7 @@ }, "nsencryptionparams": { "_supported_operations": ["get", "update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -32277,6 +34119,7 @@ "type": "str", }, }, + "singleton": True, "update_payload_keys": ["keyvalue", "method"], }, "nsextension": { @@ -32291,6 +34134,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "name", "trace", "tracefunctions", "tracevariables"] + }, "add_payload_keys": ["comment", "name"], "bindings": [], "bindprimary_key": "", @@ -32309,13 +34155,13 @@ "src": {"no_log": False, "type": "str"}, "trace": { "choices": ["all", "calls", "lines", "off"], - "default": "off", "no_log": False, "type": "str", }, "tracefunctions": {"no_log": False, "type": "str"}, "tracevariables": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "comment", "name", @@ -32326,6 +34172,7 @@ }, "nsfeature": { "_supported_operations": ["disable", "enable", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -32416,6 +34263,7 @@ "type": "list", } }, + "singleton": True, "update_payload_keys": [], }, "nshmackey": { @@ -32428,6 +34276,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name"]}, "add_payload_keys": ["comment", "digest", "keyvalue", "name"], "bindings": [], "bindprimary_key": "", @@ -32457,10 +34306,12 @@ "keyvalue": {"no_log": True, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["comment", "digest", "keyvalue", "name"], }, "nshostname": { "_supported_operations": ["count", "get", "update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -32473,12 +34324,27 @@ "primary_key": "", "readwrite_arguments": { "hostname": {"no_log": False, "type": "str"}, - "ownernode": {"default": 255, "no_log": False, "type": "float"}, + "ownernode": {"no_log": False, "type": "float"}, }, - "update_payload_keys": [], + "singleton": False, + "update_payload_keys": ["hostname", "ownernode"], }, "nshttpparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "conmultiplex", + "dropinvalreqs", + "http2serverside", + "ignoreconnectcodingscheme", + "insnssrvrhdr", + "logerrresp", + "markconnreqinval", + "markhttp09inval", + "maxreusepool", + "nssrvrhdr", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -32492,55 +34358,36 @@ "readwrite_arguments": { "conmultiplex": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", - "no_log": False, - "type": "str", - }, - "dropinvalreqs": { - "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, + "dropinvalreqs": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "http2serverside": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "ignoreconnectcodingscheme": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "insnssrvrhdr": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, - "logerrresp": { - "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, + "insnssrvrhdr": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "logerrresp": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "markconnreqinval": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "markhttp09inval": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "maxreusepool": {"no_log": False, "type": "float"}, "nssrvrhdr": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "conmultiplex", "dropinvalreqs", @@ -32564,6 +34411,64 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "adpttimeout", + "allowonlywordcharactersandhyphen", + "altsvc", + "altsvcvalue", + "apdexcltresptimethreshold", + "clientiphdrexpr", + "cmponpush", + "conmultiplex", + "dropextracrlf", + "dropextradata", + "dropinvalreqs", + "grpcholdlimit", + "grpcholdtimeout", + "grpclengthdelimitation", + "http2", + "http2altsvcframe", + "http2direct", + "http2headertablesize", + "http2initialconnwindowsize", + "http2initialwindowsize", + "http2maxconcurrentstreams", + "http2maxemptyframespermin", + "http2maxframesize", + "http2maxheaderlistsize", + "http2maxpingframespermin", + "http2maxresetframespermin", + "http2maxsettingsframespermin", + "http2minseverconn", + "http2strictcipher", + "http3", + "http3maxheaderblockedstreams", + "http3maxheaderfieldsectionsize", + "http3maxheadertablesize", + "httppipelinebuffsize", + "incomphdrdelay", + "markconnreqinval", + "markhttp09inval", + "markhttpheaderextrawserror", + "markrfc7230noncompliantinval", + "marktracereqinval", + "maxheaderfieldlen", + "maxheaderlen", + "maxreq", + "maxreusepool", + "minreusepool", + "name", + "passprotocolupgrade", + "persistentetag", + "reqtimeout", + "reqtimeoutaction", + "reusepooltimeout", + "rtsptunnel", + "weblog", + "websocket", + ] + }, "add_payload_keys": [ "adpttimeout", "allowonlywordcharactersandhyphen", @@ -32632,206 +34537,133 @@ "readwrite_arguments": { "adpttimeout": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "allowonlywordcharactersandhyphen": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "altsvc": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "altsvcvalue": {"no_log": False, "type": "str"}, - "apdexcltresptimethreshold": { - "default": 500, - "no_log": False, - "type": "float", - }, + "apdexcltresptimethreshold": {"no_log": False, "type": "float"}, "clientiphdrexpr": {"no_log": False, "type": "str"}, "cmponpush": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "conmultiplex": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "dropextracrlf": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "dropextradata": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dropinvalreqs": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "grpcholdlimit": {"default": 131072, "no_log": False, "type": "float"}, - "grpcholdtimeout": {"default": 1000, "no_log": False, "type": "float"}, + "grpcholdlimit": {"no_log": False, "type": "float"}, + "grpcholdtimeout": {"no_log": False, "type": "float"}, "grpclengthdelimitation": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "http2": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "http2altsvcframe": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "http2direct": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "http2headertablesize": {"default": 4096, "no_log": False, "type": "float"}, - "http2initialconnwindowsize": { - "default": 65535, - "no_log": False, - "type": "float", - }, - "http2initialwindowsize": { - "default": 65535, - "no_log": False, - "type": "float", - }, - "http2maxconcurrentstreams": { - "default": 100, - "no_log": False, - "type": "float", - }, - "http2maxemptyframespermin": { - "default": 60, - "no_log": False, - "type": "float", - }, - "http2maxframesize": {"default": 16384, "no_log": False, "type": "float"}, - "http2maxheaderlistsize": { - "default": 24576, - "no_log": False, - "type": "float", - }, - "http2maxpingframespermin": { - "default": 60, - "no_log": False, - "type": "float", - }, - "http2maxresetframespermin": { - "default": 90, - "no_log": False, - "type": "float", - }, - "http2maxsettingsframespermin": { - "default": 15, - "no_log": False, - "type": "float", - }, - "http2minseverconn": {"default": 20, "no_log": False, "type": "float"}, + "http2headertablesize": {"no_log": False, "type": "float"}, + "http2initialconnwindowsize": {"no_log": False, "type": "float"}, + "http2initialwindowsize": {"no_log": False, "type": "float"}, + "http2maxconcurrentstreams": {"no_log": False, "type": "float"}, + "http2maxemptyframespermin": {"no_log": False, "type": "float"}, + "http2maxframesize": {"no_log": False, "type": "float"}, + "http2maxheaderlistsize": {"no_log": False, "type": "float"}, + "http2maxpingframespermin": {"no_log": False, "type": "float"}, + "http2maxresetframespermin": {"no_log": False, "type": "float"}, + "http2maxsettingsframespermin": {"no_log": False, "type": "float"}, + "http2minseverconn": {"no_log": False, "type": "float"}, "http2strictcipher": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "http3": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "http3maxheaderblockedstreams": { - "default": 100, - "no_log": False, - "type": "float", - }, - "http3maxheaderfieldsectionsize": { - "default": 24576, - "no_log": False, - "type": "float", - }, - "http3maxheadertablesize": { - "default": 4096, - "no_log": False, - "type": "float", - }, - "httppipelinebuffsize": { - "default": 131072, - "no_log": False, - "type": "float", - }, - "incomphdrdelay": {"default": 7000, "no_log": False, "type": "float"}, + "http3maxheaderblockedstreams": {"no_log": False, "type": "float"}, + "http3maxheaderfieldsectionsize": {"no_log": False, "type": "float"}, + "http3maxheadertablesize": {"no_log": False, "type": "float"}, + "httppipelinebuffsize": {"no_log": False, "type": "float"}, + "incomphdrdelay": {"no_log": False, "type": "float"}, "markconnreqinval": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "markhttp09inval": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "markhttpheaderextrawserror": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "markrfc7230noncompliantinval": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "marktracereqinval": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "maxheaderfieldlen": {"default": 24820, "no_log": False, "type": "float"}, - "maxheaderlen": {"default": 24820, "no_log": False, "type": "float"}, + "maxheaderfieldlen": {"no_log": False, "type": "float"}, + "maxheaderlen": {"no_log": False, "type": "float"}, "maxreq": {"no_log": False, "type": "float"}, "maxreusepool": {"no_log": False, "type": "float"}, "minreusepool": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, "passprotocolupgrade": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "persistentetag": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -32840,23 +34672,21 @@ "reusepooltimeout": {"no_log": False, "type": "float"}, "rtsptunnel": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "weblog": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "websocket": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "adpttimeout", "allowonlywordcharactersandhyphen", @@ -32924,6 +34754,23 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "allow204", + "connectionkeepalive", + "hostheader", + "inserthttprequest", + "inserticapheaders", + "logaction", + "name", + "preview", + "previewlength", + "queryparams", + "reqtimeout", + "reqtimeoutaction", + "useragent", + ] + }, "add_payload_keys": [ "allow204", "connectionkeepalive", @@ -32953,13 +34800,11 @@ "readwrite_arguments": { "allow204": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "connectionkeepalive": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -32971,22 +34816,21 @@ "name": {"no_log": False, "type": "str"}, "preview": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "previewlength": {"default": 4096, "no_log": False, "type": "float"}, + "previewlength": {"no_log": False, "type": "float"}, "queryparams": {"no_log": False, "type": "str"}, "reqtimeout": {"no_log": False, "type": "float"}, "reqtimeoutaction": { "choices": ["BYPASS", "DROP", "RESET"], - "default": "RESET", "no_log": False, "type": "str", }, "uri": {"no_log": False, "type": "str"}, "useragent": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "allow204", "connectionkeepalive", @@ -33016,6 +34860,40 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "advertiseondefaultpartition", + "arp", + "arpowner", + "arpresponse", + "decrementttl", + "dynamicrouting", + "ftp", + "gui", + "hostroute", + "hostrtgw", + "icmp", + "icmpresponse", + "ipaddress", + "metric", + "mgmtaccess", + "mptcpadvertise", + "netmask", + "networkroute", + "ospfarea", + "ospflsatype", + "ownerdownresponse", + "restrictaccess", + "snmp", + "ssh", + "tag", + "td", + "telnet", + "vrid", + "vserver", + "vserverrhilevel", + ] + }, "add_payload_keys": [ "advertiseondefaultpartition", "arp", @@ -33062,49 +34940,30 @@ "readwrite_arguments": { "advertiseondefaultpartition": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "arp": { - "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "arpowner": {"default": 255, "no_log": False, "type": "float"}, + "arp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "arpowner": {"no_log": False, "type": "float"}, "arpresponse": { "choices": ["ALL_VSERVERS", "NONE", "ONE_VSERVER"], "no_log": False, "type": "str", }, - "bgp": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, + "bgp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "decrementttl": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dynamicrouting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "ftp": { - "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, + "ftp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "gui": { "choices": ["DISABLED", "ENABLED", "SECUREONLY"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -33116,7 +34975,6 @@ "hostrtgw": {"no_log": False, "type": "str"}, "icmp": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -33129,13 +34987,11 @@ "metric": {"no_log": False, "type": "int"}, "mgmtaccess": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "mptcpadvertise": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, @@ -33147,76 +35003,58 @@ }, "ospf": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "ospfarea": {"default": -1, "no_log": False, "type": "float"}, + "ospfarea": {"no_log": False, "type": "float"}, "ospflsatype": { "choices": ["TYPE1", "TYPE5"], - "default": "TYPE5", "no_log": False, "type": "str", }, "ownerdownresponse": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, - "ownernode": {"default": 255, "no_log": False, "type": "float"}, + "ownernode": {"no_log": False, "type": "float"}, "restrictaccess": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "rip": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, + "rip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "snmp": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", - "no_log": False, - "type": "str", - }, - "ssh": { - "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, + "ssh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "tag": {"no_log": False, "type": "float"}, "td": {"no_log": False, "type": "float"}, "telnet": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "type": { "choices": ["CLIP", "GSLBsiteIP", "HostIP", "NSIP", "SNIP", "VIP"], - "default": "SNIP", "no_log": False, "type": "str", }, "vrid": {"no_log": False, "type": "float"}, "vserver": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "vserverrhilevel": { "choices": ["ALL_VSERVERS", "NONE", "ONE_VSERVER", "VSVR_CNTRLD"], - "default": "ONE_VSERVER", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "advertiseondefaultpartition", "arp", @@ -33252,6 +35090,38 @@ }, "nsip6": { "_supported_operations": ["add", "count", "delete", "get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "advertiseondefaultpartition", + "decrementhoplimit", + "dynamicrouting", + "ftp", + "gui", + "hostroute", + "icmp", + "ip6hostrtgw", + "ipv6address", + "map", + "metric", + "mgmtaccess", + "mptcpadvertise", + "nd", + "ndowner", + "networkroute", + "ospf6lsatype", + "ospfarea", + "ownerdownresponse", + "restrictaccess", + "snmp", + "ssh", + "tag", + "td", + "telnet", + "vrid6", + "vserver", + "vserverrhilevel", + ] + }, "add_payload_keys": [ "advertiseondefaultpartition", "decrementhoplimit", @@ -33298,31 +35168,22 @@ "readwrite_arguments": { "advertiseondefaultpartition": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "decrementhoplimit": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dynamicrouting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "ftp": { - "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, + "ftp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "gui": { "choices": ["DISABLED", "ENABLED", "SECUREONLY"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -33333,7 +35194,6 @@ }, "icmp": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -33343,23 +35203,16 @@ "metric": {"no_log": False, "type": "int"}, "mgmtaccess": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "mptcpadvertise": { "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, - "nd": { - "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "ndowner": {"default": 255, "no_log": False, "type": "float"}, + "nd": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "ndowner": {"no_log": False, "type": "float"}, "networkroute": { "choices": ["DISABLED", "ENABLED"], "no_log": False, @@ -33367,47 +35220,36 @@ }, "ospf6lsatype": { "choices": ["EXTERNAL", "INTRA_AREA"], - "default": "EXTERNAL", "no_log": False, "type": "str", }, - "ospfarea": {"default": -1, "no_log": False, "type": "float"}, + "ospfarea": {"no_log": False, "type": "float"}, "ownerdownresponse": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, - "ownernode": {"default": 255, "no_log": False, "type": "float"}, + "ownernode": {"no_log": False, "type": "float"}, "restrictaccess": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "scope": { "choices": ["global", "link-local"], - "default": "global", "no_log": False, "type": "str", }, "snmp": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", - "no_log": False, - "type": "str", - }, - "ssh": { - "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, + "ssh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "tag": {"no_log": False, "type": "float"}, "td": {"no_log": False, "type": "float"}, "telnet": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -33421,7 +35263,6 @@ "SNIP", "VIP", ], - "default": "SNIP", "no_log": False, "type": "str", }, @@ -33429,17 +35270,16 @@ "vrid6": {"no_log": False, "type": "float"}, "vserver": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "vserverrhilevel": { "choices": ["ALL_VSERVERS", "NONE", "ONE_VSERVER", "VSVR_CNTRLD"], - "default": "ONE_VSERVER", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "advertiseondefaultpartition", "decrementhoplimit", @@ -33473,6 +35313,15 @@ }, "nslicenseparameters": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "alert1gracetimeout", + "alert2gracetimeout", + "heartbeatinterval", + "inventoryrefreshinterval", + "licenseexpiryalerttime", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -33484,16 +35333,13 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "alert1gracetimeout": {"default": 6, "no_log": False, "type": "float"}, - "alert2gracetimeout": {"default": 240, "no_log": False, "type": "float"}, - "heartbeatinterval": {"default": 280, "no_log": False, "type": "float"}, - "inventoryrefreshinterval": { - "default": 360, - "no_log": False, - "type": "float", - }, - "licenseexpiryalerttime": {"default": 30, "no_log": False, "type": "float"}, + "alert1gracetimeout": {"no_log": False, "type": "float"}, + "alert2gracetimeout": {"no_log": False, "type": "float"}, + "heartbeatinterval": {"no_log": False, "type": "float"}, + "inventoryrefreshinterval": {"no_log": False, "type": "float"}, + "licenseexpiryalerttime": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "alert1gracetimeout", "alert2gracetimeout", @@ -33504,6 +35350,7 @@ }, "nslicenseproxyserver": { "_supported_operations": ["add", "count", "delete", "get", "update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["port", "serverip", "servername"], "bindings": [], "bindprimary_key": "", @@ -33519,10 +35366,12 @@ "serverip": {"no_log": False, "type": "str"}, "servername": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["port", "serverip", "servername"], }, "nslicenseserver": { "_supported_operations": ["add", "count", "delete", "get", "update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "forceupdateip", "licensemode", @@ -33557,6 +35406,7 @@ "port": {"no_log": False, "type": "float"}, "servername": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["licensemode", "licenseserverip", "port", "servername"], }, "nslimitidentifier": { @@ -33569,6 +35419,18 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "limitidentifier", + "limittype", + "maxbandwidth", + "mode", + "selectorname", + "threshold", + "timeslice", + "trapsintimeslice", + ] + }, "add_payload_keys": [ "limitidentifier", "limittype", @@ -33592,22 +35454,21 @@ "limitidentifier": {"no_log": False, "type": "str"}, "limittype": { "choices": ["BURSTY", "SMOOTH"], - "default": "BURSTY", "no_log": False, "type": "str", }, "maxbandwidth": {"no_log": False, "type": "float"}, "mode": { "choices": ["CONNECTION", "NONE", "REQUEST_RATE"], - "default": "REQUEST_RATE", "no_log": False, "type": "str", }, "selectorname": {"no_log": False, "type": "str"}, - "threshold": {"default": 1, "no_log": False, "type": "float"}, - "timeslice": {"default": 1000, "no_log": False, "type": "float"}, + "threshold": {"no_log": False, "type": "float"}, + "timeslice": {"no_log": False, "type": "float"}, "trapsintimeslice": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "limitidentifier", "limittype", @@ -33629,6 +35490,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["rule", "selectorname"]}, "add_payload_keys": ["rule", "selectorname"], "bindings": [], "bindprimary_key": "", @@ -33643,10 +35505,12 @@ "rule": {"elements": "str", "no_log": False, "type": "list"}, "selectorname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["rule", "selectorname"], }, "nslimitsessions": { "_supported_operations": ["clear", "count", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -33661,10 +35525,12 @@ "detail": {"no_log": False, "type": "bool"}, "limitidentifier": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "nsmigration": { "_supported_operations": ["count", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -33676,17 +35542,14 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "dumpsession": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - } + "dumpsession": {"choices": ["NO", "YES"], "no_log": False, "type": "str"} }, + "singleton": False, "update_payload_keys": [], }, "nsmode": { "_supported_operations": ["disable", "enable", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -33732,10 +35595,43 @@ "type": "list", } }, + "singleton": True, "update_payload_keys": [], }, "nsparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "advancedanalyticsstats", + "aftpallowrandomsourceport", + "cip", + "cipheader", + "cookieversion", + "crportrange", + "exclusivequotamaxclient", + "exclusivequotaspillover", + "ftpportrange", + "grantquotamaxclient", + "grantquotaspillover", + "httpport", + "icaports", + "internaluserlogin", + "ipttl", + "maxconn", + "maxreq", + "mgmthttpport", + "mgmthttpsport", + "pmtumin", + "pmtutimeout", + "proxyprotocol", + "securecookie", + "secureicaports", + "servicepathingressvlan", + "tcpcip", + "timezone", + "useproxyport", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -33749,13 +35645,11 @@ "readwrite_arguments": { "advancedanalyticsstats": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "aftpallowrandomsourceport": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -33763,43 +35657,32 @@ "cipheader": {"no_log": False, "type": "str"}, "cookieversion": {"choices": ["0", "1"], "no_log": False, "type": "str"}, "crportrange": {"no_log": False, "type": "str"}, - "exclusivequotamaxclient": { - "default": 80, - "no_log": False, - "type": "float", - }, - "exclusivequotaspillover": { - "default": 80, - "no_log": False, - "type": "float", - }, + "exclusivequotamaxclient": {"no_log": False, "type": "float"}, + "exclusivequotaspillover": {"no_log": False, "type": "float"}, "ftpportrange": {"no_log": False, "type": "str"}, - "grantquotamaxclient": {"default": 10, "no_log": False, "type": "float"}, - "grantquotaspillover": {"default": 10, "no_log": False, "type": "float"}, + "grantquotamaxclient": {"no_log": False, "type": "float"}, + "grantquotaspillover": {"no_log": False, "type": "float"}, "httpport": {"elements": "int", "no_log": False, "type": "list"}, "icaports": {"elements": "int", "no_log": False, "type": "list"}, "internaluserlogin": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "ipttl": {"default": 255, "no_log": False, "type": "float"}, + "ipttl": {"no_log": False, "type": "float"}, "maxconn": {"no_log": False, "type": "float"}, "maxreq": {"no_log": False, "type": "float"}, - "mgmthttpport": {"default": 80, "no_log": False, "type": "int"}, - "mgmthttpsport": {"default": 443, "no_log": False, "type": "int"}, - "pmtumin": {"default": 576, "no_log": False, "type": "float"}, - "pmtutimeout": {"default": 10, "no_log": False, "type": "float"}, + "mgmthttpport": {"no_log": False, "type": "int"}, + "mgmthttpsport": {"no_log": False, "type": "int"}, + "pmtumin": {"no_log": False, "type": "float"}, + "pmtutimeout": {"no_log": False, "type": "float"}, "proxyprotocol": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "securecookie": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -33807,22 +35690,17 @@ "servicepathingressvlan": {"no_log": False, "type": "float"}, "tcpcip": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "timezone": { - "default": "CoordinatedUniversalTime", "no_log": False, "type": "str", }, + "timezone": {"no_log": False, "type": "str"}, "useproxyport": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "advancedanalyticsstats", "aftpallowrandomsourceport", @@ -33865,6 +35743,16 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "maxbandwidth", + "maxconn", + "maxmemlimit", + "minbandwidth", + "partitionmac", + "partitionname", + ] + }, "add_payload_keys": [ "maxbandwidth", "maxconn", @@ -33888,10 +35776,10 @@ "primary_key": "partitionname", "readwrite_arguments": { "force": {"no_log": False, "type": "bool"}, - "maxbandwidth": {"default": 10240, "no_log": False, "type": "float"}, - "maxconn": {"default": 1024, "no_log": False, "type": "float"}, - "maxmemlimit": {"default": 10, "no_log": False, "type": "float"}, - "minbandwidth": {"default": 10240, "no_log": False, "type": "float"}, + "maxbandwidth": {"no_log": False, "type": "float"}, + "maxconn": {"no_log": False, "type": "float"}, + "maxmemlimit": {"no_log": False, "type": "float"}, + "minbandwidth": {"no_log": False, "type": "float"}, "nspartition_bridgegroup_binding": { "no_log": False, "options": { @@ -33944,6 +35832,7 @@ "partitionname": {"no_log": False, "type": "str"}, "save": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [ "maxbandwidth", "maxconn", @@ -33955,6 +35844,7 @@ }, "nspartition_bridgegroup_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["bridgegroup", "partitionname"], "bindprimary_key": "bridgegroup", "delete_arg_keys": ["bridgegroup"], @@ -33968,10 +35858,12 @@ "bridgegroup": {"no_log": False, "type": "float"}, "partitionname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "nspartition_vlan_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["partitionname", "vlan"], "bindprimary_key": "vlan", "delete_arg_keys": ["vlan"], @@ -33985,10 +35877,12 @@ "partitionname": {"no_log": False, "type": "str"}, "vlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "nspartition_vxlan_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["partitionname", "vxlan"], "bindprimary_key": "vxlan", "delete_arg_keys": ["vxlan"], @@ -34002,10 +35896,19 @@ "partitionname": {"no_log": False, "type": "str"}, "vxlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "nsratecontrol": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "icmpthreshold", + "tcprstthreshold", + "tcpthreshold", + "udpthreshold", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -34017,11 +35920,12 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "icmpthreshold": {"default": 100, "no_log": False, "type": "float"}, - "tcprstthreshold": {"default": 100, "no_log": False, "type": "float"}, + "icmpthreshold": {"no_log": False, "type": "float"}, + "tcprstthreshold": {"no_log": False, "type": "float"}, "tcpthreshold": {"no_log": False, "type": "float"}, "udpthreshold": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "icmpthreshold", "tcprstthreshold", @@ -34031,6 +35935,9 @@ }, "nsrpcnode": { "_supported_operations": ["count", "get", "get-byname", "unset", "update"], + "action_payload_keys": { + "unset": ["ipaddress", "password", "secure", "srcip", "validatecert"] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -34044,20 +35951,11 @@ "readwrite_arguments": { "ipaddress": {"no_log": False, "type": "str"}, "password": {"no_log": True, "type": "str"}, - "secure": { - "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, + "secure": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "srcip": {"no_log": False, "type": "str"}, - "validatecert": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "validatecert": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "ipaddress", "password", @@ -34075,6 +35973,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ingressvlan", "servicefunctionname"], "bindings": [], "bindprimary_key": "", @@ -34089,10 +35988,12 @@ "ingressvlan": {"no_log": False, "type": "float"}, "servicefunctionname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["ingressvlan", "servicefunctionname"], }, "nsservicepath": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["servicepathname"], "bindings": ["nsservicepath_nsservicefunction_binding"], "bindprimary_key": "", @@ -34122,10 +36023,12 @@ }, "servicepathname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "nsservicepath_nsservicefunction_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["index", "servicefunction", "servicepathname"], "bindprimary_key": "servicefunction", "delete_arg_keys": ["servicefunction"], @@ -34140,6 +36043,7 @@ "servicefunction": {"no_log": False, "type": "str"}, "servicepathname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "nssimpleacl": { @@ -34152,6 +36056,7 @@ "get", "get-byname", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "aclaction", "aclname", @@ -34188,6 +36093,7 @@ "td": {"no_log": False, "type": "float"}, "ttl": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "nssimpleacl6": { @@ -34200,6 +36106,7 @@ "get", "get-byname", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "aclaction", "aclname", @@ -34236,10 +36143,12 @@ "td": {"no_log": False, "type": "float"}, "ttl": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "nsspparams": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["basethreshold", "throttle"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -34251,18 +36160,19 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "basethreshold": {"default": 200, "no_log": False, "type": "int"}, + "basethreshold": {"no_log": False, "type": "int"}, "throttle": { "choices": ["Aggressive", "Normal", "Relaxed"], - "default": "Normal", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": ["basethreshold", "throttle"], }, "nsstats": { "_supported_operations": ["clear"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -34280,10 +36190,12 @@ "type": "str", } }, + "singleton": True, "update_payload_keys": [], }, "nssurgeq": { "_supported_operations": ["flush"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -34299,10 +36211,12 @@ "port": {"no_log": False, "type": "int"}, "servername": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "nstcpbufparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["memlimit", "size"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -34314,13 +36228,65 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "memlimit": {"default": 64, "no_log": False, "type": "float"}, - "size": {"default": 64, "no_log": False, "type": "float"}, + "memlimit": {"no_log": False, "type": "float"}, + "size": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": ["memlimit", "size"], }, "nstcpparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "ackonpush", + "autosyncookietimeout", + "compacttcpoptionnoop", + "connflushifnomem", + "connflushthres", + "delayedack", + "delinkclientserveronrst", + "downstaterst", + "initialcwnd", + "learnvsvrmss", + "limitedpersist", + "maxburst", + "maxdynserverprobes", + "maxpktpermss", + "maxsynackretx", + "maxsynhold", + "maxsynholdperprobe", + "maxtimewaitconn", + "minrto", + "mptcpchecksum", + "mptcpclosemptcpsessiononlastsfclose", + "mptcpconcloseonpassivesf", + "mptcpfastcloseoption", + "mptcpimmediatesfcloseonfin", + "mptcpmaxpendingsf", + "mptcpmaxsf", + "mptcppendingjointhreshold", + "mptcpreliableaddaddr", + "mptcprtostoswitchsf", + "mptcpsendsfresetoption", + "mptcpsfreplacetimeout", + "mptcpsftimeout", + "mptcpusebackupondss", + "msslearndelay", + "msslearninterval", + "nagle", + "oooqsize", + "pktperretx", + "sack", + "slowstartincr", + "synattackdetection", + "synholdfastgiveup", + "tcpfastopencookietimeout", + "tcpfintimeout", + "tcpmaxretries", + "ws", + "wsval", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -34334,14 +36300,12 @@ "readwrite_arguments": { "ackonpush": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "autosyncookietimeout": {"default": 30, "no_log": False, "type": "float"}, + "autosyncookietimeout": {"no_log": False, "type": "float"}, "compacttcpoptionnoop": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -34351,136 +36315,116 @@ "type": "str", }, "connflushthres": {"no_log": False, "type": "float"}, - "delayedack": {"default": 100, "no_log": False, "type": "float"}, + "delayedack": {"no_log": False, "type": "float"}, "delinkclientserveronrst": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "downstaterst": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "initialcwnd": {"default": 10, "no_log": False, "type": "float"}, + "initialcwnd": {"no_log": False, "type": "float"}, "kaprobeupdatelastactivity": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "learnvsvrmss": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "limitedpersist": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "maxburst": {"default": 6, "no_log": False, "type": "float"}, - "maxdynserverprobes": {"default": 7, "no_log": False, "type": "float"}, + "maxburst": {"no_log": False, "type": "float"}, + "maxdynserverprobes": {"no_log": False, "type": "float"}, "maxpktpermss": {"no_log": False, "type": "float"}, - "maxsynackretx": {"default": 100, "no_log": False, "type": "float"}, - "maxsynhold": {"default": 16384, "no_log": False, "type": "float"}, - "maxsynholdperprobe": {"default": 128, "no_log": False, "type": "float"}, - "maxtimewaitconn": {"default": 7000, "no_log": False, "type": "float"}, - "minrto": {"default": 1000, "no_log": False, "type": "int"}, + "maxsynackretx": {"no_log": False, "type": "float"}, + "maxsynhold": {"no_log": False, "type": "float"}, + "maxsynholdperprobe": {"no_log": False, "type": "float"}, + "maxtimewaitconn": {"no_log": False, "type": "float"}, + "minrto": {"no_log": False, "type": "int"}, "mptcpchecksum": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "mptcpclosemptcpsessiononlastsfclose": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "mptcpconcloseonpassivesf": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "mptcpfastcloseoption": { "choices": ["ACK", "RESET"], - "default": "ACK", "no_log": False, "type": "str", }, "mptcpimmediatesfcloseonfin": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "mptcpmaxpendingsf": {"default": 4, "no_log": False, "type": "float"}, - "mptcpmaxsf": {"default": 4, "no_log": False, "type": "float"}, + "mptcpmaxpendingsf": {"no_log": False, "type": "float"}, + "mptcpmaxsf": {"no_log": False, "type": "float"}, "mptcppendingjointhreshold": {"no_log": False, "type": "float"}, "mptcpreliableaddaddr": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "mptcprtostoswitchsf": {"default": 2, "no_log": False, "type": "float"}, + "mptcprtostoswitchsf": {"no_log": False, "type": "float"}, "mptcpsendsfresetoption": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "mptcpsfreplacetimeout": {"default": 10, "no_log": False, "type": "float"}, + "mptcpsfreplacetimeout": {"no_log": False, "type": "float"}, "mptcpsftimeout": {"no_log": False, "type": "float"}, "mptcpusebackupondss": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "msslearndelay": {"default": 3600, "no_log": False, "type": "float"}, - "msslearninterval": {"default": 180, "no_log": False, "type": "float"}, + "msslearndelay": {"no_log": False, "type": "float"}, + "msslearninterval": {"no_log": False, "type": "float"}, "nagle": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "oooqsize": {"default": 300, "no_log": False, "type": "float"}, - "pktperretx": {"default": 1, "no_log": False, "type": "int"}, - "recvbuffsize": {"default": 8190, "no_log": False, "type": "float"}, + "oooqsize": {"no_log": False, "type": "float"}, + "pktperretx": {"no_log": False, "type": "int"}, + "recvbuffsize": {"no_log": False, "type": "float"}, "sack": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "slowstartincr": {"default": 2, "no_log": False, "type": "int"}, + "slowstartincr": {"no_log": False, "type": "int"}, "synattackdetection": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "synholdfastgiveup": {"default": 1024, "no_log": False, "type": "float"}, + "synholdfastgiveup": {"no_log": False, "type": "float"}, "tcpfastopencookietimeout": {"no_log": False, "type": "float"}, - "tcpfintimeout": {"default": 40, "no_log": False, "type": "float"}, - "tcpmaxretries": {"default": 7, "no_log": False, "type": "float"}, - "ws": { - "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", - "no_log": False, - "type": "str", - }, - "wsval": {"default": 8, "no_log": False, "type": "float"}, + "tcpfintimeout": {"no_log": False, "type": "float"}, + "tcpmaxretries": {"no_log": False, "type": "float"}, + "ws": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "wsval": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "ackonpush", "autosyncookietimeout", @@ -34541,6 +36485,68 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "ackaggregation", + "ackonpush", + "applyadaptivetcp", + "buffersize", + "burstratecontrol", + "clientiptcpoption", + "clientiptcpoptionnumber", + "delayedack", + "dropestconnontimeout", + "drophalfclosedconnontimeout", + "dsack", + "dupackthresh", + "dynamicreceivebuffering", + "ecn", + "establishclientconn", + "fack", + "flavor", + "frto", + "hystart", + "initialcwnd", + "ka", + "kaconnidletime", + "kamaxprobes", + "kaprobeinterval", + "kaprobeupdatelastactivity", + "maxburst", + "maxcwnd", + "maxpktpermss", + "minrto", + "mpcapablecbit", + "mptcp", + "mptcpdropdataonpreestsf", + "mptcpfastopen", + "mptcpsessiontimeout", + "mss", + "nagle", + "name", + "oooqsize", + "pktperretx", + "rateqmax", + "rstmaxack", + "rstwindowattenuate", + "sack", + "sendbuffsize", + "sendclientportintcpoption", + "slowstartincr", + "slowstartthreshold", + "spoofsyndrop", + "syncookie", + "taillossprobe", + "tcpfastopen", + "tcpfastopencookiesize", + "tcpmode", + "tcprate", + "tcpsegoffload", + "timestamp", + "ws", + "wsval", + ] + }, "add_payload_keys": [ "ackaggregation", "ackonpush", @@ -34613,139 +36619,110 @@ "readwrite_arguments": { "ackaggregation": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "ackonpush": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "applyadaptivetcp": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "buffersize": {"default": 8190, "no_log": False, "type": "float"}, + "buffersize": {"no_log": False, "type": "float"}, "burstratecontrol": { "choices": ["DISABLED", "DYNAMIC", "FIXED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "clientiptcpoption": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "clientiptcpoptionnumber": {"no_log": False, "type": "float"}, - "delayedack": {"default": 100, "no_log": False, "type": "float"}, + "delayedack": {"no_log": False, "type": "float"}, "dropestconnontimeout": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "drophalfclosedconnontimeout": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dsack": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "dupackthresh": {"default": 3, "no_log": False, "type": "float"}, + "dupackthresh": {"no_log": False, "type": "float"}, "dynamicreceivebuffering": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "ecn": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, + "ecn": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "establishclientconn": { "choices": ["AUTOMATIC", "CONN_ESTABLISHED", "ON_FIRST_DATA"], - "default": "AUTOMATIC", "no_log": False, "type": "str", }, "fack": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "flavor": { "choices": ["BIC", "CUBIC", "Default", "Nile", "Westwood"], - "default": "Default", "no_log": False, "type": "str", }, "frto": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "hystart": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "initialcwnd": {"default": 4, "no_log": False, "type": "float"}, - "ka": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, + "initialcwnd": {"no_log": False, "type": "float"}, + "ka": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "kaconnidletime": {"no_log": False, "type": "float"}, "kamaxprobes": {"no_log": False, "type": "float"}, "kaprobeinterval": {"no_log": False, "type": "float"}, "kaprobeupdatelastactivity": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "maxburst": {"default": 6, "no_log": False, "type": "float"}, - "maxcwnd": {"default": 524288, "no_log": False, "type": "float"}, + "maxburst": {"no_log": False, "type": "float"}, + "maxcwnd": {"no_log": False, "type": "float"}, "maxpktpermss": {"no_log": False, "type": "float"}, - "minrto": {"default": 1000, "no_log": False, "type": "float"}, + "minrto": {"no_log": False, "type": "float"}, "mpcapablecbit": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "mptcp": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "mptcpdropdataonpreestsf": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "mptcpfastopen": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -34753,93 +36730,77 @@ "mss": {"no_log": False, "type": "float"}, "nagle": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "name": {"no_log": False, "type": "str"}, - "oooqsize": {"default": 64, "no_log": False, "type": "float"}, - "pktperretx": {"default": 1, "no_log": False, "type": "float"}, + "oooqsize": {"no_log": False, "type": "float"}, + "pktperretx": {"no_log": False, "type": "float"}, "rateqmax": {"no_log": False, "type": "float"}, "rstmaxack": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "rstwindowattenuate": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sack": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "sendbuffsize": {"default": 8190, "no_log": False, "type": "float"}, + "sendbuffsize": {"no_log": False, "type": "float"}, "sendclientportintcpoption": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "slowstartincr": {"default": 2, "no_log": False, "type": "float"}, - "slowstartthreshold": {"default": 524288, "no_log": False, "type": "float"}, + "slowstartincr": {"no_log": False, "type": "float"}, + "slowstartthreshold": {"no_log": False, "type": "float"}, "spoofsyndrop": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "syncookie": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "taillossprobe": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "tcpfastopen": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "tcpfastopencookiesize": {"default": 8, "no_log": False, "type": "float"}, + "tcpfastopencookiesize": {"no_log": False, "type": "float"}, "tcpmode": { "choices": ["ENDPOINT", "TRANSPARENT"], - "default": "TRANSPARENT", "no_log": False, "type": "str", }, "tcprate": {"no_log": False, "type": "float"}, "tcpsegoffload": { "choices": ["AUTOMATIC", "DISABLED"], - "default": "AUTOMATIC", "no_log": False, "type": "str", }, "timestamp": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "ws": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "wsval": {"default": 4, "no_log": False, "type": "float"}, + "ws": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "wsval": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "ackaggregation", "ackonpush", @@ -34903,6 +36864,24 @@ }, "nstimeout": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "anyclient", + "anyserver", + "anytcpclient", + "anytcpserver", + "halfclose", + "httpclient", + "httpserver", + "newconnidletimeout", + "nontcpzombie", + "reducedfintimeout", + "reducedrsttimeout", + "tcpclient", + "tcpserver", + "zombie", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -34919,18 +36898,19 @@ "anytcpclient": {"no_log": False, "type": "float"}, "anytcpserver": {"no_log": False, "type": "float"}, "client": {"no_log": False, "type": "float"}, - "halfclose": {"default": 10, "no_log": False, "type": "float"}, + "halfclose": {"no_log": False, "type": "float"}, "httpclient": {"no_log": False, "type": "float"}, "httpserver": {"no_log": False, "type": "float"}, - "newconnidletimeout": {"default": 4, "no_log": False, "type": "float"}, - "nontcpzombie": {"default": 60, "no_log": False, "type": "float"}, - "reducedfintimeout": {"default": 30, "no_log": False, "type": "float"}, + "newconnidletimeout": {"no_log": False, "type": "float"}, + "nontcpzombie": {"no_log": False, "type": "float"}, + "reducedfintimeout": {"no_log": False, "type": "float"}, "reducedrsttimeout": {"no_log": False, "type": "float"}, "server": {"no_log": False, "type": "float"}, "tcpclient": {"no_log": False, "type": "float"}, "tcpserver": {"no_log": False, "type": "float"}, - "zombie": {"default": 120, "no_log": False, "type": "float"}, + "zombie": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "anyclient", "anyserver", @@ -34959,6 +36939,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "interval", "name", "unit"]}, "add_payload_keys": ["comment", "interval", "name", "unit"], "bindings": ["nstimer_autoscalepolicy_binding"], "bindprimary_key": "", @@ -34971,7 +36952,7 @@ "primary_key": "name", "readwrite_arguments": { "comment": {"no_log": False, "type": "str"}, - "interval": {"default": 5, "no_log": False, "type": "int"}, + "interval": {"no_log": False, "type": "int"}, "name": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, "nstimer_autoscalepolicy_binding": { @@ -34990,17 +36971,14 @@ }, "type": "dict", }, - "unit": { - "choices": ["MIN", "SEC"], - "default": "SEC", - "no_log": False, - "type": "str", - }, + "unit": {"choices": ["MIN", "SEC"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["comment", "interval", "name", "unit"], }, "nstimer_autoscalepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "name", @@ -35031,14 +37009,16 @@ "name": {"no_log": False, "type": "str"}, "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, - "samplesize": {"default": 3, "no_log": False, "type": "float"}, - "threshold": {"default": 3, "no_log": False, "type": "float"}, + "samplesize": {"no_log": False, "type": "float"}, + "threshold": {"no_log": False, "type": "float"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "nstrace": { "_supported_operations": ["get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -35052,35 +37032,30 @@ "readwrite_arguments": { "capdroppkt": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "capsslkeys": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "doruntimecleanup": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "fileid": {"no_log": False, "type": "str"}, "filename": {"no_log": False, "type": "str"}, - "filesize": {"default": 1024, "no_log": False, "type": "float"}, + "filesize": {"no_log": False, "type": "float"}, "filter": {"no_log": False, "type": "str"}, "inmemorytrace": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "link": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -35107,36 +37082,34 @@ "no_log": False, "type": "list", }, - "nf": {"default": 24, "no_log": False, "type": "float"}, + "nf": {"no_log": False, "type": "float"}, "nodeid": {"no_log": False, "type": "float"}, "nodes": {"elements": "int", "no_log": False, "type": "list"}, "pernic": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "size": {"default": 164, "no_log": False, "type": "float"}, + "size": {"no_log": False, "type": "float"}, "skiplocalssh": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "skiprpc": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "time": {"default": 3600, "no_log": False, "type": "float"}, - "tracebuffers": {"default": 5000, "no_log": False, "type": "float"}, + "time": {"no_log": False, "type": "float"}, + "tracebuffers": {"no_log": False, "type": "float"}, "traceformat": { "choices": ["NSCAP", "PCAP"], "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [], }, "nstrafficdomain": { @@ -35150,6 +37123,7 @@ "get", "get-byname", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["aliasname", "td", "vmac"], "bindings": [ "nstrafficdomain_bridgegroup_binding", @@ -35217,15 +37191,16 @@ "td": {"no_log": False, "type": "float"}, "vmac": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "nstrafficdomain_bridgegroup_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["bridgegroup", "td"], "bindprimary_key": "bridgegroup", "delete_arg_keys": ["bridgegroup"], @@ -35239,10 +37214,12 @@ "bridgegroup": {"no_log": False, "type": "float"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "nstrafficdomain_vlan_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["td", "vlan"], "bindprimary_key": "vlan", "delete_arg_keys": ["vlan"], @@ -35256,10 +37233,12 @@ "td": {"no_log": False, "type": "float"}, "vlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "nstrafficdomain_vxlan_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["td", "vxlan"], "bindprimary_key": "vxlan", "delete_arg_keys": ["vxlan"], @@ -35273,6 +37252,7 @@ "td": {"no_log": False, "type": "float"}, "vxlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "nsvariable": { @@ -35285,6 +37265,17 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "comment", + "expires", + "iffull", + "ifnovalue", + "ifvaluetoobig", + "init", + "name", + ] + }, "add_payload_keys": [ "comment", "expires", @@ -35308,21 +37299,10 @@ "readwrite_arguments": { "comment": {"no_log": False, "type": "str"}, "expires": {"no_log": False, "type": "float"}, - "iffull": { - "choices": ["lru", "undef"], - "default": "lru", - "no_log": False, - "type": "str", - }, - "ifnovalue": { - "choices": ["init", "undef"], - "default": "init", - "no_log": False, - "type": "str", - }, + "iffull": {"choices": ["lru", "undef"], "no_log": False, "type": "str"}, + "ifnovalue": {"choices": ["init", "undef"], "no_log": False, "type": "str"}, "ifvaluetoobig": { "choices": ["truncate", "undef"], - "default": "truncate", "no_log": False, "type": "str", }, @@ -35330,12 +37310,12 @@ "name": {"no_log": False, "type": "str"}, "scope": { "choices": ["global", "transaction"], - "default": "global", "no_log": False, "type": "str", }, "type": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "comment", "expires", @@ -35349,6 +37329,7 @@ }, "nsvpxparam": { "_supported_operations": ["count", "get", "unset", "update"], + "action_payload_keys": {"unset": ["cpuyield", "ownernode"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -35358,11 +37339,10 @@ "get_arg_keys": [], "immutable_keys": [], "password_keys": [], - "primary_key": "ownernode", + "primary_key": "", "readwrite_arguments": { "cpuyield": { "choices": ["DEFAULT", "NO", "YES"], - "default": "DEFAULT", "no_log": False, "type": "str", }, @@ -35371,12 +37351,16 @@ "no_log": False, "type": "str", }, - "ownernode": {"default": 255, "no_log": False, "type": "float"}, + "ownernode": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": ["cpuyield", "ownernode"], }, "nsweblogparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": ["buffersizemb", "customreqhdrs", "customrsphdrs"] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -35388,10 +37372,11 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "buffersizemb": {"default": 16, "no_log": False, "type": "float"}, + "buffersizemb": {"no_log": False, "type": "float"}, "customreqhdrs": {"elements": "str", "no_log": False, "type": "list"}, "customrsphdrs": {"elements": "str", "no_log": False, "type": "list"}, }, + "singleton": True, "update_payload_keys": ["buffersizemb", "customreqhdrs", "customrsphdrs"], }, "nsxmlnamespace": { @@ -35404,6 +37389,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["description", "namespace", "prefix"]}, "add_payload_keys": ["description", "namespace", "prefix"], "bindings": [], "bindprimary_key": "", @@ -35415,14 +37401,18 @@ "password_keys": [], "primary_key": "prefix", "readwrite_arguments": { - "Namespace": {"no_log": False, "type": "str"}, "description": {"no_log": False, "type": "str"}, + "namespace": {"no_log": False, "type": "str"}, "prefix": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["description", "namespace", "prefix"], }, "ntpparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": ["authentication", "autokeylogsec", "revokelogsec", "trustedkey"] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -35436,14 +37426,14 @@ "readwrite_arguments": { "authentication": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, - "autokeylogsec": {"default": 12, "no_log": False, "type": "float"}, - "revokelogsec": {"default": 16, "no_log": False, "type": "float"}, + "autokeylogsec": {"no_log": False, "type": "float"}, + "revokelogsec": {"no_log": False, "type": "float"}, "trustedkey": {"elements": "int", "no_log": False, "type": "list"}, }, + "singleton": True, "update_payload_keys": [ "authentication", "autokeylogsec", @@ -35453,6 +37443,17 @@ }, "ntpserver": { "_supported_operations": ["add", "count", "delete", "get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "autokey", + "key", + "maxpoll", + "minpoll", + "preferredntpserver", + "serverip", + "servername", + ] + }, "add_payload_keys": [ "autokey", "key", @@ -35477,13 +37478,13 @@ "minpoll": {"no_log": False, "type": "float"}, "preferredntpserver": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "serverip": {"no_log": False, "type": "str"}, "servername": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "autokey", "key", @@ -35504,6 +37505,17 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "autonomusprefix", + "decrementprefixlifetimes", + "depricateprefix", + "ipv6prefix", + "onlinkprefix", + "prefixpreferredlifetime", + "prefixvalidelifetime", + ] + }, "add_payload_keys": [ "autonomusprefix", "decrementprefixlifetimes", @@ -35525,40 +37537,25 @@ "readwrite_arguments": { "autonomusprefix": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "decrementprefixlifetimes": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "depricateprefix": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "ipv6prefix": {"no_log": False, "type": "str"}, - "onlinkprefix": { - "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, - "prefixpreferredlifetime": { - "default": 604800, - "no_log": False, - "type": "float", - }, - "prefixvalidelifetime": { - "default": 2592000, - "no_log": False, - "type": "float", - }, + "onlinkprefix": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "prefixpreferredlifetime": {"no_log": False, "type": "float"}, + "prefixvalidelifetime": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "autonomusprefix", "decrementprefixlifetimes", @@ -35579,6 +37576,17 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "announcemulticount", + "mapping", + "maxmaplife", + "minmaplife", + "name", + "peer", + "thirdparty", + ] + }, "add_payload_keys": [ "announcemulticount", "mapping", @@ -35598,10 +37606,9 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "announcemulticount": {"default": 10, "no_log": False, "type": "float"}, + "announcemulticount": {"no_log": False, "type": "float"}, "mapping": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -35610,17 +37617,16 @@ "name": {"no_log": False, "type": "str"}, "peer": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "thirdparty": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "announcemulticount", "mapping", @@ -35641,6 +37647,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "pcpprofile", "port"]}, "add_payload_keys": ["ipaddress", "name", "pcpprofile", "port"], "bindings": [], "bindprimary_key": "", @@ -35655,12 +37662,14 @@ "ipaddress": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "pcpprofile": {"no_log": False, "type": "str"}, - "port": {"default": 5351, "no_log": False, "type": "int"}, + "port": {"no_log": False, "type": "int"}, }, + "singleton": False, "update_payload_keys": ["name", "pcpprofile", "port"], }, "ping": { "_supported_operations": ["Ping"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -35684,10 +37693,12 @@ "s": {"no_log": False, "type": "float"}, "t": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [], }, "ping6": { "_supported_operations": ["Ping6"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -35714,10 +37725,12 @@ "s": {"no_log": False, "type": "float"}, "t": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [], }, "policydataset": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "name", "patsetfile", "type"], "bindings": ["policydataset_value_binding"], "bindprimary_key": "", @@ -35754,10 +37767,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "policydataset_value_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "endrange", "index", "name", "value"], "bindprimary_key": "value", "delete_arg_keys": ["endrange", "value"], @@ -35774,6 +37789,7 @@ "name": {"no_log": False, "type": "str"}, "value": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "policyexpression": { @@ -35786,6 +37802,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["clientsecuritymessage", "comment", "name"]}, "add_payload_keys": ["clientsecuritymessage", "comment", "name", "value"], "bindings": [], "bindprimary_key": "", @@ -35807,6 +37824,7 @@ }, "value": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["clientsecuritymessage", "comment", "name", "value"], }, "policyhttpcallout": { @@ -35819,6 +37837,24 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "bodyexpr", + "cacheforsecs", + "comment", + "fullreqexpr", + "headers", + "hostexpr", + "httpmethod", + "ipaddress", + "name", + "parameters", + "port", + "resultexpr", + "urlstemexpr", + "vserver", + ] + }, "add_payload_keys": [ "bodyexpr", "cacheforsecs", @@ -35868,6 +37904,7 @@ "urlstemexpr": {"no_log": False, "type": "str"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "bodyexpr", "cacheforsecs", @@ -35889,6 +37926,7 @@ }, "policymap": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["mappolicyname", "sd", "su", "td", "tu"], "bindings": [], "bindprimary_key": "", @@ -35906,10 +37944,12 @@ "td": {"no_log": False, "type": "str"}, "tu": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "policyparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["timeout"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -35920,13 +37960,13 @@ "immutable_keys": [], "password_keys": [], "primary_key": "", - "readwrite_arguments": { - "timeout": {"default": 3900, "no_log": False, "type": "float"} - }, + "readwrite_arguments": {"timeout": {"no_log": False, "type": "float"}}, + "singleton": True, "update_payload_keys": ["timeout"], }, "policypatset": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "name", "patsetfile"], "bindings": ["policypatset_pattern_binding"], "bindprimary_key": "", @@ -35958,10 +37998,12 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [], }, "policypatset_pattern_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["charset", "comment", "index", "name", "string"], "bindprimary_key": "string", "delete_arg_keys": ["string"], @@ -35972,7 +38014,6 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "String": {"no_log": False, "type": "str"}, "builtin": { "choices": ["DELETABLE", "IMMUTABLE", "MODIFIABLE", "PARTITION_ALL"], "elements": "str", @@ -36060,7 +38101,9 @@ }, "index": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, + "string": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "policypatsetfile": { @@ -36073,6 +38116,11 @@ "get", "get-byname", ], + "action_payload_keys": { + "import": ["charset", "delimiter", "name", "overwrite", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": ["comment", "name"], "bindings": [], "bindprimary_key": "", @@ -36092,6 +38140,7 @@ "overwrite": {"no_log": False, "type": "bool"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "policystringmap": { @@ -36104,6 +38153,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name"]}, "add_payload_keys": ["comment", "name"], "bindings": ["policystringmap_pattern_binding"], "bindprimary_key": "", @@ -36134,10 +38184,12 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": ["comment", "name"], }, "policystringmap_pattern_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "key", "name", "value"], "bindprimary_key": "key", "delete_arg_keys": ["key"], @@ -36153,6 +38205,7 @@ "name": {"no_log": False, "type": "str"}, "value": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "policyurlset": { @@ -36166,6 +38219,22 @@ "get", "get-byname", ], + "action_payload_keys": { + "import": [ + "canaryurl", + "delimiter", + "interval", + "matchedid", + "name", + "overwrite", + "privateset", + "rowseparator", + "subdomainexactmatch", + "url", + ], + "switch": [], + "unset": [], + }, "add_payload_keys": ["comment", "name"], "bindings": [], "bindprimary_key": "", @@ -36182,7 +38251,7 @@ "delimiter": {"no_log": False, "type": "str"}, "imported": {"no_log": False, "type": "bool"}, "interval": {"no_log": False, "type": "float"}, - "matchedid": {"default": 1, "no_log": False, "type": "float"}, + "matchedid": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, "overwrite": {"no_log": False, "type": "bool"}, "privateset": {"no_log": False, "type": "bool"}, @@ -36190,10 +38259,12 @@ "subdomainexactmatch": {"no_log": False, "type": "bool"}, "url": {"no_log": True, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "protocolhttpband": { "_supported_operations": ["clear", "get", "unset", "update"], + "action_payload_keys": {"unset": ["reqbandsize", "respbandsize"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -36206,18 +38277,20 @@ "primary_key": "", "readwrite_arguments": { "nodeid": {"no_log": False, "type": "float"}, - "reqbandsize": {"default": 100, "no_log": False, "type": "int"}, - "respbandsize": {"default": 1024, "no_log": False, "type": "int"}, + "reqbandsize": {"no_log": False, "type": "int"}, + "respbandsize": {"no_log": False, "type": "int"}, "type": { "choices": ["MQTT_JUMBO_REQ", "REQUEST", "RESPONSE"], "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": ["reqbandsize", "respbandsize"], }, "ptp": { "_supported_operations": ["get", "update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -36229,6 +38302,7 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {}, + "singleton": True, "update_payload_keys": [], }, "quicbridgeprofile": { @@ -36241,6 +38315,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["name", "routingalgorithm", "serveridlength"] + }, "add_payload_keys": ["name", "routingalgorithm", "serveridlength"], "bindings": [], "bindprimary_key": "", @@ -36255,16 +38332,17 @@ "name": {"no_log": False, "type": "str"}, "routingalgorithm": { "choices": ["PLAINTEXT"], - "default": "PLAINTEXT", "no_log": False, "type": "str", }, - "serveridlength": {"default": 4, "no_log": False, "type": "float"}, + "serveridlength": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": ["name", "routingalgorithm", "serveridlength"], }, "quicparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["quicsecrettimeout"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -36276,8 +38354,9 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "quicsecrettimeout": {"default": 3600, "no_log": False, "type": "float"} + "quicsecrettimeout": {"no_log": False, "type": "float"} }, + "singleton": True, "update_payload_keys": ["quicsecrettimeout"], }, "quicprofile": { @@ -36290,6 +38369,28 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "ackdelayexponent", + "activeconnectionidlimit", + "activeconnectionmigration", + "congestionctrlalgorithm", + "initialmaxdata", + "initialmaxstreamdatabidilocal", + "initialmaxstreamdatabidiremote", + "initialmaxstreamdatauni", + "initialmaxstreamsbidi", + "initialmaxstreamsuni", + "maxackdelay", + "maxidletimeout", + "maxudpdatagramsperburst", + "maxudppayloadsize", + "name", + "newtokenvalidityperiod", + "retrytokenvalidityperiod", + "statelessaddressvalidation", + ] + }, "add_payload_keys": [ "ackdelayexponent", "activeconnectionidlimit", @@ -36320,60 +38421,38 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "ackdelayexponent": {"default": 3, "no_log": False, "type": "float"}, - "activeconnectionidlimit": {"default": 3, "no_log": False, "type": "float"}, + "ackdelayexponent": {"no_log": False, "type": "float"}, + "activeconnectionidlimit": {"no_log": False, "type": "float"}, "activeconnectionmigration": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "congestionctrlalgorithm": { "choices": ["BBR", "CUBIC", "Default", "NewReno"], - "default": "Default", "no_log": False, "type": "str", }, - "initialmaxdata": {"default": 1048576, "no_log": False, "type": "float"}, - "initialmaxstreamdatabidilocal": { - "default": 262144, - "no_log": False, - "type": "float", - }, - "initialmaxstreamdatabidiremote": { - "default": 262144, - "no_log": False, - "type": "float", - }, - "initialmaxstreamdatauni": { - "default": 262144, - "no_log": False, - "type": "float", - }, - "initialmaxstreamsbidi": {"default": 100, "no_log": False, "type": "float"}, - "initialmaxstreamsuni": {"default": 10, "no_log": False, "type": "float"}, - "maxackdelay": {"default": 20, "no_log": False, "type": "float"}, - "maxidletimeout": {"default": 180, "no_log": False, "type": "float"}, - "maxudpdatagramsperburst": {"default": 8, "no_log": False, "type": "float"}, - "maxudppayloadsize": {"default": 1472, "no_log": False, "type": "float"}, + "initialmaxdata": {"no_log": False, "type": "float"}, + "initialmaxstreamdatabidilocal": {"no_log": False, "type": "float"}, + "initialmaxstreamdatabidiremote": {"no_log": False, "type": "float"}, + "initialmaxstreamdatauni": {"no_log": False, "type": "float"}, + "initialmaxstreamsbidi": {"no_log": False, "type": "float"}, + "initialmaxstreamsuni": {"no_log": False, "type": "float"}, + "maxackdelay": {"no_log": False, "type": "float"}, + "maxidletimeout": {"no_log": False, "type": "float"}, + "maxudpdatagramsperburst": {"no_log": False, "type": "float"}, + "maxudppayloadsize": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, - "newtokenvalidityperiod": { - "default": 300, - "no_log": False, - "type": "float", - }, - "retrytokenvalidityperiod": { - "default": 10, - "no_log": False, - "type": "float", - }, + "newtokenvalidityperiod": {"no_log": False, "type": "float"}, + "retrytokenvalidityperiod": {"no_log": False, "type": "float"}, "statelessaddressvalidation": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "ackdelayexponent", "activeconnectionidlimit", @@ -36404,6 +38483,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["nodeprefix", "radkey"], "bindings": [], "bindprimary_key": "", @@ -36418,6 +38498,7 @@ "nodeprefix": {"no_log": False, "type": "str"}, "radkey": {"no_log": True, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["nodeprefix", "radkey"], }, "rdpclientprofile": { @@ -36430,6 +38511,31 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "addusernameinrdpfile", + "audiocapturemode", + "keyboardhook", + "multimonitorsupport", + "name", + "psk", + "randomizerdpfilename", + "rdpcookievalidity", + "rdpcustomparams", + "rdpfilename", + "rdphost", + "rdplinkattribute", + "rdplistener", + "rdpurloverride", + "rdpvalidateclientip", + "redirectclipboard", + "redirectcomports", + "redirectdrives", + "redirectpnpdevices", + "redirectprinters", + "videoplaybackmode", + ] + }, "add_payload_keys": [ "addusernameinrdpfile", "audiocapturemode", @@ -36465,25 +38571,21 @@ "readwrite_arguments": { "addusernameinrdpfile": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "audiocapturemode": { "choices": ["DISABLE", "ENABLE"], - "default": "DISABLE", "no_log": False, "type": "str", }, "keyboardhook": { "choices": ["InFullScreenMode", "OnLocal", "OnRemote"], - "default": "InFullScreenMode", "no_log": False, "type": "str", }, "multimonitorsupport": { "choices": ["DISABLE", "ENABLE"], - "default": "ENABLE", "no_log": False, "type": "str", }, @@ -36491,11 +38593,10 @@ "psk": {"no_log": True, "type": "str"}, "randomizerdpfilename": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "rdpcookievalidity": {"default": 60, "no_log": False, "type": "float"}, + "rdpcookievalidity": {"no_log": False, "type": "float"}, "rdpcustomparams": {"no_log": False, "type": "str"}, "rdpfilename": {"no_log": False, "type": "str"}, "rdphost": {"no_log": False, "type": "str"}, @@ -36503,53 +38604,46 @@ "rdplistener": {"no_log": False, "type": "str"}, "rdpurloverride": { "choices": ["DISABLE", "ENABLE"], - "default": "ENABLE", "no_log": False, "type": "str", }, "rdpvalidateclientip": { "choices": ["DISABLE", "ENABLE"], - "default": "DISABLE", "no_log": False, "type": "str", }, "redirectclipboard": { "choices": ["DISABLE", "ENABLE"], - "default": "ENABLE", "no_log": False, "type": "str", }, "redirectcomports": { "choices": ["DISABLE", "ENABLE"], - "default": "DISABLE", "no_log": False, "type": "str", }, "redirectdrives": { "choices": ["DISABLE", "ENABLE"], - "default": "DISABLE", "no_log": False, "type": "str", }, "redirectpnpdevices": { "choices": ["DISABLE", "ENABLE"], - "default": "DISABLE", "no_log": False, "type": "str", }, "redirectprinters": { "choices": ["DISABLE", "ENABLE"], - "default": "ENABLE", "no_log": False, "type": "str", }, "videoplaybackmode": { "choices": ["DISABLE", "ENABLE"], - "default": "ENABLE", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "addusernameinrdpfile", "audiocapturemode", @@ -36576,6 +38670,7 @@ }, "rdpconnections": { "_supported_operations": ["count", "get", "kill"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -36590,6 +38685,7 @@ "all": {"no_log": False, "type": "bool"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "rdpserverprofile": { @@ -36602,6 +38698,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["name", "psk", "rdpip", "rdpport", "rdpredirection"] + }, "add_payload_keys": ["name", "psk", "rdpip", "rdpport", "rdpredirection"], "bindings": [], "bindprimary_key": "", @@ -36616,18 +38715,19 @@ "name": {"no_log": False, "type": "str"}, "psk": {"no_log": True, "type": "str"}, "rdpip": {"no_log": False, "type": "str"}, - "rdpport": {"default": 3389, "no_log": False, "type": "float"}, + "rdpport": {"no_log": False, "type": "float"}, "rdpredirection": { "choices": ["DISABLE", "ENABLE"], - "default": "DISABLE", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": ["name", "psk", "rdpip", "rdpport", "rdpredirection"], }, "reboot": { "_supported_operations": ["Reboot"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -36639,10 +38739,12 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"warm": {"no_log": False, "type": "bool"}}, + "singleton": True, "update_payload_keys": [], }, "reportingconfig": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["entitytypes", "name"], "bindings": [], "bindprimary_key": "", @@ -36726,10 +38828,14 @@ }, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "reputationsettings": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": ["proxypassword", "proxyport", "proxyserver", "proxyusername"] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -36746,6 +38852,7 @@ "proxyserver": {"no_log": False, "type": "str"}, "proxyusername": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "proxypassword", "proxyport", @@ -36764,6 +38871,15 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "comment", + "headers", + "name", + "reasonphrase", + "responsestatuscode", + ] + }, "add_payload_keys": [ "bypasssafetycheck", "comment", @@ -36787,7 +38903,6 @@ "readwrite_arguments": { "bypasssafetycheck": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, @@ -36812,6 +38927,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "bypasssafetycheck", "comment", @@ -36825,6 +38941,7 @@ }, "responderglobal_responderpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -36858,7 +38975,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -36909,10 +39025,16 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "responderhtmlpage": { "_supported_operations": ["Import", "change", "delete", "get", "get-byname"], + "action_payload_keys": { + "import": ["cacertfile", "comment", "name", "overwrite", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -36930,10 +39052,12 @@ "overwrite": {"no_log": False, "type": "bool"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "responderparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["timeout", "undefaction"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -36945,9 +39069,10 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "timeout": {"default": 3900, "no_log": False, "type": "float"}, - "undefaction": {"default": '"NOOP"', "no_log": False, "type": "str"}, + "timeout": {"no_log": False, "type": "float"}, + "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": ["timeout", "undefaction"], }, "responderpolicy": { @@ -36961,6 +39086,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["appflowaction", "comment", "logaction", "name", "undefaction"] + }, "add_payload_keys": [ "action", "appflowaction", @@ -37005,6 +39133,7 @@ "rule": {"no_log": False, "type": "str"}, "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "action", "appflowaction", @@ -37024,6 +39153,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "labelname", "policylabeltype"], "bindings": ["responderpolicylabel_responderpolicy_binding"], "bindprimary_key": "", @@ -37055,7 +39185,6 @@ "SIP_TCP", "SIP_UDP", ], - "default": "HTTP", "no_log": False, "type": "str", }, @@ -37076,10 +39205,12 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [], }, "responderpolicylabel_responderpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -37118,6 +39249,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "rewriteaction": { @@ -37131,6 +39263,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "name", "refinesearch", "stringbuilderexpr"] + }, "add_payload_keys": [ "comment", "name", @@ -37193,6 +39328,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "comment", "name", @@ -37204,6 +39340,7 @@ }, "rewriteglobal_rewritepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -37237,7 +39374,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -37294,10 +39430,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "rewriteparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["timeout", "undefaction"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -37309,9 +39447,10 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "timeout": {"default": 3900, "no_log": False, "type": "float"}, - "undefaction": {"default": '"NOREWRITE"', "no_log": False, "type": "str"}, + "timeout": {"no_log": False, "type": "float"}, + "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": ["timeout", "undefaction"], }, "rewritepolicy": { @@ -37325,6 +39464,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "logaction", "name", "undefaction"] + }, "add_payload_keys": [ "action", "comment", @@ -37367,6 +39509,7 @@ "rule": {"no_log": False, "type": "str"}, "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "action", "comment", @@ -37385,6 +39528,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "labelname", "transform"], "bindings": ["rewritepolicylabel_rewritepolicy_binding"], "bindprimary_key": "", @@ -37444,10 +39588,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "rewritepolicylabel_rewritepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -37486,6 +39632,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "rnat": { @@ -37500,6 +39647,20 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "aclname", + "connfailover", + "name", + "netmask", + "network", + "ownergroup", + "redirectport", + "srcippersistency", + "td", + "useproxyport", + ] + }, "add_payload_keys": [ "aclname", "connfailover", @@ -37530,7 +39691,6 @@ "aclname": {"no_log": False, "type": "str"}, "connfailover": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -37539,7 +39699,7 @@ "netmask": {"no_log": False, "type": "str"}, "network": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "redirectport": {"no_log": False, "type": "int"}, "rnat6_nsip6_binding": { "no_log": False, @@ -37607,18 +39767,17 @@ }, "srcippersistency": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "td": {"no_log": False, "type": "float"}, "useproxyport": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "aclname", "connfailover", @@ -37642,6 +39801,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["name", "ownergroup", "redirectport", "srcippersistency"] + }, "add_payload_keys": [ "acl6name", "name", @@ -37664,7 +39826,7 @@ "acl6name": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "network": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "redirectport": {"no_log": False, "type": "int"}, "rnat6_nsip6_binding": { "no_log": False, @@ -37684,12 +39846,12 @@ }, "srcippersistency": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "name", "ownergroup", @@ -37699,6 +39861,7 @@ }, "rnat6_nsip6_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "natip6", "ownergroup"], "bindprimary_key": "natip6", "delete_arg_keys": ["natip6", "ownergroup"], @@ -37711,12 +39874,14 @@ "readwrite_arguments": { "name": {"no_log": False, "type": "str"}, "natip6": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "rnat_nsip_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "natip"], "bindprimary_key": "natip", "delete_arg_keys": ["natip"], @@ -37730,10 +39895,12 @@ "name": {"no_log": False, "type": "str"}, "natip": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "rnat_retainsourceportset_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "retainsourceportrange"], "bindprimary_key": "retainsourceportrange", "delete_arg_keys": ["retainsourceportrange"], @@ -37747,10 +39914,12 @@ "name": {"no_log": False, "type": "str"}, "retainsourceportrange": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "rnatglobal_auditsyslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["policy", "priority"], "bindprimary_key": "policy", "delete_arg_keys": ["all", "policy"], @@ -37765,10 +39934,12 @@ "policy": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "rnatparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["srcippersistency", "tcpproxy"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -37782,21 +39953,21 @@ "readwrite_arguments": { "srcippersistency": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "tcpproxy": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": ["srcippersistency", "tcpproxy"], }, "rnatsession": { "_supported_operations": ["flush"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -37813,6 +39984,7 @@ "netmask": {"no_log": False, "type": "str"}, "network": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "route": { @@ -37825,6 +39997,21 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "advertise", + "cost1", + "distance", + "gateway", + "monitor", + "msr", + "netmask", + "network", + "protocol", + "td", + "weight", + ] + }, "add_payload_keys": [ "advertise", "cost1", @@ -37858,18 +40045,13 @@ "cost": {"no_log": False, "type": "float"}, "cost1": {"no_log": False, "type": "float"}, "detail": {"no_log": False, "type": "bool"}, - "distance": {"default": 1, "no_log": False, "type": "float"}, + "distance": {"no_log": False, "type": "float"}, "gateway": {"no_log": False, "type": "str"}, "monitor": {"no_log": False, "type": "str"}, - "msr": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, + "msr": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, "network": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "protocol": { "choices": ["BGP", "ISIS", "OSPF", "RIP"], "elements": "str", @@ -37891,8 +40073,9 @@ }, "td": {"no_log": False, "type": "float"}, "vlan": {"no_log": False, "type": "float"}, - "weight": {"default": 1, "no_log": False, "type": "float"}, + "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "advertise", "cost1", @@ -37917,6 +40100,21 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "advertise", + "cost", + "distance", + "gateway", + "monitor", + "msr", + "network", + "td", + "vlan", + "vxlan", + "weight", + ] + }, "add_payload_keys": [ "advertise", "cost", @@ -37946,19 +40144,14 @@ "no_log": False, "type": "str", }, - "cost": {"default": 1, "no_log": False, "type": "float"}, + "cost": {"no_log": False, "type": "float"}, "detail": {"no_log": False, "type": "bool"}, - "distance": {"default": 1, "no_log": False, "type": "float"}, + "distance": {"no_log": False, "type": "float"}, "gateway": {"no_log": False, "type": "str"}, "monitor": {"no_log": False, "type": "str"}, - "msr": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, + "msr": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "network": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "routetype": { "choices": [ "BGP", @@ -37977,8 +40170,9 @@ "td": {"no_log": False, "type": "float"}, "vlan": {"no_log": False, "type": "float"}, "vxlan": {"no_log": False, "type": "float"}, - "weight": {"default": 1, "no_log": False, "type": "float"}, + "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "advertise", "cost", @@ -38003,6 +40197,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["commandstring"]}, "add_payload_keys": ["commandstring"], "bindings": [], "bindprimary_key": "", @@ -38017,10 +40212,12 @@ "commandstring": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": ["commandstring"], }, "rsskeytype": { "_supported_operations": ["get", "update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -38034,11 +40231,11 @@ "readwrite_arguments": { "rsstype": { "choices": ["ASYMMETRIC", "SYMMETRIC"], - "default": "ASYMMETRIC", "no_log": False, "type": "str", } }, + "singleton": True, "update_payload_keys": ["rsstype"], }, "server": { @@ -38054,6 +40251,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name"]}, "add_payload_keys": [ "comment", "domain", @@ -38076,30 +40274,19 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "Internal": {"no_log": False, "type": "bool"}, "comment": {"no_log": False, "type": "str"}, "delay": {"no_log": False, "type": "float"}, "domain": {"no_log": False, "type": "str"}, "domainresolvenow": {"no_log": False, "type": "bool"}, - "domainresolveretry": {"default": 5, "no_log": False, "type": "int"}, - "graceful": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "domainresolveretry": {"no_log": False, "type": "int"}, + "graceful": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "internal": {"no_log": False, "type": "bool"}, "ipaddress": {"no_log": False, "type": "str"}, - "ipv6address": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "ipv6address": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, "querytype": { "choices": ["A", "AAAA", "SRV"], - "default": "A", "no_log": False, "type": "str", }, @@ -38107,6 +40294,7 @@ "translationip": {"no_log": False, "type": "str"}, "translationmask": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "comment", "domainresolvenow", @@ -38130,6 +40318,43 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "accessdown", + "appflowlog", + "cacheable", + "cip", + "cipheader", + "cka", + "clttimeout", + "cmp", + "comment", + "contentinspectionprofilename", + "customserverid", + "dnsprofilename", + "downstateflush", + "hashid", + "healthmonitor", + "httpprofilename", + "maxbandwidth", + "maxclient", + "maxreq", + "monconnectionclose", + "monthreshold", + "name", + "netprofile", + "pathmonitor", + "pathmonitorindv", + "processlocal", + "rtspsessionidremap", + "sp", + "svrtimeout", + "tcpb", + "tcpprofilename", + "useproxyport", + "usip", + ] + }, "add_payload_keys": [ "accessdown", "appflowlog", @@ -38195,26 +40420,14 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "Internal": {"no_log": False, "type": "bool"}, - "accessdown": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "accessdown": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "all": {"no_log": False, "type": "bool"}, "appflowlog": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", - "no_log": False, - "type": "str", - }, - "cacheable": { - "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, + "cacheable": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "cachetype": { "choices": ["FORWARD", "REVERSE", "TRANSPARENT"], "no_log": False, @@ -38228,29 +40441,19 @@ "cmp": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "comment": {"no_log": False, "type": "str"}, "contentinspectionprofilename": {"no_log": False, "type": "str"}, - "customserverid": {"default": '"None"', "no_log": False, "type": "str"}, + "customserverid": {"no_log": False, "type": "str"}, "delay": {"no_log": False, "type": "float"}, "dnsprofilename": {"no_log": False, "type": "str"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", - "no_log": False, - "type": "str", - }, - "graceful": { - "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, + "graceful": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "hashid": {"no_log": False, "type": "float"}, - "healthmonitor": { - "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, + "healthmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "httpprofilename": {"no_log": False, "type": "str"}, + "internal": {"no_log": False, "type": "bool"}, "ip": {"no_log": False, "type": "str"}, "ipaddress": {"no_log": False, "type": "str"}, "maxbandwidth": {"no_log": False, "type": "float"}, @@ -38275,13 +40478,11 @@ "port": {"no_log": False, "type": "int"}, "processlocal": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "rtspsessionidremap": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -38398,6 +40599,7 @@ "usip": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "accessdown", "appflowlog", @@ -38439,6 +40641,7 @@ }, "service_lbmonitor_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["monitor_name", "monstate", "name", "passive", "weight"], "bindprimary_key": "monitor_name", "delete_arg_keys": ["monitor_name"], @@ -38459,6 +40662,7 @@ "passive": {"no_log": False, "type": "bool"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "servicegroup": { @@ -38474,6 +40678,50 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "appflowlog", + "autodelayedtrofs", + "autodisabledelay", + "autodisablegraceful", + "cacheable", + "cip", + "cipheader", + "cka", + "clttimeout", + "cmp", + "comment", + "customserverid", + "dbsttl", + "downstateflush", + "dup_weight", + "hashid", + "healthmonitor", + "httpprofilename", + "maxbandwidth", + "maxclient", + "maxreq", + "monconnectionclose", + "monitor_name_svc", + "monthreshold", + "nameserver", + "netprofile", + "order", + "pathmonitor", + "pathmonitorindv", + "port", + "rtspsessionidremap", + "servername", + "servicegroupname", + "sp", + "svrtimeout", + "tcpb", + "tcpprofilename", + "useproxyport", + "usip", + "weight", + ] + }, "add_payload_keys": [ "appflowlog", "autodelayedtrofs", @@ -38539,35 +40787,26 @@ "readwrite_arguments": { "appflowlog": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "autodelayedtrofs": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "autodisabledelay": {"no_log": False, "type": "float"}, "autodisablegraceful": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "autoscale": { "choices": ["API", "CLOUD", "DISABLED", "DNS", "POLICY"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "cacheable": { - "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, + "cacheable": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "cachetype": { "choices": ["FORWARD", "REVERSE", "TRANSPARENT"], "no_log": False, @@ -38579,29 +40818,18 @@ "clttimeout": {"no_log": False, "type": "float"}, "cmp": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "comment": {"no_log": False, "type": "str"}, - "customserverid": {"default": '"None"', "no_log": False, "type": "str"}, + "customserverid": {"no_log": False, "type": "str"}, "dbsttl": {"no_log": False, "type": "float"}, "delay": {"no_log": False, "type": "float"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "dup_weight": {"no_log": False, "type": "float"}, - "graceful": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "graceful": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "hashid": {"no_log": False, "type": "float"}, - "healthmonitor": { - "choices": ["NO", "YES"], - "default": "YES", - "no_log": False, - "type": "str", - }, + "healthmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "httpprofilename": {"no_log": False, "type": "str"}, "includemembers": {"no_log": False, "type": "bool"}, "maxbandwidth": {"no_log": False, "type": "float"}, @@ -38628,7 +40856,6 @@ "port": {"no_log": False, "type": "int"}, "rtspsessionidremap": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -38721,12 +40948,7 @@ "no_log": False, "type": "str", }, - "sp": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "sp": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "svrtimeout": {"no_log": False, "type": "float"}, "tcpb": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "tcpprofilename": {"no_log": False, "type": "str"}, @@ -38735,6 +40957,7 @@ "usip": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "appflowlog", "autodelayedtrofs", @@ -38781,6 +41004,7 @@ }, "servicegroup_lbmonitor_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "customserverid", "dbsttl", @@ -38815,7 +41039,7 @@ "password_keys": [], "primary_key": "servicegroupname", "readwrite_arguments": { - "customserverid": {"default": '"None"', "no_log": False, "type": "str"}, + "customserverid": {"no_log": False, "type": "str"}, "dbsttl": {"no_log": False, "type": "float"}, "hashid": {"no_log": False, "type": "float"}, "monitor_name": {"no_log": False, "type": "str"}, @@ -38831,10 +41055,12 @@ "servicegroupname": {"no_log": False, "type": "str"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "servicegroup_servicegroupmember_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "customserverid", "dbsttl", @@ -38870,7 +41096,7 @@ "password_keys": [], "primary_key": "servicegroupname", "readwrite_arguments": { - "customserverid": {"default": '"None"', "no_log": False, "type": "str"}, + "customserverid": {"no_log": False, "type": "str"}, "dbsttl": {"no_log": False, "type": "float"}, "hashid": {"no_log": False, "type": "float"}, "ip": {"no_log": False, "type": "str"}, @@ -38882,10 +41108,21 @@ "servicegroupname": {"no_log": False, "type": "str"}, "weight": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "smppparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "addrnpi", + "addrrange", + "addrton", + "clientmode", + "msgqueue", + "msgqueuesize", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -38898,22 +41135,17 @@ "primary_key": "", "readwrite_arguments": { "addrnpi": {"no_log": False, "type": "float"}, - "addrrange": {"default": '"\\\\d*"', "no_log": False, "type": "str"}, + "addrrange": {"no_log": False, "type": "str"}, "addrton": {"no_log": False, "type": "float"}, "clientmode": { "choices": ["RECEIVERONLY", "TRANSCEIVER", "TRANSMITTERONLY"], - "default": "TRANSCEIVER", - "no_log": False, - "type": "str", - }, - "msgqueue": { - "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, - "msgqueuesize": {"default": 10000, "no_log": False, "type": "float"}, + "msgqueue": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "msgqueuesize": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "addrnpi", "addrrange", @@ -38932,6 +41164,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["password", "username"], "bindings": [], "bindprimary_key": "", @@ -38946,6 +41179,7 @@ "password": {"no_log": True, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["password", "username"], }, "snmpalarm": { @@ -38958,6 +41192,16 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "logging", + "normalvalue", + "severity", + "thresholdvalue", + "time", + "trapname", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -38971,7 +41215,6 @@ "readwrite_arguments": { "logging": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -38982,7 +41225,7 @@ "type": "str", }, "thresholdvalue": {"no_log": False, "type": "float"}, - "time": {"default": 1, "no_log": False, "type": "float"}, + "time": {"no_log": False, "type": "float"}, "trapname": { "choices": [ "1024KEY-EXCHANGE-RATE", @@ -39137,6 +41380,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "logging", "normalvalue", @@ -39148,6 +41392,7 @@ }, "snmpcommunity": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["communityname", "permissions"], "bindings": [], "bindprimary_key": "", @@ -39166,10 +41411,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "snmpengineid": { "_supported_operations": ["count", "get", "get-byname", "unset", "update"], + "action_payload_keys": {"unset": ["ownernode"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -39182,12 +41429,14 @@ "primary_key": "ownernode", "readwrite_arguments": { "engineid": {"no_log": False, "type": "str"}, - "ownernode": {"default": -1, "no_log": False, "type": "float"}, + "ownernode": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": ["engineid", "ownernode"], }, "snmpgroup": { "_supported_operations": ["add", "count", "delete", "get", "update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "readviewname", "securitylevel"], "bindings": [], "bindprimary_key": "", @@ -39207,10 +41456,14 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": ["name", "readviewname", "securitylevel"], }, "snmpmanager": { "_supported_operations": ["add", "count", "delete", "get", "unset", "update"], + "action_payload_keys": { + "unset": ["domainresolveretry", "ipaddress", "netmask"] + }, "add_payload_keys": ["domainresolveretry", "ipaddress", "netmask"], "bindings": [], "bindprimary_key": "", @@ -39226,10 +41479,14 @@ "ipaddress": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["domainresolveretry", "ipaddress", "netmask"], }, "snmpmib": { "_supported_operations": ["count", "get", "get-byname", "unset", "update"], + "action_payload_keys": { + "unset": ["contact", "customid", "location", "name", "ownernode"] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -39241,24 +41498,26 @@ "password_keys": [], "primary_key": "ownernode", "readwrite_arguments": { - "contact": { - "default": '"WebMaster ' '(default)"', - "no_log": False, - "type": "str", - }, - "customid": {"default": '"Default"', "no_log": False, "type": "str"}, - "location": { - "default": '"POP ' '(default)"', - "no_log": False, - "type": "str", - }, - "name": {"default": '"NetScaler"', "no_log": False, "type": "str"}, - "ownernode": {"default": -1, "no_log": False, "type": "float"}, + "contact": {"no_log": False, "type": "str"}, + "customid": {"no_log": False, "type": "str"}, + "location": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "str"}, + "ownernode": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": ["contact", "customid", "location", "name", "ownernode"], }, "snmpoption": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "partitionnameintrap", + "severityinfointrap", + "snmpset", + "snmptraplogging", + "snmptraplogginglevel", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -39272,25 +41531,21 @@ "readwrite_arguments": { "partitionnameintrap": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "severityinfointrap": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "snmpset": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "snmptraplogging": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -39305,11 +41560,11 @@ "NOTICE", "WARNING", ], - "default": "INFORMATIONAL", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "partitionnameintrap", "severityinfointrap", @@ -39320,6 +41575,19 @@ }, "snmptrap": { "_supported_operations": ["add", "count", "delete", "get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "allpartitions", + "communityname", + "destport", + "severity", + "srcip", + "td", + "trapclass", + "trapdestination", + "version", + ] + }, "add_payload_keys": [ "allpartitions", "communityname", @@ -39343,12 +41611,11 @@ "readwrite_arguments": { "allpartitions": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "communityname": {"no_log": False, "type": "str"}, - "destport": {"default": 162, "no_log": False, "type": "int"}, + "destport": {"no_log": False, "type": "int"}, "severity": { "choices": ["Critical", "Informational", "Major", "Minor", "Warning"], "no_log": False, @@ -39378,13 +41645,9 @@ "type": "str", }, "trapdestination": {"no_log": False, "type": "str"}, - "version": { - "choices": ["V1", "V2", "V3"], - "default": "V2", - "no_log": False, - "type": "str", - }, + "version": {"choices": ["V1", "V2", "V3"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "allpartitions", "communityname", @@ -39399,6 +41662,7 @@ }, "snmptrap_snmpuser_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "securitylevel", "td", @@ -39425,7 +41689,6 @@ "readwrite_arguments": { "securitylevel": { "choices": ["authNoPriv", "authPriv", "noAuthNoPriv"], - "default": "authNoPriv", "no_log": False, "type": "str", }, @@ -39437,13 +41700,9 @@ }, "trapdestination": {"no_log": False, "type": "str"}, "username": {"no_log": False, "type": "str"}, - "version": { - "choices": ["V1", "V2", "V3"], - "default": "V3", - "no_log": False, - "type": "str", - }, + "version": {"choices": ["V1", "V2", "V3"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "snmpuser": { @@ -39456,6 +41715,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["authpasswd", "authtype", "name", "privpasswd", "privtype"] + }, "add_payload_keys": [ "authpasswd", "authtype", @@ -39481,6 +41743,7 @@ "privpasswd": {"no_log": True, "type": "str"}, "privtype": {"choices": ["AES", "DES"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "authpasswd", "authtype", @@ -39492,6 +41755,7 @@ }, "snmpview": { "_supported_operations": ["add", "count", "delete", "get", "update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "subtree", "type"], "bindings": [], "bindprimary_key": "", @@ -39511,6 +41775,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": ["name", "subtree", "type"], }, "spilloveraction": { @@ -39522,6 +41787,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["action", "name"], "bindings": [], "bindprimary_key": "", @@ -39537,6 +41803,7 @@ "name": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "spilloverpolicy": { @@ -39550,6 +41817,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name"]}, "add_payload_keys": ["action", "comment", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -39567,10 +41835,12 @@ "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "comment", "name", "rule"], }, "sslaction": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "cacertgrpname", "certfingerprintdigest", @@ -39707,7 +41977,6 @@ }, "clientcertverification": { "choices": ["Mandatory", "Optional"], - "default": "Mandatory", "no_log": False, "type": "str", }, @@ -39726,10 +41995,12 @@ "sessionidheader": {"no_log": False, "type": "str"}, "ssllogprofile": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslcacertgroup": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["cacertgroupname"], "bindings": ["sslcacertgroup_sslcertkey_binding"], "bindprimary_key": "", @@ -39759,10 +42030,12 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [], }, "sslcacertgroup_sslcertkey_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["cacertgroupname", "certkeyname", "crlcheck", "ocspcheck"], "bindprimary_key": "certkeyname", "delete_arg_keys": ["certkeyname"], @@ -39786,10 +42059,32 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "sslcert": { "_supported_operations": ["create"], + "action_payload_keys": { + "create": [ + "cacert", + "cacertform", + "cakey", + "cakeyform", + "caserial", + "certfile", + "certform", + "certtype", + "days", + "keyfile", + "keyform", + "pempassphrase", + "reqfile", + "subjectaltname", + ], + "import": [], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": ["sslcertkey_sslocspresponder_binding"], "bindprimary_key": "", @@ -39802,40 +42097,20 @@ "primary_key": "", "readwrite_arguments": { "cacert": {"no_log": False, "type": "str"}, - "cacertform": { - "choices": ["DER", "PEM"], - "default": "PEM", - "no_log": False, - "type": "str", - }, + "cacertform": {"choices": ["DER", "PEM"], "no_log": False, "type": "str"}, "cakey": {"no_log": False, "type": "str"}, - "cakeyform": { - "choices": ["DER", "PEM"], - "default": "PEM", - "no_log": False, - "type": "str", - }, + "cakeyform": {"choices": ["DER", "PEM"], "no_log": False, "type": "str"}, "caserial": {"no_log": False, "type": "str"}, "certfile": {"no_log": False, "type": "str"}, - "certform": { - "choices": ["DER", "PEM"], - "default": "PEM", - "no_log": False, - "type": "str", - }, + "certform": {"choices": ["DER", "PEM"], "no_log": False, "type": "str"}, "certtype": { "choices": ["CLNT_CERT", "INTM_CERT", "ROOT_CERT", "SRVR_CERT"], "no_log": False, "type": "str", }, - "days": {"default": 365, "no_log": False, "type": "float"}, + "days": {"no_log": False, "type": "float"}, "keyfile": {"no_log": False, "type": "str"}, - "keyform": { - "choices": ["DER", "PEM"], - "default": "PEM", - "no_log": False, - "type": "str", - }, + "keyform": {"choices": ["DER", "PEM"], "no_log": False, "type": "str"}, "pempassphrase": {"no_log": True, "type": "str"}, "reqfile": {"no_log": False, "type": "str"}, "sslcertkey_sslocspresponder_binding": { @@ -39856,6 +42131,7 @@ }, "subjectaltname": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "sslcertbundle": { @@ -39867,6 +42143,7 @@ "export", "get", ], + "action_payload_keys": {"import": ["name", "src"], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -39881,10 +42158,12 @@ "name": {"no_log": False, "type": "str"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslcertfile": { "_supported_operations": ["Import", "count", "delete", "get"], + "action_payload_keys": {"import": ["name", "src"], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -39899,10 +42178,12 @@ "name": {"no_log": False, "type": "str"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslcertificatechain": { "_supported_operations": ["add", "count", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["certkeyname"], "bindings": [], "bindprimary_key": "", @@ -39914,6 +42195,7 @@ "password_keys": [], "primary_key": "certkeyname", "readwrite_arguments": {"certkeyname": {"no_log": False, "type": "str"}}, + "singleton": False, "update_payload_keys": [], }, "sslcertkey": { @@ -39930,6 +42212,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["certkey", "expirymonitor", "notificationperiod"] + }, "add_payload_keys": [ "bundle", "cert", @@ -39962,12 +42247,7 @@ "password_keys": ["passplain"], "primary_key": "certkey", "readwrite_arguments": { - "bundle": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "bundle": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "cert": {"no_log": False, "type": "str"}, "certkey": {"no_log": False, "type": "str"}, "deletefromdevice": {"no_log": False, "type": "bool"}, @@ -39980,7 +42260,6 @@ "hsmkey": {"no_log": False, "type": "str"}, "inform": { "choices": ["DER", "PEM", "PFX"], - "default": "PEM", "no_log": False, "type": "str", }, @@ -40008,10 +42287,12 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": ["certkey", "expirymonitor", "notificationperiod"], }, "sslcertkey_sslocspresponder_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["certkey", "ocspresponder", "priority"], "bindprimary_key": "ocspresponder", "delete_arg_keys": ["ca", "ocspresponder"], @@ -40027,10 +42308,12 @@ "ocspresponder": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "sslcertkeybundle": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["bundlefile", "certkeybundlename", "passplain"], "bindings": [], "bindprimary_key": "", @@ -40046,10 +42329,34 @@ "certkeybundlename": {"no_log": False, "type": "str"}, "passplain": {"no_log": True, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslcertreq": { "_supported_operations": ["create"], + "action_payload_keys": { + "create": [ + "challengepassword", + "commonname", + "companyname", + "countryname", + "digestmethod", + "emailaddress", + "fipskeyname", + "keyfile", + "keyform", + "localityname", + "organizationname", + "organizationunitname", + "pempassphrase", + "reqfile", + "statename", + "subjectaltname", + ], + "import": [], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -40073,12 +42380,7 @@ "emailaddress": {"no_log": False, "type": "str"}, "fipskeyname": {"no_log": False, "type": "str"}, "keyfile": {"no_log": False, "type": "str"}, - "keyform": { - "choices": ["DER", "PEM"], - "default": "PEM", - "no_log": False, - "type": "str", - }, + "keyform": {"choices": ["DER", "PEM"], "no_log": False, "type": "str"}, "localityname": {"no_log": False, "type": "str"}, "organizationname": {"no_log": False, "type": "str"}, "organizationunitname": {"no_log": False, "type": "str"}, @@ -40087,6 +42389,7 @@ "statename": {"no_log": False, "type": "str"}, "subjectaltname": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "sslcipher": { @@ -40099,6 +42402,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["ciphergroupname", "ciphername", "cipherpriority"] + }, "add_payload_keys": ["ciphergroupname"], "bindings": ["sslcipher_sslciphersuite_binding"], "bindprimary_key": "", @@ -40132,10 +42438,12 @@ }, "sslprofile": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["ciphergroupname", "ciphername", "cipherpriority"], }, "sslcipher_sslciphersuite_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "ciphergroupname", "ciphername", @@ -40163,6 +42471,7 @@ "ciphgrpals": {"no_log": False, "type": "str"}, "description": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["ciphername", "ciphername", "cipherpriority"], }, "sslcrl": { @@ -40176,6 +42485,25 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "basedn", + "binary", + "binddn", + "cacert", + "crlname", + "day", + "interval", + "method", + "password", + "port", + "refresh", + "scope", + "server", + "time", + "url", + ] + }, "add_payload_keys": [ "basedn", "binary", @@ -40206,12 +42534,7 @@ "primary_key": "crlname", "readwrite_arguments": { "basedn": {"no_log": False, "type": "str"}, - "binary": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, + "binary": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "binddn": {"no_log": False, "type": "str"}, "cacert": {"no_log": False, "type": "str"}, "cacertfile": {"no_log": False, "type": "str"}, @@ -40221,12 +42544,7 @@ "day": {"no_log": False, "type": "float"}, "gencrl": {"no_log": False, "type": "str"}, "indexfile": {"no_log": False, "type": "str"}, - "inform": { - "choices": ["DER", "PEM"], - "default": "PEM", - "no_log": False, - "type": "str", - }, + "inform": {"choices": ["DER", "PEM"], "no_log": False, "type": "str"}, "interval": { "choices": ["DAILY", "MONTHLY", "NONE", "NOW", "WEEKLY"], "no_log": False, @@ -40241,16 +42559,12 @@ "type": "str", }, "revoke": {"no_log": False, "type": "str"}, - "scope": { - "choices": ["Base", "One"], - "default": "One", - "no_log": False, - "type": "str", - }, + "scope": {"choices": ["Base", "One"], "no_log": False, "type": "str"}, "server": {"no_log": False, "type": "str"}, "time": {"no_log": False, "type": "str"}, "url": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "basedn", "binary", @@ -40271,6 +42585,7 @@ }, "sslcrlfile": { "_supported_operations": ["Import", "count", "delete", "get"], + "action_payload_keys": {"import": ["name", "src"], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -40285,10 +42600,12 @@ "name": {"no_log": False, "type": "str"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "ssldhfile": { "_supported_operations": ["Import", "count", "delete", "get"], + "action_payload_keys": {"import": ["name", "src"], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -40303,10 +42620,17 @@ "name": {"no_log": False, "type": "str"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "ssldhparam": { "_supported_operations": ["create"], + "action_payload_keys": { + "create": ["bits", "dhfile", "gen"], + "import": [], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -40322,6 +42646,7 @@ "dhfile": {"no_log": False, "type": "str"}, "gen": {"choices": ["2", "5"], "no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "ssldtlsprofile": { @@ -40334,6 +42659,19 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "helloverifyrequest", + "maxbadmacignorecount", + "maxholdqlen", + "maxpacketsize", + "maxrecordsize", + "maxretrytime", + "name", + "pmtudiscovery", + "terminatesession", + ] + }, "add_payload_keys": [ "helloverifyrequest", "maxbadmacignorecount", @@ -40357,29 +42695,27 @@ "readwrite_arguments": { "helloverifyrequest": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "maxbadmacignorecount": {"default": 100, "no_log": False, "type": "float"}, - "maxholdqlen": {"default": 32, "no_log": False, "type": "float"}, - "maxpacketsize": {"default": 120, "no_log": False, "type": "float"}, - "maxrecordsize": {"default": 1459, "no_log": False, "type": "float"}, - "maxretrytime": {"default": 3, "no_log": False, "type": "float"}, + "maxbadmacignorecount": {"no_log": False, "type": "float"}, + "maxholdqlen": {"no_log": False, "type": "float"}, + "maxpacketsize": {"no_log": False, "type": "float"}, + "maxrecordsize": {"no_log": False, "type": "float"}, + "maxretrytime": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, "pmtudiscovery": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "terminatesession": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "helloverifyrequest", "maxbadmacignorecount", @@ -40394,6 +42730,21 @@ }, "sslecdsakey": { "_supported_operations": ["create"], + "action_payload_keys": { + "create": [ + "aes256", + "curve", + "des", + "des3", + "keyfile", + "keyform", + "password", + "pkcs8", + ], + "import": [], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -40410,19 +42761,16 @@ "des": {"no_log": False, "type": "bool"}, "des3": {"no_log": False, "type": "bool"}, "keyfile": {"no_log": False, "type": "str"}, - "keyform": { - "choices": ["DER", "PEM"], - "default": "PEM", - "no_log": False, - "type": "str", - }, + "keyform": {"choices": ["DER", "PEM"], "no_log": False, "type": "str"}, "password": {"no_log": True, "type": "str"}, "pkcs8": {"no_log": False, "type": "bool"}, }, + "singleton": True, "update_payload_keys": [], }, "sslfips": { "_supported_operations": ["change", "get", "reset", "unset", "update"], + "action_payload_keys": {"unset": ["hsmlabel"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -40441,6 +42789,7 @@ "sopassword": {"no_log": True, "type": "str"}, "userpassword": {"no_log": True, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "hsmlabel", "inithsm", @@ -40459,6 +42808,11 @@ "get", "get-byname", ], + "action_payload_keys": { + "import": ["exponent", "fipskeyname", "inform", "iv", "key", "wrapkeyname"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -40470,35 +42824,26 @@ "password_keys": [], "primary_key": "fipskeyname", "readwrite_arguments": { - "curve": { - "choices": ["P_256", "P_384"], - "default": "P_256", - "no_log": False, - "type": "str", - }, + "curve": {"choices": ["P_256", "P_384"], "no_log": False, "type": "str"}, "exponent": {"choices": ["3", "F4"], "no_log": False, "type": "str"}, "fipskeyname": {"no_log": False, "type": "str"}, "inform": { "choices": ["DER", "PEM", "SIM"], - "default": "SIM", "no_log": False, "type": "str", }, "iv": {"no_log": False, "type": "str"}, "key": {"no_log": False, "type": "str"}, - "keytype": { - "choices": ["ECDSA", "RSA"], - "default": "RSA", - "no_log": False, - "type": "str", - }, + "keytype": {"choices": ["ECDSA", "RSA"], "no_log": False, "type": "str"}, "modulus": {"no_log": False, "type": "float"}, "wrapkeyname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslfipssimsource": { "_supported_operations": ["enable", "init"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -40514,10 +42859,12 @@ "sourcesecret": {"no_log": False, "type": "str"}, "targetsecret": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "sslfipssimtarget": { "_supported_operations": ["enable", "init"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -40534,10 +42881,12 @@ "sourcesecret": {"no_log": False, "type": "str"}, "targetsecret": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "sslglobal_sslpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -40571,15 +42920,10 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", - "no_log": False, - "type": "str", - }, - "gotopriorityexpression": { - "default": '"END"', "no_log": False, "type": "str", }, + "gotopriorityexpression": {"no_log": False, "type": "str"}, "invoke": {"no_log": False, "type": "bool"}, "labelname": {"no_log": False, "type": "str"}, "labeltype": { @@ -40604,10 +42948,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "sslhsmkey": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "hsmkeyname", "hsmtype", @@ -40636,7 +42982,6 @@ "hsmkeyname": {"no_log": False, "type": "str"}, "hsmtype": { "choices": ["KEYVAULT", "SAFENET", "THALES"], - "default": "THALES", "no_log": False, "type": "str", }, @@ -40645,10 +42990,16 @@ "password": {"no_log": True, "type": "str"}, "serialnum": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslkeyfile": { "_supported_operations": ["Import", "count", "delete", "get"], + "action_payload_keys": { + "import": ["name", "password", "src"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -40664,6 +43015,7 @@ "password": {"no_log": True, "type": "str"}, "src": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "ssllogprofile": { @@ -40676,6 +43028,15 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "name", + "ssllogclauth", + "ssllogclauthfailures", + "sslloghs", + "sslloghsfailures", + ] + }, "add_payload_keys": [ "name", "ssllogclauth", @@ -40696,29 +43057,26 @@ "name": {"no_log": False, "type": "str"}, "ssllogclauth": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "ssllogclauthfailures": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sslloghs": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sslloghsfailures": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "name", "ssllogclauth", @@ -40737,6 +43095,24 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "batchingdelay", + "batchingdepth", + "cache", + "cachetimeout", + "httpmethod", + "insertclientcert", + "name", + "ocspurlresolvetimeout", + "producedattimeskew", + "respondercert", + "resptimeout", + "signingcert", + "trustresponder", + "usenonce", + ] + }, "add_payload_keys": [ "batchingdelay", "batchingdepth", @@ -40768,17 +43144,11 @@ "batchingdepth": {"no_log": False, "type": "float"}, "cache": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "cachetimeout": {"default": 1, "no_log": False, "type": "float"}, - "httpmethod": { - "choices": ["GET", "POST"], - "default": "POST", "no_log": False, "type": "str", }, + "cachetimeout": {"no_log": False, "type": "float"}, + "httpmethod": {"choices": ["GET", "POST"], "no_log": False, "type": "str"}, "insertclientcert": { "choices": ["NO", "YES"], "no_log": False, @@ -40786,7 +43156,7 @@ }, "name": {"no_log": False, "type": "str"}, "ocspurlresolvetimeout": {"no_log": False, "type": "float"}, - "producedattimeskew": {"default": 300, "no_log": False, "type": "float"}, + "producedattimeskew": {"no_log": False, "type": "float"}, "respondercert": {"no_log": False, "type": "str"}, "resptimeout": {"no_log": False, "type": "float"}, "signingcert": {"no_log": False, "type": "str"}, @@ -40794,6 +43164,7 @@ "url": {"no_log": False, "type": "str"}, "usenonce": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "batchingdelay", "batchingdepth", @@ -40814,6 +43185,36 @@ }, "sslparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "crlmemorysizemb", + "cryptodevdisablelimit", + "defaultprofile", + "denysslreneg", + "dropreqwithnohostheader", + "encrypttriggerpktcount", + "heterogeneoussslhw", + "hybridfipsmode", + "insertcertspace", + "insertionencoding", + "ndcppcompliancecertcheck", + "ocspcachesize", + "operationqueuelimit", + "pushenctriggertimeout", + "pushflag", + "quantumsize", + "sendclosenotify", + "sigdigesttype", + "snihttphostmatch", + "softwarecryptothreshold", + "sslierrorcache", + "sslimaxerrorcachemem", + "ssltriggertimeout", + "strictcachecks", + "undefactioncontrol", + "undefactiondata", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -40825,11 +43226,10 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "crlmemorysizemb": {"default": 256, "no_log": False, "type": "float"}, + "crlmemorysizemb": {"no_log": False, "type": "float"}, "cryptodevdisablelimit": {"no_log": False, "type": "float"}, "defaultprofile": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -40841,50 +43241,43 @@ "NO", "NONSECURE", ], - "default": "ALL", "no_log": False, "type": "str", }, "dropreqwithnohostheader": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "encrypttriggerpktcount": {"default": 45, "no_log": False, "type": "float"}, + "encrypttriggerpktcount": {"no_log": False, "type": "float"}, "heterogeneoussslhw": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "hybridfipsmode": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "insertcertspace": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "insertionencoding": { "choices": ["UTF-8", "Unicode"], - "default": "Unicode", "no_log": False, "type": "str", }, "ndcppcompliancecertcheck": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "ocspcachesize": {"default": 10, "no_log": False, "type": "float"}, - "operationqueuelimit": {"default": 150, "no_log": False, "type": "float"}, - "pushenctriggertimeout": {"default": 1, "no_log": False, "type": "float"}, + "ocspcachesize": {"no_log": False, "type": "float"}, + "operationqueuelimit": {"no_log": False, "type": "float"}, + "pushenctriggertimeout": {"no_log": False, "type": "float"}, "pushflag": {"no_log": False, "type": "float"}, "quantumsize": { "choices": ["16384", "4096", "8192"], @@ -40893,7 +43286,6 @@ }, "sendclosenotify": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, @@ -40917,39 +43309,32 @@ "RSA-SHA384", "RSA-SHA512", ], - "default": "ALL", "elements": "str", "no_log": False, "type": "list", }, "snihttphostmatch": { "choices": ["CERT", "NO", "STRICT"], - "default": "CERT", "no_log": False, "type": "str", }, "softwarecryptothreshold": {"no_log": False, "type": "float"}, "sslierrorcache": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sslimaxerrorcachemem": {"no_log": False, "type": "float"}, - "ssltriggertimeout": {"default": 100, "no_log": False, "type": "float"}, + "ssltriggertimeout": {"no_log": False, "type": "float"}, "strictcachecks": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "undefactioncontrol": { - "default": '"CLIENTAUTH"', - "no_log": False, - "type": "str", - }, - "undefactiondata": {"default": '"NOOP"', "no_log": False, "type": "str"}, + "undefactioncontrol": {"no_log": False, "type": "str"}, + "undefactiondata": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "crlmemorysizemb", "cryptodevdisablelimit", @@ -40981,6 +43366,7 @@ }, "sslpkcs12": { "_supported_operations": ["convert"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -40992,22 +43378,24 @@ "password_keys": ["password", "pempassphrase"], "primary_key": "", "readwrite_arguments": { - "Import": {"no_log": False, "type": "bool"}, "aes256": {"no_log": False, "type": "bool"}, "certfile": {"no_log": False, "type": "str"}, "des": {"no_log": False, "type": "bool"}, "des3": {"no_log": False, "type": "bool"}, "export": {"no_log": False, "type": "bool"}, + "import": {"no_log": False, "type": "bool"}, "keyfile": {"no_log": False, "type": "str"}, "outfile": {"no_log": False, "type": "str"}, "password": {"no_log": True, "type": "str"}, "pempassphrase": {"no_log": True, "type": "str"}, "pkcs12file": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "sslpkcs8": { "_supported_operations": ["convert"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -41020,15 +43408,11 @@ "primary_key": "", "readwrite_arguments": { "keyfile": {"no_log": False, "type": "str"}, - "keyform": { - "choices": ["DER", "PEM"], - "default": "PEM", - "no_log": False, - "type": "str", - }, + "keyform": {"choices": ["DER", "PEM"], "no_log": False, "type": "str"}, "password": {"no_log": True, "type": "str"}, "pkcs8file": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [], }, "sslpolicy": { @@ -41041,6 +43425,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name", "undefaction"]}, "add_payload_keys": ["action", "comment", "name", "rule", "undefaction"], "bindings": ["sslpolicylabel_sslpolicy_binding"], "bindprimary_key": "", @@ -41075,10 +43460,12 @@ }, "undefaction": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "comment", "name", "rule", "undefaction"], }, "sslpolicylabel": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["labelname", "type"], "bindings": ["sslpolicylabel_sslpolicy_binding"], "bindprimary_key": "", @@ -41113,10 +43500,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "sslpolicylabel_sslpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -41155,6 +43544,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "sslprofile": { @@ -41167,6 +43557,73 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "allowextendedmastersecret", + "allowunknownsni", + "alpnprotocol", + "ciphername", + "cipherpriority", + "cipherredirect", + "cipherurl", + "cleartextport", + "clientauth", + "clientauthuseboundcachain", + "clientcert", + "commonname", + "denysslreneg", + "dh", + "dhcount", + "dhekeyexchangewithpsk", + "dhfile", + "dhkeyexpsizelimit", + "dropreqwithnohostheader", + "encrypttriggerpktcount", + "ersa", + "ersacount", + "hsts", + "includesubdomains", + "insertionencoding", + "maxage", + "name", + "ocspstapling", + "preload", + "prevsessionkeylifetime", + "pushenctrigger", + "pushenctriggertimeout", + "pushflag", + "quantumsize", + "redirectportrewrite", + "sendclosenotify", + "serverauth", + "sessionkeylifetime", + "sessionticket", + "sessionticketkeydata", + "sessionticketkeyrefresh", + "sessionticketlifetime", + "sessreuse", + "sesstimeout", + "skipclientcertpolicycheck", + "snienable", + "snihttphostmatch", + "ssl3", + "sslimaxsessperserver", + "sslinterception", + "ssliocspcheck", + "sslireneg", + "ssllogprofile", + "sslredirect", + "ssltriggertimeout", + "strictcachecks", + "strictsigdigestcheck", + "tls1", + "tls11", + "tls12", + "tls13", + "tls13sessionticketsperauthcontext", + "zerorttearlydata", + ] + }, "add_payload_keys": [ "allowextendedmastersecret", "allowunknownsni", @@ -41248,19 +43705,16 @@ "readwrite_arguments": { "allowextendedmastersecret": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "allowunknownsni": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "alpnprotocol": { "choices": ["HTTP1.1", "HTTP2", "NONE"], - "default": "NONE", "no_log": False, "type": "str", }, @@ -41268,7 +43722,6 @@ "cipherpriority": {"no_log": False, "type": "float"}, "cipherredirect": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -41276,13 +43729,11 @@ "cleartextport": {"no_log": False, "type": "int"}, "clientauth": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "clientauthuseboundcachain": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -41300,59 +43751,46 @@ "NO", "NONSECURE", ], - "default": "ALL", - "no_log": False, - "type": "str", - }, - "dh": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, + "dh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "dhcount": {"no_log": False, "type": "float"}, "dhekeyexchangewithpsk": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "dhfile": {"no_log": False, "type": "str"}, "dhkeyexpsizelimit": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dropreqwithnohostheader": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "encrypttriggerpktcount": {"default": 45, "no_log": False, "type": "float"}, + "encrypttriggerpktcount": {"no_log": False, "type": "float"}, "ersa": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "ersacount": {"no_log": False, "type": "float"}, "hsts": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "includesubdomains": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "insertionencoding": { "choices": ["UTF-8", "Unicode"], - "default": "Unicode", "no_log": False, "type": "str", }, @@ -41360,23 +43798,17 @@ "name": {"no_log": False, "type": "str"}, "ocspstapling": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "preload": { - "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, + "preload": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "prevsessionkeylifetime": {"no_log": False, "type": "float"}, "pushenctrigger": { "choices": ["Always", "Ignore", "Merge", "Timer"], "no_log": False, "type": "str", }, - "pushenctriggertimeout": {"default": 1, "no_log": False, "type": "float"}, + "pushenctriggertimeout": {"no_log": False, "type": "float"}, "pushflag": {"no_log": False, "type": "float"}, "quantumsize": { "choices": ["16384", "4096", "8192"], @@ -41385,84 +43817,71 @@ }, "redirectportrewrite": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sendclosenotify": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "serverauth": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "sessionkeylifetime": {"default": 3000, "no_log": False, "type": "float"}, + "sessionkeylifetime": {"no_log": False, "type": "float"}, "sessionticket": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sessionticketkeydata": {"no_log": True, "type": "str"}, "sessionticketkeyrefresh": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "sessionticketlifetime": {"default": 300, "no_log": False, "type": "float"}, + "sessionticketlifetime": {"no_log": False, "type": "float"}, "sessreuse": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "sesstimeout": {"no_log": False, "type": "float"}, "skipclientcertpolicycheck": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "snienable": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "snihttphostmatch": { "choices": ["CERT", "NO", "STRICT"], - "default": "CERT", "no_log": False, "type": "str", }, "ssl3": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "sslimaxsessperserver": {"default": 10, "no_log": False, "type": "float"}, + "sslimaxsessperserver": {"no_log": False, "type": "float"}, "sslinterception": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "ssliocspcheck": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "sslireneg": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -41533,65 +43952,53 @@ }, "sslprofiletype": { "choices": ["BackEnd", "FrontEnd", "QUIC-FrontEnd"], - "default": "FrontEnd", "no_log": False, "type": "str", }, "sslredirect": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "ssltriggertimeout": {"default": 100, "no_log": False, "type": "float"}, + "ssltriggertimeout": {"no_log": False, "type": "float"}, "strictcachecks": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "strictsigdigestcheck": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "tls1": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tls11": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tls12": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tls13": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "tls13sessionticketsperauthcontext": { - "default": 1, - "no_log": False, - "type": "float", - }, + "tls13sessionticketsperauthcontext": {"no_log": False, "type": "float"}, "zerorttearlydata": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "allowextendedmastersecret", "allowunknownsni", @@ -41660,6 +44067,7 @@ }, "sslprofile_ecccurve_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["cipherpriority", "ecccurvename", "name"], "bindprimary_key": "ecccurvename", "delete_arg_keys": ["ecccurvename"], @@ -41678,10 +44086,12 @@ }, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslprofile_sslcertkey_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["cipherpriority", "name", "sslicacertkey"], "bindprimary_key": "sslicacertkey", "delete_arg_keys": ["sslicacertkey"], @@ -41696,10 +44106,12 @@ "name": {"no_log": False, "type": "str"}, "sslicacertkey": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslprofile_sslcipher_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ciphername", "cipherpriority", "name"], "bindprimary_key": "ciphername", "delete_arg_keys": ["ciphername"], @@ -41716,10 +44128,12 @@ "description": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["ciphername", "ciphername", "cipherpriority"], }, "sslprofile_sslciphersuite_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ciphername", "cipherpriority", "name"], "bindprimary_key": "ciphername", "delete_arg_keys": ["ciphername"], @@ -41735,10 +44149,27 @@ "description": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["ciphername", "ciphername", "cipherpriority"], }, "sslrsakey": { "_supported_operations": ["create"], + "action_payload_keys": { + "create": [ + "aes256", + "bits", + "des", + "des3", + "exponent", + "keyfile", + "keyform", + "password", + "pkcs8", + ], + "import": [], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -41754,26 +44185,54 @@ "bits": {"no_log": False, "type": "float"}, "des": {"no_log": False, "type": "bool"}, "des3": {"no_log": False, "type": "bool"}, - "exponent": { - "choices": ["3", "F4"], - "default": "F4", - "no_log": False, - "type": "str", - }, + "exponent": {"choices": ["3", "F4"], "no_log": False, "type": "str"}, "keyfile": {"no_log": False, "type": "str"}, - "keyform": { - "choices": ["DER", "PEM"], - "default": "PEM", - "no_log": False, - "type": "str", - }, + "keyform": {"choices": ["DER", "PEM"], "no_log": False, "type": "str"}, "password": {"no_log": True, "type": "str"}, "pkcs8": {"no_log": False, "type": "bool"}, }, + "singleton": True, "update_payload_keys": [], }, "sslservice": { "_supported_operations": ["count", "get", "get-byname", "unset", "update"], + "action_payload_keys": { + "unset": [ + "cipherredirect", + "cipherurl", + "clientauth", + "clientcert", + "commonname", + "dh", + "dhcount", + "dhfile", + "dhkeyexpsizelimit", + "dtls1", + "dtls12", + "dtlsprofilename", + "ersa", + "ersacount", + "ocspstapling", + "redirectportrewrite", + "sendclosenotify", + "serverauth", + "servicename", + "sessreuse", + "sesstimeout", + "snienable", + "ssl2", + "ssl3", + "sslprofile", + "sslredirect", + "sslv2redirect", + "sslv2url", + "strictsigdigestcheck", + "tls1", + "tls11", + "tls12", + "tls13", + ] + }, "add_payload_keys": [], "bindings": [ "sslservice_ecccurve_binding", @@ -41797,14 +44256,12 @@ "readwrite_arguments": { "cipherredirect": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "cipherurl": {"no_log": False, "type": "str"}, "clientauth": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -41814,43 +44271,33 @@ "type": "str", }, "commonname": {"no_log": False, "type": "str"}, - "dh": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, + "dh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "dhcount": {"no_log": False, "type": "float"}, "dhfile": {"no_log": False, "type": "str"}, "dhkeyexpsizelimit": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dtls1": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "dtls12": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dtlsprofilename": {"no_log": False, "type": "str"}, "ersa": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "ersacount": {"no_log": False, "type": "float"}, "ocspstapling": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -41861,52 +44308,44 @@ }, "redirectportrewrite": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sendclosenotify": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "serverauth": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "servicename": {"no_log": False, "type": "str"}, "sessreuse": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "sesstimeout": {"default": 300, "no_log": False, "type": "float"}, + "sesstimeout": {"no_log": False, "type": "float"}, "snienable": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "ssl2": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "ssl3": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "sslprofile": {"no_log": False, "type": "str"}, "sslredirect": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -42056,42 +44495,37 @@ }, "sslv2redirect": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sslv2url": {"no_log": False, "type": "str"}, "strictsigdigestcheck": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "tls1": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tls11": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tls12": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tls13": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "cipherredirect", "cipherurl", @@ -42131,6 +44565,7 @@ }, "sslservice_ecccurve_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ecccurvename", "servicename"], "bindprimary_key": "ecccurvename", "delete_arg_keys": ["ecccurvename"], @@ -42148,10 +44583,12 @@ }, "servicename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslservice_sslcertkey_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "ca", "certkeyname", @@ -42194,10 +44631,12 @@ "skipcaname": {"no_log": False, "type": "bool"}, "snicert": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "sslservice_sslcipher_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ciphername", "servicename"], "bindprimary_key": "ciphername", "delete_arg_keys": ["ciphername"], @@ -42213,10 +44652,12 @@ "description": {"no_log": False, "type": "str"}, "servicename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslservice_sslciphersuite_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ciphername", "servicename"], "bindprimary_key": "ciphername", "delete_arg_keys": ["ciphername"], @@ -42231,10 +44672,12 @@ "description": {"no_log": False, "type": "str"}, "servicename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslservice_sslpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -42273,10 +44716,30 @@ "priority": {"no_log": False, "type": "float"}, "servicename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslservicegroup": { "_supported_operations": ["count", "get", "get-byname", "unset", "update"], + "action_payload_keys": { + "unset": [ + "commonname", + "ocspstapling", + "sendclosenotify", + "serverauth", + "servicegroupname", + "sessreuse", + "sesstimeout", + "snienable", + "ssl3", + "sslprofile", + "strictsigdigestcheck", + "tls1", + "tls11", + "tls12", + "tls13", + ] + }, "add_payload_keys": [], "bindings": [ "sslservicegroup_ecccurve_binding", @@ -42296,39 +44759,33 @@ "commonname": {"no_log": False, "type": "str"}, "ocspstapling": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sendclosenotify": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "serverauth": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "servicegroupname": {"no_log": False, "type": "str"}, "sessreuse": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "sesstimeout": {"default": 300, "no_log": False, "type": "float"}, + "sesstimeout": {"no_log": False, "type": "float"}, "snienable": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "ssl3": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -42399,35 +44856,31 @@ }, "strictsigdigestcheck": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "tls1": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tls11": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tls12": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tls13": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "commonname", "ocspstapling", @@ -42448,6 +44901,7 @@ }, "sslservicegroup_ecccurve_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ecccurvename", "servicegroupname"], "bindprimary_key": "ecccurvename", "delete_arg_keys": ["ecccurvename"], @@ -42465,10 +44919,12 @@ }, "servicegroupname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslservicegroup_sslcertkey_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "ca", "certkeyname", @@ -42508,10 +44964,12 @@ "servicegroupname": {"no_log": False, "type": "str"}, "snicert": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "sslservicegroup_sslcipher_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ciphername", "servicegroupname"], "bindprimary_key": "ciphername", "delete_arg_keys": ["ciphername"], @@ -42527,10 +44985,12 @@ "description": {"no_log": False, "type": "str"}, "servicegroupname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslservicegroup_sslciphersuite_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ciphername", "servicegroupname"], "bindprimary_key": "ciphername", "delete_arg_keys": ["ciphername"], @@ -42545,10 +45005,54 @@ "description": {"no_log": False, "type": "str"}, "servicegroupname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslvserver": { "_supported_operations": ["count", "get", "get-byname", "unset", "update"], + "action_payload_keys": { + "unset": [ + "cipherredirect", + "cipherurl", + "cleartextport", + "clientauth", + "clientcert", + "dh", + "dhcount", + "dhekeyexchangewithpsk", + "dhfile", + "dhkeyexpsizelimit", + "dtls1", + "dtls12", + "dtlsprofilename", + "ersa", + "ersacount", + "hsts", + "includesubdomains", + "maxage", + "ocspstapling", + "preload", + "redirectportrewrite", + "sendclosenotify", + "sessreuse", + "sesstimeout", + "snienable", + "ssl2", + "ssl3", + "sslprofile", + "sslredirect", + "sslv2redirect", + "sslv2url", + "strictsigdigestcheck", + "tls1", + "tls11", + "tls12", + "tls13", + "tls13sessionticketsperauthcontext", + "vservername", + "zerorttearlydata", + ] + }, "add_payload_keys": [], "bindings": [ "sslvserver_appfwpolicy_binding", @@ -42577,7 +45081,6 @@ "readwrite_arguments": { "cipherredirect": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -42585,7 +45088,6 @@ "cleartextport": {"no_log": False, "type": "int"}, "clientauth": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -42594,71 +45096,53 @@ "no_log": False, "type": "str", }, - "dh": { - "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, + "dh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "dhcount": {"no_log": False, "type": "float"}, "dhekeyexchangewithpsk": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "dhfile": {"no_log": False, "type": "str"}, "dhkeyexpsizelimit": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dtls1": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "dtls12": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "dtlsprofilename": {"no_log": False, "type": "str"}, "ersa": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "ersacount": {"no_log": False, "type": "float"}, "hsts": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "includesubdomains": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, "maxage": {"no_log": False, "type": "float"}, "ocspstapling": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", - "no_log": False, - "type": "str", - }, - "preload": { - "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, + "preload": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "pushenctrigger": { "choices": ["Always", "Ignore", "Merge", "Timer"], "no_log": False, @@ -42666,51 +45150,43 @@ }, "redirectportrewrite": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sendclosenotify": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "sessreuse": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "sesstimeout": {"default": 120, "no_log": False, "type": "float"}, + "sesstimeout": {"no_log": False, "type": "float"}, "snienable": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "ssl2": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "ssl3": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "sslprofile": {"no_log": False, "type": "str"}, "sslredirect": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "sslv2redirect": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -42941,47 +45417,38 @@ }, "strictsigdigestcheck": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "tls1": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tls11": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tls12": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "tls13": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "tls13sessionticketsperauthcontext": { - "default": 1, - "no_log": False, - "type": "float", - }, + "tls13sessionticketsperauthcontext": {"no_log": False, "type": "float"}, "vservername": {"no_log": False, "type": "str"}, "zerorttearlydata": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "cipherredirect", "cipherurl", @@ -43027,6 +45494,7 @@ }, "sslvserver_ecccurve_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ecccurvename", "vservername"], "bindprimary_key": "ecccurvename", "delete_arg_keys": ["ecccurvename"], @@ -43044,10 +45512,12 @@ }, "vservername": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslvserver_sslcertkey_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "ca", "certkeyname", @@ -43090,10 +45560,12 @@ "snicert": {"no_log": False, "type": "bool"}, "vservername": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslvserver_sslcertkeybundle_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["certkeybundlename", "snicertkeybundle", "vservername"], "bindprimary_key": "certkeybundlename", "delete_arg_keys": ["certkeybundlename", "snicertkeybundle"], @@ -43108,10 +45580,12 @@ "snicertkeybundle": {"no_log": False, "type": "bool"}, "vservername": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslvserver_sslcipher_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ciphername", "vservername"], "bindprimary_key": "ciphername", "delete_arg_keys": ["ciphername"], @@ -43127,10 +45601,12 @@ "description": {"no_log": False, "type": "str"}, "vservername": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslvserver_sslciphersuite_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["ciphername", "vservername"], "bindprimary_key": "ciphername", "delete_arg_keys": ["ciphername"], @@ -43145,10 +45621,12 @@ "description": {"no_log": False, "type": "str"}, "vservername": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslvserver_sslpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -43189,16 +45667,22 @@ "priority": {"no_log": False, "type": "float"}, "type": { "choices": ["CLIENTHELLO_REQ", "INTERCEPT_REQ", "REQUEST"], - "default": "REQUEST", "no_log": False, "type": "str", }, "vservername": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "sslwrapkey": { "_supported_operations": ["count", "create", "delete", "get"], + "action_payload_keys": { + "create": ["password", "salt", "wrapkeyname"], + "import": [], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -43214,6 +45698,7 @@ "salt": {"no_log": True, "type": "str"}, "wrapkeyname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "streamidentifier": { @@ -43226,6 +45711,23 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "acceptancethreshold", + "appflowlog", + "breachthreshold", + "interval", + "maxtransactionthreshold", + "mintransactionthreshold", + "name", + "samplecount", + "selectorname", + "snmptrap", + "sort", + "trackackonlypackets", + "tracktransactions", + ] + }, "add_payload_keys": [ "acceptancethreshold", "appflowlog", @@ -43254,20 +45756,18 @@ "acceptancethreshold": {"no_log": False, "type": "str"}, "appflowlog": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "breachthreshold": {"no_log": False, "type": "float"}, - "interval": {"default": 1, "no_log": False, "type": "float"}, + "interval": {"no_log": False, "type": "float"}, "maxtransactionthreshold": {"no_log": False, "type": "float"}, "mintransactionthreshold": {"no_log": False, "type": "float"}, "name": {"no_log": False, "type": "str"}, - "samplecount": {"default": 1, "no_log": False, "type": "float"}, + "samplecount": {"no_log": False, "type": "float"}, "selectorname": {"no_log": False, "type": "str"}, "snmptrap": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -43280,23 +45780,21 @@ "RESPTIME", "RESPTIME_BREACHES", ], - "default": "REQUESTS", "no_log": False, "type": "str", }, "trackackonlypackets": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "tracktransactions": { "choices": ["NONE", "RESPTIME"], - "default": "NONE", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "acceptancethreshold", "appflowlog", @@ -43322,6 +45820,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "rule"], "bindings": [], "bindprimary_key": "", @@ -43336,10 +45835,12 @@ "name": {"no_log": False, "type": "str"}, "rule": {"elements": "str", "no_log": False, "type": "list"}, }, + "singleton": False, "update_payload_keys": ["name", "rule"], }, "streamsession": { "_supported_operations": ["clear"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -43351,10 +45852,29 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"name": {"no_log": False, "type": "str"}}, + "singleton": True, "update_payload_keys": [], }, "subscribergxinterface": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "cerrequesttimeout", + "healthcheck", + "healthcheckttl", + "holdonsubscriberabsence", + "negativettl", + "negativettllimitedsuccess", + "purgesdbongxfailure", + "requestretryattempts", + "requesttimeout", + "revalidationtimeout", + "service", + "servicepathavp", + "servicepathvendorid", + "vserver", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -43367,24 +45887,17 @@ "primary_key": "", "readwrite_arguments": { "cerrequesttimeout": {"no_log": False, "type": "float"}, - "healthcheck": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, - "healthcheckttl": {"default": 30, "no_log": False, "type": "float"}, + "healthcheck": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "healthcheckttl": {"no_log": False, "type": "float"}, "holdonsubscriberabsence": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, - "idlettl": {"default": 900, "no_log": False, "type": "float"}, - "negativettl": {"default": 600, "no_log": False, "type": "float"}, + "idlettl": {"no_log": False, "type": "float"}, + "negativettl": {"no_log": False, "type": "float"}, "negativettllimitedsuccess": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, @@ -43392,18 +45905,18 @@ "pcrfrealm": {"no_log": False, "type": "str"}, "purgesdbongxfailure": { "choices": ["NO", "YES"], - "default": "NO", "no_log": False, "type": "str", }, - "requestretryattempts": {"default": 3, "no_log": False, "type": "float"}, - "requesttimeout": {"default": 10, "no_log": False, "type": "float"}, + "requestretryattempts": {"no_log": False, "type": "float"}, + "requesttimeout": {"no_log": False, "type": "float"}, "revalidationtimeout": {"no_log": False, "type": "float"}, "service": {"no_log": False, "type": "str"}, "servicepathavp": {"elements": "int", "no_log": False, "type": "list"}, "servicepathvendorid": {"no_log": False, "type": "float"}, "vserver": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "cerrequesttimeout", "healthcheck", @@ -43424,6 +45937,9 @@ }, "subscriberparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": ["idleaction", "idlettl", "interfacetype", "keytype"] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -43437,14 +45953,12 @@ "readwrite_arguments": { "idleaction": { "choices": ["ccrTerminate", "ccrUpdate", "delete"], - "default": "ccrTerminate", "no_log": False, "type": "str", }, "idlettl": {"no_log": False, "type": "float"}, "interfacetype": { "choices": ["GxOnly", "None", "RadiusAndGx", "RadiusOnly"], - "default": "None", "no_log": False, "type": "str", }, @@ -43453,13 +45967,9 @@ "no_log": False, "type": "list", }, - "keytype": { - "choices": ["IP", "IPANDVLAN"], - "default": "IP", - "no_log": False, - "type": "str", - }, + "keytype": {"choices": ["IP", "IPANDVLAN"], "no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "idleaction", "idlettl", @@ -43470,6 +45980,7 @@ }, "subscriberprofile": { "_supported_operations": ["add", "count", "delete", "get", "unset", "update"], + "action_payload_keys": {"unset": ["ip", "servicepath"]}, "add_payload_keys": [ "ip", "servicepath", @@ -43499,6 +46010,7 @@ "subscriptionidvalue": {"no_log": False, "type": "str"}, "vlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "ip", "servicepath", @@ -43510,6 +46022,7 @@ }, "subscriberradiusinterface": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["radiusinterimasstart"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -43524,15 +46037,16 @@ "listeningservice": {"no_log": False, "type": "str"}, "radiusinterimasstart": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": ["listeningservice", "radiusinterimasstart"], }, "subscribersessions": { "_supported_operations": ["clear", "count", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -43548,10 +46062,12 @@ "nodeid": {"no_log": False, "type": "float"}, "vlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "systemadmuserinfo": { "_supported_operations": ["update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -43563,6 +46079,7 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"username": {"no_log": False, "type": "str"}}, + "singleton": True, "update_payload_keys": ["username"], }, "systembackup": { @@ -43575,6 +46092,18 @@ "get-byname", "restore", ], + "action_payload_keys": { + "create": [ + "comment", + "filename", + "includekernel", + "level", + "uselocaltimezone", + ], + "import": [], + "switch": [], + "unset": [], + }, "add_payload_keys": ["filename"], "bindings": [], "bindprimary_key": "", @@ -43588,21 +46117,12 @@ "readwrite_arguments": { "comment": {"no_log": False, "type": "str"}, "filename": {"no_log": False, "type": "str"}, - "includekernel": { - "choices": ["NO", "YES"], - "default": "NO", - "no_log": False, - "type": "str", - }, - "level": { - "choices": ["basic", "full"], - "default": "basic", - "no_log": False, - "type": "str", - }, + "includekernel": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "level": {"choices": ["basic", "full"], "no_log": False, "type": "str"}, "skipbackup": {"no_log": False, "type": "bool"}, "uselocaltimezone": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "systemcmdpolicy": { @@ -43614,6 +46134,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["action", "cmdspec", "policyname"], "bindings": [], "bindprimary_key": "", @@ -43629,10 +46150,12 @@ "cmdspec": {"no_log": False, "type": "str"}, "policyname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "cmdspec", "policyname"], }, "systemcollectionparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": {"unset": ["datapath", "loglevel"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -43648,10 +46171,12 @@ "datapath": {"no_log": False, "type": "str"}, "loglevel": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": ["datapath", "loglevel"], }, "systemcpuparam": { "_supported_operations": ["count", "get", "unset", "update"], + "action_payload_keys": {"unset": ["pemode"]}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -43669,10 +46194,12 @@ "type": "str", } }, + "singleton": False, "update_payload_keys": ["pemode"], }, "systementitydata": { "_supported_operations": ["delete", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -43707,7 +46234,7 @@ "counters": {"no_log": False, "type": "str"}, "datasource": {"no_log": False, "type": "str"}, "endtime": {"no_log": False, "type": "str"}, - "last": {"default": 1, "no_log": False, "type": "int"}, + "last": {"no_log": False, "type": "int"}, "name": {"no_log": False, "type": "str"}, "starttime": {"no_log": False, "type": "str"}, "type": {"no_log": False, "type": "str"}, @@ -43717,10 +46244,12 @@ "type": "str", }, }, + "singleton": True, "update_payload_keys": [], }, "systemextramgmtcpu": { "_supported_operations": ["disable", "enable", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -43732,10 +46261,12 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"nodeid": {"no_log": False, "type": "float"}}, + "singleton": True, "update_payload_keys": [], }, "systemfile": { "_supported_operations": ["add", "count", "delete", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["filecontent", "fileencoding", "filelocation", "filename"], "bindings": [], "bindprimary_key": "", @@ -43748,14 +46279,16 @@ "primary_key": "filename", "readwrite_arguments": { "filecontent": {"no_log": False, "type": "str"}, - "fileencoding": {"default": '"BASE64"', "no_log": False, "type": "str"}, + "fileencoding": {"no_log": False, "type": "str"}, "filelocation": {"no_log": False, "type": "str"}, "filename": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "systemglobal_auditnslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "nextfactor", @@ -43866,7 +46399,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -43875,10 +46407,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "systemglobal_auditsyslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "nextfactor", @@ -43989,7 +46523,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -43998,10 +46531,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "systemglobal_authenticationldappolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "nextfactor", @@ -44112,7 +46647,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -44121,10 +46655,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "systemglobal_authenticationlocalpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "nextfactor", @@ -44235,7 +46771,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -44244,10 +46779,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "systemglobal_authenticationpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "nextfactor", @@ -44358,7 +46895,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -44367,10 +46903,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "systemglobal_authenticationradiuspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "nextfactor", @@ -44481,7 +47019,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -44490,10 +47027,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "systemglobal_authenticationtacacspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "nextfactor", @@ -44604,7 +47143,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -44613,6 +47151,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "systemgroup": { @@ -44625,6 +47164,14 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "allowedmanagementinterface", + "groupname", + "promptstring", + "timeout", + ] + }, "add_payload_keys": [ "allowedmanagementinterface", "groupname", @@ -44703,6 +47250,7 @@ }, "timeout": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "allowedmanagementinterface", "groupname", @@ -44712,6 +47260,7 @@ }, "systemgroup_nspartition_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["groupname", "partitionname"], "bindprimary_key": "partitionname", "delete_arg_keys": ["partitionname"], @@ -44725,10 +47274,12 @@ "groupname": {"no_log": False, "type": "str"}, "partitionname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "systemgroup_systemcmdpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["groupname", "policyname", "priority"], "bindprimary_key": "policyname", "delete_arg_keys": ["policyname"], @@ -44743,10 +47294,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "systemgroup_systemuser_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["groupname", "username"], "bindprimary_key": "username", "delete_arg_keys": ["username"], @@ -44760,10 +47313,12 @@ "groupname": {"no_log": False, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "systemhwerror": { "_supported_operations": ["check"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -44775,10 +47330,12 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"diskcheck": {"no_log": False, "type": "bool"}}, + "singleton": True, "update_payload_keys": [], }, "systemkek": { "_supported_operations": ["change"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -44792,10 +47349,34 @@ "readwrite_arguments": { "level": {"choices": ["basic", "extended"], "no_log": False, "type": "str"} }, + "singleton": True, "update_payload_keys": [], }, "systemparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "basicauth", + "cliloglevel", + "doppler", + "fipsusermode", + "forcepasswordchange", + "googleanalytics", + "localauth", + "maxsessionperuser", + "minpasswordlen", + "natpcbforceflushlimit", + "natpcbrstontimeout", + "promptstring", + "rbaonresponse", + "reauthonauthparamchange", + "removesensitivefiles", + "restrictedtimeout", + "strongpassword", + "timeout", + "totalauthtimeout", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -44809,7 +47390,6 @@ "readwrite_arguments": { "basicauth": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -44824,87 +47404,72 @@ "NOTICE", "WARNING", ], - "default": "INFORMATIONAL", "no_log": False, "type": "str", }, "doppler": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "fipsusermode": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "forcepasswordchange": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "googleanalytics": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "localauth": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "maxsessionperuser": {"no_log": False, "type": "float"}, "minpasswordlen": {"no_log": False, "type": "float"}, - "natpcbforceflushlimit": { - "default": 2147483647, - "no_log": False, - "type": "float", - }, + "natpcbforceflushlimit": {"no_log": False, "type": "float"}, "natpcbrstontimeout": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "promptstring": {"no_log": False, "type": "str"}, "rbaonresponse": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "reauthonauthparamchange": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "removesensitivefiles": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "restrictedtimeout": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "strongpassword": { "choices": ["disabled", "enableall", "enablelocal"], - "default": "disabled", "no_log": False, "type": "str", }, "timeout": {"no_log": False, "type": "float"}, - "totalauthtimeout": {"default": 20, "no_log": False, "type": "float"}, + "totalauthtimeout": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": [ "basicauth", "cliloglevel", @@ -44929,6 +47494,12 @@ }, "systemrestorepoint": { "_supported_operations": ["count", "create", "delete", "get", "get-byname"], + "action_payload_keys": { + "create": ["filename"], + "import": [], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -44940,10 +47511,12 @@ "password_keys": [], "primary_key": "filename", "readwrite_arguments": {"filename": {"no_log": False, "type": "str"}}, + "singleton": False, "update_payload_keys": [], }, "systemsession": { "_supported_operations": ["count", "get", "get-byname", "kill"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -44958,10 +47531,16 @@ "all": {"no_log": False, "type": "bool"}, "sid": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "systemsshkey": { "_supported_operations": ["Import", "delete", "get"], + "action_payload_keys": { + "import": ["name", "src", "sshkeytype"], + "switch": [], + "unset": [], + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -44981,6 +47560,7 @@ "type": "str", }, }, + "singleton": True, "update_payload_keys": [], }, "systemuser": { @@ -44993,6 +47573,17 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "allowedmanagementinterface", + "externalauth", + "logging", + "maxsession", + "promptstring", + "timeout", + "username", + ] + }, "add_payload_keys": [ "allowedmanagementinterface", "externalauth", @@ -45024,13 +47615,11 @@ }, "externalauth": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "logging": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -45072,6 +47661,7 @@ "timeout": {"no_log": False, "type": "float"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "allowedmanagementinterface", "externalauth", @@ -45085,6 +47675,7 @@ }, "systemuser_nspartition_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["partitionname", "username"], "bindprimary_key": "partitionname", "delete_arg_keys": ["partitionname"], @@ -45098,10 +47689,12 @@ "partitionname": {"no_log": False, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "systemuser_systemcmdpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["policyname", "priority", "username"], "bindprimary_key": "policyname", "delete_arg_keys": ["policyname"], @@ -45116,6 +47709,7 @@ "priority": {"no_log": False, "type": "float"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "tmformssoaction": { @@ -45128,6 +47722,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["name", "namevaluepair", "nvtype", "responsesize", "submitmethod"] + }, "add_payload_keys": [ "actionurl", "name", @@ -45154,21 +47751,20 @@ "namevaluepair": {"no_log": False, "type": "str"}, "nvtype": { "choices": ["DYNAMIC", "STATIC"], - "default": "DYNAMIC", "no_log": False, "type": "str", }, "passwdfield": {"no_log": False, "type": "str"}, - "responsesize": {"default": 8096, "no_log": False, "type": "float"}, + "responsesize": {"no_log": False, "type": "float"}, "ssosuccessrule": {"no_log": False, "type": "str"}, "submitmethod": { "choices": ["GET", "POST"], - "default": "GET", "no_log": False, "type": "str", }, "userfield": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "actionurl", "name", @@ -45183,6 +47779,7 @@ }, "tmglobal_auditnslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "policyname", "priority"], "bindprimary_key": "policyname", "delete_arg_keys": ["policyname"], @@ -45197,10 +47794,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "tmglobal_auditsyslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "policyname", "priority"], "bindprimary_key": "policyname", "delete_arg_keys": ["policyname"], @@ -45215,10 +47814,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "tmglobal_tmsessionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "policyname", "priority"], "bindprimary_key": "policyname", "delete_arg_keys": ["policyname"], @@ -45316,10 +47917,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "tmglobal_tmtrafficpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "policyname", "priority"], "bindprimary_key": "policyname", "delete_arg_keys": ["policyname"], @@ -45337,7 +47940,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -45355,6 +47957,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "tmsamlssoprofile": { @@ -45367,6 +47970,73 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "attribute1", + "attribute10", + "attribute10format", + "attribute10friendlyname", + "attribute11", + "attribute11format", + "attribute11friendlyname", + "attribute12", + "attribute12format", + "attribute12friendlyname", + "attribute13", + "attribute13format", + "attribute13friendlyname", + "attribute14", + "attribute14format", + "attribute14friendlyname", + "attribute15", + "attribute15format", + "attribute15friendlyname", + "attribute16", + "attribute16format", + "attribute16friendlyname", + "attribute1format", + "attribute1friendlyname", + "attribute2", + "attribute2format", + "attribute2friendlyname", + "attribute3", + "attribute3format", + "attribute3friendlyname", + "attribute4", + "attribute4format", + "attribute4friendlyname", + "attribute5", + "attribute5format", + "attribute5friendlyname", + "attribute6", + "attribute6format", + "attribute6friendlyname", + "attribute7", + "attribute7format", + "attribute7friendlyname", + "attribute8", + "attribute8format", + "attribute8friendlyname", + "attribute9", + "attribute9format", + "attribute9friendlyname", + "audience", + "digestmethod", + "encryptassertion", + "encryptionalgorithm", + "name", + "nameidexpr", + "nameidformat", + "relaystaterule", + "samlissuername", + "samlsigningcertname", + "samlspcertname", + "sendpassword", + "signassertion", + "signaturealg", + "skewtime", + ] + }, "add_payload_keys": [ "assertionconsumerserviceurl", "attribute1", @@ -45591,19 +48261,16 @@ "audience": {"no_log": False, "type": "str"}, "digestmethod": { "choices": ["SHA1", "SHA256"], - "default": "SHA256", "no_log": False, "type": "str", }, "encryptassertion": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "encryptionalgorithm": { "choices": ["AES128", "AES192", "AES256", "DES3"], - "default": "AES256", "no_log": False, "type": "str", }, @@ -45620,7 +48287,6 @@ "persistent", "transient", ], - "default": "transient", "no_log": False, "type": "str", }, @@ -45628,26 +48294,20 @@ "samlissuername": {"no_log": False, "type": "str"}, "samlsigningcertname": {"no_log": False, "type": "str"}, "samlspcertname": {"no_log": False, "type": "str"}, - "sendpassword": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "sendpassword": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "signassertion": { "choices": ["ASSERTION", "BOTH", "NONE", "RESPONSE"], - "default": "ASSERTION", "no_log": False, "type": "str", }, "signaturealg": { "choices": ["RSA-SHA1", "RSA-SHA256"], - "default": "RSA-SHA256", "no_log": False, "type": "str", }, - "skewtime": {"default": 5, "no_log": False, "type": "float"}, + "skewtime": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "assertionconsumerserviceurl", "attribute1", @@ -45741,6 +48401,21 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "defaultauthorizationaction", + "homepage", + "httponlycookie", + "kcdaccount", + "name", + "persistentcookie", + "persistentcookievalidity", + "sesstimeout", + "sso", + "ssocredential", + "ssodomain", + ] + }, "add_payload_keys": [ "defaultauthorizationaction", "homepage", @@ -45772,7 +48447,6 @@ "homepage": {"no_log": False, "type": "str"}, "httponlycookie": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, @@ -45785,12 +48459,7 @@ }, "persistentcookievalidity": {"no_log": False, "type": "float"}, "sesstimeout": {"no_log": False, "type": "float"}, - "sso": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "ssocredential": { "choices": ["PRIMARY", "SECONDARY"], "no_log": False, @@ -45798,6 +48467,7 @@ }, "ssodomain": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "defaultauthorizationaction", "homepage", @@ -45814,6 +48484,20 @@ }, "tmsessionparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "defaultauthorizationaction", + "homepage", + "httponlycookie", + "kcdaccount", + "persistentcookie", + "persistentcookievalidity", + "sesstimeout", + "sso", + "ssocredential", + "ssodomain", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -45827,40 +48511,32 @@ "readwrite_arguments": { "defaultauthorizationaction": { "choices": ["ALLOW", "DENY"], - "default": "DENY", "no_log": False, "type": "str", }, - "homepage": {"default": '"None"', "no_log": False, "type": "str"}, + "homepage": {"no_log": False, "type": "str"}, "httponlycookie": { "choices": ["NO", "YES"], - "default": "YES", "no_log": False, "type": "str", }, "kcdaccount": {"no_log": False, "type": "str"}, "persistentcookie": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "persistentcookievalidity": {"no_log": False, "type": "float"}, - "sesstimeout": {"default": 30, "no_log": False, "type": "float"}, - "sso": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "sesstimeout": {"no_log": False, "type": "float"}, + "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "ssocredential": { "choices": ["PRIMARY", "SECONDARY"], - "default": "PRIMARY", "no_log": False, "type": "str", }, "ssodomain": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "defaultauthorizationaction", "homepage", @@ -45884,6 +48560,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["action", "name", "rule"]}, "add_payload_keys": ["action", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -45899,6 +48576,7 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "name", "rule"], }, "tmtrafficaction": { @@ -45911,6 +48589,16 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "forcedtimeout", + "kcdaccount", + "name", + "passwdexpression", + "persistentcookie", + "userexpression", + ] + }, "add_payload_keys": [ "apptimeout", "forcedtimeout", @@ -45948,7 +48636,7 @@ "no_log": False, "type": "str", }, - "kcdaccount": {"default": '"None"', "no_log": False, "type": "str"}, + "kcdaccount": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "passwdexpression": {"no_log": False, "type": "str"}, "persistentcookie": { @@ -45960,6 +48648,7 @@ "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "userexpression": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "apptimeout", "forcedtimeout", @@ -45985,6 +48674,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["action", "name", "rule"]}, "add_payload_keys": ["action", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -46000,10 +48690,12 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "name", "rule"], }, "traceroute": { "_supported_operations": ["Traceroute"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -46015,26 +48707,28 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "M": {"default": 1, "no_log": False, "type": "float"}, + "M": {"no_log": False, "type": "float"}, "P": {"no_log": False, "type": "str"}, "S": {"no_log": False, "type": "bool"}, "T": {"no_log": False, "type": "float"}, "host": {"no_log": False, "type": "str"}, - "m": {"default": 64, "no_log": False, "type": "int"}, + "m": {"no_log": False, "type": "int"}, "n": {"no_log": False, "type": "bool"}, - "p": {"default": 33434, "no_log": False, "type": "int"}, - "packetlen": {"default": 44, "no_log": False, "type": "int"}, - "q": {"default": 3, "no_log": False, "type": "int"}, + "p": {"no_log": False, "type": "int"}, + "packetlen": {"no_log": False, "type": "int"}, + "q": {"no_log": False, "type": "int"}, "r": {"no_log": False, "type": "bool"}, "s": {"no_log": False, "type": "str"}, "t": {"no_log": False, "type": "int"}, "v": {"no_log": False, "type": "bool"}, - "w": {"default": 5, "no_log": False, "type": "int"}, + "w": {"no_log": False, "type": "int"}, }, + "singleton": True, "update_payload_keys": [], }, "traceroute6": { "_supported_operations": ["Traceroute6"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -46049,16 +48743,17 @@ "I": {"no_log": False, "type": "bool"}, "T": {"no_log": False, "type": "float"}, "host": {"no_log": False, "type": "str"}, - "m": {"default": 64, "no_log": False, "type": "int"}, + "m": {"no_log": False, "type": "int"}, "n": {"no_log": False, "type": "bool"}, - "p": {"default": 33434, "no_log": False, "type": "int"}, - "packetlen": {"default": 44, "no_log": False, "type": "int"}, - "q": {"default": 3, "no_log": False, "type": "int"}, + "p": {"no_log": False, "type": "int"}, + "packetlen": {"no_log": False, "type": "int"}, + "q": {"no_log": False, "type": "int"}, "r": {"no_log": False, "type": "bool"}, "s": {"no_log": False, "type": "str"}, "v": {"no_log": False, "type": "bool"}, - "w": {"default": 5, "no_log": False, "type": "int"}, + "w": {"no_log": False, "type": "int"}, }, + "singleton": True, "update_payload_keys": [], }, "transformaction": { @@ -46071,6 +48766,18 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "comment", + "cookiedomainfrom", + "cookiedomaininto", + "name", + "requrlfrom", + "requrlinto", + "resurlfrom", + "resurlinto", + ] + }, "add_payload_keys": ["name", "priority", "profilename"], "bindings": [], "bindprimary_key": "", @@ -46093,6 +48800,7 @@ "resurlfrom": {"no_log": False, "type": "str"}, "resurlinto": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "comment", "cookiedomainfrom", @@ -46107,6 +48815,7 @@ }, "transformglobal_transformpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -46140,7 +48849,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -46165,6 +48873,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "transformpolicy": { @@ -46178,6 +48887,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "logaction", "name"]}, "add_payload_keys": ["comment", "logaction", "name", "profilename", "rule"], "bindings": ["transformpolicylabel_transformpolicy_binding"], "bindprimary_key": "", @@ -46212,6 +48922,7 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": ["comment", "logaction", "name", "profilename", "rule"], }, "transformpolicylabel": { @@ -46223,6 +48934,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["labelname", "policylabeltype"], "bindings": ["transformpolicylabel_transformpolicy_binding"], "bindprimary_key": "", @@ -46258,10 +48970,12 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [], }, "transformpolicylabel_transformpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -46300,6 +49014,7 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "transformprofile": { @@ -46312,6 +49027,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "name", "onlytransformabsurlinbody", "type"] + }, "add_payload_keys": ["name", "type"], "bindings": [], "bindprimary_key": "", @@ -46332,10 +49050,12 @@ }, "type": {"choices": ["URL"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["comment", "name", "onlytransformabsurlinbody", "type"], }, "tunnelglobal_tunneltrafficpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "policyname", @@ -46441,7 +49161,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -46459,6 +49178,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "tunneltrafficpolicy": { @@ -46472,6 +49192,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "logaction", "name"]}, "add_payload_keys": ["action", "comment", "logaction", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -46490,10 +49211,12 @@ "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "comment", "logaction", "name", "rule"], }, "ulfdserver": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["loggerip"], "bindings": [], "bindprimary_key": "", @@ -46505,10 +49228,12 @@ "password_keys": [], "primary_key": "loggerip", "readwrite_arguments": {"loggerip": {"no_log": False, "type": "str"}}, + "singleton": False, "update_payload_keys": [], }, "urlfilteringcategorization": { "_supported_operations": ["add", "clear", "count", "get"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["url"], "bindings": [], "bindprimary_key": "", @@ -46520,10 +49245,20 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": {"url": {"no_log": False, "type": "str"}}, + "singleton": False, "update_payload_keys": [], }, "urlfilteringparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "cloudhost", + "hoursbetweendbupdates", + "localdatabasethreads", + "seeddbpath", + "timeofdaytoupdatedb", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -46541,6 +49276,7 @@ "seeddbpath": {"no_log": False, "type": "str"}, "timeofdaytoupdatedb": {"no_log": False, "type": "str"}, }, + "singleton": True, "update_payload_keys": [ "cloudhost", "hoursbetweendbupdates", @@ -46559,6 +49295,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name"]}, "add_payload_keys": ["comment", "extension", "name", "transport"], "bindings": [], "bindprimary_key": "", @@ -46575,6 +49312,7 @@ "name": {"no_log": False, "type": "str"}, "transport": {"choices": ["SSL", "TCP"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["comment", "name"], }, "uservserver": { @@ -46589,6 +49327,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name", "params"]}, "add_payload_keys": [ "comment", "defaultlb", @@ -46609,14 +49348,15 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "Params": {"no_log": False, "type": "str"}, "comment": {"no_log": False, "type": "str"}, "defaultlb": {"no_log": False, "type": "str"}, "ipaddress": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, + "params": {"no_log": False, "type": "str"}, "port": {"no_log": False, "type": "int"}, "userprotocol": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["comment", "defaultlb", "ipaddress", "name", "params"], }, "videooptimizationdetectionaction": { @@ -46630,6 +49370,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name"]}, "add_payload_keys": ["comment", "name", "type"], "bindings": [], "bindprimary_key": "", @@ -46656,6 +49397,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": ["comment", "name", "type"], }, "videooptimizationdetectionpolicy": { @@ -46669,6 +49411,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "logaction", "name", "undefaction"] + }, "add_payload_keys": [ "action", "comment", @@ -46713,6 +49458,7 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [ "action", "comment", @@ -46731,6 +49477,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "labelname", "policylabeltype"], "bindings": [ "videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_binding" @@ -46769,10 +49516,12 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [], }, "videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -46811,10 +49560,12 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "videooptimizationglobaldetection_videooptimizationdetectionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -46848,7 +49599,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -46873,10 +49623,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "videooptimizationglobalpacing_videooptimizationpacingpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -46910,7 +49662,6 @@ "SYSTEM_GLOBAL", "VPN_GLOBAL", ], - "default": "SYSTEM_GLOBAL", "no_log": False, "type": "str", }, @@ -46935,6 +49686,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "videooptimizationpacingaction": { @@ -46948,6 +49700,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "name", "rate"]}, "add_payload_keys": ["comment", "name", "rate"], "bindings": [], "bindprimary_key": "", @@ -46962,8 +49715,9 @@ "comment": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "newname": {"no_log": False, "type": "str"}, - "rate": {"default": 1000, "no_log": False, "type": "int"}, + "rate": {"no_log": False, "type": "int"}, }, + "singleton": False, "update_payload_keys": ["comment", "name", "rate"], }, "videooptimizationpacingpolicy": { @@ -46977,6 +49731,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["comment", "logaction", "name", "undefaction"] + }, "add_payload_keys": [ "action", "comment", @@ -47021,6 +49778,7 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [ "action", "comment", @@ -47039,6 +49797,7 @@ "get-byname", "rename", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["comment", "labelname", "policylabeltype"], "bindings": [ "videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_binding" @@ -47077,10 +49836,12 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [], }, "videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "invoke", @@ -47119,10 +49880,14 @@ "policyname": {"no_log": False, "type": "str"}, "priority": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "videooptimizationparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": ["quicpacingrate", "randomsamplingpercentage"] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -47137,6 +49902,7 @@ "quicpacingrate": {"no_log": False, "type": "float"}, "randomsamplingpercentage": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": ["quicpacingrate", "randomsamplingpercentage"], }, "vlan": { @@ -47149,6 +49915,16 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "aliasname", + "dynamicrouting", + "id", + "ipv6dynamicrouting", + "mtu", + "sharing", + ] + }, "add_payload_keys": [ "aliasname", "dynamicrouting", @@ -47176,21 +49952,18 @@ "aliasname": {"no_log": False, "type": "str"}, "dynamicrouting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "id": {"no_log": False, "type": "float"}, "ipv6dynamicrouting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "mtu": {"no_log": False, "type": "float"}, "sharing": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -47275,6 +50048,7 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [ "aliasname", "dynamicrouting", @@ -47286,6 +50060,7 @@ }, "vlan_channel_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ifnum", "ownergroup", "tagged"], "bindprimary_key": "ifnum", "delete_arg_keys": ["ifnum", "ownergroup", "tagged"], @@ -47298,13 +50073,15 @@ "readwrite_arguments": { "id": {"no_log": False, "type": "float"}, "ifnum": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "tagged": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vlan_interface_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ifnum", "ownergroup", "tagged"], "bindprimary_key": "ifnum", "delete_arg_keys": ["ifnum", "ownergroup", "tagged"], @@ -47317,13 +50094,15 @@ "readwrite_arguments": { "id": {"no_log": False, "type": "float"}, "ifnum": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "tagged": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vlan_linkset_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ifnum", "ownergroup", "tagged"], "bindprimary_key": "ifnum", "delete_arg_keys": ["ifnum", "ownergroup", "tagged"], @@ -47336,13 +50115,15 @@ "readwrite_arguments": { "id": {"no_log": False, "type": "float"}, "ifnum": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "tagged": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vlan_nsip6_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ipaddress", "netmask", "ownergroup", "td"], "bindprimary_key": "ipaddress", "delete_arg_keys": ["ipaddress", "netmask", "ownergroup", "td"], @@ -47356,13 +50137,15 @@ "id": {"no_log": False, "type": "float"}, "ipaddress": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "vlan_nsip_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ipaddress", "netmask", "ownergroup", "td"], "bindprimary_key": "ipaddress", "delete_arg_keys": ["ipaddress", "netmask", "ownergroup", "td"], @@ -47376,9 +50159,10 @@ "id": {"no_log": False, "type": "float"}, "ipaddress": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, - "ownergroup": {"default": "DEFAULT_NG", "no_log": False, "type": "str"}, + "ownergroup": {"no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnalwaysonprofile": { @@ -47391,6 +50175,14 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "clientcontrol", + "locationbasedvpn", + "name", + "networkaccessonvpnfailure", + ] + }, "add_payload_keys": [ "clientcontrol", "locationbasedvpn", @@ -47409,24 +50201,22 @@ "readwrite_arguments": { "clientcontrol": { "choices": ["ALLOW", "DENY"], - "default": "DENY", "no_log": False, "type": "str", }, "locationbasedvpn": { "choices": ["Everywhere", "Remote"], - "default": "Remote", "no_log": False, "type": "str", }, "name": {"no_log": False, "type": "str"}, "networkaccessonvpnfailure": { "choices": ["fullAccess", "onlyToGateway"], - "default": "fullAccess", "no_log": False, "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "clientcontrol", "locationbasedvpn", @@ -47443,6 +50233,7 @@ "get-byname", "update", ], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "profilename", "rule"], "bindings": [], "bindprimary_key": "", @@ -47458,6 +50249,7 @@ "profilename": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["name", "profilename", "rule"], }, "vpnclientlessaccessprofile": { @@ -47470,6 +50262,22 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "clientconsumedcookies", + "javascriptrewritepolicylabel", + "profilename", + "regexforfindingcustomurls", + "regexforfindingurlincss", + "regexforfindingurlinjavascript", + "regexforfindingurlinxcomponent", + "regexforfindingurlinxml", + "reqhdrrewritepolicylabel", + "requirepersistentcookie", + "reshdrrewritepolicylabel", + "urlrewritepolicylabel", + ] + }, "add_payload_keys": ["profilename"], "bindings": [], "bindprimary_key": "", @@ -47492,13 +50300,13 @@ "reqhdrrewritepolicylabel": {"no_log": False, "type": "str"}, "requirepersistentcookie": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "reshdrrewritepolicylabel": {"no_log": False, "type": "str"}, "urlrewritepolicylabel": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "clientconsumedcookies", "javascriptrewritepolicylabel", @@ -47516,6 +50324,7 @@ }, "vpnepaprofile": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["data", "filename", "name"], "bindings": [], "bindprimary_key": "", @@ -47531,10 +50340,12 @@ "filename": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpneula": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name"], "bindings": [], "bindprimary_key": "", @@ -47546,6 +50357,7 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": {"name": {"no_log": False, "type": "str"}}, + "singleton": False, "update_payload_keys": [], }, "vpnformssoaction": { @@ -47558,6 +50370,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["name", "namevaluepair", "nvtype", "responsesize", "submitmethod"] + }, "add_payload_keys": [ "actionurl", "name", @@ -47584,21 +50399,20 @@ "namevaluepair": {"no_log": False, "type": "str"}, "nvtype": { "choices": ["DYNAMIC", "STATIC"], - "default": "DYNAMIC", "no_log": False, "type": "str", }, "passwdfield": {"no_log": False, "type": "str"}, - "responsesize": {"default": 8096, "no_log": False, "type": "float"}, + "responsesize": {"no_log": False, "type": "float"}, "ssosuccessrule": {"no_log": False, "type": "str"}, "submitmethod": { "choices": ["GET", "POST"], - "default": "GET", "no_log": False, "type": "str", }, "userfield": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "actionurl", "name", @@ -47613,6 +50427,7 @@ }, "vpnglobal_appcontroller_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["appcontroller", "gotopriorityexpression"], "bindprimary_key": "appcontroller", "delete_arg_keys": ["appcontroller"], @@ -47626,10 +50441,12 @@ "appcontroller": {"no_log": False, "type": "str"}, "gotopriorityexpression": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_auditnslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -47658,10 +50475,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_auditsyslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -47690,10 +50509,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_authenticationcertpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -47722,10 +50543,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_authenticationldappolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -47754,10 +50577,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_authenticationlocalpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -47786,10 +50611,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_authenticationnegotiatepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -47818,10 +50645,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_authenticationpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -47850,10 +50679,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_authenticationradiuspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -47882,10 +50713,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_authenticationsamlpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -47914,10 +50747,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_authenticationtacacspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -47946,10 +50781,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_domain_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "intranetdomain"], "bindprimary_key": "intranetdomain", "delete_arg_keys": ["intranetdomain"], @@ -47963,10 +50800,12 @@ "gotopriorityexpression": {"no_log": False, "type": "str"}, "intranetdomain": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_intranetip6_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "intranetip6", "numaddr"], "bindprimary_key": "intranetip6", "delete_arg_keys": ["intranetip6", "numaddr"], @@ -47981,10 +50820,12 @@ "intranetip6": {"no_log": False, "type": "str"}, "numaddr": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_intranetip_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "intranetip", "netmask"], "bindprimary_key": "intranetip", "delete_arg_keys": ["intranetip", "netmask"], @@ -47999,10 +50840,12 @@ "intranetip": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_sharefileserver_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "sharefile"], "bindprimary_key": "sharefile", "delete_arg_keys": ["sharefile"], @@ -48016,10 +50859,12 @@ "gotopriorityexpression": {"no_log": False, "type": "str"}, "sharefile": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_sslcertkey_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "cacert", "certkeyname", @@ -48059,10 +50904,12 @@ }, "userdataencryptionkey": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_staserver_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "staaddresstype", "staserver"], "bindprimary_key": "staserver", "delete_arg_keys": ["staserver"], @@ -48081,10 +50928,12 @@ }, "staserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_vpnclientlessaccesspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -48216,10 +51065,12 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_vpneula_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["eula", "gotopriorityexpression"], "bindprimary_key": "eula", "delete_arg_keys": ["eula"], @@ -48233,10 +51084,12 @@ "eula": {"no_log": False, "type": "str"}, "gotopriorityexpression": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_vpnintranetapplication_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "intranetapplication"], "bindprimary_key": "intranetapplication", "delete_arg_keys": ["intranetapplication"], @@ -48250,10 +51103,12 @@ "gotopriorityexpression": {"no_log": False, "type": "str"}, "intranetapplication": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_vpnnexthopserver_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "nexthopserver"], "bindprimary_key": "nexthopserver", "delete_arg_keys": ["nexthopserver"], @@ -48267,10 +51122,12 @@ "gotopriorityexpression": {"no_log": False, "type": "str"}, "nexthopserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_vpnportaltheme_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "portaltheme"], "bindprimary_key": "portaltheme", "delete_arg_keys": ["portaltheme"], @@ -48284,10 +51141,12 @@ "gotopriorityexpression": {"no_log": False, "type": "str"}, "portaltheme": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_vpnsessionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -48399,10 +51258,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_vpntrafficpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -48431,10 +51292,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_vpnurl_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["gotopriorityexpression", "urlname"], "bindprimary_key": "urlname", "delete_arg_keys": ["urlname"], @@ -48448,10 +51311,12 @@ "gotopriorityexpression": {"no_log": False, "type": "str"}, "urlname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnglobal_vpnurlpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get", "get-all"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "gotopriorityexpression", "groupextraction", @@ -48486,10 +51351,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnicaconnection": { "_supported_operations": ["count", "get", "kill"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -48506,10 +51373,12 @@ "transproto": {"choices": ["TCP", "UDP"], "no_log": False, "type": "str"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnintranetapplication": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "clientapplication", "destip", @@ -48564,19 +51433,16 @@ "no_log": False, "type": "str", }, - "spoofiip": { - "choices": ["OFF", "ON"], - "default": "ON", - "no_log": False, - "type": "str", - }, + "spoofiip": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "srcip": {"no_log": False, "type": "str"}, "srcport": {"no_log": False, "type": "int"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnnexthopserver": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "name", "nexthopfqdn", @@ -48611,17 +51477,97 @@ "no_log": False, "type": "str", }, - "secure": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "secure": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnparameter": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": [ + "advancedclientlessvpnmode", + "allowedlogingroups", + "allprotocolproxy", + "alwaysonprofilename", + "apptokentimeout", + "authorizationgroup", + "autoproxyurl", + "backendcertvalidation", + "backendserversni", + "citrixreceiverhome", + "clientchoices", + "clientcleanupprompt", + "clientconfiguration", + "clientdebug", + "clientidletimeout", + "clientlessmodeurlencoding", + "clientlesspersistentcookie", + "clientlessvpnmode", + "clientoptions", + "clientsecurity", + "clientsecuritygroup", + "clientsecuritylog", + "clientsecuritymessage", + "clientversions", + "defaultauthorizationaction", + "dnsvservername", + "emailhome", + "encryptcsecexp", + "forcecleanup", + "forcedtimeout", + "forcedtimeoutwarning", + "fqdnspoofedip", + "ftpproxy", + "gopherproxy", + "homepage", + "httpport", + "httpproxy", + "icaproxy", + "icasessiontimeout", + "icauseraccounting", + "iconwithreceiver", + "iipdnssuffix", + "kcdaccount", + "killconnections", + "linuxpluginupgrade", + "locallanaccess", + "loginscript", + "logoutscript", + "macpluginupgrade", + "mdxtokentimeout", + "netmask", + "ntdomain", + "pcoipprofilename", + "proxy", + "proxyexception", + "proxylocalbypass", + "rdpclientprofilename", + "rfc1918", + "samesite", + "securebrowse", + "sesstimeout", + "smartgroup", + "socksproxy", + "splitdns", + "splittunnel", + "spoofiip", + "sslproxy", + "sso", + "ssocredential", + "storefronturl", + "transparentinterception", + "uitheme", + "useiip", + "usemip", + "userdomains", + "wihome", + "windowsautologon", + "windowspluginupgrade", + "winsip", + "wiportalmode", + ] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -48635,38 +51581,29 @@ "readwrite_arguments": { "advancedclientlessvpnmode": { "choices": ["DISABLED", "ENABLED", "STRICT"], - "default": "DISABLED", "no_log": False, "type": "str", }, "allowedlogingroups": {"no_log": False, "type": "str"}, "allprotocolproxy": {"no_log": False, "type": "str"}, "alwaysonprofilename": {"no_log": False, "type": "str"}, - "apptokentimeout": {"default": 100, "no_log": False, "type": "float"}, + "apptokentimeout": {"no_log": False, "type": "float"}, "authorizationgroup": {"no_log": False, "type": "str"}, "autoproxyurl": {"no_log": False, "type": "str"}, "backendcertvalidation": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "backendserversni": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "citrixreceiverhome": {"no_log": False, "type": "str"}, - "clientchoices": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "clientchoices": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "clientcleanupprompt": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, @@ -48678,26 +51615,22 @@ }, "clientdebug": { "choices": ["OFF", "debug", "events", "stats"], - "default": "OFF", "no_log": False, "type": "str", }, "clientidletimeout": {"no_log": False, "type": "float"}, "clientlessmodeurlencoding": { "choices": ["ENCRYPT", "OPAQUE", "TRANSPARENT"], - "default": "OPAQUE", "no_log": False, "type": "str", }, "clientlesspersistentcookie": { "choices": ["ALLOW", "DENY", "PROMPT"], - "default": "DENY", "no_log": False, "type": "str", }, "clientlessvpnmode": { "choices": ["DISABLED", "OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -48711,7 +51644,6 @@ "clientsecuritygroup": {"no_log": False, "type": "str"}, "clientsecuritylog": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -48719,7 +51651,6 @@ "clientversions": {"no_log": False, "type": "str"}, "defaultauthorizationaction": { "choices": ["ALLOW", "DENY"], - "default": "DENY", "no_log": False, "type": "str", }, @@ -48727,7 +51658,6 @@ "emailhome": {"no_log": False, "type": "str"}, "encryptcsecexp": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -48762,22 +51692,15 @@ "homepage": {"no_log": False, "type": "str"}, "httpport": {"elements": "int", "no_log": False, "type": "list"}, "httpproxy": {"no_log": False, "type": "str"}, - "icaproxy": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "icaproxy": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "icasessiontimeout": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "icauseraccounting": {"no_log": False, "type": "str"}, "iconwithreceiver": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -48785,19 +51708,16 @@ "kcdaccount": {"no_log": False, "type": "str"}, "killconnections": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "linuxpluginupgrade": { "choices": ["Always", "Essential", "Never"], - "default": "Always", "no_log": False, "type": "str", }, "locallanaccess": { "choices": ["FORCED", "OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -48805,11 +51725,10 @@ "logoutscript": {"no_log": False, "type": "str"}, "macpluginupgrade": { "choices": ["Always", "Essential", "Never"], - "default": "Always", "no_log": False, "type": "str", }, - "mdxtokentimeout": {"default": 10, "no_log": False, "type": "float"}, + "mdxtokentimeout": {"no_log": False, "type": "float"}, "netmask": {"no_log": False, "type": "str"}, "ntdomain": {"no_log": False, "type": "str"}, "pcoipprofilename": {"no_log": False, "type": "str"}, @@ -48821,17 +51740,11 @@ "proxyexception": {"no_log": False, "type": "str"}, "proxylocalbypass": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "rdpclientprofilename": {"no_log": False, "type": "str"}, - "rfc1918": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "rfc1918": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "samesite": { "choices": ["LAX", "None", "STRICT"], "no_log": False, @@ -48839,11 +51752,10 @@ }, "securebrowse": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, - "sesstimeout": {"default": 30, "no_log": False, "type": "float"}, + "sesstimeout": {"no_log": False, "type": "float"}, "smartgroup": {"no_log": False, "type": "str"}, "socksproxy": {"no_log": False, "type": "str"}, "splitdns": { @@ -48853,33 +51765,20 @@ }, "splittunnel": { "choices": ["OFF", "ON", "REVERSE"], - "default": "OFF", - "no_log": False, - "type": "str", - }, - "spoofiip": { - "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, + "spoofiip": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "sslproxy": {"no_log": False, "type": "str"}, - "sso": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "ssocredential": { "choices": ["PRIMARY", "SECONDARY"], - "default": "PRIMARY", "no_log": False, "type": "str", }, "storefronturl": {"no_log": False, "type": "str"}, "transparentinterception": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -48890,16 +51789,10 @@ }, "useiip": { "choices": ["NOSPILLOVER", "OFF", "SPILLOVER"], - "default": "NOSPILLOVER", - "no_log": False, - "type": "str", - }, - "usemip": { - "choices": ["NS", "OFF"], - "default": "NS", "no_log": False, "type": "str", }, + "usemip": {"choices": ["NS", "OFF"], "no_log": False, "type": "str"}, "userdomains": {"no_log": False, "type": "str"}, "wihome": {"no_log": False, "type": "str"}, "wihomeaddresstype": { @@ -48909,19 +51802,16 @@ }, "windowsautologon": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "windowsclienttype": { "choices": ["AGENT", "PLUGIN"], - "default": "AGENT", "no_log": False, "type": "str", }, "windowspluginupgrade": { "choices": ["Always", "Essential", "Never"], - "default": "Always", "no_log": False, "type": "str", }, @@ -48932,6 +51822,7 @@ "type": "str", }, }, + "singleton": True, "update_payload_keys": [ "advancedclientlessvpnmode", "allowedlogingroups", @@ -49018,6 +51909,7 @@ }, "vpnpcoipconnection": { "_supported_operations": ["count", "get", "kill"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -49033,6 +51925,7 @@ "nodeid": {"no_log": False, "type": "float"}, "username": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnpcoipprofile": { @@ -49045,6 +51938,9 @@ "unset", "update", ], + "action_payload_keys": { + "unset": ["icvverification", "name", "sessionidletimeout"] + }, "add_payload_keys": [ "conserverurl", "icvverification", @@ -49064,13 +51960,13 @@ "conserverurl": {"no_log": False, "type": "str"}, "icvverification": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "name": {"no_log": False, "type": "str"}, - "sessionidletimeout": {"default": 180, "no_log": False, "type": "float"}, + "sessionidletimeout": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "conserverurl", "icvverification", @@ -49088,6 +51984,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["name", "udpport"]}, "add_payload_keys": ["logindomain", "name", "udpport"], "bindings": [], "bindprimary_key": "", @@ -49101,12 +51998,14 @@ "readwrite_arguments": { "logindomain": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, - "udpport": {"default": 4172, "no_log": False, "type": "int"}, + "udpport": {"no_log": False, "type": "int"}, }, + "singleton": False, "update_payload_keys": ["logindomain", "name", "udpport"], }, "vpnportaltheme": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["basetheme", "name"], "bindings": [], "bindprimary_key": "", @@ -49125,6 +52024,7 @@ }, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnsamlssoprofile": { @@ -49137,6 +52037,74 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "attribute1", + "attribute10", + "attribute10format", + "attribute10friendlyname", + "attribute11", + "attribute11format", + "attribute11friendlyname", + "attribute12", + "attribute12format", + "attribute12friendlyname", + "attribute13", + "attribute13format", + "attribute13friendlyname", + "attribute14", + "attribute14format", + "attribute14friendlyname", + "attribute15", + "attribute15format", + "attribute15friendlyname", + "attribute16", + "attribute16format", + "attribute16friendlyname", + "attribute1format", + "attribute1friendlyname", + "attribute2", + "attribute2format", + "attribute2friendlyname", + "attribute3", + "attribute3format", + "attribute3friendlyname", + "attribute4", + "attribute4format", + "attribute4friendlyname", + "attribute5", + "attribute5format", + "attribute5friendlyname", + "attribute6", + "attribute6format", + "attribute6friendlyname", + "attribute7", + "attribute7format", + "attribute7friendlyname", + "attribute8", + "attribute8format", + "attribute8friendlyname", + "attribute9", + "attribute9format", + "attribute9friendlyname", + "audience", + "digestmethod", + "encryptassertion", + "encryptionalgorithm", + "name", + "nameidexpr", + "nameidformat", + "relaystaterule", + "samlissuername", + "samlsigningcertname", + "samlspcertname", + "sendpassword", + "signassertion", + "signaturealg", + "signatureservice", + "skewtime", + ] + }, "add_payload_keys": [ "assertionconsumerserviceurl", "attribute1", @@ -49362,19 +52330,16 @@ "audience": {"no_log": False, "type": "str"}, "digestmethod": { "choices": ["SHA1", "SHA256"], - "default": "SHA256", "no_log": False, "type": "str", }, "encryptassertion": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "encryptionalgorithm": { "choices": ["AES128", "AES192", "AES256", "DES3"], - "default": "AES256", "no_log": False, "type": "str", }, @@ -49391,7 +52356,6 @@ "persistent", "transient", ], - "default": "transient", "no_log": False, "type": "str", }, @@ -49399,27 +52363,21 @@ "samlissuername": {"no_log": False, "type": "str"}, "samlsigningcertname": {"no_log": False, "type": "str"}, "samlspcertname": {"no_log": False, "type": "str"}, - "sendpassword": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "sendpassword": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "signassertion": { "choices": ["ASSERTION", "BOTH", "NONE", "RESPONSE"], - "default": "ASSERTION", "no_log": False, "type": "str", }, "signaturealg": { "choices": ["RSA-SHA1", "RSA-SHA256"], - "default": "RSA-SHA256", "no_log": False, "type": "str", }, "signatureservice": {"no_log": False, "type": "str"}, - "skewtime": {"default": 5, "no_log": False, "type": "float"}, + "skewtime": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [ "assertionconsumerserviceurl", "attribute1", @@ -49514,6 +52472,82 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "advancedclientlessvpnmode", + "allowedlogingroups", + "allprotocolproxy", + "alwaysonprofilename", + "authorizationgroup", + "autoproxyurl", + "citrixreceiverhome", + "clientchoices", + "clientcleanupprompt", + "clientconfiguration", + "clientdebug", + "clientidletimeout", + "clientlessmodeurlencoding", + "clientlesspersistentcookie", + "clientlessvpnmode", + "clientoptions", + "clientsecurity", + "clientsecuritygroup", + "clientsecuritylog", + "clientsecuritymessage", + "defaultauthorizationaction", + "dnsvservername", + "emailhome", + "forcecleanup", + "forcedtimeout", + "forcedtimeoutwarning", + "fqdnspoofedip", + "ftpproxy", + "gopherproxy", + "homepage", + "httpport", + "httpproxy", + "icaproxy", + "iconwithreceiver", + "iipdnssuffix", + "kcdaccount", + "killconnections", + "linuxpluginupgrade", + "locallanaccess", + "loginscript", + "logoutscript", + "macpluginupgrade", + "name", + "netmask", + "ntdomain", + "pcoipprofilename", + "proxy", + "proxyexception", + "proxylocalbypass", + "rdpclientprofilename", + "rfc1918", + "securebrowse", + "sesstimeout", + "sfgatewayauthtype", + "smartgroup", + "socksproxy", + "splitdns", + "splittunnel", + "spoofiip", + "sslproxy", + "sso", + "ssocredential", + "storefronturl", + "transparentinterception", + "useiip", + "usemip", + "useraccounting", + "wihome", + "windowsautologon", + "windowspluginupgrade", + "winsip", + "wiportalmode", + ] + }, "add_payload_keys": [ "advancedclientlessvpnmode", "allowedlogingroups", @@ -49601,7 +52635,6 @@ "readwrite_arguments": { "advancedclientlessvpnmode": { "choices": ["DISABLED", "ENABLED", "STRICT"], - "default": "DISABLED", "no_log": False, "type": "str", }, @@ -49822,6 +52855,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "advancedclientlessvpnmode", "allowedlogingroups", @@ -49908,6 +52942,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["action", "name", "rule"]}, "add_payload_keys": ["action", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -49923,6 +52958,7 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "name", "rule"], }, "vpntrafficaction": { @@ -49935,6 +52971,16 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "kcdaccount", + "name", + "passwdexpression", + "proxy", + "userexpression", + "wanscaler", + ] + }, "add_payload_keys": [ "apptimeout", "formssoaction", @@ -49964,7 +53010,7 @@ "formssoaction": {"no_log": False, "type": "str"}, "fta": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "hdx": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "kcdaccount": {"default": '"Default"', "no_log": False, "type": "str"}, + "kcdaccount": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, "passwdexpression": {"no_log": False, "type": "str"}, "proxy": {"no_log": False, "type": "str"}, @@ -49974,6 +53020,7 @@ "userexpression": {"no_log": False, "type": "str"}, "wanscaler": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "apptimeout", "formssoaction", @@ -49999,6 +53046,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["action", "name", "rule"]}, "add_payload_keys": ["action", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -50014,6 +53062,7 @@ "name": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "name", "rule"], }, "vpnurl": { @@ -50026,6 +53075,19 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "appjson", + "applicationtype", + "clientlessaccess", + "comment", + "iconurl", + "samlssoprofile", + "ssotype", + "urlname", + "vservername", + ] + }, "add_payload_keys": [ "actualurl", "appjson", @@ -50058,7 +53120,6 @@ }, "clientlessaccess": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -50074,6 +53135,7 @@ "urlname": {"no_log": False, "type": "str"}, "vservername": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "actualurl", "appjson", @@ -50099,6 +53161,18 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "applicationtype", + "clientlessaccess", + "comment", + "iconurl", + "name", + "samlssoprofile", + "ssotype", + "vservername", + ] + }, "add_payload_keys": [ "actualurl", "applicationtype", @@ -50129,7 +53203,6 @@ }, "clientlessaccess": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -50146,6 +53219,7 @@ }, "vservername": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [ "actualurl", "applicationtype", @@ -50170,6 +53244,7 @@ "unset", "update", ], + "action_payload_keys": {"unset": ["comment", "logaction", "name"]}, "add_payload_keys": ["action", "comment", "logaction", "name", "rule"], "bindings": [], "bindprimary_key": "", @@ -50188,6 +53263,7 @@ "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": ["action", "comment", "logaction", "name", "rule"], }, "vpnvserver": { @@ -50204,6 +53280,45 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "advancedepa", + "appflowlog", + "authentication", + "authnprofile", + "certkeynames", + "cginfrahomepageredirect", + "comment", + "devicecert", + "doublehop", + "downstateflush", + "dtls", + "httpprofilename", + "icaonly", + "icaproxysessionmigration", + "icmpvsrresponse", + "ipset", + "l2conn", + "linuxepapluginupgrade", + "listenpolicy", + "listenpriority", + "loginonce", + "logoutonsmartcardremoval", + "macepapluginupgrade", + "maxaaausers", + "maxloginattempts", + "name", + "netprofile", + "pcoipvserverprofilename", + "rdpserverprofilename", + "rhistate", + "samesite", + "tcpprofilename", + "userdomains", + "vserverfqdn", + "windowsepapluginupgrade", + ] + }, "add_payload_keys": [ "advancedepa", "appflowlog", @@ -50304,21 +53419,14 @@ "password_keys": [], "primary_key": "name", "readwrite_arguments": { - "advancedepa": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "advancedepa": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "appflowlog": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "authentication": { "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, @@ -50326,7 +53434,6 @@ "certkeynames": {"no_log": False, "type": "str"}, "cginfrahomepageredirect": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, @@ -50336,51 +53443,28 @@ "no_log": False, "type": "str", }, - "devicecert": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "devicecert": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "doublehop": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "downstateflush": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", - "no_log": False, - "type": "str", - }, - "dtls": { - "choices": ["OFF", "ON"], - "default": "ON", "no_log": False, "type": "str", }, + "dtls": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "failedlogintimeout": {"no_log": False, "type": "float"}, - "httpprofilename": { - "default": '"nshttp_default_strict_validation"', - "no_log": False, - "type": "str", - }, - "icaonly": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "httpprofilename": {"no_log": False, "type": "str"}, + "icaonly": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "icaproxysessionmigration": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, "icmpvsrresponse": { "choices": ["ACTIVE", "PASSIVE"], - "default": "PASSIVE", "no_log": False, "type": "str", }, @@ -50392,17 +53476,11 @@ "no_log": False, "type": "str", }, - "listenpolicy": {"default": '"none"', "no_log": False, "type": "str"}, - "listenpriority": {"default": 101, "no_log": False, "type": "float"}, - "loginonce": { - "choices": ["OFF", "ON"], - "default": "OFF", - "no_log": False, - "type": "str", - }, + "listenpolicy": {"no_log": False, "type": "str"}, + "listenpriority": {"no_log": False, "type": "float"}, + "loginonce": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "logoutonsmartcardremoval": { "choices": ["OFF", "ON"], - "default": "OFF", "no_log": False, "type": "str", }, @@ -50418,11 +53496,10 @@ "newname": {"no_log": False, "type": "str"}, "pcoipvserverprofilename": {"no_log": False, "type": "str"}, "port": {"no_log": False, "type": "int"}, - "range": {"default": 1, "no_log": False, "type": "float"}, + "range": {"no_log": False, "type": "float"}, "rdpserverprofilename": {"no_log": False, "type": "str"}, "rhistate": { "choices": ["ACTIVE", "PASSIVE"], - "default": "PASSIVE", "no_log": False, "type": "str", }, @@ -50431,12 +53508,7 @@ "no_log": False, "type": "str", }, - "servicetype": { - "choices": ["DTLS", "SSL"], - "default": "SSL", - "no_log": False, - "type": "str", - }, + "servicetype": {"choices": ["DTLS", "SSL"], "no_log": False, "type": "str"}, "tcpprofilename": {"no_log": False, "type": "str"}, "userdomains": {"no_log": False, "type": "str"}, "vpnvserver_aaapreauthenticationpolicy_binding": { @@ -51070,6 +54142,7 @@ "type": "str", }, }, + "singleton": False, "update_payload_keys": [ "advancedepa", "appflowlog", @@ -51112,6 +54185,7 @@ }, "vpnvserver_aaapreauthenticationpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51157,10 +54231,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_analyticsprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["analyticsprofile", "name"], "bindprimary_key": "analyticsprofile", "delete_arg_keys": ["analyticsprofile"], @@ -51174,10 +54250,12 @@ "analyticsprofile": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_appcontroller_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["appcontroller", "name"], "bindprimary_key": "appcontroller", "delete_arg_keys": ["appcontroller"], @@ -51191,10 +54269,12 @@ "appcontroller": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_appflowpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51240,10 +54320,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_auditnslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51289,10 +54371,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_auditsyslogpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51338,10 +54422,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationcertpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51387,10 +54473,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationdfapolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51436,10 +54524,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationldappolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51485,10 +54575,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationlocalpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51534,10 +54626,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationloginschemapolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51583,10 +54677,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationnegotiatepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51632,10 +54728,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationoauthidppolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51681,10 +54779,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51730,10 +54830,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationradiuspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51779,10 +54881,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationsamlidppolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51828,10 +54932,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationsamlpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51877,10 +54983,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationtacacspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51926,10 +55034,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_authenticationwebauthpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -51975,10 +55085,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_cachepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -52024,10 +55136,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_cspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -52073,10 +55187,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_feopolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -52122,10 +55238,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_icapolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -52171,10 +55289,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_intranetip6_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["intranetip6", "name", "numaddr"], "bindprimary_key": "intranetip6", "delete_arg_keys": ["intranetip6", "numaddr"], @@ -52189,10 +55309,12 @@ "name": {"no_log": False, "type": "str"}, "numaddr": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_intranetip_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["intranetip", "name", "netmask"], "bindprimary_key": "intranetip", "delete_arg_keys": ["intranetip", "netmask"], @@ -52207,10 +55329,12 @@ "name": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_responderpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -52256,10 +55380,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_rewritepolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -52305,10 +55431,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_sharefileserver_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "sharefile"], "bindprimary_key": "sharefile", "delete_arg_keys": ["sharefile"], @@ -52322,10 +55450,12 @@ "name": {"no_log": False, "type": "str"}, "sharefile": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_staserver_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "staaddresstype", "staserver"], "bindprimary_key": "staserver", "delete_arg_keys": ["staserver"], @@ -52344,10 +55474,12 @@ }, "staserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_vpnclientlessaccesspolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -52393,10 +55525,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_vpnepaprofile_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["epaprofile", "epaprofileoptional", "name"], "bindprimary_key": "epaprofile", "delete_arg_keys": ["epaprofile"], @@ -52411,10 +55545,12 @@ "epaprofileoptional": {"no_log": False, "type": "bool"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_vpneula_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["eula", "name"], "bindprimary_key": "eula", "delete_arg_keys": ["eula"], @@ -52428,10 +55564,12 @@ "eula": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_vpnintranetapplication_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["intranetapplication", "name"], "bindprimary_key": "intranetapplication", "delete_arg_keys": ["intranetapplication"], @@ -52445,10 +55583,12 @@ "intranetapplication": {"no_log": False, "type": "str"}, "name": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_vpnnexthopserver_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "nexthopserver"], "bindprimary_key": "nexthopserver", "delete_arg_keys": ["nexthopserver"], @@ -52462,10 +55602,12 @@ "name": {"no_log": False, "type": "str"}, "nexthopserver": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_vpnportaltheme_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "portaltheme"], "bindprimary_key": "portaltheme", "delete_arg_keys": ["portaltheme"], @@ -52479,10 +55621,12 @@ "name": {"no_log": False, "type": "str"}, "portaltheme": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_vpnsessionpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -52528,10 +55672,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_vpntrafficpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -52577,10 +55723,12 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_vpnurl_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "urlname"], "bindprimary_key": "urlname", "delete_arg_keys": ["urlname"], @@ -52594,10 +55742,12 @@ "name": {"no_log": False, "type": "str"}, "urlname": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vpnvserver_vpnurlpolicy_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [ "bindpoint", "gotopriorityexpression", @@ -52643,6 +55793,7 @@ "priority": {"no_log": False, "type": "float"}, "secondary": {"no_log": False, "type": "bool"}, }, + "singleton": False, "update_payload_keys": [], }, "vrid": { @@ -52655,6 +55806,18 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "id", + "ownernode", + "preemption", + "preemptiondelaytimer", + "priority", + "sharing", + "trackifnumpriority", + "tracking", + ] + }, "add_payload_keys": [ "id", "ownernode", @@ -52687,22 +55850,19 @@ "ownernode": {"no_log": False, "type": "float"}, "preemption": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "preemptiondelaytimer": {"no_log": False, "type": "float"}, - "priority": {"default": 255, "no_log": False, "type": "float"}, + "priority": {"no_log": False, "type": "float"}, "sharing": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "trackifnumpriority": {"no_log": False, "type": "float"}, "tracking": { "choices": ["ALL", "NONE", "ONE", "PROGRESSIVE"], - "default": "NONE", "no_log": False, "type": "str", }, @@ -52803,6 +55963,7 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [ "id", "ownernode", @@ -52824,6 +55985,18 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "id", + "ownernode", + "preemption", + "preemptiondelaytimer", + "priority", + "sharing", + "trackifnumpriority", + "tracking", + ] + }, "add_payload_keys": [ "id", "ownernode", @@ -52853,22 +56026,19 @@ "ownernode": {"no_log": False, "type": "float"}, "preemption": { "choices": ["DISABLED", "ENABLED"], - "default": "ENABLED", "no_log": False, "type": "str", }, "preemptiondelaytimer": {"no_log": False, "type": "float"}, - "priority": {"default": 255, "no_log": False, "type": "float"}, + "priority": {"no_log": False, "type": "float"}, "sharing": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "trackifnumpriority": {"no_log": False, "type": "float"}, "tracking": { "choices": ["ALL", "NONE", "ONE", "PROGRESSIVE"], - "default": "NONE", "no_log": False, "type": "str", }, @@ -52921,6 +56091,7 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [ "id", "ownernode", @@ -52934,6 +56105,7 @@ }, "vrid6_channel_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ifnum"], "bindprimary_key": "ifnum", "delete_arg_keys": ["ifnum"], @@ -52947,10 +56119,12 @@ "id": {"no_log": False, "type": "float"}, "ifnum": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vrid6_interface_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ifnum"], "bindprimary_key": "ifnum", "delete_arg_keys": ["ifnum"], @@ -52964,10 +56138,12 @@ "id": {"no_log": False, "type": "float"}, "ifnum": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vrid6_trackinterface_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "trackifnum"], "bindprimary_key": "trackifnum", "delete_arg_keys": ["trackifnum"], @@ -52981,10 +56157,12 @@ "id": {"no_log": False, "type": "float"}, "trackifnum": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vrid_channel_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ifnum"], "bindprimary_key": "ifnum", "delete_arg_keys": ["ifnum"], @@ -52998,10 +56176,12 @@ "id": {"no_log": False, "type": "float"}, "ifnum": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vrid_interface_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ifnum"], "bindprimary_key": "ifnum", "delete_arg_keys": ["ifnum"], @@ -53015,10 +56195,12 @@ "id": {"no_log": False, "type": "float"}, "ifnum": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vrid_trackinterface_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "trackifnum"], "bindprimary_key": "trackifnum", "delete_arg_keys": ["trackifnum"], @@ -53032,10 +56214,14 @@ "id": {"no_log": False, "type": "float"}, "trackifnum": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vridparam": { "_supported_operations": ["get", "unset", "update"], + "action_payload_keys": { + "unset": ["deadinterval", "hellointerval", "sendtomaster"] + }, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -53047,19 +56233,20 @@ "password_keys": [], "primary_key": "", "readwrite_arguments": { - "deadinterval": {"default": 3, "no_log": False, "type": "float"}, - "hellointerval": {"default": 1000, "no_log": False, "type": "float"}, + "deadinterval": {"no_log": False, "type": "float"}, + "hellointerval": {"no_log": False, "type": "float"}, "sendtomaster": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, }, + "singleton": True, "update_payload_keys": ["deadinterval", "hellointerval", "sendtomaster"], }, "vserver": { "_supported_operations": ["delete", "disable", "enable", "update"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": [], "bindings": [], "bindprimary_key": "", @@ -53090,13 +56277,13 @@ }, "sopersistence": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "sopersistencetimeout": {"default": 2, "no_log": False, "type": "float"}, + "sopersistencetimeout": {"no_log": False, "type": "float"}, "sothreshold": {"no_log": False, "type": "float"}, }, + "singleton": True, "update_payload_keys": ["name", "pushvserver"], }, "vxlan": { @@ -53109,6 +56296,16 @@ "unset", "update", ], + "action_payload_keys": { + "unset": [ + "dynamicrouting", + "id", + "innervlantagging", + "ipv6dynamicrouting", + "port", + "vlan", + ] + }, "add_payload_keys": [ "dynamicrouting", "id", @@ -53136,36 +56333,27 @@ "readwrite_arguments": { "dynamicrouting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "id": {"no_log": False, "type": "float"}, "innervlantagging": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, "ipv6dynamicrouting": { "choices": ["DISABLED", "ENABLED"], - "default": "DISABLED", "no_log": False, "type": "str", }, - "port": {"default": 4789, "no_log": False, "type": "int"}, + "port": {"no_log": False, "type": "int"}, "protocol": { "choices": ["ETHERNET", "IPv4", "IPv6", "NSH"], - "default": "ETHERNET", - "no_log": False, - "type": "str", - }, - "type": { - "choices": ["VXLAN", "VXLANGPE"], - "default": "VXLAN", "no_log": False, "type": "str", }, + "type": {"choices": ["VXLAN", "VXLANGPE"], "no_log": False, "type": "str"}, "vlan": {"no_log": False, "type": "float"}, "vxlan_nsip6_binding": { "no_log": False, @@ -53232,6 +56420,7 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [ "dynamicrouting", "id", @@ -53243,6 +56432,7 @@ }, "vxlan_nsip6_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ipaddress", "netmask"], "bindprimary_key": "ipaddress", "delete_arg_keys": ["ipaddress", "netmask"], @@ -53257,10 +56447,12 @@ "ipaddress": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vxlan_nsip_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "ipaddress", "netmask"], "bindprimary_key": "ipaddress", "delete_arg_keys": ["ipaddress", "netmask"], @@ -53275,10 +56467,12 @@ "ipaddress": {"no_log": False, "type": "str"}, "netmask": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vxlan_srcip_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["id", "srcip"], "bindprimary_key": "srcip", "delete_arg_keys": ["srcip"], @@ -53292,10 +56486,12 @@ "id": {"no_log": False, "type": "float"}, "srcip": {"no_log": False, "type": "str"}, }, + "singleton": False, "update_payload_keys": [], }, "vxlanvlanmap": { "_supported_operations": ["add", "count", "delete", "get", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name"], "bindings": ["vxlanvlanmap_vxlan_binding"], "bindprimary_key": "", @@ -53325,10 +56521,12 @@ "type": "dict", }, }, + "singleton": False, "update_payload_keys": [], }, "vxlanvlanmap_vxlan_binding": { "_supported_operations": ["add", "count", "delete", "get-all", "get-byname"], + "action_payload_keys": {"create": [], "import": [], "switch": [], "unset": []}, "add_payload_keys": ["name", "vlan", "vxlan"], "bindprimary_key": "vxlan", "delete_arg_keys": ["vxlan"], @@ -53343,6 +56541,7 @@ "vlan": {"elements": "str", "no_log": False, "type": "list"}, "vxlan": {"no_log": False, "type": "float"}, }, + "singleton": False, "update_payload_keys": [], }, } diff --git a/plugins/modules/aaacertparams.py b/plugins/modules/aaacertparams.py index a5595bb7..b6f6c71a 100644 --- a/plugins/modules/aaacertparams.py +++ b/plugins/modules/aaacertparams.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str defaultauthenticationgroup: type: str diff --git a/plugins/modules/aaagroup_auditnslogpolicy_binding.py b/plugins/modules/aaagroup_auditnslogpolicy_binding.py index 871c1d7a..011ffd29 100644 --- a/plugins/modules/aaagroup_auditnslogpolicy_binding.py +++ b/plugins/modules/aaagroup_auditnslogpolicy_binding.py @@ -92,7 +92,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/aaagroup_auditsyslogpolicy_binding.py b/plugins/modules/aaagroup_auditsyslogpolicy_binding.py index 5bb76daa..13c09532 100644 --- a/plugins/modules/aaagroup_auditsyslogpolicy_binding.py +++ b/plugins/modules/aaagroup_auditsyslogpolicy_binding.py @@ -92,7 +92,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/aaagroup_authorizationpolicy_binding.py b/plugins/modules/aaagroup_authorizationpolicy_binding.py index 2eb20687..d56a4053 100644 --- a/plugins/modules/aaagroup_authorizationpolicy_binding.py +++ b/plugins/modules/aaagroup_authorizationpolicy_binding.py @@ -67,7 +67,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/aaagroup_tmsessionpolicy_binding.py b/plugins/modules/aaagroup_tmsessionpolicy_binding.py index e5d9d50e..6c519a96 100644 --- a/plugins/modules/aaagroup_tmsessionpolicy_binding.py +++ b/plugins/modules/aaagroup_tmsessionpolicy_binding.py @@ -67,7 +67,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/aaagroup_vpnsessionpolicy_binding.py b/plugins/modules/aaagroup_vpnsessionpolicy_binding.py index 71a30fea..97f69f9b 100644 --- a/plugins/modules/aaagroup_vpnsessionpolicy_binding.py +++ b/plugins/modules/aaagroup_vpnsessionpolicy_binding.py @@ -67,7 +67,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/aaagroup_vpntrafficpolicy_binding.py b/plugins/modules/aaagroup_vpntrafficpolicy_binding.py index e1337d38..c05b2108 100644 --- a/plugins/modules/aaagroup_vpntrafficpolicy_binding.py +++ b/plugins/modules/aaagroup_vpntrafficpolicy_binding.py @@ -92,7 +92,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/aaagroup_vpnurlpolicy_binding.py b/plugins/modules/aaagroup_vpnurlpolicy_binding.py index 268dbc48..24202d6f 100644 --- a/plugins/modules/aaagroup_vpnurlpolicy_binding.py +++ b/plugins/modules/aaagroup_vpnurlpolicy_binding.py @@ -92,7 +92,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/aaaldapparams.py b/plugins/modules/aaaldapparams.py index 57d41052..ff424f34 100644 --- a/plugins/modules/aaaldapparams.py +++ b/plugins/modules/aaaldapparams.py @@ -27,19 +27,20 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str authtimeout: type: float description: - Maximum number of seconds that the Citrix ADC waits for a response from the LDAP server. - default: 3 defaultauthenticationgroup: type: str description: @@ -92,7 +93,6 @@ type: float description: - Number of levels up to which the system can query nested LDAP groups. - default: 2 nestedgroupextraction: type: str choices: @@ -101,7 +101,6 @@ description: - Queries the external LDAP server to determine whether the specified group belongs to another group. - default: 'OFF' passwdchange: type: str choices: @@ -109,7 +108,6 @@ - DISABLED description: - Accept password change requests. - default: DISABLED searchfilter: type: str description: @@ -130,7 +128,6 @@ description: - Type of security used for communications between the Citrix ADC and the LDAP server. For the C(PLAINTEXT) setting, no encryption is required. - default: TLS serverip: type: str description: @@ -139,7 +136,6 @@ type: int description: - Port number on which the LDAP server listens for connections. - default: 389 ssonameattribute: type: str description: diff --git a/plugins/modules/aaaotpparameter.py b/plugins/modules/aaaotpparameter.py index 1b6eda7f..a02f62fe 100644 --- a/plugins/modules/aaaotpparameter.py +++ b/plugins/modules/aaaotpparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str encryption: type: str @@ -41,13 +43,11 @@ - 'OFF' description: - To encrypt otp secret in AD or not. Default value is C(OFF) - default: 'OFF' maxotpdevices: type: float description: - Maximum number of otp devices user can register. Default value is 4. Max value is 255 - default: 4 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/aaaparameter.py b/plugins/modules/aaaparameter.py index 26c1c046..e68638ce 100644 --- a/plugins/modules/aaaparameter.py +++ b/plugins/modules/aaaparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str aaadloglevel: type: str @@ -56,7 +58,6 @@ - '* C(NOTICE) - Events that the administrator should know about.' - '* C(INFORMATIONAL) - All but low-level events.' - '* C(DEBUG) - All events, in extreme detail.' - default: INFORMATIONAL aaadnatip: type: str description: @@ -91,7 +92,6 @@ - DISABLED description: - Option to enable/disable API cache feature. - default: DISABLED defaultauthtype: type: str choices: @@ -102,7 +102,6 @@ - CERT description: - The default authentication server type. - default: LOCAL defaultcspheader: type: str choices: @@ -110,7 +109,6 @@ - DISABLED description: - Parameter to enable/disable default CSP header - default: DISABLED dynaddr: type: str choices: @@ -118,7 +116,6 @@ - 'OFF' description: - Set by the DHCP client when the IP address was fetched dynamically. - default: 'OFF' enableenhancedauthfeedback: type: str choices: @@ -127,7 +124,6 @@ description: - Enhanced auth feedback provides more information to the end user about the reason for an authentication failure. The default value is set to C(NO). - default: 'NO' enablesessionstickiness: type: str choices: @@ -135,7 +131,6 @@ - 'NO' description: - Enables/Disables stickiness to authentication servers - default: 'NO' enablestaticpagecaching: type: str choices: @@ -144,7 +139,6 @@ description: - The default state of VPN Static Page caching. Static Page caching is enabled by default. - default: 'YES' failedlogintimeout: type: float description: @@ -159,7 +153,6 @@ description: - First time user mode determines which configuration options are shown by default when logging in to the GUI. This setting is controlled by the GUI. - default: 'ON' httponlycookie: type: str choices: @@ -167,7 +160,6 @@ - DISABLED description: - Parameter to set/reset HttpOnly Flag for NSC_AAAC/NSC_TMAS cookies in nfactor - default: DISABLED loginencryption: type: str choices: @@ -175,7 +167,6 @@ - DISABLED description: - Parameter to encrypt login information for nFactor flow - default: DISABLED maxaaausers: type: float description: @@ -200,7 +191,6 @@ - DISABLED description: - Persistent storage of unsuccessful user login attempts - default: DISABLED pwdexpirynotificationdays: type: float description: @@ -226,6 +216,15 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | aaaparameter + delegate_to: localhost + netscaler.adc.aaaparameter: + state: present + maxaaausers: '4294967295' """ RETURN = r""" diff --git a/plugins/modules/aaapreauthenticationparameter.py b/plugins/modules/aaapreauthenticationparameter.py index dfa104d1..f5737446 100644 --- a/plugins/modules/aaapreauthenticationparameter.py +++ b/plugins/modules/aaapreauthenticationparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str deletefiles: type: str diff --git a/plugins/modules/aaaradiusparams.py b/plugins/modules/aaaradiusparams.py index 97ae3449..c8f91132 100644 --- a/plugins/modules/aaaradiusparams.py +++ b/plugins/modules/aaaradiusparams.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str accounting: type: str @@ -48,19 +50,16 @@ - 'OFF' description: - Configure the RADIUS server state to accept or refuse authentication messages. - default: 'ON' authservretry: type: float description: - Number of retry by the Citrix ADC before getting response from the RADIUS server. - default: 3 authtimeout: type: float description: - Maximum number of seconds that the Citrix ADC waits for a response from the RADIUS server. - default: 3 callingstationid: type: str choices: @@ -69,7 +68,6 @@ description: - Send Calling-Station-ID of the client to the RADIUS server. IP Address of the client is sent as its Calling-Station-ID. - default: DISABLED defaultauthenticationgroup: type: str description: @@ -94,7 +92,6 @@ description: - Enable password encoding in RADIUS packets that the Citrix ADC sends to the RADIUS server. - default: mschapv2 pwdattributetype: type: float description: @@ -148,7 +145,6 @@ type: int description: - Port number on which the RADIUS server listens for connections. - default: 1812 tunnelendpointclientip: type: str choices: @@ -156,7 +152,6 @@ - DISABLED description: - Send Tunnel Endpoint Client IP address to the RADIUS server. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/aaatacacsparams.py b/plugins/modules/aaatacacsparams.py index d4c67f4f..d5e1aab8 100644 --- a/plugins/modules/aaatacacsparams.py +++ b/plugins/modules/aaatacacsparams.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str accounting: type: str @@ -60,7 +62,6 @@ description: - Maximum number of seconds that the Citrix ADC waits for a response from the TACACS+ server. - default: 3 defaultauthenticationgroup: type: str description: @@ -78,7 +79,6 @@ type: int description: - Port number on which the TACACS+ server listens for connections. - default: 49 tacacssecret: type: str description: diff --git a/plugins/modules/aaauser_auditnslogpolicy_binding.py b/plugins/modules/aaauser_auditnslogpolicy_binding.py index 650a44c1..d16fbe82 100644 --- a/plugins/modules/aaauser_auditnslogpolicy_binding.py +++ b/plugins/modules/aaauser_auditnslogpolicy_binding.py @@ -88,7 +88,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST username: type: str description: diff --git a/plugins/modules/aaauser_auditsyslogpolicy_binding.py b/plugins/modules/aaauser_auditsyslogpolicy_binding.py index 39b75998..f67d5bd0 100644 --- a/plugins/modules/aaauser_auditsyslogpolicy_binding.py +++ b/plugins/modules/aaauser_auditsyslogpolicy_binding.py @@ -88,7 +88,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST username: type: str description: diff --git a/plugins/modules/aaauser_authorizationpolicy_binding.py b/plugins/modules/aaauser_authorizationpolicy_binding.py index aa383d19..fea55c14 100644 --- a/plugins/modules/aaauser_authorizationpolicy_binding.py +++ b/plugins/modules/aaauser_authorizationpolicy_binding.py @@ -63,7 +63,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST username: type: str description: diff --git a/plugins/modules/aaauser_tmsessionpolicy_binding.py b/plugins/modules/aaauser_tmsessionpolicy_binding.py index c8de2bff..c06a06dd 100644 --- a/plugins/modules/aaauser_tmsessionpolicy_binding.py +++ b/plugins/modules/aaauser_tmsessionpolicy_binding.py @@ -63,7 +63,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST username: type: str description: diff --git a/plugins/modules/aaauser_vpnsessionpolicy_binding.py b/plugins/modules/aaauser_vpnsessionpolicy_binding.py index f384a975..a6176895 100644 --- a/plugins/modules/aaauser_vpnsessionpolicy_binding.py +++ b/plugins/modules/aaauser_vpnsessionpolicy_binding.py @@ -63,7 +63,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST username: type: str description: diff --git a/plugins/modules/aaauser_vpntrafficpolicy_binding.py b/plugins/modules/aaauser_vpntrafficpolicy_binding.py index 8565bc19..b0e4d8b3 100644 --- a/plugins/modules/aaauser_vpntrafficpolicy_binding.py +++ b/plugins/modules/aaauser_vpntrafficpolicy_binding.py @@ -88,7 +88,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST username: type: str description: diff --git a/plugins/modules/aaauser_vpnurlpolicy_binding.py b/plugins/modules/aaauser_vpnurlpolicy_binding.py index cf29862f..6d309cce 100644 --- a/plugins/modules/aaauser_vpnurlpolicy_binding.py +++ b/plugins/modules/aaauser_vpnurlpolicy_binding.py @@ -88,7 +88,6 @@ - ICMP_REQUEST description: - Bindpoint to which the policy is bound. - default: REQUEST username: type: str description: diff --git a/plugins/modules/admparameter.py b/plugins/modules/admparameter.py index e45204a1..82c38dec 100644 --- a/plugins/modules/admparameter.py +++ b/plugins/modules/admparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str admserviceconnect: type: str @@ -47,7 +49,6 @@ send system, usage and telemetry data to Citrix ADM service. View here [https://docs.citrix.com/en-us/citrix-adc/13/data-governance.html] to learn more about this feature. Use of this feature is subject to the Citrix End User ServiceAgreement. View here [https://www.citrix.com/buy/licensing/agreements.html] - default: ENABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/analyticsprofile.py b/plugins/modules/analyticsprofile.py index 8782ea8c..67840396 100644 --- a/plugins/modules/analyticsprofile.py +++ b/plugins/modules/analyticsprofile.py @@ -44,7 +44,6 @@ description: - On enabling this option, the Citrix ADC will log all the request and response headers. - default: DISABLED analyticsauthtoken: type: str description: @@ -73,7 +72,6 @@ - DISABLED description: - This option indicates the whether auditlog should be sent to the REST collector. - default: DISABLED collectors: type: str description: @@ -90,7 +88,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log TCP CQA parameters. - default: DISABLED events: type: str choices: @@ -98,7 +95,6 @@ - DISABLED description: - This option indicates the whether events should be sent to the REST collector. - default: DISABLED grpcstatus: type: str choices: @@ -106,7 +102,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log the gRPC status headers - default: DISABLED httpauthentication: type: str choices: @@ -114,7 +109,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log Authentication header. - default: DISABLED httpclientsidemeasurements: type: str choices: @@ -124,7 +118,6 @@ - On enabling this option, the Citrix ADC will insert a javascript into the HTTP response to collect the client side page-timings and will send the same to the configured collectors. - default: DISABLED httpcontenttype: type: str choices: @@ -132,7 +125,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log content-length header. - default: DISABLED httpcookie: type: str choices: @@ -140,7 +132,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log cookie header. - default: DISABLED httpdomainname: type: str choices: @@ -148,7 +139,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log domain name. - default: DISABLED httphost: type: str choices: @@ -157,7 +147,6 @@ description: - On enabling this option, the Citrix ADC will log the Host header in appflow records - default: DISABLED httplocation: type: str choices: @@ -165,7 +154,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log location header. - default: DISABLED httpmethod: type: str choices: @@ -174,7 +162,6 @@ description: - On enabling this option, the Citrix ADC will log the method header in appflow records - default: DISABLED httppagetracking: type: str choices: @@ -183,7 +170,6 @@ description: - On enabling this option, the Citrix ADC will link the embedded objects of a page together. - default: DISABLED httpreferer: type: str choices: @@ -192,7 +178,6 @@ description: - On enabling this option, the Citrix ADC will log the referer header in appflow records - default: DISABLED httpsetcookie: type: str choices: @@ -200,7 +185,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log set-cookie header. - default: DISABLED httpsetcookie2: type: str choices: @@ -208,7 +192,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log set-cookie2 header. - default: DISABLED httpurl: type: str choices: @@ -216,7 +199,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log the URL in appflow records - default: DISABLED httpurlquery: type: str choices: @@ -224,7 +206,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log URL Query. - default: DISABLED httpuseragent: type: str choices: @@ -232,7 +213,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log User-Agent header. - default: DISABLED httpvia: type: str choices: @@ -240,7 +220,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will Via header. - default: DISABLED httpxforwardedforheader: type: str choices: @@ -248,7 +227,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log X-Forwarded-For header. - default: DISABLED integratedcache: type: str choices: @@ -257,7 +235,6 @@ description: - On enabling this option, the Citrix ADC will log the Integrated Caching appflow records - default: DISABLED metrics: type: str choices: @@ -265,13 +242,11 @@ - DISABLED description: - This option indicates the whether metrics should be sent to the REST collector. - default: DISABLED metricsexportfrequency: type: float description: - This option is for configuring the metrics export frequency in seconds, frequency value must be in [30,300] seconds range - default: 30 name: type: str description: @@ -292,7 +267,6 @@ description: - This option indicates the format of REST API POST body. It depends on the consumer of the analytics data. - default: avro schemafile: type: str description: @@ -305,7 +279,6 @@ - Pull description: - This option is for setting the mode of how data is provided - default: Push tcpburstreporting: type: str choices: @@ -313,7 +286,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will log TCP burst parameters. - default: ENABLED type: type: str choices: @@ -338,7 +310,6 @@ - DISABLED description: - On enabling this option, the Citrix ADC will send the URL category record. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/apispec.py b/plugins/modules/apispec.py index 0ec02c4a..55e8bcdd 100644 --- a/plugins/modules/apispec.py +++ b/plugins/modules/apispec.py @@ -66,7 +66,6 @@ - 'C(PROTO) ' - C(OAS)/Swagger - C(GRAPHQL) - default: PROTO extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/apispecfile.py b/plugins/modules/apispecfile.py index a806a4f2..240d7f7e 100644 --- a/plugins/modules/apispecfile.py +++ b/plugins/modules/apispecfile.py @@ -27,6 +27,7 @@ state: choices: - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler diff --git a/plugins/modules/appalgparam.py b/plugins/modules/appalgparam.py index 2c8f4969..8b20b4dc 100644 --- a/plugins/modules/appalgparam.py +++ b/plugins/modules/appalgparam.py @@ -27,18 +27,19 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str pptpgreidletimeout: type: float description: - Interval in sec, after which data sessions of PPTP GRE is cleared. - default: 9000 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/appflowaction.py b/plugins/modules/appflowaction.py index c66b479b..50055d7a 100644 --- a/plugins/modules/appflowaction.py +++ b/plugins/modules/appflowaction.py @@ -44,7 +44,6 @@ description: - On enabling this option, the Citrix ADC will send the bot insight records to the configured collectors. - default: DISABLED ciinsight: type: str choices: @@ -53,7 +52,6 @@ description: - On enabling this option, the Citrix ADC will send the ContentInspection Insight records to the configured collectors. - default: DISABLED clientsidemeasurements: type: str choices: @@ -62,7 +60,6 @@ description: - On enabling this option, the Citrix ADC will collect the time required to load and render the mainpage on the client. - default: DISABLED collectors: type: list description: @@ -82,7 +79,6 @@ description: - On enabling this option, the Citrix ADC will distribute records among the collectors. Else, all records will be sent to all the collectors. - default: DISABLED metricslog: type: bool description: @@ -116,7 +112,6 @@ description: - On enabling this option, the Citrix ADC will start tracking the page for waterfall chart by inserting a NS_ESNS cookie in the response. - default: DISABLED securityinsight: type: str choices: @@ -125,7 +120,6 @@ description: - On enabling this option, the Citrix ADC will send the security insight records to the configured collectors. - default: DISABLED transactionlog: type: str choices: @@ -133,7 +127,6 @@ - ANOMALOUS description: - Log C(ANOMALOUS) or C(ALL) transactions - default: ALL videoanalytics: type: str choices: @@ -142,7 +135,6 @@ description: - On enabling this option, the Citrix ADC will send the videoinsight records to the configured collectors. - default: DISABLED webinsight: type: str choices: @@ -151,7 +143,6 @@ description: - On enabling this option, the Citrix ADC will send the webinsight records to the configured collectors. - default: ENABLED appflowaction_analyticsprofile_binding: type: dict description: Bindings for appflowaction_analyticsprofile_binding resource diff --git a/plugins/modules/appflowcollector.py b/plugins/modules/appflowcollector.py index 76404475..0d906cd2 100644 --- a/plugins/modules/appflowcollector.py +++ b/plugins/modules/appflowcollector.py @@ -82,7 +82,6 @@ - rest description: - 'Type of collector: either C(logstream) or C(ipfix) or C(rest).' - default: ipfix extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/appflowglobal_appflowpolicy_binding.py b/plugins/modules/appflowglobal_appflowpolicy_binding.py index eef28e52..ce998111 100644 --- a/plugins/modules/appflowglobal_appflowpolicy_binding.py +++ b/plugins/modules/appflowglobal_appflowpolicy_binding.py @@ -47,7 +47,6 @@ - APPFW_GLOBAL description: - '0' - default: SYSTEM_GLOBAL gotopriorityexpression: type: str description: diff --git a/plugins/modules/appflowparam.py b/plugins/modules/appflowparam.py index ec6099cc..ef2fea0f 100644 --- a/plugins/modules/appflowparam.py +++ b/plugins/modules/appflowparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str aaausername: type: str @@ -41,7 +43,6 @@ - DISABLED description: - Enable AppFlow AAA Username logging. - default: DISABLED analyticsauthtoken: type: str description: @@ -52,7 +53,6 @@ - Interval, in seconds, at which to send Appnames to the configured collectors. Appname refers to the name of an entity (virtual server, service, or service group) in the Citrix ADC. - default: 600 auditlogs: type: str choices: @@ -60,7 +60,6 @@ - DISABLED description: - Enable Auditlogs to be sent to the Telemetry Agent - default: DISABLED cacheinsight: type: str choices: @@ -70,7 +69,6 @@ - Flag to determine whether cache records need to be exported or not. If this flag is true and IC is enabled, cache records are exported instead of L7 HTTP records - default: DISABLED clienttrafficonly: type: str choices: @@ -78,7 +76,6 @@ - 'NO' description: - Generate AppFlow records for only the traffic from the client. - default: 'NO' connectionchaining: type: str choices: @@ -89,7 +86,6 @@ are linked. Also the connection chain ID is propagated across Citrix ADCs, so that in a multi-hop environment the flows belonging to the same logical connection are linked. This id is also logged as part of appflow record - default: DISABLED cqareporting: type: str choices: @@ -97,7 +93,6 @@ - DISABLED description: - TCP CQA reporting enable/disable knob. - default: DISABLED distributedtracing: type: str choices: @@ -105,7 +100,6 @@ - DISABLED description: - Enable generation of the distributed tracing templates in the Appflow records - default: DISABLED disttracingsamplingrate: type: float description: @@ -117,7 +111,6 @@ - DISABLED description: - Enable AppFlow user email-id logging. - default: DISABLED events: type: str choices: @@ -125,12 +118,10 @@ - DISABLED description: - Enable Events to be sent to the Telemetry Agent - default: DISABLED flowrecordinterval: type: float description: - Interval, in seconds, at which to send flow records to the configured collectors. - default: 60 gxsessionreporting: type: str choices: @@ -138,7 +129,6 @@ - DISABLED description: - Enable this option for Gx session reporting - default: DISABLED httpauthorization: type: str choices: @@ -146,7 +136,6 @@ - DISABLED description: - Include the HTTP Authorization header information. - default: DISABLED httpcontenttype: type: str choices: @@ -155,7 +144,6 @@ description: - Include the HTTP Content-Type header sent from the server to the client to determine the type of the content sent. - default: DISABLED httpcookie: type: str choices: @@ -164,7 +152,6 @@ description: - Include the cookie that was in the HTTP request the appliance received from the client. - default: DISABLED httpdomain: type: str choices: @@ -172,7 +159,6 @@ - DISABLED description: - Include the http domain request to be exported. - default: DISABLED httphost: type: str choices: @@ -181,7 +167,6 @@ description: - Include the host identified in the HTTP request that the appliance received from the client. - default: DISABLED httplocation: type: str choices: @@ -189,7 +174,6 @@ - DISABLED description: - Include the HTTP location headers returned from the HTTP responses. - default: DISABLED httpmethod: type: str choices: @@ -198,7 +182,6 @@ description: - Include the method that was specified in the HTTP request that the appliance received from the client. - default: DISABLED httpquerywithurl: type: str choices: @@ -207,7 +190,6 @@ description: - Include the HTTP query segment along with the URL that the Citrix ADC received from the client. - default: DISABLED httpreferer: type: str choices: @@ -215,7 +197,6 @@ - DISABLED description: - Include the web page that was last visited by the client. - default: DISABLED httpsetcookie: type: str choices: @@ -224,7 +205,6 @@ description: - Include the Set-cookie header sent from the server to the client in response to a HTTP request. - default: DISABLED httpsetcookie2: type: str choices: @@ -233,7 +213,6 @@ description: - Include the Set-cookie header sent from the server to the client in response to a HTTP request. - default: DISABLED httpurl: type: str choices: @@ -241,7 +220,6 @@ - DISABLED description: - Include the http URL that the Citrix ADC received from the client. - default: DISABLED httpuseragent: type: str choices: @@ -250,7 +228,6 @@ description: - Include the client application through which the HTTP request was received by the Citrix ADC. - default: DISABLED httpvia: type: str choices: @@ -259,7 +236,6 @@ description: - Include the httpVia header which contains the IP address of proxy server through which the client accessed the server. - default: DISABLED httpxforwardedfor: type: str choices: @@ -268,7 +244,6 @@ description: - Include the httpXForwardedFor header, which contains the original IP Address of the client using a proxy server to access the server. - default: DISABLED identifiername: type: str choices: @@ -276,7 +251,6 @@ - DISABLED description: - Include the stream identifier name to be exported. - default: DISABLED identifiersessionname: type: str choices: @@ -284,7 +258,6 @@ - DISABLED description: - Include the stream identifier session name to be exported. - default: DISABLED logstreamovernsip: type: str choices: @@ -292,7 +265,6 @@ - DISABLED description: - To use the Citrix ADC IP to send Logstream records instead of the SNIP - default: DISABLED lsnlogging: type: str choices: @@ -301,7 +273,6 @@ description: - On enabling this option, the Citrix ADC will send the Large Scale Nat(LSN) records to the configured collectors. - default: DISABLED metrics: type: str choices: @@ -309,7 +280,6 @@ - DISABLED description: - Enable Citrix ADC Stats to be sent to the Telemetry Agent - default: DISABLED observationdomainid: type: float description: @@ -331,7 +301,6 @@ description: - Interval, in seconds, at which to send security insight flow records to the configured collectors. - default: 600 securityinsighttraffic: type: str choices: @@ -339,7 +308,6 @@ - DISABLED description: - Enable/disable the feature individually on appflow action. - default: DISABLED skipcacheredirectionhttptransaction: type: str choices: @@ -349,7 +317,6 @@ - Skip Cache http transaction. This HTTP transaction is specific to Cache Redirection module. In Case of Cache Miss there will be another HTTP transaction initiated by the cache server. - default: DISABLED subscriberawareness: type: str choices: @@ -357,7 +324,6 @@ - DISABLED description: - Enable this option for logging end user MSISDN in L4/L7 appflow records - default: DISABLED subscriberidobfuscation: type: str choices: @@ -365,7 +331,6 @@ - DISABLED description: - Enable this option for obfuscating MSISDN in L4/L7 appflow records - default: DISABLED subscriberidobfuscationalgo: type: str choices: @@ -373,7 +338,6 @@ - SHA256 description: - Algorithm(C(MD5) or C(SHA256)) to be used for obfuscating MSISDN - default: MD5 tcpattackcounterinterval: type: float description: @@ -384,7 +348,6 @@ description: - Refresh interval, in seconds, at which to export the template data. Because data transmission is in UDP, the templates must be resent at regular intervals. - default: 600 timeseriesovernsip: type: str choices: @@ -393,12 +356,10 @@ description: - To use the Citrix ADC IP to send Time series data such as metrics and events, instead of the SNIP - default: DISABLED udppmtu: type: float description: - MTU, in bytes, for IPFIX UDP packets. - default: 1472 urlcategory: type: str choices: @@ -406,7 +367,6 @@ - DISABLED description: - Include the URL category record. - default: DISABLED usagerecordinterval: type: float description: @@ -419,7 +379,6 @@ - DISABLED description: - Enable/disable the feature individually on appflow action. - default: DISABLED websaasappusagereporting: type: str choices: @@ -428,12 +387,20 @@ description: - On enabling this option, NGS will send data used by Web/saas app at the end of every HTTP transaction to configured collectors. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | appflowparam + delegate_to: localhost + netscaler.adc.appflowparam: + state: present + observationpointid: '2370493962' """ RETURN = r""" diff --git a/plugins/modules/appflowpolicylabel.py b/plugins/modules/appflowpolicylabel.py index 1bb39350..b415d16d 100644 --- a/plugins/modules/appflowpolicylabel.py +++ b/plugins/modules/appflowpolicylabel.py @@ -66,7 +66,6 @@ - HTTP_QUIC description: - Type of traffic evaluated by the policies bound to the policy label. - default: HTTP appflowpolicylabel_appflowpolicy_binding: type: dict description: Bindings for appflowpolicylabel_appflowpolicy_binding resource diff --git a/plugins/modules/appfwarchive.py b/plugins/modules/appfwarchive.py index aa5564f2..2dec6dad 100644 --- a/plugins/modules/appfwarchive.py +++ b/plugins/modules/appfwarchive.py @@ -27,6 +27,7 @@ state: choices: - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler diff --git a/plugins/modules/appfwconfidfield.py b/plugins/modules/appfwconfidfield.py index 4c2d3393..5fe2fb4f 100644 --- a/plugins/modules/appfwconfidfield.py +++ b/plugins/modules/appfwconfidfield.py @@ -54,7 +54,6 @@ follows:' - '* C(REGEX). Form field is a regular expression.' - '* C(NOTREGEX). Form field is a literal string.' - default: NOTREGEX url: type: str description: diff --git a/plugins/modules/appfwglobal_appfwpolicy_binding.py b/plugins/modules/appfwglobal_appfwpolicy_binding.py index d1e515a8..ba00ed88 100644 --- a/plugins/modules/appfwglobal_appfwpolicy_binding.py +++ b/plugins/modules/appfwglobal_appfwpolicy_binding.py @@ -47,7 +47,6 @@ - APPFW_GLOBAL description: - '0' - default: SYSTEM_GLOBAL gotopriorityexpression: type: str description: diff --git a/plugins/modules/appfwgrpccontenttype.py b/plugins/modules/appfwgrpccontenttype.py index 2e5613c1..1e947cc0 100644 --- a/plugins/modules/appfwgrpccontenttype.py +++ b/plugins/modules/appfwgrpccontenttype.py @@ -47,7 +47,6 @@ - NOTREGEX description: - Is gRPC content type a regular expression? - default: NOTREGEX extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/appfwgrpcwebjsoncontenttype.py b/plugins/modules/appfwgrpcwebjsoncontenttype.py index bfbb0a0a..12e86d18 100644 --- a/plugins/modules/appfwgrpcwebjsoncontenttype.py +++ b/plugins/modules/appfwgrpcwebjsoncontenttype.py @@ -47,7 +47,6 @@ - NOTREGEX description: - Is gRPC-web-json content type a regular expression? - default: NOTREGEX extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/appfwgrpcwebtextcontenttype.py b/plugins/modules/appfwgrpcwebtextcontenttype.py index 17291b4a..7bb2cfcd 100644 --- a/plugins/modules/appfwgrpcwebtextcontenttype.py +++ b/plugins/modules/appfwgrpcwebtextcontenttype.py @@ -47,7 +47,6 @@ - NOTREGEX description: - Is gRPC-web-text content type a regular expression? - default: NOTREGEX extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/appfwhtmlerrorpage.py b/plugins/modules/appfwhtmlerrorpage.py index feb70f4b..086a58e4 100644 --- a/plugins/modules/appfwhtmlerrorpage.py +++ b/plugins/modules/appfwhtmlerrorpage.py @@ -27,6 +27,7 @@ state: choices: - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler diff --git a/plugins/modules/appfwjsoncontenttype.py b/plugins/modules/appfwjsoncontenttype.py index 7dc4e6ed..f0b10810 100644 --- a/plugins/modules/appfwjsoncontenttype.py +++ b/plugins/modules/appfwjsoncontenttype.py @@ -43,7 +43,6 @@ - NOTREGEX description: - Is json content type a regular expression? - default: NOTREGEX jsoncontenttypevalue: type: str description: @@ -53,6 +52,16 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | appfwJSONContentType + delegate_to: localhost + netscaler.adc.appfwjsoncontenttype: + state: present + jsoncontenttypevalue: "^application/json$" + isregex: REGEX """ RETURN = r""" diff --git a/plugins/modules/appfwjsonerrorpage.py b/plugins/modules/appfwjsonerrorpage.py index 5377f292..cbd4c9e6 100644 --- a/plugins/modules/appfwjsonerrorpage.py +++ b/plugins/modules/appfwjsonerrorpage.py @@ -27,6 +27,7 @@ state: choices: - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler diff --git a/plugins/modules/appfwlearningsettings.py b/plugins/modules/appfwlearningsettings.py index e8406f1b..f26df208 100644 --- a/plugins/modules/appfwlearningsettings.py +++ b/plugins/modules/appfwlearningsettings.py @@ -27,24 +27,24 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str contenttypeautodeploygraceperiod: type: float description: - The number of minutes after the threshold hit alert the learned rule will be deployed - default: 10080 contenttypeminthreshold: type: float description: - Minimum threshold to learn Content Type information. - default: 1 contenttypepercentthreshold: type: float description: @@ -54,13 +54,11 @@ description: - The number of minutes after the threshold hit alert the learned rule will be deployed - default: 10080 cookieconsistencyminthreshold: type: float description: - Minimum number of application firewall sessions that the learning engine must observe to learn cookies. - default: 1 cookieconsistencypercentthreshold: type: float description: @@ -70,7 +68,6 @@ type: float description: - Minimum threshold to learn Credit Card information. - default: 1 creditcardnumberpercentthreshold: type: float description: @@ -80,13 +77,11 @@ description: - The number of minutes after the threshold hit alert the learned rule will be deployed - default: 10080 crosssitescriptingminthreshold: type: float description: - Minimum number of application firewall sessions that the learning engine must observe to learn HTML cross-site scripting patterns. - default: 1 crosssitescriptingpercentthreshold: type: float description: @@ -98,13 +93,11 @@ description: - The number of minutes after the threshold hit alert the learned rule will be deployed - default: 10080 csrftagminthreshold: type: float description: - Minimum number of application firewall sessions that the learning engine must observe to learn cross-site request forgery (CSRF) tags. - default: 1 csrftagpercentthreshold: type: float description: @@ -115,13 +108,11 @@ description: - The number of minutes after the threshold hit alert the learned rule will be deployed - default: 10080 fieldconsistencyminthreshold: type: float description: - Minimum number of application firewall sessions that the learning engine must observe to learn field consistency information. - default: 1 fieldconsistencypercentthreshold: type: float description: @@ -133,13 +124,11 @@ description: - The number of minutes after the threshold hit alert the learned rule will be deployed - default: 10080 fieldformatminthreshold: type: float description: - Minimum number of application firewall sessions that the learning engine must observe to learn field formats. - default: 1 fieldformatpercentthreshold: type: float description: @@ -155,13 +144,11 @@ description: - The number of minutes after the threshold hit alert the learned rule will be deployed - default: 10080 sqlinjectionminthreshold: type: float description: - Minimum number of application firewall sessions that the learning engine must observe to learn HTML SQL injection patterns. - default: 1 sqlinjectionpercentthreshold: type: float description: @@ -173,13 +160,11 @@ description: - The number of minutes after the threshold hit alert the learned rule will be deployed - default: 10080 starturlminthreshold: type: float description: - Minimum number of application firewall sessions that the learning engine must observe to learn start URLs. - default: 1 starturlpercentthreshold: type: float description: @@ -190,7 +175,6 @@ description: - Minimum number of application firewall sessions that the learning engine must observe to learn XML attachment patterns. - default: 1 xmlattachmentpercentthreshold: type: float description: @@ -202,7 +186,6 @@ description: - Minimum number of application firewall sessions that the learning engine must observe to learn web services interoperability (WSI) information. - default: 1 xmlwsipercentthreshold: type: float description: diff --git a/plugins/modules/appfwmultipartformcontenttype.py b/plugins/modules/appfwmultipartformcontenttype.py index 24acba3b..67580f66 100644 --- a/plugins/modules/appfwmultipartformcontenttype.py +++ b/plugins/modules/appfwmultipartformcontenttype.py @@ -43,7 +43,6 @@ - NOTREGEX description: - Is multipart_form content type a regular expression? - default: NOTREGEX multipartformcontenttypevalue: type: str description: @@ -53,6 +52,21 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | appfwmultipartFormContentType + delegate_to: localhost + netscaler.adc.appfwmultipartformcontenttype: + state: present + multipartformcontenttypevalue: multipart/form-data + - name: Sample Task | appfwmultipartFormContentType | 2 + delegate_to: localhost + netscaler.adc.appfwmultipartformcontenttype: + state: present + multipartformcontenttypevalue: multipart/form-data.* + isregex: REGEX """ RETURN = r""" diff --git a/plugins/modules/appfwprofile.py b/plugins/modules/appfwprofile.py index d58fbb23..b2b84192 100644 --- a/plugins/modules/appfwprofile.py +++ b/plugins/modules/appfwprofile.py @@ -50,7 +50,6 @@ accessing cookies.' - '* Secure - Add Secure flag to cookies.' - '* All - Add both HTTPOnly and Secure flags to cookies.' - default: none apispec: type: str description: @@ -66,7 +65,6 @@ - 'OFF' description: - Enable bypass list for the profile. - default: 'OFF' as_prof_deny_list_enable: type: str choices: @@ -74,7 +72,6 @@ - 'OFF' description: - Enable deny list for the profile. - default: 'OFF' augment: type: bool description: @@ -97,7 +94,6 @@ followed by the actions to be enabled. To turn off all actions, type "set appfw profile -blockKeywordAction C(none)".' elements: str - default: none bufferoverflowaction: type: list choices: @@ -121,32 +117,27 @@ description: - Maximum length, in characters, for cookies sent to your protected web sites. Requests with longer cookies are blocked. - default: 4096 bufferoverflowmaxheaderlength: type: float description: - Maximum length, in characters, for HTTP headers in requests sent to your protected web sites. Requests with longer headers are blocked. - default: 4096 bufferoverflowmaxquerylength: type: float description: - Maximum length, in bytes, for query string sent to your protected web sites. Requests with longer query strings are blocked. - default: 65535 bufferoverflowmaxtotalheaderlength: type: float description: - Maximum length, in bytes, for the total HTTP header length in requests sent to your protected web sites. The minimum value of this and maxHeaderLen in httpProfile will be used. Requests with longer length are blocked. - default: 65535 bufferoverflowmaxurllength: type: float description: - Maximum length, in characters, for URLs on your protected web sites. Requests with longer URLs are blocked. - default: 1024 canonicalizehtmlresponse: type: str choices: @@ -155,7 +146,6 @@ description: - Perform HTML entity encoding for any special characters in responses sent by your protected web sites. - default: 'ON' ceflogging: type: str choices: @@ -171,7 +161,6 @@ description: - Check request headers as well as web forms for injected SQL and cross-site scripts. - default: 'OFF' clientipexpression: type: str description: @@ -194,7 +183,6 @@ followed by the actions to be enabled. To turn off all actions, type "set appfw profile -cmdInjectionAction C(none)".' elements: str - default: none cmdinjectiongrammar: type: str choices: @@ -202,7 +190,6 @@ - 'OFF' description: - Check for CMD injection using CMD grammar - default: 'OFF' cmdinjectiontype: type: str choices: @@ -219,7 +206,6 @@ - '-C(CMDSplCharORKeyword) : Checks for both and blocks if anyone is found,' - '-C(None) : Disables checking using both CMD Special Char and Keyword' - default: CMDSplCharANDKeyword comment: type: str description: @@ -267,7 +253,6 @@ followed by the actions to be enabled. To turn off all actions, type "set appfw profile -cookieConsistencyAction C(none)".' elements: str - default: none cookieencryption: type: str choices: @@ -281,7 +266,6 @@ - '* Decrypt Only - Decrypt encrypted cookies, but do not encrypt cookies.' - '* Encrypt Session Only - Encrypt session cookies, but not permanent cookies.' - '* Encrypt All - Encrypt all cookies.' - default: none cookiehijackingaction: type: list choices: @@ -302,7 +286,6 @@ followed by the actions to be enabled. To turn off all actions, type "set appfw profile -cookieHijackingAction C(none)".' elements: str - default: none cookieproxying: type: str choices: @@ -313,7 +296,6 @@ - '* None - Do not proxy cookies.' - '* Session Only - Proxy session cookies by using the Citrix ADC session ID, but do not proxy permanent cookies.' - default: none cookiesamesiteattribute: type: str choices: @@ -324,7 +306,6 @@ - Cookie Samesite attribute added to support adding cookie SameSite attribute for all set-cookies including appfw session cookies. Default value will be "SameSite=Lax". - default: LAX cookietransforms: type: str choices: @@ -340,7 +321,6 @@ - 'CAUTION: Make sure that this parameter is set to C(ON) if you are configuring any cookie transformations. If it is set to C(OFF), no cookie transformations are performed regardless of any other settings.' - default: 'OFF' creditcard: type: list choices: @@ -354,7 +334,6 @@ description: - Credit card types that the application firewall should protect. elements: str - default: none creditcardaction: type: list choices: @@ -374,7 +353,6 @@ followed by the actions to be enabled. To turn off all actions, type "set appfw profile -creditCardAction C(none)".' elements: str - default: none creditcardmaxallowed: type: float description: @@ -389,7 +367,6 @@ description: - Mask any credit card number detected in a response by replacing each digit, except the digits in the final group, with the letter "X." - default: 'OFF' crosssitescriptingaction: type: list choices: @@ -420,7 +397,6 @@ description: - Check complete URLs for cross-site scripts, instead of just the query portions of URLs. - default: 'OFF' crosssitescriptingtransformunsafehtml: type: str choices: @@ -432,7 +408,6 @@ - 'CAUTION: Make sure that this parameter is set to C(ON) if you are configuring any cross-site scripting transformations. If it is set to C(OFF), no cross-site scripting transformations are performed regardless of any other settings.' - default: 'OFF' csrftagaction: type: list choices: @@ -455,7 +430,6 @@ followed by the actions to be enabled. To turn off all actions, type "set appfw profile -CSRFTagAction C(none)".' elements: str - default: none customsettings: type: str description: @@ -481,7 +455,6 @@ description: - Maximum length, in characters, for data entered into a field that is assigned the default field type. - default: 65535 defaultfieldformatminlength: type: float description: @@ -543,7 +516,6 @@ description: - Setting this option logs credit card numbers in the response when the match is found. - default: 'ON' dynamiclearning: type: list choices: @@ -578,7 +550,6 @@ description: - Enable tagging of web form fields for use by the Form Field Consistency and CSRF Form Tagging checks. - default: 'ON' errorurl: type: str description: @@ -590,7 +561,6 @@ - 'OFF' description: - Exclude uploaded files from Form checks. - default: 'OFF' exemptclosureurlsfromsecuritychecks: type: str choices: @@ -600,7 +570,6 @@ - Exempt URLs that pass the Start URL closure check from SQL injection, cross-site script, field format and field consistency security checks at locations other than headers. - default: 'ON' fakeaccountdetection: type: str choices: @@ -609,7 +578,6 @@ description: - 'Fake account detection flag : C(ON)/C(OFF). If set to C(ON) fake account detection in enabled on ADC, if set to C(OFF) fake account detection is disabled.' - default: 'OFF' fieldconsistencyaction: type: list choices: @@ -632,7 +600,6 @@ followed by the actions to be enabled. To turn off all actions, type "set appfw profile -fieldConsistencyAction C(none)".' elements: str - default: none fieldformataction: type: list choices: @@ -659,7 +626,6 @@ description: - Maximum allowed number of file uploads per form-submission request. The maximum setting (65535) allows an unlimited number of uploads. - default: 65535 fileuploadtypesaction: type: list choices: @@ -713,7 +679,6 @@ - Response status code associated with HTML error page. Non-empty HTML error object must be imported to the application firewall profile for the status code. - default: 200 htmlerrorstatusmessage: type: str description: @@ -754,7 +719,6 @@ - 'OFF' description: - Configure whether application firewall should add samesite attribute for set-cookies - default: 'OFF' inspectcontenttypes: type: list choices: @@ -795,7 +759,6 @@ names and values. Available settings function as follows:' - '* C(asp_mode) - Microsoft ASP format.' - '* C(secure_mode) - Secure format.' - default: secure_mode jsonblockkeywordaction: type: list choices: @@ -814,7 +777,6 @@ followed by the actions to be enabled. To turn off all actions, type "set appfw profile -JSONBlockKeywordAction C(none)".' elements: str - default: none jsoncmdinjectionaction: type: list choices: @@ -840,7 +802,6 @@ - 'OFF' description: - Check for CMD injection using CMD grammar in JSON - default: 'OFF' jsoncmdinjectiontype: type: str choices: @@ -857,7 +818,6 @@ - '-C(CMDSplCharORKeyword) : Checks for both and blocks if anyone is found,' - '-C(None) : Disables checking using both SQL Special Char and Keyword' - default: CMDSplCharANDKeyword jsondosaction: type: list choices: @@ -891,7 +851,6 @@ - Response status code associated with JSON error page. Non-empty JSON error object must be imported to the application firewall profile for the status code. - default: 200 jsonerrorstatusmessage: type: str description: @@ -921,7 +880,6 @@ - 'OFF' description: - Check for SQL injection using SQL grammar in JSON - default: 'OFF' jsonsqlinjectiontype: type: str choices: @@ -938,7 +896,6 @@ - '-C(SQLSplCharORKeyword) : Checks for both and blocks if anyone is found,' - '-C(None) : Disables checking using both SQL Special Char and Keyword' - default: SQLSplCharANDKeyword jsonxssaction: type: list choices: @@ -965,7 +922,6 @@ - 'OFF' description: - Log every profile match, regardless of security checks results. - default: 'OFF' matchurlstring: type: str description: @@ -1018,7 +974,6 @@ backend server in most cases.' - '* C(OFF) - Partial requests by the client are changed to full requests to the backend server' - default: 'ON' overwrite: type: bool description: @@ -1031,14 +986,12 @@ description: - Configure whether the application firewall should use percentage recursive decoding - default: 'ON' postbodylimit: type: float description: - Maximum allowed HTTP post body size, in bytes. Maximum supported value is 10GB. Citrix recommends enabling streaming option for large values of post body limit (>20MB). - default: 20000000 postbodylimitaction: type: list choices: @@ -1061,7 +1014,6 @@ - Maximum allowed HTTP post body size for signature inspection for location HTTP_POST_BODY in the signatures, in bytes. Note that the changes in value could impact CPU and latency profile. - default: 2048 protofileobject: type: str description: @@ -1080,7 +1032,6 @@ - Although this parameter is part of the Start URL check, referer validation protects against cross-site request forgery (CSRF) attacks, not Start URL attacks. - default: 'OFF' relaxationrules: type: bool description: @@ -1123,7 +1074,6 @@ - 'OFF' description: - Allow ';' as a form field separator in URL queries and POST form bodies. - default: 'OFF' sessioncookiename: type: str description: @@ -1143,7 +1093,6 @@ - postOnly description: - Perform sessionless Field Consistency Checks. - default: 'OFF' sessionlessurlclosure: type: str choices: @@ -1152,7 +1101,6 @@ description: - Enable session less URL Closure Checks. - 'This check is applicable to Profile Type: HTML.' - default: 'OFF' signatures: type: str description: @@ -1186,7 +1134,6 @@ - 'OFF' description: - Check for form fields that contain SQL wild chars . - default: 'OFF' sqlinjectiongrammar: type: str choices: @@ -1194,7 +1141,6 @@ - 'OFF' description: - Check for SQL injection using SQL grammar - default: 'OFF' sqlinjectiononlycheckfieldswithsqlchars: type: str choices: @@ -1205,7 +1151,6 @@ SQL code. - Most SQL servers require a special string to activate an SQL request, so SQL code without a special string is harmless to most SQL servers. - default: 'ON' sqlinjectionparsecomments: type: str choices: @@ -1230,7 +1175,6 @@ - 'Specifies SQL Injection rule type: C(ALLOW)/C(DENY). If C(ALLOW) rule type is configured then allow list rules are used, if C(DENY) rule type is configured then deny rules are used.' - default: ALLOW sqlinjectiontransformspecialchars: type: str choices: @@ -1244,7 +1188,6 @@ - 'CAUTION: Make sure that this parameter is set to C(ON) if you are configuring any SQL injection transformations. If it is set to C(OFF), no SQL injection transformations are performed regardless of any other settings.' - default: 'OFF' sqlinjectiontype: type: str choices: @@ -1261,7 +1204,6 @@ - '-C(SQLSplCharORKeyword) : Checks for both and blocks if anyone is found' - '-C(None) : Disables checking using both SQL Special Char and Keyword' - default: SQLSplCharANDKeyword starturlaction: type: list choices: @@ -1290,7 +1232,6 @@ - 'OFF' description: - Toggle the state of Start URL Closure. - default: 'OFF' streaming: type: str choices: @@ -1304,7 +1245,6 @@ starturl closure, CSRF tagging, JSON SQL, JSON XSS, JSON DOS is enabled. Please make sure that the backend server accepts chunked requests before enabling this option. Citrix recommends enabling this option for large request sizes(>20MB).' - default: 'OFF' stripcomments: type: str choices: @@ -1313,7 +1253,6 @@ description: - Strip HTML comments. - 'This check is applicable to Profile Type: HTML.' - default: 'OFF' striphtmlcomments: type: str choices: @@ -1323,7 +1262,6 @@ description: - Strip HTML comments before forwarding a web page sent by a protected web site in response to a user request. - default: none stripxmlcomments: type: str choices: @@ -1332,7 +1270,6 @@ description: - Strip XML comments before forwarding a web page sent by a protected web site in response to a user request. - default: none trace: type: str choices: @@ -1340,7 +1277,6 @@ - 'OFF' description: - Toggle the state of trace - default: 'OFF' type: type: list choices: @@ -1361,7 +1297,6 @@ - '* C(HTML) C(XML) C(JSON) - Sites that contain C(HTML), C(XML) and C(JSON) content.' elements: str - default: HTML urldecoderequestcookies: type: str choices: @@ -1370,7 +1305,6 @@ description: - URL Decode request cookies before subjecting them to SQL and cross-site scripting checks. - default: 'OFF' usehtmlerrorobject: type: str choices: @@ -1379,7 +1313,6 @@ description: - Send an imported HTML Error object to a user when a request is blocked, instead of redirecting the user to the designated Error URL. - default: 'OFF' verboseloglevel: type: str choices: @@ -1388,7 +1321,6 @@ - patternPayloadHeader description: - Detailed Logging Verbose Log Level. - default: pattern xmlattachmentaction: type: list choices: @@ -1450,7 +1382,6 @@ description: - Response status code associated with XML error page. Non-empty XML error object must be imported to the application firewall profile for the status code. - default: 200 xmlerrorstatusmessage: type: str description: @@ -1519,7 +1450,6 @@ - 'OFF' description: - Check for form fields that contain SQL wild chars . - default: 'OFF' xmlsqlinjectiononlycheckfieldswithsqlchars: type: str choices: @@ -1528,7 +1458,6 @@ description: - Check only form fields that contain SQL special characters, which most SQL servers require before accepting an SQL command, for injected SQL. - default: 'ON' xmlsqlinjectionparsecomments: type: str choices: @@ -1545,7 +1474,6 @@ - '* ANSI - Exempt content that is part of an ANSI (Mozilla-style) comment.' - '* Nested - Exempt content that is part of a C(nested) (Microsoft-style) comment.' - '* ANSI Nested - Exempt content that is part of any type of comment.' - default: checkall xmlsqlinjectiontype: type: str choices: @@ -1560,7 +1488,6 @@ - '-C(SQLKeyword) : Checks for SQL Keywords' - '-C(SQLSplCharANDKeyword) : Checks for both and blocks if both are found' - '-C(SQLSplCharORKeyword) : Checks for both and blocks if anyone is found' - default: SQLSplCharANDKeyword xmlvalidationaction: type: list choices: diff --git a/plugins/modules/appfwprofile_blockkeyword_binding.py b/plugins/modules/appfwprofile_blockkeyword_binding.py index 592a4be9..db6d49da 100644 --- a/plugins/modules/appfwprofile_blockkeyword_binding.py +++ b/plugins/modules/appfwprofile_blockkeyword_binding.py @@ -56,7 +56,6 @@ - NOTREGEX description: - Is block keyword field name regular expression? - default: NOTREGEX blockkeyword: type: str description: diff --git a/plugins/modules/appfwprofile_bypasslist_binding.py b/plugins/modules/appfwprofile_bypasslist_binding.py index ede59951..b107bbff 100644 --- a/plugins/modules/appfwprofile_bypasslist_binding.py +++ b/plugins/modules/appfwprofile_bypasslist_binding.py @@ -65,7 +65,6 @@ - Expression description: - Bypass List value type - default: literal comment: type: str description: diff --git a/plugins/modules/appfwprofile_denylist_binding.py b/plugins/modules/appfwprofile_denylist_binding.py index ac6439fd..00cce49b 100644 --- a/plugins/modules/appfwprofile_denylist_binding.py +++ b/plugins/modules/appfwprofile_denylist_binding.py @@ -52,7 +52,6 @@ description: - Deny List Action. Default value = C(REDIRECT) elements: str - default: REDIRECT as_deny_list_location: type: str choices: @@ -69,7 +68,6 @@ - Expression description: - Deny List value type - default: literal comment: type: str description: diff --git a/plugins/modules/appfwprofile_fileuploadtype_binding.py b/plugins/modules/appfwprofile_fileuploadtype_binding.py index 8411f755..7f253095 100644 --- a/plugins/modules/appfwprofile_fileuploadtype_binding.py +++ b/plugins/modules/appfwprofile_fileuploadtype_binding.py @@ -83,7 +83,6 @@ - NOTREGEX description: - Is field name a regular expression? - default: NOTREGEX isregex_fileuploadtypes_url: type: str choices: diff --git a/plugins/modules/appfwprofile_jsonblockkeyword_binding.py b/plugins/modules/appfwprofile_jsonblockkeyword_binding.py index 722891e9..04a1a99b 100644 --- a/plugins/modules/appfwprofile_jsonblockkeyword_binding.py +++ b/plugins/modules/appfwprofile_jsonblockkeyword_binding.py @@ -64,7 +64,6 @@ - NOTREGEX description: - Is JSON blockkeyword key a regular expression? - default: NOTREGEX jsonblockkeyword: type: str description: diff --git a/plugins/modules/appfwprofile_jsondosurl_binding.py b/plugins/modules/appfwprofile_jsondosurl_binding.py index 5b314813..319f466d 100644 --- a/plugins/modules/appfwprofile_jsondosurl_binding.py +++ b/plugins/modules/appfwprofile_jsondosurl_binding.py @@ -88,7 +88,6 @@ description: - Maximum array length in the any of JSON object. This check protects against arrays having large lengths. - default: 10000 jsonmaxarraylengthcheck: type: str choices: @@ -102,7 +101,6 @@ - Maximum allowed nesting depth of JSON document. JSON allows one to nest the containers (object and array) in any order to any depth. This check protects against documents that have excessive depth of hierarchy. - default: 5 jsonmaxcontainerdepthcheck: type: str choices: @@ -114,7 +112,6 @@ type: float description: - Maximum document length of JSON document, in bytes. - default: 20000000 jsonmaxdocumentlengthcheck: type: str choices: @@ -127,7 +124,6 @@ description: - Maximum key count in the any of JSON object. This check protects against objects that have large number of keys. - default: 10000 jsonmaxobjectkeycountcheck: type: str choices: @@ -140,7 +136,6 @@ description: - Maximum key length in the any of JSON object. This check protects against objects that have large keys. - default: 128 jsonmaxobjectkeylengthcheck: type: str choices: @@ -153,7 +148,6 @@ description: - Maximum string length in the JSON. This check protects against strings that have large length. - default: 1000000 jsonmaxstringlengthcheck: type: str choices: diff --git a/plugins/modules/appfwprotofile.py b/plugins/modules/appfwprotofile.py index 3b7733b5..dfc7aa96 100644 --- a/plugins/modules/appfwprotofile.py +++ b/plugins/modules/appfwprotofile.py @@ -27,6 +27,7 @@ state: choices: - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler diff --git a/plugins/modules/appfwsettings.py b/plugins/modules/appfwsettings.py index d8536f65..438ef21e 100644 --- a/plugins/modules/appfwsettings.py +++ b/plugins/modules/appfwsettings.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str ceflogging: type: str @@ -41,7 +43,6 @@ - 'OFF' description: - Enable CEF format logs. - default: 'OFF' centralizedlearning: type: str choices: @@ -49,7 +50,6 @@ - 'OFF' description: - Flag used to enable/disable ADM centralized learning - default: 'OFF' clientiploggingheader: type: str description: @@ -65,7 +65,6 @@ - Profile to use when a connection does not match any policy. Default setting is APPFW_BYPASS, which sends unmatched connections back to the Citrix ADC without attempting to filter them further. - default: APPFW_BYPASS entitydecoding: type: str choices: @@ -73,7 +72,6 @@ - 'OFF' description: - Transform multibyte (double- or half-width) characters to single width characters. - default: 'OFF' geolocationlogging: type: str choices: @@ -81,14 +79,12 @@ - 'OFF' description: - Enable Geo-Location Logging in CEF format logs. - default: 'OFF' importsizelimit: type: float description: - Cumulative total maximum number of bytes in web forms imported to a protected web site. If a user attempts to upload files with a total byte count higher than the specified limit, the application firewall blocks the request. - default: 134217728 learnratelimit: type: float description: @@ -96,7 +92,6 @@ engine examines to generate new relaxations for learning-enabled security checks. The application firewall drops any connections above this limit from the list of connections used by the learning engine. - default: 400 logmalformedreq: type: str choices: @@ -105,7 +100,6 @@ description: - Log requests that are so malformed that application firewall parsing doesn't occur. - default: 'ON' malformedreqaction: type: list choices: @@ -125,7 +119,6 @@ type: int description: - Proxy Server Port to get updated signatures from AWS. - default: 8080 proxyserver: type: str description: @@ -159,14 +152,12 @@ - Maximum number of sessions that the application firewall allows to be active, regardless of user activity. After the max_limit reaches, No more user session will be created . - default: 100000 sessiontimeout: type: float description: - Timeout, in seconds, after which a user session is terminated. Before continuing to use the protected web site, the user must establish a new session by opening a designated start URL. - default: 900 signatureautoupdate: type: str choices: @@ -174,12 +165,10 @@ - 'OFF' description: - Flag used to enable/disable auto update signatures - default: 'OFF' signatureurl: type: str description: - URL to download the mapping file from server - default: https://s3.amazonaws.com/NSAppFwSignatures/SignaturesMapping.xml undefaction: type: str description: @@ -188,7 +177,6 @@ - An UNDEF event indicates an internal error condition. The APPFW_BLOCK built-in profile is the default setting. You can specify a different built-in or user-created profile as the UNDEF profile. - default: APPFW_BLOCK useconfigurablesecretkey: type: str choices: @@ -196,7 +184,6 @@ - 'OFF' description: - Use configurable secret key in AppFw operations - default: 'OFF' extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/appfwsignatures.py b/plugins/modules/appfwsignatures.py index 94aa9aad..dcd8be07 100644 --- a/plugins/modules/appfwsignatures.py +++ b/plugins/modules/appfwsignatures.py @@ -28,6 +28,7 @@ state: choices: - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler @@ -51,7 +52,6 @@ - 'OFF' description: - Flag used to enable/disable auto enable new signatures - default: 'OFF' category: type: str description: @@ -67,7 +67,6 @@ - 'OFF' description: - Flag used to enable/disable enable signature rule IDs/Signature Category - default: 'ON' merge: type: bool description: diff --git a/plugins/modules/appfwurlencodedformcontenttype.py b/plugins/modules/appfwurlencodedformcontenttype.py index a6586d49..bdab57c5 100644 --- a/plugins/modules/appfwurlencodedformcontenttype.py +++ b/plugins/modules/appfwurlencodedformcontenttype.py @@ -43,7 +43,6 @@ - NOTREGEX description: - Is urlencoded form content type a regular expression? - default: NOTREGEX urlencodedformcontenttypevalue: type: str description: @@ -53,6 +52,21 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | appfwurlEncodedFormContentType + delegate_to: localhost + netscaler.adc.appfwurlencodedformcontenttype: + state: present + urlencodedformcontenttypevalue: application/x-www-form-urlencoded + - name: Sample Task | appfwurlEncodedFormContentType | 2 + delegate_to: localhost + netscaler.adc.appfwurlencodedformcontenttype: + state: present + urlencodedformcontenttypevalue: application/x-www-form-urlencoded.* + isregex: REGEX """ RETURN = r""" diff --git a/plugins/modules/appfwwsdl.py b/plugins/modules/appfwwsdl.py index 9c345968..ac2b1fa9 100644 --- a/plugins/modules/appfwwsdl.py +++ b/plugins/modules/appfwwsdl.py @@ -27,6 +27,7 @@ state: choices: - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler diff --git a/plugins/modules/appfwxmlcontenttype.py b/plugins/modules/appfwxmlcontenttype.py index 61aa7cdb..683023a9 100644 --- a/plugins/modules/appfwxmlcontenttype.py +++ b/plugins/modules/appfwxmlcontenttype.py @@ -43,7 +43,6 @@ - NOTREGEX description: - Is field name a regular expression? - default: NOTREGEX xmlcontenttypevalue: type: str description: @@ -53,6 +52,16 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | appfwXMLContentType + delegate_to: localhost + netscaler.adc.appfwxmlcontenttype: + state: present + xmlcontenttypevalue: .*/xml + isregex: REGEX """ RETURN = r""" diff --git a/plugins/modules/appfwxmlerrorpage.py b/plugins/modules/appfwxmlerrorpage.py index fcaaeb5b..d6d494ff 100644 --- a/plugins/modules/appfwxmlerrorpage.py +++ b/plugins/modules/appfwxmlerrorpage.py @@ -27,6 +27,7 @@ state: choices: - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler diff --git a/plugins/modules/appfwxmlschema.py b/plugins/modules/appfwxmlschema.py index 8605d904..08b97f28 100644 --- a/plugins/modules/appfwxmlschema.py +++ b/plugins/modules/appfwxmlschema.py @@ -27,6 +27,7 @@ state: choices: - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler diff --git a/plugins/modules/application.py b/plugins/modules/application.py index 32413e7c..b3165fca 100644 --- a/plugins/modules/application.py +++ b/plugins/modules/application.py @@ -27,6 +27,7 @@ state: choices: - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler diff --git a/plugins/modules/appqoeaction.py b/plugins/modules/appqoeaction.py index d8b46fbc..09cc29f0 100644 --- a/plugins/modules/appqoeaction.py +++ b/plugins/modules/appqoeaction.py @@ -84,7 +84,6 @@ type: float description: - Retry count - default: 3 polqdepth: type: float description: @@ -131,7 +130,6 @@ - 'NO' description: - Retry on TCP Reset - default: 'NO' retryontimeout: type: float description: diff --git a/plugins/modules/appqoecustomresp.py b/plugins/modules/appqoecustomresp.py index 6276dc75..157ca482 100644 --- a/plugins/modules/appqoecustomresp.py +++ b/plugins/modules/appqoecustomresp.py @@ -27,6 +27,7 @@ state: choices: - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler diff --git a/plugins/modules/appqoeparameter.py b/plugins/modules/appqoeparameter.py index 5e284f02..c10bdbdb 100644 --- a/plugins/modules/appqoeparameter.py +++ b/plugins/modules/appqoeparameter.py @@ -27,29 +27,28 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str avgwaitingclient: type: float description: - average number of client connections, that can sit in service waiting queue - default: 1000000 dosattackthresh: type: float description: - average number of client connection that can queue up on vserver level without triggering DoS mitigation module - default: 2000 maxaltrespbandwidth: type: float description: - maximum bandwidth which will determine whether to send alternate content response - default: 100 sessionlife: type: float description: @@ -57,7 +56,6 @@ content window is displayed. The alternative content window is displayed only once during a session for the same browser accessing a configured URL, so this parameter determines the length of a session. - default: 300 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/arpparam.py b/plugins/modules/arpparam.py index 6c511460..9ee59092 100644 --- a/plugins/modules/arpparam.py +++ b/plugins/modules/arpparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str spoofvalidation: type: str @@ -41,7 +43,6 @@ - DISABLED description: - enable/disable arp spoofing validation - default: DISABLED timeout: type: float description: @@ -49,7 +50,6 @@ The new value applies only to ARP entries that are dynamically learned after the new value is set. Previously existing ARP entries expire after the previously configured aging time. - default: 1200 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/auditmessageaction.py b/plugins/modules/auditmessageaction.py index 6772a956..0462a223 100644 --- a/plugins/modules/auditmessageaction.py +++ b/plugins/modules/auditmessageaction.py @@ -43,7 +43,6 @@ - 'NO' description: - Bypass the safety check and allow unsafe expressions. - default: 'NO' loglevel: type: str choices: diff --git a/plugins/modules/auditnslogaction.py b/plugins/modules/auditnslogaction.py index 89cd161e..d59d655f 100644 --- a/plugins/modules/auditnslogaction.py +++ b/plugins/modules/auditnslogaction.py @@ -87,7 +87,6 @@ description: - Time, in seconds, for which the Citrix ADC waits before sending another DNS query to resolve the host name of the audit server if the last query failed. - default: 5 logfacility: type: str choices: diff --git a/plugins/modules/auditnslogglobal_auditnslogpolicy_binding.py b/plugins/modules/auditnslogglobal_auditnslogpolicy_binding.py index a26b6cd8..f8dca4ff 100644 --- a/plugins/modules/auditnslogglobal_auditnslogpolicy_binding.py +++ b/plugins/modules/auditnslogglobal_auditnslogpolicy_binding.py @@ -57,7 +57,6 @@ - APPFW_GLOBAL description: - '0' - default: SYSTEM_GLOBAL policyname: type: str description: diff --git a/plugins/modules/auditnslogparams.py b/plugins/modules/auditnslogparams.py index 176071d2..243c9ff6 100644 --- a/plugins/modules/auditnslogparams.py +++ b/plugins/modules/auditnslogparams.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str acl: type: str diff --git a/plugins/modules/auditsyslogaction.py b/plugins/modules/auditsyslogaction.py index 9fe4aca4..f0828518 100644 --- a/plugins/modules/auditsyslogaction.py +++ b/plugins/modules/auditsyslogaction.py @@ -94,7 +94,6 @@ description: - Time, in seconds, for which the Citrix ADC waits before sending another DNS query to resolve the host name of the syslog server if the last query failed. - default: 5 lbvservername: type: str description: @@ -153,7 +152,6 @@ type: float description: - Max size of log data that can be held in NSB chain of server info. - default: 500 name: type: str description: diff --git a/plugins/modules/auditsyslogglobal_auditsyslogpolicy_binding.py b/plugins/modules/auditsyslogglobal_auditsyslogpolicy_binding.py index e8684f5b..d7bd30ac 100644 --- a/plugins/modules/auditsyslogglobal_auditsyslogpolicy_binding.py +++ b/plugins/modules/auditsyslogglobal_auditsyslogpolicy_binding.py @@ -133,7 +133,6 @@ - APPFW_GLOBAL description: - '0' - default: SYSTEM_GLOBAL policyname: type: str description: diff --git a/plugins/modules/auditsyslogparams.py b/plugins/modules/auditsyslogparams.py index 24251dd9..94eda97b 100644 --- a/plugins/modules/auditsyslogparams.py +++ b/plugins/modules/auditsyslogparams.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str acl: type: str diff --git a/plugins/modules/authenticationazurekeyvault.py b/plugins/modules/authenticationazurekeyvault.py index 10cb3ee2..494a90bf 100644 --- a/plugins/modules/authenticationazurekeyvault.py +++ b/plugins/modules/authenticationazurekeyvault.py @@ -45,7 +45,6 @@ - If authentication is disabled, otp checks are not performed after azure vault keys are obtained. This is useful to distinguish whether user has registered devices. - default: ENABLED clientid: type: str description: @@ -78,7 +77,6 @@ type: float description: - Interval at which access token in obtained. - default: 50 servicekeyname: type: str description: @@ -89,7 +87,6 @@ - RS256 description: - Algorithm to be used to sign/verify transactions - default: RS256 tenantid: type: str description: diff --git a/plugins/modules/authenticationcertaction.py b/plugins/modules/authenticationcertaction.py index fcbda8b5..f6f9c369 100644 --- a/plugins/modules/authenticationcertaction.py +++ b/plugins/modules/authenticationcertaction.py @@ -69,7 +69,6 @@ - Enables or disables two-factor authentication. - Two factor authentication is client cert authentication followed by password authentication. - default: 'OFF' usernamefield: type: str description: diff --git a/plugins/modules/authenticationcitrixauthaction.py b/plugins/modules/authenticationcitrixauthaction.py index 4c124f8f..3b0ab950 100644 --- a/plugins/modules/authenticationcitrixauthaction.py +++ b/plugins/modules/authenticationcitrixauthaction.py @@ -44,7 +44,6 @@ description: - Authentication needs to be disabled for searching user object without performing authentication. - default: ENABLED authenticationtype: type: str choices: @@ -53,7 +52,6 @@ description: - Type of the Citrix Authentication implementation. Default implementation uses Citrix Cloud Connector. - default: CITRIXCONNECTOR name: type: str description: diff --git a/plugins/modules/authenticationemailaction.py b/plugins/modules/authenticationemailaction.py index 2156d133..4a46da85 100644 --- a/plugins/modules/authenticationemailaction.py +++ b/plugins/modules/authenticationemailaction.py @@ -77,7 +77,6 @@ type: float description: - Time after which the code expires. - default: 180 type: type: str choices: @@ -85,7 +84,6 @@ - ATHENA description: - Type of the email action. Default type is C(SMTP). - default: SMTP username: type: str description: diff --git a/plugins/modules/authenticationldapaction.py b/plugins/modules/authenticationldapaction.py index 81630960..ae70e080 100644 --- a/plugins/modules/authenticationldapaction.py +++ b/plugins/modules/authenticationldapaction.py @@ -127,12 +127,10 @@ - CAUTION! Authentication should be disabled only for authorization group extraction or where other (non-LDAP) authentication methods are in use and either bound to a primary list or flagged as secondary. - default: ENABLED authtimeout: type: float description: - Number of seconds the Citrix ADC waits for a response from the RADIUS server. - default: 3 cloudattributes: type: str choices: @@ -141,7 +139,6 @@ description: - The Citrix ADC uses the cloud attributes to extract additional attributes from LDAP servers required for Citrix Cloud operations - default: DISABLED defaultauthenticationgroup: type: str description: @@ -152,7 +149,6 @@ description: - The Citrix ADC uses the email attribute to query the Active Directory for the email id of a user - default: mail followreferrals: type: str choices: @@ -161,7 +157,6 @@ description: - Setting this option to C(ON) enables following LDAP referrals received from the LDAP server. - default: 'OFF' groupattrname: type: str description: @@ -229,13 +224,11 @@ type: float description: - Specifies the maximum number of nested referrals to follow. - default: 1 maxnestinglevel: type: float description: - If nested group extraction is ON, specifies the number of levels up to which group extraction is performed. - default: 2 mssrvrecordlocation: type: str description: @@ -264,7 +257,6 @@ description: - Allow nested group extraction, in which the Citrix ADC queries external LDAP servers to determine whether a group is part of another group. - default: 'OFF' otpsecret: type: str description: @@ -277,7 +269,6 @@ - DISABLED description: - Allow password change requests. - default: DISABLED pushservice: type: str description: @@ -290,7 +281,6 @@ - MSSRV-REC description: - Specifies the DNS Record lookup Type for the referrals - default: A-REC requireuser: type: str choices: @@ -302,7 +292,6 @@ [Both username validation as well as password validation skipped] and (non-LDAP) authentication methods are in use and either bound to a primary list or flagged as secondary. - default: 'YES' searchfilter: type: str description: @@ -321,7 +310,6 @@ description: - Type of security used for communications between the Citrix ADC and the LDAP server. For the C(PLAINTEXT) setting, no encryption is required. - default: PLAINTEXT serverip: type: str description: @@ -334,7 +322,6 @@ type: int description: - Port on which the LDAP server accepts connections. - default: 389 sshpublickey: type: str description: @@ -365,7 +352,6 @@ - 'NO' description: - When to validate LDAP server certs - default: 'NO' extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/authenticationloginschema.py b/plugins/modules/authenticationloginschema.py index a633a436..b4a29c5c 100644 --- a/plugins/modules/authenticationloginschema.py +++ b/plugins/modules/authenticationloginschema.py @@ -80,7 +80,6 @@ description: - This option indicates whether current factor credentials are the default SSO (SingleSignOn) credentials. - default: 'NO' usercredentialindex: type: float description: diff --git a/plugins/modules/authenticationoauthaction.py b/plugins/modules/authenticationoauthaction.py index acadf968..32372229 100644 --- a/plugins/modules/authenticationoauthaction.py +++ b/plugins/modules/authenticationoauthaction.py @@ -146,7 +146,6 @@ - DISABLED description: - If authentication is disabled, password is not sent in the request. - default: ENABLED authorizationendpoint: type: str description: @@ -186,7 +185,6 @@ - PASSWORD description: - Grant type support. value can be code or password - default: CODE graphendpoint: type: str description: @@ -232,7 +230,6 @@ description: - Type of the OAuth implementation. Default value is generic implementation that is applicable for most deployments. - default: GENERIC pkce: type: str choices: @@ -240,12 +237,10 @@ - DISABLED description: - Option to enable/disable PKCE flow during authentication. - default: ENABLED refreshinterval: type: float description: - Interval at which services are monitored for necessary configuration. - default: 1440 resourceuri: type: str description: @@ -257,7 +252,6 @@ ADC allows on an incoming token. For example, if skewTime is 10, then token would be valid from (current time - 10) min to (current time + 10) min, ie 20min in all. - default: 5 tenantid: type: str description: @@ -279,7 +273,6 @@ description: - Option to select the variant of token authentication method. This method is used while exchanging code with IdP. - default: client_secret_post userinfourl: type: str description: diff --git a/plugins/modules/authenticationoauthidpprofile.py b/plugins/modules/authenticationoauthidpprofile.py index f3a98897..f62cac01 100644 --- a/plugins/modules/authenticationoauthidpprofile.py +++ b/plugins/modules/authenticationoauthidpprofile.py @@ -77,7 +77,6 @@ - 'OFF' description: - Option to encrypt token when Citrix ADC IDP sends one. - default: 'OFF' issuer: type: str description: @@ -103,7 +102,6 @@ type: float description: - Interval at which Relying Party metadata is refreshed. - default: 50 relyingpartymetadataurl: type: str description: @@ -117,7 +115,6 @@ - 'OFF' description: - Option to send encrypted password in idtoken. - default: 'OFF' signaturealg: type: str choices: @@ -125,7 +122,6 @@ - RS512 description: - Algorithm to be used to sign OpenID tokens. - default: RS256 signatureservice: type: str description: @@ -137,7 +133,6 @@ - This option specifies the duration for which the token sent by Citrix ADC IdP is valid. For example, if skewTime is 10, then token would be valid from (current time - 10) min to (current time + 10) min, ie 20min in all. - default: 5 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/authenticationpolicylabel.py b/plugins/modules/authenticationpolicylabel.py index 906cbad5..c8a7aaaa 100644 --- a/plugins/modules/authenticationpolicylabel.py +++ b/plugins/modules/authenticationpolicylabel.py @@ -71,7 +71,6 @@ description: - Type of feature (aaatm or rba) against which to match the policies bound to this policy label. - default: AAATM_REQ authenticationpolicylabel_authenticationpolicy_binding: type: dict description: Bindings for authenticationpolicylabel_authenticationpolicy_binding diff --git a/plugins/modules/authenticationpushservice.py b/plugins/modules/authenticationpushservice.py index 0e61f8f3..8325b9d5 100644 --- a/plugins/modules/authenticationpushservice.py +++ b/plugins/modules/authenticationpushservice.py @@ -64,7 +64,6 @@ type: float description: - Interval at which certificates or idtoken is refreshed. - default: 50 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/authenticationradiusaction.py b/plugins/modules/authenticationradiusaction.py index 2ef739c3..9140f3dc 100644 --- a/plugins/modules/authenticationradiusaction.py +++ b/plugins/modules/authenticationradiusaction.py @@ -50,18 +50,15 @@ - 'OFF' description: - Configure the RADIUS server state to accept or refuse authentication messages. - default: 'ON' authservretry: type: float description: - Number of retry by the Citrix ADC before getting response from the RADIUS server. - default: 3 authtimeout: type: float description: - Number of seconds the Citrix ADC waits for a response from the RADIUS server. - default: 3 callingstationid: type: str choices: @@ -70,7 +67,6 @@ description: - Send Calling-Station-ID of the client to the RADIUS server. IP Address of the client is sent as its Calling-Station-ID. - default: DISABLED defaultauthenticationgroup: type: str description: @@ -103,7 +99,6 @@ description: - Encoding type for passwords in RADIUS packets that the Citrix ADC sends to the RADIUS server. - default: pap pwdattributetype: type: float description: @@ -177,7 +172,6 @@ - TLS description: - Transport mode to RADIUS server. - default: UDP tunnelendpointclientip: type: str choices: @@ -185,7 +179,6 @@ - DISABLED description: - Send Tunnel Endpoint Client IP address to the RADIUS server. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/authenticationsamlaction.py b/plugins/modules/authenticationsamlaction.py index cde52d5e..5742e157 100644 --- a/plugins/modules/authenticationsamlaction.py +++ b/plugins/modules/authenticationsamlaction.py @@ -143,7 +143,6 @@ - Index/ID of the attribute specification at Identity Provider (IdP). IdP will locate attributes requested by SP using this index and send those attributes in Assertion - default: 255 attributes: type: str description: @@ -272,7 +271,6 @@ - SHA256 description: - Algorithm to be used to compute/verify digest for SAML transactions - default: SHA256 enforceusername: type: str choices: @@ -281,7 +279,6 @@ description: - Option to choose whether the username that is extracted from SAML assertion can be edited in login page while doing second factor - default: 'ON' forceauthn: type: str choices: @@ -290,7 +287,6 @@ description: - Option that forces authentication at the Identity Provider (IdP) that receives Citrix ADC's request - default: 'OFF' groupnamefield: type: str description: @@ -302,7 +298,6 @@ - POST description: - This element specifies the transport mechanism of saml logout messages. - default: POST logouturl: type: str description: @@ -312,7 +307,6 @@ type: float description: - Interval in minutes for fetching metadata from specified metadata URL - default: 3600 metadataurl: type: str description: @@ -351,12 +345,10 @@ description: - This element specifies the authentication context requirements of authentication statements returned in the response. - default: exact samlacsindex: type: float description: - Index/ID of the metadata entry corresponding to this configuration. - default: 255 samlbinding: type: str choices: @@ -365,7 +357,6 @@ - ARTIFACT description: - This element specifies the transport mechanism of saml messages. - default: POST samlidpcertname: type: str description: @@ -391,7 +382,6 @@ - Reject unsigned SAML assertions. C(ON) option results in rejection of Assertion that is received without signature. C(STRICT) option ensures that both Response and Assertion are signed. C(OFF) allows unsigned Assertions. - default: 'ON' samlsigningcertname: type: str description: @@ -404,7 +394,6 @@ - 'OFF' description: - Option to enable second factor after SAML - default: 'OFF' samluserfield: type: str description: @@ -416,7 +405,6 @@ - 'OFF' description: - Option to send thumbprint instead of x509 certificate in SAML request - default: 'OFF' signaturealg: type: str choices: @@ -424,7 +412,6 @@ - RSA-SHA256 description: - Algorithm to be used to sign/verify SAML transactions - default: RSA-SHA256 skewtime: type: float description: @@ -432,7 +419,6 @@ ADC ServiceProvider allows on an incoming assertion. For example, if skewTime is 10, then assertion would be valid from (current time - 10) min to (current time + 10) min, ie 20min in all. - default: 5 statechecks: type: str description: @@ -447,7 +433,6 @@ - 'OFF' description: - Option to store entire SAML Response through the life of user session. - default: 'OFF' extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/authenticationsamlidpprofile.py b/plugins/modules/authenticationsamlidpprofile.py index 7fa45467..53781d08 100644 --- a/plugins/modules/authenticationsamlidpprofile.py +++ b/plugins/modules/authenticationsamlidpprofile.py @@ -384,7 +384,6 @@ - SHA256 description: - Algorithm to be used to compute/verify digest for SAML transactions - default: SHA256 encryptassertion: type: str choices: @@ -392,7 +391,6 @@ - 'OFF' description: - Option to encrypt assertion when Citrix ADC IDP sends one. - default: 'OFF' encryptionalgorithm: type: str choices: @@ -402,7 +400,6 @@ - AES256 description: - Algorithm to be used to encrypt SAML assertion - default: AES256 keytransportalg: type: str choices: @@ -410,7 +407,6 @@ - RSA_OAEP description: - Key transport algorithm to be used in encryption of SAML assertion - default: RSA_OAEP logoutbinding: type: str choices: @@ -418,12 +414,10 @@ - POST description: - This element specifies the transport mechanism of saml logout messages. - default: POST metadatarefreshinterval: type: float description: - Interval in minute for fetching metadata from specified metadata URL - default: 3600 metadataurl: type: str description: @@ -456,7 +450,6 @@ - transient description: - Format of Name Identifier sent in Assertion. - default: transient rejectunsignedrequests: type: str choices: @@ -465,7 +458,6 @@ description: - Option to Reject unsigned SAML Requests. C(ON) option denies any authentication requests that arrive without signature. - default: 'ON' samlbinding: type: str choices: @@ -474,7 +466,6 @@ - ARTIFACT description: - This element specifies the transport mechanism of saml messages. - default: POST samlidpcertname: type: str description: @@ -508,7 +499,6 @@ - 'OFF' description: - Option to send password in assertion. - default: 'OFF' serviceproviderid: type: str description: @@ -527,7 +517,6 @@ - Option to sign portions of assertion when Citrix ADC IDP sends one. Based on the user selection, either Assertion or Response or Both or none can be signed - default: ASSERTION signaturealg: type: str choices: @@ -535,7 +524,6 @@ - RSA-SHA256 description: - Algorithm to be used to sign/verify SAML transactions - default: RSA-SHA256 signatureservice: type: str description: @@ -547,7 +535,6 @@ that the assertion would be valid. For example, if skewTime is 10, then assertion would be valid from (current time - 10) min to (current time + 10) min, ie 20min in all. - default: 5 splogouturl: type: str description: diff --git a/plugins/modules/authenticationtacacsaction.py b/plugins/modules/authenticationtacacsaction.py index 4e449f25..2cce989b 100644 --- a/plugins/modules/authenticationtacacsaction.py +++ b/plugins/modules/authenticationtacacsaction.py @@ -151,7 +151,6 @@ type: float description: - Number of seconds the Citrix ADC waits for a response from the TACACS+ server. - default: 3 defaultauthenticationgroup: type: str description: @@ -183,7 +182,6 @@ type: int description: - Port number on which the TACACS+ server listens for connections. - default: 49 tacacssecret: type: str description: diff --git a/plugins/modules/authenticationvserver.py b/plugins/modules/authenticationvserver.py index 51a76644..5b146f38 100644 --- a/plugins/modules/authenticationvserver.py +++ b/plugins/modules/authenticationvserver.py @@ -47,7 +47,6 @@ - DISABLED description: - Log AppFlow flow information. - default: ENABLED authentication: type: str choices: @@ -56,7 +55,6 @@ description: - Require users to be authenticated before sending traffic through this virtual server. - default: 'ON' authenticationdomain: type: str description: @@ -122,7 +120,6 @@ - The new range of authentication virtual servers will have IP addresses consecutively numbered, starting with the primary address specified with the IP Address parameter. - default: 1 samesite: type: str choices: @@ -139,7 +136,6 @@ - SSL description: - Protocol type of the authentication virtual server. Always C(SSL). - default: SSL td: type: float description: diff --git a/plugins/modules/autoscaleaction.py b/plugins/modules/autoscaleaction.py index 44a0a85f..f2ac6c2b 100644 --- a/plugins/modules/autoscaleaction.py +++ b/plugins/modules/autoscaleaction.py @@ -52,7 +52,6 @@ type: float description: - Time in seconds no other policy is evaluated or action is taken - default: 300 type: type: str choices: @@ -64,7 +63,6 @@ type: float description: - Time in minutes a VM is kept in inactive state before destroying - default: 10 vserver: type: str description: diff --git a/plugins/modules/botglobal_botpolicy_binding.py b/plugins/modules/botglobal_botpolicy_binding.py index 799d1514..1a40ef3b 100644 --- a/plugins/modules/botglobal_botpolicy_binding.py +++ b/plugins/modules/botglobal_botpolicy_binding.py @@ -47,7 +47,6 @@ - APPFW_GLOBAL description: - '0' - default: SYSTEM_GLOBAL gotopriorityexpression: type: str description: diff --git a/plugins/modules/botprofile.py b/plugins/modules/botprofile.py index eaf85916..6b2360b8 100644 --- a/plugins/modules/botprofile.py +++ b/plugins/modules/botprofile.py @@ -43,7 +43,6 @@ - 'OFF' description: - Enable black-list bot detection. - default: 'OFF' bot_enable_ip_reputation: type: str choices: @@ -51,7 +50,6 @@ - 'OFF' description: - Enable IP-reputation bot detection. - default: 'OFF' bot_enable_rate_limit: type: str choices: @@ -59,7 +57,6 @@ - 'OFF' description: - Enable rate-limit bot detection. - default: 'OFF' bot_enable_tps: type: str choices: @@ -67,7 +64,6 @@ - 'OFF' description: - Enable TPS. - default: 'OFF' bot_enable_white_list: type: str choices: @@ -75,7 +71,6 @@ - 'OFF' description: - Enable white-list bot detection. - default: 'OFF' clientipexpression: type: str description: @@ -92,7 +87,6 @@ - 'OFF' description: - Enable device-fingerprint bot detection - default: 'OFF' devicefingerprintaction: type: list choices: @@ -105,7 +99,6 @@ description: - Action to be taken for device-fingerprint based bot detection. elements: str - default: NONE devicefingerprintmobile: type: list choices: @@ -115,7 +108,6 @@ description: - Enabling bot device fingerprint protection for mobile clients elements: str - default: NONE dfprequestlimit: type: float description: @@ -132,7 +124,6 @@ - 'OFF' description: - Enable Headless Browser detection. - default: 'OFF' kmdetection: type: str choices: @@ -140,7 +131,6 @@ - 'OFF' description: - Enable keyboard-mouse based bot detection. - default: 'OFF' kmeventspostbodylimit: type: float description: @@ -199,7 +189,6 @@ - Actions to be taken if multiple User-Agent headers are seen in a request (Applicable if Signature check is enabled). Log action should be combined with other actions elements: str - default: CHECKLAST signaturenouseragentheaderaction: type: list choices: @@ -212,7 +201,6 @@ - Actions to be taken if no User-Agent header in the request (Applicable if Signature check is enabled). elements: str - default: DROP spoofedreqaction: type: list choices: @@ -225,7 +213,6 @@ - Actions to be taken on a spoofed request (A request spoofing good bot user agent string). elements: str - default: LOG trap: type: str choices: @@ -233,7 +220,6 @@ - 'OFF' description: - Enable trap bot detection. - default: 'OFF' trapaction: type: list choices: @@ -245,7 +231,6 @@ description: - Action to be taken for bot trap based bot detection. elements: str - default: NONE trapurl: type: str description: @@ -258,7 +243,6 @@ description: - Bot verbose Logging. Based on the log level, ADC will log additional information whenever client is detected as a bot. - default: NONE botprofile_blacklist_binding: type: dict description: Bindings for botprofile_blacklist_binding resource diff --git a/plugins/modules/botprofile_blacklist_binding.py b/plugins/modules/botprofile_blacklist_binding.py index 445572eb..979189b5 100644 --- a/plugins/modules/botprofile_blacklist_binding.py +++ b/plugins/modules/botprofile_blacklist_binding.py @@ -59,7 +59,6 @@ - One or more actions to be taken if bot is detected based on this Blacklist binding. Only C(LOG) action can be combined with C(DROP) or C(RESET) action. elements: str - default: NONE bot_blacklist_enabled: type: str choices: @@ -67,7 +66,6 @@ - 'OFF' description: - Enabled or disbaled black-list binding. - default: 'OFF' bot_blacklist_type: type: str choices: diff --git a/plugins/modules/botprofile_captcha_binding.py b/plugins/modules/botprofile_captcha_binding.py index a8937ed0..289794c9 100644 --- a/plugins/modules/botprofile_captcha_binding.py +++ b/plugins/modules/botprofile_captcha_binding.py @@ -54,7 +54,6 @@ - One or more actions to be taken when client fails captcha challenge. Only, log action can be configured with C(DROP), C(REDIRECT) or C(RESET) action. elements: str - default: NONE bot_captcha_enabled: type: str choices: @@ -62,7 +61,6 @@ - 'OFF' description: - Enable or disable the captcha binding. - default: 'OFF' bot_captcha_url: type: str description: @@ -80,7 +78,6 @@ description: - Time (in seconds) duration for which no new captcha challenge is sent after current captcha challenge has been answered successfully. - default: 900 logmessage: type: str description: @@ -91,7 +88,6 @@ - Time (in seconds) duration for which client which failed captcha need to wait until allowed to try again. The requests from this client are silently dropped during the mute period. - default: 300 name: type: str description: @@ -109,18 +105,15 @@ - Length of body request (in Bytes) up to (equal or less than) which captcha challenge will be provided to client. Above this length threshold the request will be dropped. This is to avoid DOS and DDOS attacks. - default: 8000 retryattempts: type: float description: - Number of times client can retry solving the captcha. - default: 3 waittime: type: float description: - Wait time in seconds for which ADC needs to wait for the Captcha response. This is to avoid DOS attacks. - default: 15 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/botprofile_ipreputation_binding.py b/plugins/modules/botprofile_ipreputation_binding.py index eb926280..52d7d680 100644 --- a/plugins/modules/botprofile_ipreputation_binding.py +++ b/plugins/modules/botprofile_ipreputation_binding.py @@ -56,7 +56,6 @@ binding. Only C(LOG) action can be combinded with C(DROP), C(RESET), C(REDIRECT) or C(MITIGATION) action. elements: str - default: NONE bot_iprep_enabled: type: str choices: @@ -64,7 +63,6 @@ - 'OFF' description: - Enabled or disabled IP-repuation binding. - default: 'OFF' bot_ipreputation: type: bool description: diff --git a/plugins/modules/botprofile_kmdetectionexpr_binding.py b/plugins/modules/botprofile_kmdetectionexpr_binding.py index 31fab4c4..64a27548 100644 --- a/plugins/modules/botprofile_kmdetectionexpr_binding.py +++ b/plugins/modules/botprofile_kmdetectionexpr_binding.py @@ -49,7 +49,6 @@ - 'OFF' description: - Enable or disable the keyboard-mouse based binding. - default: 'OFF' bot_km_expression_name: type: str description: diff --git a/plugins/modules/botprofile_logexpression_binding.py b/plugins/modules/botprofile_logexpression_binding.py index 552e3e81..b7c207ae 100644 --- a/plugins/modules/botprofile_logexpression_binding.py +++ b/plugins/modules/botprofile_logexpression_binding.py @@ -49,7 +49,6 @@ - 'OFF' description: - Enable or disable the log expression binding. - default: 'OFF' bot_log_expression_name: type: str description: diff --git a/plugins/modules/botprofile_ratelimit_binding.py b/plugins/modules/botprofile_ratelimit_binding.py index 7ad1a873..4f69e846 100644 --- a/plugins/modules/botprofile_ratelimit_binding.py +++ b/plugins/modules/botprofile_ratelimit_binding.py @@ -55,7 +55,6 @@ configured rate. Only C(LOG) action can be combined with C(DROP), C(REDIRECT) or C(RESET) action. elements: str - default: NONE bot_rate_limit_enabled: type: str choices: @@ -63,7 +62,6 @@ - 'OFF' description: - Enable or disable rate-limit binding. - default: 'OFF' bot_rate_limit_type: type: str choices: @@ -369,13 +367,11 @@ description: - Maximum number of requests that are allowed in this session in the given period time. - default: 1 timeslice: type: float description: - Time interval during which requests are tracked to check if they cross the given rate. - default: 1000 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/botprofile_tps_binding.py b/plugins/modules/botprofile_tps_binding.py index 9d3ca62e..aeb8a69f 100644 --- a/plugins/modules/botprofile_tps_binding.py +++ b/plugins/modules/botprofile_tps_binding.py @@ -62,7 +62,6 @@ Only C(LOG) action can be combined with C(DROP), C(RESET), C(REDIRECT), or MITIGIATION action. elements: str - default: NONE bot_tps_enabled: type: str choices: @@ -70,7 +69,6 @@ - 'OFF' description: - Enabled or disabled TPS binding. - default: 'ON' bot_tps_type: type: str choices: diff --git a/plugins/modules/botprofile_trapinsertionurl_binding.py b/plugins/modules/botprofile_trapinsertionurl_binding.py index 1fed04de..51015ceb 100644 --- a/plugins/modules/botprofile_trapinsertionurl_binding.py +++ b/plugins/modules/botprofile_trapinsertionurl_binding.py @@ -53,7 +53,6 @@ - 'OFF' description: - Enable or disable the request URL pattern. - default: 'OFF' logmessage: type: str description: diff --git a/plugins/modules/botprofile_whitelist_binding.py b/plugins/modules/botprofile_whitelist_binding.py index cfc8794c..af7f9ae8 100644 --- a/plugins/modules/botprofile_whitelist_binding.py +++ b/plugins/modules/botprofile_whitelist_binding.py @@ -54,7 +54,6 @@ - 'OFF' description: - Enabled or disabled white-list binding. - default: 'OFF' bot_whitelist_type: type: str choices: @@ -76,7 +75,6 @@ - 'OFF' description: - Enable logging for Whitelist binding. - default: 'OFF' logmessage: type: str description: diff --git a/plugins/modules/botsettings.py b/plugins/modules/botsettings.py index b752c716..3da76c61 100644 --- a/plugins/modules/botsettings.py +++ b/plugins/modules/botsettings.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str defaultnonintrusiveprofile: type: str @@ -44,7 +46,6 @@ - Profile to use when the feature is not enabled but feature is licensed. NonIntrusive checks will be disabled and IPRep cronjob(24 Hours) will be removed if this is set to C(BOT_BYPASS). - default: BOT_STATS defaultprofile: type: str description: @@ -74,7 +75,6 @@ type: int description: - Proxy Server Port to get updated signatures from AWS. - default: 8080 proxyserver: type: str description: @@ -104,12 +104,10 @@ - 'OFF' description: - Flag used to enable/disable bot auto update signatures - default: 'OFF' signatureurl: type: str description: - URL to download the bot signature mapping file from server - default: https://nsbotsignatures.s3.amazonaws.com/BotSignatureMapping.json trapurlautogenerate: type: str choices: @@ -118,17 +116,14 @@ description: - Enable/disable trap URL auto generation. When enabled, trap URL is updated within the configured interval. - default: 'OFF' trapurlinterval: type: float description: - Time in seconds after which trap URL is updated. - default: 3600 trapurllength: type: float description: - Length of the auto-generated trap URL. - default: 32 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/botsignature.py b/plugins/modules/botsignature.py index 2e862441..d2f53fd2 100644 --- a/plugins/modules/botsignature.py +++ b/plugins/modules/botsignature.py @@ -27,6 +27,7 @@ state: choices: - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler diff --git a/plugins/modules/bridgegroup.py b/plugins/modules/bridgegroup.py index d983d2d9..c1939a2a 100644 --- a/plugins/modules/bridgegroup.py +++ b/plugins/modules/bridgegroup.py @@ -43,7 +43,6 @@ - DISABLED description: - Enable dynamic routing for this bridgegroup. - default: DISABLED id: type: float description: @@ -57,7 +56,6 @@ - 'Enable all IPv6 dynamic routing protocols on all VLANs bound to this bridgegroup. Note: For the C(ENABLED) setting to work, you must configure IPv6 dynamic routing protocols from the VTYSH command line.' - default: DISABLED bridgegroup_nsip6_binding: type: dict description: Bindings for bridgegroup_nsip6_binding resource diff --git a/plugins/modules/bridgegroup_nsip6_binding.py b/plugins/modules/bridgegroup_nsip6_binding.py index 7ff0b1b9..27821e12 100644 --- a/plugins/modules/bridgegroup_nsip6_binding.py +++ b/plugins/modules/bridgegroup_nsip6_binding.py @@ -54,7 +54,6 @@ type: str description: - The owner node group in a Cluster for this vlan. - default: DEFAULT_NG td: type: float description: diff --git a/plugins/modules/bridgegroup_nsip_binding.py b/plugins/modules/bridgegroup_nsip_binding.py index 9ce7999c..6b761ff2 100644 --- a/plugins/modules/bridgegroup_nsip_binding.py +++ b/plugins/modules/bridgegroup_nsip_binding.py @@ -54,7 +54,6 @@ type: str description: - The owner node group in a Cluster for this vlan. - default: DEFAULT_NG td: type: float description: diff --git a/plugins/modules/bridgetable.py b/plugins/modules/bridgetable.py index 5c6ed306..b870981d 100644 --- a/plugins/modules/bridgetable.py +++ b/plugins/modules/bridgetable.py @@ -43,7 +43,6 @@ only to the entries that are dynamically learned after the new value is set. Previously existing bridge table entries expire after the previously configured time-out value. - default: 300 devicevlan: type: float description: diff --git a/plugins/modules/cachecontentgroup.py b/plugins/modules/cachecontentgroup.py index ed880cd1..ed475d4d 100644 --- a/plugins/modules/cachecontentgroup.py +++ b/plugins/modules/cachecontentgroup.py @@ -64,7 +64,6 @@ description: - Force policy evaluation for each response arriving from the origin server. Cannot be set to C(YES) if the Prefetch parameter is also set to C(YES). - default: 'NO' cachecontrol: type: str description: @@ -78,7 +77,6 @@ - Force expiration of the content immediately after the response is downloaded (upon receipt of the last byte of the response body). Applicable only to positive responses. - default: 'NO' flashcache: type: str choices: @@ -87,7 +85,6 @@ description: - Perform flash cache. Mutually exclusive with Poll Every Time (PET) on the same content group. - default: 'NO' heurexpiryparam: type: float description: @@ -127,7 +124,6 @@ - Ignore any request to reload a cached object from the origin server. - To guard against Denial of Service attacks, set this parameter to C(YES). For RFC-compliant behavior, set it to C(NO). - default: 'YES' ignorereqcachinghdrs: type: str choices: @@ -135,7 +131,6 @@ - 'NO' description: - Ignore Cache-Control and Pragma headers in the incoming request. - default: 'YES' insertage: type: str choices: @@ -144,7 +139,6 @@ description: - Insert an Age header into the response. An Age header contains information about the age of the object, in seconds, as calculated by the integrated cache. - default: 'YES' insertetag: type: str choices: @@ -153,7 +147,6 @@ description: - Insert an ETag header in the response. With ETag header insertion, the integrated cache does not serve full responses on repeat requests. - default: 'YES' insertvia: type: str choices: @@ -161,7 +154,6 @@ - 'NO' description: - Insert a Via header into the response. - default: 'YES' invalparams: type: list description: @@ -188,7 +180,6 @@ description: - Perform DNS resolution for responses only if the destination IP address in the request does not match the destination IP address of the cached response. - default: 'YES' matchcookies: type: str choices: @@ -200,13 +191,11 @@ type: float description: - Maximum size of a response that can be cached in this content group. - default: 80 memlimit: type: float description: - Maximum amount of memory that the cache can use. The effective limit is based on the available memory of the Citrix ADC. - default: 65536 minhits: type: int description: @@ -231,7 +220,6 @@ description: - Setting persistHA to C(YES) causes IC to save objects in contentgroup to Secondary node in HA deployment. - default: 'NO' pinned: type: str choices: @@ -239,7 +227,6 @@ - 'NO' description: - Do not flush objects from this content group under memory pressure. - default: 'NO' polleverytime: type: str choices: @@ -248,7 +235,6 @@ description: - Always poll for the objects in this content group. That is, retrieve the objects from the origin server whenever they are requested. - default: 'NO' prefetch: type: str choices: @@ -256,7 +242,6 @@ - 'NO' description: - Attempt to refresh objects that are about to go stale. - default: 'YES' prefetchmaxpending: type: float description: @@ -285,7 +270,6 @@ the quick abort value, and a client aborts during the download, the cache stops downloading the response. If the object is larger than the quick abort size, the cache continues to download the response. - default: 4194303 relexpiry: type: float description: @@ -303,7 +287,6 @@ - 'NO' description: - Remove cookies from responses. - default: 'YES' selectorvalue: type: str description: @@ -316,7 +299,6 @@ - 'NO' description: - content group whose objects are to be sent to secondary. - default: 'NO' type: type: str choices: @@ -325,7 +307,6 @@ - MSSQL description: - The type of the content group. - default: HTTP weaknegrelexpiry: type: float description: @@ -343,6 +324,41 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | cachecontentgroup + delegate_to: localhost + netscaler.adc.cachecontentgroup: + state: present + name: DEFAULT + - name: Sample Task | cachecontentgroup | 2 + delegate_to: localhost + netscaler.adc.cachecontentgroup: + state: present + name: BASEFILE + relexpiry: 86000 + weaknegrelexpiry: 600 + maxressize: 256 + memlimit: 2 + - name: Sample Task | cachecontentgroup | 3 + delegate_to: localhost + netscaler.adc.cachecontentgroup: + state: present + name: DELTAJS + relexpiry: 86000 + weaknegrelexpiry: 600 + insertage: 'NO' + maxressize: 256 + memlimit: 1 + pinned: 'YES' + - name: Sample Task | cachecontentgroup | 4 + delegate_to: localhost + netscaler.adc.cachecontentgroup: + state: present + name: NSFEO + maxressize: 1994752 """ RETURN = r""" diff --git a/plugins/modules/cacheglobal_cachepolicy_binding.py b/plugins/modules/cacheglobal_cachepolicy_binding.py index a3501d93..ce3ddbb9 100644 --- a/plugins/modules/cacheglobal_cachepolicy_binding.py +++ b/plugins/modules/cacheglobal_cachepolicy_binding.py @@ -47,7 +47,6 @@ - APPFW_GLOBAL description: - '0' - default: SYSTEM_GLOBAL gotopriorityexpression: type: str description: @@ -84,7 +83,6 @@ - 'NO' description: - Specify whether this policy should be evaluated. - default: 'NO' priority: type: float description: diff --git a/plugins/modules/cacheobject.py b/plugins/modules/cacheobject.py index f569efef..9789ed7c 100644 --- a/plugins/modules/cacheobject.py +++ b/plugins/modules/cacheobject.py @@ -52,7 +52,6 @@ - POST description: - HTTP request method that caused the object to be stored. - default: GET httpstatus: type: float description: @@ -86,7 +85,6 @@ type: int description: - Host port of the object. You must also set the Host parameter. - default: 80 tosecondary: type: str choices: @@ -94,7 +92,6 @@ - 'NO' description: - Object will be saved onto Secondary. - default: 'NO' url: type: str description: diff --git a/plugins/modules/cacheparameter.py b/plugins/modules/cacheparameter.py index ac54de53..acdd0091 100644 --- a/plugins/modules/cacheparameter.py +++ b/plugins/modules/cacheparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str enablebypass: type: str @@ -56,14 +58,12 @@ - The HA object persisting parameter. When this value is set to C(YES), cache objects can be synced to Secondary in a HA deployment. If set to C(NO), objects will never be synced to Secondary node. - default: 'NO' maxpostlen: type: float description: - Maximum number of POST body bytes to consider when evaluating parameters for a content group for which you have configured hit parameters and invalidation parameters. - default: 4096 memlimit: type: float description: @@ -112,6 +112,15 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | cacheparameter + delegate_to: localhost + netscaler.adc.cacheparameter: + state: present + via: 'NS-CACHE-10.0: 141' """ RETURN = r""" diff --git a/plugins/modules/cachepolicy.py b/plugins/modules/cachepolicy.py index c689a1d2..91528436 100644 --- a/plugins/modules/cachepolicy.py +++ b/plugins/modules/cachepolicy.py @@ -129,6 +129,27 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | cachepolicy + delegate_to: localhost + netscaler.adc.cachepolicy: + state: present + policyname: _nonGetReq + rule: '!HTTP.REQ.METHOD.eq(GET)' + action: NOCACHE + - name: Sample Task | cachepolicy | 2 + delegate_to: localhost + netscaler.adc.cachepolicy: + state: present + policyname: _cacheableCacheControlRes + rule: ((HTTP.RES.CACHE_CONTROL.IS_PUBLIC) || (HTTP.RES.CACHE_CONTROL.IS_MAX_AGE) + || (HTTP.RES.CACHE_CONTROL.IS_MUST_REVALIDATE) || (HTTP.RES.CACHE_CONTROL.IS_PROXY_REVALIDATE) + || (HTTP.RES.CACHE_CONTROL.IS_S_MAXAGE)) + action: CACHE + storeingroup: DEFAULT """ RETURN = r""" diff --git a/plugins/modules/cachepolicylabel.py b/plugins/modules/cachepolicylabel.py index 62feda12..6c91cc11 100644 --- a/plugins/modules/cachepolicylabel.py +++ b/plugins/modules/cachepolicylabel.py @@ -93,6 +93,16 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | cachepolicylabel + delegate_to: localhost + netscaler.adc.cachepolicylabel: + state: present + labelname: _reqBuiltinDefaults + evaluates: REQ """ RETURN = r""" diff --git a/plugins/modules/callhome.py b/plugins/modules/callhome.py index 22c2e975..676037c1 100644 --- a/plugins/modules/callhome.py +++ b/plugins/modules/callhome.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str emailaddress: type: str @@ -42,7 +44,6 @@ type: float description: - Interval (in days) between CallHome heartbeats - default: 7 ipaddress: type: str description: @@ -54,7 +55,6 @@ - CSP description: - CallHome mode of operation - default: Default nodeid: type: float description: @@ -77,12 +77,20 @@ - Enables or disables the proxy mode. The proxy server can be set by either specifying the IP address of the server or the name of the service representing the proxy server. - default: 'NO' extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | callhome + delegate_to: localhost + netscaler.adc.callhome: + state: present + hbcustominterval: '30' """ RETURN = r""" diff --git a/plugins/modules/channel.py b/plugins/modules/channel.py index ebdafdbf..899bd86f 100644 --- a/plugins/modules/channel.py +++ b/plugins/modules/channel.py @@ -70,7 +70,6 @@ frames. Flow control is a function as mentioned in clause 31 of the IEEE 802.3 standard. Flow control allows congested ports to pause traffic from the peer device. Flow control is achieved by sending PAUSE frames. - default: 'OFF' haheartbeat: type: str choices: @@ -80,7 +79,6 @@ - In a High Availability (HA) configuration, configure the LA channel for sending heartbeats. LA channel that has HA Heartbeat disabled should not send the heartbeats. - default: 'ON' hamonitor: type: str choices: @@ -89,7 +87,6 @@ description: - In a High Availability (HA) configuration, monitor the LA channel for failure events. Failure of any LA channel that has HA MON enabled triggers HA failover. - default: 'ON' id: type: str description: @@ -102,7 +99,6 @@ description: - Alias name for the LA channel. Used only to enhance readability. To perform any operations, you have to specify the LA channel ID. - default: '" "' ifnum: type: list description: @@ -134,7 +130,6 @@ - 'OFF' description: - Link Redundancy for Cluster LAG. - default: 'OFF' lrminthroughput: type: float description: @@ -183,7 +178,6 @@ On certain Virtualized / Cloud Platforms, the maximum possible MTU is restricted to a lesser value, Similar calculation can be applied, Maximum Data Plane MTU in Cluster = (Maximum possible MTU - 78). - default: 1500 speed: type: str choices: @@ -201,7 +195,6 @@ is greater than or equal to the value set for this parameter, the state of the interface is UP. Otherwise, the state is INACTIVE. Bound Interfaces whose state is INACTIVE do not process any traffic. - default: AUTO tagall: type: str choices: @@ -211,7 +204,6 @@ - Adds a four-byte 802.1q tag to every packet sent on this channel. The C(ON) setting applies tags for all VLANs that are bound to this channel. C(OFF) applies the tag for all VLANs other than the native VLAN. - default: 'OFF' throughput: type: float description: @@ -225,7 +217,6 @@ - 'OFF' description: - This is deprecated by tagall - default: 'OFF' channel_interface_binding: type: dict description: Bindings for channel_interface_binding resource @@ -256,6 +247,19 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | channel + delegate_to: localhost + netscaler.adc.channel: + state: present + id: LA/1 + throughput: '0' + lrminthroughput: '0' + bandwidthhigh: '0' + bandwidthnormal: '0' """ RETURN = r""" diff --git a/plugins/modules/cloudawsparam.py b/plugins/modules/cloudawsparam.py index 22b9fa9b..02ebe36f 100644 --- a/plugins/modules/cloudawsparam.py +++ b/plugins/modules/cloudawsparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str rolearn: type: str diff --git a/plugins/modules/cloudngsparameter.py b/plugins/modules/cloudngsparameter.py index 64737fa1..90587cd3 100644 --- a/plugins/modules/cloudngsparameter.py +++ b/plugins/modules/cloudngsparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str allowdtls12: type: str @@ -41,7 +43,6 @@ - 'NO' description: - Enables DTLS1.2 for client connections on CGS - default: 'NO' allowedudtversion: type: str choices: @@ -51,7 +52,6 @@ - V7 description: - Enables the required UDT version to EDT connections in the CGS deployment - default: V4 blockonallowedngstktprof: type: str choices: @@ -60,7 +60,6 @@ description: - Enables blocking connections authenticated with a ticket createdby by an entity not whitelisted in allowedngstktprofile - default: 'NO' csvserverticketingdecouple: type: str choices: @@ -69,7 +68,6 @@ description: - Enables Decoupling CSVSERVER state from Ticketing Service state in the CGS deployment - default: 'NO' extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/cloudparameter.py b/plugins/modules/cloudparameter.py index f0fafa9e..cd7dd99d 100644 --- a/plugins/modules/cloudparameter.py +++ b/plugins/modules/cloudparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str activationcode: type: str diff --git a/plugins/modules/cloudprofile.py b/plugins/modules/cloudprofile.py index e2eba31d..141ac8e6 100644 --- a/plugins/modules/cloudprofile.py +++ b/plugins/modules/cloudprofile.py @@ -40,7 +40,6 @@ type: float description: - Azure polling period (in seconds) - default: 60 azuretagname: type: str description: @@ -115,7 +114,6 @@ description: - Indicates graceful shutdown of the service. System will wait for all outstanding connections to this service to be closed before disabling the service. - default: 'NO' ipaddress: type: str description: diff --git a/plugins/modules/cloudtunnelparameter.py b/plugins/modules/cloudtunnelparameter.py index f4e9504c..ec24e450 100644 --- a/plugins/modules/cloudtunnelparameter.py +++ b/plugins/modules/cloudtunnelparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str controllerfqdn: type: str diff --git a/plugins/modules/cloudtunnelvserver.py b/plugins/modules/cloudtunnelvserver.py index 07eab9f5..ae0be38f 100644 --- a/plugins/modules/cloudtunnelvserver.py +++ b/plugins/modules/cloudtunnelvserver.py @@ -42,7 +42,6 @@ - String specifying the listen policy for the Cloud Tunnel virtual server. Can be either a named expression or an expression. The Cloud Tunnel virtual server processes only the traffic for which the expression evaluates to true. - default: '"none"' listenpriority: type: float description: @@ -50,7 +49,6 @@ a lower priority. If a request matches the listen policies of more than one virtual server, the virtual server whose listen policy has the highest priority (the lowest priority number) accepts the request. - default: 101 name: type: str description: diff --git a/plugins/modules/clusterinstance.py b/plugins/modules/clusterinstance.py index 85d4d7f8..69680bb0 100644 --- a/plugins/modules/clusterinstance.py +++ b/plugins/modules/clusterinstance.py @@ -47,7 +47,6 @@ - DISABLED description: - View based on heartbeat only on bkplane interface - default: DISABLED clid: type: float description: @@ -60,14 +59,12 @@ description: - This field controls the proxy arp feature in cluster. By default the flag is enabled. - default: ENABLED deadinterval: type: float description: - Amount of time, in seconds, after which nodes that do not respond to the heartbeats are assumed to be down.If the value is less than 3 sec, set the helloInterval parameter to 200 msec - default: 3 dfdretainl2params: type: str choices: @@ -75,14 +72,12 @@ - DISABLED description: - flag to add ext l2 header during steering. By default the flag is disabled. - default: DISABLED hellointerval: type: float description: - Interval, in milliseconds, at which heartbeats are sent to each cluster node to check the health status.Set the value to 200 msec, if the deadInterval parameter is less than 3 sec - default: 200 inc: type: str choices: @@ -90,7 +85,6 @@ - DISABLED description: - This option is required if the cluster nodes reside on different networks. - default: DISABLED nodegroup: type: str description: @@ -103,7 +97,6 @@ description: - Preempt a cluster node that is configured as a SPARE if an ACTIVE node becomes available. - default: DISABLED processlocal: type: str choices: @@ -112,7 +105,6 @@ description: - By turning on this option packets destined to a service in a cluster will not under go any steering. - default: DISABLED quorumtype: type: str choices: @@ -121,7 +113,6 @@ description: - Quorum Configuration Choices - "Majority" (recommended) requires majority of nodes to be online for the cluster to be UP. "None" relaxes this requirement. - default: MAJORITY retainconnectionsoncluster: type: str choices: @@ -131,7 +122,6 @@ - This option enables you to retain existing connections on a node joining a Cluster system or when a node is being configured for passive timeout. By default, this option is disabled. - default: 'NO' syncstatusstrictmode: type: str choices: @@ -141,7 +131,6 @@ - strict mode for sync status of cluster. Depending on the the mode if there are any errors while applying config, sync status is displayed accordingly. By default the flag is disabled. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/clusternode.py b/plugins/modules/clusternode.py index c0a39715..cd24276d 100644 --- a/plugins/modules/clusternode.py +++ b/plugins/modules/clusternode.py @@ -49,7 +49,6 @@ - 'NO' description: - Option to remove nodegroup config - default: 'YES' delay: type: float description: @@ -64,7 +63,6 @@ type: str description: - The default node group in a Cluster system. - default: DEFAULT_NG nodeid: type: float description: @@ -81,7 +79,6 @@ - 'Note: When priority is not configured for any of the nodes or if multiple nodes have the same priority, the cluster elects one of the nodes as the configuration coordinator.' - default: 31 tunnelmode: type: str choices: @@ -90,7 +87,6 @@ - UDP description: - To set the tunnel mode - default: NONE clusternode_routemonitor_binding: type: dict description: Bindings for clusternode_routemonitor_binding resource diff --git a/plugins/modules/clusternodegroup.py b/plugins/modules/clusternodegroup.py index 08779df7..dde8ee96 100644 --- a/plugins/modules/clusternodegroup.py +++ b/plugins/modules/clusternodegroup.py @@ -62,7 +62,6 @@ - ' * Disabled - When one of the nodes goes down, a non-nodegroup cluster node is picked up and acts as part of the nodegroup. When the original node of the nodegroup comes up, the backup node will be replaced.' - default: 'NO' strict: type: str choices: @@ -77,7 +76,6 @@ - ' * Disabled - When one of the nodes goes down, a non-nodegroup cluster node is picked up and acts as part of the nodegroup. When the original node of the nodegroup comes up, the backup node will be replaced.' - default: 'NO' clusternodegroup_authenticationvserver_binding: type: dict description: Bindings for clusternodegroup_authenticationvserver_binding resource diff --git a/plugins/modules/cmpaction.py b/plugins/modules/cmpaction.py index cc9e818b..4a00acf1 100644 --- a/plugins/modules/cmpaction.py +++ b/plugins/modules/cmpaction.py @@ -46,7 +46,6 @@ - Control insertion of the Vary header in HTTP responses compressed by Citrix ADC. Intermediate caches store different versions of the response for different values of the headers present in the Vary response header. - default: GLOBAL cmptype: type: str choices: @@ -70,7 +69,6 @@ - PERPOLICY description: - The type of delta action (if delta type compression action is defined). - default: PERURL name: type: str description: diff --git a/plugins/modules/cmpglobal_cmppolicy_binding.py b/plugins/modules/cmpglobal_cmppolicy_binding.py index 1bc8556f..7d4dc3ed 100644 --- a/plugins/modules/cmpglobal_cmppolicy_binding.py +++ b/plugins/modules/cmpglobal_cmppolicy_binding.py @@ -47,7 +47,6 @@ - APPFW_GLOBAL description: - '0' - default: SYSTEM_GLOBAL gotopriorityexpression: type: str description: diff --git a/plugins/modules/cmpparameter.py b/plugins/modules/cmpparameter.py index f6508a53..cf309c9b 100644 --- a/plugins/modules/cmpparameter.py +++ b/plugins/modules/cmpparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str addvaryheader: type: str @@ -43,13 +45,11 @@ - Control insertion of the Vary header in HTTP responses compressed by Citrix ADC. Intermediate caches store different versions of the response for different values of the headers present in the Vary response header. - default: DISABLED cmpbypasspct: type: float description: - 'Citrix ADC CPU threshold after which compression is not performed. Range: 0 - 100' - default: 100 cmplevel: type: str choices: @@ -61,7 +61,6 @@ - ' * Optimal - Corresponds to a gzip GZIP level of 5-7.' - ' * Best speed - Corresponds to a gzip level of 1.' - ' * Best compression - Corresponds to a gzip level of 9.' - default: optimal cmponpush: type: str choices: @@ -71,7 +70,6 @@ - Citrix ADC does not wait for the quantum to be filled before starting to compress data. Upon receipt of a packet with a PUSH flag, the appliance immediately begins compression of the accumulated packets. - default: DISABLED externalcache: type: str choices: @@ -81,7 +79,6 @@ - 'Enable insertion of Cache-Control: private response directive to indicate response message is intended for a single user and must not be cached by a shared or proxy cache.' - default: 'NO' heurexpiry: type: str choices: @@ -89,7 +86,6 @@ - 'OFF' description: - Heuristic basefile expiry. - default: 'OFF' heurexpiryhistwt: type: float description: @@ -97,13 +93,11 @@ ratio, specified as percentage. For example, to give 25% weightage to historical ratio (and therefore 75% weightage to the ratio for current delta compression transaction), specify 25. - default: 50 heurexpirythres: type: float description: - Threshold compression ratio for heuristic basefile expiry, multiplied by 100. For example, to set the threshold ratio to 1.25, specify 125. - default: 100 minressize: type: float description: @@ -114,12 +108,10 @@ - ADVANCED description: - Type of the policy. The only possible value is C(ADVANCED) - default: ADVANCED quantumsize: type: float description: - Minimum quantum of data to be filled before compression begins. - default: 57344 servercmp: type: str choices: @@ -128,7 +120,6 @@ description: - Allow the server to send compressed data to the Citrix ADC. With the default setting, the Citrix ADC appliance handles all compression. - default: 'ON' varyheadervalue: type: str description: diff --git a/plugins/modules/contentinspectionaction.py b/plugins/modules/contentinspectionaction.py index edbcb4c0..6e3f83b5 100644 --- a/plugins/modules/contentinspectionaction.py +++ b/plugins/modules/contentinspectionaction.py @@ -56,7 +56,6 @@ - '* C(DROP) - Drop the request without sending a response to the user.' - '* C(CONTINUE) - It bypasses the ContentIsnpection and Continues/resumes the Traffic-Flow to Client/Server.' - default: RESET name: type: str description: @@ -76,7 +75,6 @@ type: float description: - Port of remoteService - default: 1344 type: type: str choices: diff --git a/plugins/modules/contentinspectioncallout.py b/plugins/modules/contentinspectioncallout.py index d78c04eb..d6d1e456 100644 --- a/plugins/modules/contentinspectioncallout.py +++ b/plugins/modules/contentinspectioncallout.py @@ -91,7 +91,6 @@ type: float description: - Port of the Content Inspection server. - default: 1344 type: type: str choices: diff --git a/plugins/modules/contentinspectionglobal_contentinspectionpolicy_binding.py b/plugins/modules/contentinspectionglobal_contentinspectionpolicy_binding.py index 18934de6..c8c7298c 100644 --- a/plugins/modules/contentinspectionglobal_contentinspectionpolicy_binding.py +++ b/plugins/modules/contentinspectionglobal_contentinspectionpolicy_binding.py @@ -47,7 +47,6 @@ - APPFW_GLOBAL description: - '0' - default: SYSTEM_GLOBAL gotopriorityexpression: type: str description: diff --git a/plugins/modules/contentinspectionparameter.py b/plugins/modules/contentinspectionparameter.py index 54c34eed..8a3612c6 100644 --- a/plugins/modules/contentinspectionparameter.py +++ b/plugins/modules/contentinspectionparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str undefaction: type: str @@ -44,7 +46,6 @@ - '* RESET - Reset the connection and notify the user''s browser, so that the user can resend the request.' - '* DROP - Drop the message without sending a response to the user.' - default: '"NOINSPECTION"' extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/crvserver.py b/plugins/modules/crvserver.py index c3363442..4febc1b4 100644 --- a/plugins/modules/crvserver.py +++ b/plugins/modules/crvserver.py @@ -47,7 +47,6 @@ - DISABLED description: - Enable logging of AppFlow information. - default: ENABLED arp: type: str choices: @@ -63,7 +62,6 @@ description: - Decides whether the backend connection made by Citrix ADC to the origin server will be HTTP or SSL. Applicable only for SSL type CR Forward proxy vserver. - default: DISABLED backupvserver: type: str description: @@ -116,7 +114,6 @@ description: - Continue sending traffic to a backup virtual server even after the primary virtual server comes UP from the DOWN state. - default: DISABLED disallowserviceaccess: type: str choices: @@ -126,7 +123,6 @@ - This is effective when a FORWARD type cr vserver is added. By default, this parameter is C(DISABLED). When it is C(ENABLED), backend services cannot be accessed through a FORWARD type cr vserver. - default: DISABLED dnsvservername: type: str description: @@ -150,7 +146,6 @@ - DISABLED description: - Perform delayed cleanup of connections to this virtual server. - default: ENABLED format: type: str choices: @@ -179,7 +174,6 @@ - Criterion for responding to PING requests sent to this virtual server. If C(ACTIVE), respond only if the virtual server is available. If C(PASSIVE), respond even if the virtual server is not available. - default: PASSIVE ipset: type: str description: @@ -204,13 +198,11 @@ description: - String specifying the listen policy for the cache redirection virtual server. Can be either an in-line expression or the name of a named expression. - default: '"NONE"' listenpriority: type: float description: - Priority of the listen policy specified by the Listen Policy parameter. The lower the number, higher the priority. - default: 101 map: type: str choices: @@ -253,7 +245,6 @@ server, as specified. - 'Note: For this option to work, you must set the cache redirection type to POLICY.' - default: ORIGIN originusip: type: str choices: @@ -267,7 +258,6 @@ type: int description: - Port number of the virtual server. - default: 80 precedence: type: str choices: @@ -290,7 +280,6 @@ - 10. Default - If you specify C(RULE), the rule based policies are applied before C(URL) based policies are applied. - default: RULE probeport: type: int description: @@ -308,14 +297,12 @@ type: str description: - HTTP code to return in SUCCESS case. - default: '"200 OK"' range: type: float description: - Number of consecutive IP addresses, starting with the address specified by the IPAddress parameter, to include in a range of addresses assigned to this virtual server. - default: 1 redirect: type: str choices: @@ -329,7 +316,6 @@ - '* C(POLICY) - Apply the cache redirection policy to determine whether the request should be directed to the cache or to the origin.' - '* C(ORIGIN) - Direct all requests to the origin server.' - default: POLICY redirecturl: type: str description: @@ -350,7 +336,6 @@ - '* POLICY - TCP connections to the origin servers are not reused.' - If you set the Reuse parameter to C(ON), connections to origin servers and connections to cache servers are reused. - default: 'ON' rhistate: type: str choices: @@ -365,7 +350,6 @@ - ' * If set to C(ACTIVE) on some virtual servers and C(PASSIVE) on the others, the appliance, injects even if one virtual server set to C(ACTIVE) is UP.' - default: PASSIVE servicetype: type: str choices: @@ -419,7 +403,6 @@ - Use origin ip/port while forwarding request to the cache. Change the destination IP, destination port of the request came to CR vserver to Origin IP and Origin Port and forward it to Cache - default: 'NO' useportrange: type: str choices: @@ -429,7 +412,6 @@ - Use a port number from the port range (set by using the set ns param command, or in the Create Virtual Server (Cache Redirection) dialog box) as the source port in the requests sent to the origin server. - default: 'OFF' via: type: str choices: @@ -439,7 +421,6 @@ - Insert a via header in each HTTP request. In the case of a cache miss, the request is redirected from the cache server to the origin server. This header indicates whether the request is being sent from a cache server. - default: 'ON' crvserver_analyticsprofile_binding: type: dict description: Bindings for crvserver_analyticsprofile_binding resource diff --git a/plugins/modules/csaction.py b/plugins/modules/csaction.py index 3d9c9542..2f9a5ecf 100644 --- a/plugins/modules/csaction.py +++ b/plugins/modules/csaction.py @@ -78,6 +78,45 @@ """ EXAMPLES = r""" +--- + +- name: Sample Playbook + hosts: localhost + + gather_facts: false + + tasks: + - name: Sample Task | lbvserver + delegate_to: localhost + netscaler.adc.lbvserver: + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable + # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: present + + name: lb-vserver-1 + servicetype: HTTP + ipv46: 6.92.2.2 + port: 80 + + - name: Sample Task | csaction + delegate_to: localhost + netscaler.adc.csaction: + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable + # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: present + + name: action1 + targetlbvserver: lb-vserver-1 """ RETURN = r""" diff --git a/plugins/modules/csparameter.py b/plugins/modules/csparameter.py index 1195e07d..bddabf62 100644 --- a/plugins/modules/csparameter.py +++ b/plugins/modules/csparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str stateupdate: type: str @@ -42,7 +44,6 @@ description: - Specifies whether the virtual server checks the attached load balancing server for state information. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/csvserver.py b/plugins/modules/csvserver.py index 4eec43db..b3fe1540 100644 --- a/plugins/modules/csvserver.py +++ b/plugins/modules/csvserver.py @@ -47,7 +47,6 @@ - DISABLED description: - Enable logging appflow flow information - default: ENABLED authentication: type: str choices: @@ -56,7 +55,6 @@ description: - Authenticate users who request a connection to the content switching virtual server. - default: 'OFF' authenticationhost: type: str description: @@ -69,7 +67,6 @@ - 'OFF' description: - Enable HTTP 401-response based authentication. - default: 'OFF' authnprofile: type: str description: @@ -88,7 +85,6 @@ type: float description: - Time period for which backup persistence is in effect. - default: 2 backupvserver: type: str description: @@ -110,7 +106,6 @@ - Use this option to specify whether a virtual server, used for load balancing or content switching, routes requests to the cache redirection virtual server before sending it to the configured servers. - default: 'NO' casesensitive: type: str choices: @@ -121,7 +116,6 @@ with the C(ON) setting, the URLs /a/1.html and /A/1.HTML are treated differently and can have different targets (set by content switching policies). With the C(OFF) setting, /a/1.html and /A/1.HTML are switched to the same target. - default: 'ON' clttimeout: type: float description: @@ -161,7 +155,6 @@ description: - Continue forwarding the traffic to backup virtual server even after the primary server comes UP from the DOWN state. - default: DISABLED dnsprofilename: type: str description: @@ -191,7 +184,6 @@ - Flush all active transactions associated with a virtual server whose state transitions from UP to DOWN. Do not enable this option for applications that must complete their transactions. - default: ENABLED dtls: type: str choices: @@ -199,7 +191,6 @@ - 'OFF' description: - This option starts/stops the dtls service on the vserver - default: 'OFF' httpprofilename: type: str description: @@ -217,7 +208,6 @@ - ACTIVE description: - Can be active or passive - default: PASSIVE insertvserveripport: type: str choices: @@ -284,7 +274,6 @@ description: - String specifying the listen policy for the content switching virtual server. Can be either the name of an existing expression or an in-line expression. - default: '"NONE"' listenpriority: type: float description: @@ -292,7 +281,6 @@ a lower priority. If a request matches the listen policies of more than one virtual server the virtual server whose listen policy has the highest priority (the lowest priority number) accepts the request. - default: 101 mssqlserverversion: type: str choices: @@ -306,22 +294,18 @@ - '2014' description: - The version of the MSSQL server - default: 2008R2 mysqlcharacterset: type: float description: - The character set returned by the mysql vserver. - default: 8 mysqlprotocolversion: type: float description: - The protocol version returned by the mysql vserver. - default: 10 mysqlservercapabilities: type: float description: - The server capabilities returned by the mysql vserver. - default: 41613 mysqlserverversion: type: str description: @@ -358,7 +342,6 @@ - 11G description: - Oracle server version - default: 10G persistencebackup: type: str choices: @@ -406,7 +389,6 @@ incoming requests are evaluated against the rule-based content switching policies. If none of the rules match, the C(URL) in the request is evaluated against the C(URL)-based content switching policies. - default: RULE probeport: type: int description: @@ -424,7 +406,6 @@ type: str description: - HTTP code to return in SUCCESS case. - default: '"200 OK"' push: type: str choices: @@ -434,14 +415,12 @@ - Process traffic with the push virtual server that is bound to this content switching virtual server (specified by the Push VServer parameter). The service type of the push virtual server should be either HTTP or SSL. - default: DISABLED pushlabel: type: str description: - Expression for extracting the label from the response received from server. This string can be either an existing rule name or an inline expression. The service type of the virtual server should be either HTTP or SSL. - default: '"none"' pushmulticlients: type: str choices: @@ -450,7 +429,6 @@ description: - Allow multiple Web 2.0 connections from the same client to connect to the virtual server and expect updates. - default: 'NO' pushvserver: type: str description: @@ -467,7 +445,6 @@ - Number of consecutive IP addresses, starting with the address specified by the IP Address parameter, to include in a range of addresses assigned to this virtual server. - default: 1 redirectfromport: type: int description: @@ -480,7 +457,6 @@ - DISABLED description: - State of port rewrite while performing HTTP redirect. - default: DISABLED redirecturl: type: str description: @@ -503,7 +479,6 @@ - ' * If set to C(ACTIVE) on some virtual servers and C(PASSIVE) on the others, the appliance, injects even if one virtual server set to C(ACTIVE) is UP.' - default: PASSIVE rtspnat: type: str choices: @@ -512,7 +487,6 @@ description: - Enable network address translation (NAT) for real-time streaming protocol (RTSP) connections. - default: 'OFF' servicetype: type: str choices: @@ -578,12 +552,10 @@ - DISABLED description: - Maintain source-IP based persistence on primary and backup virtual servers. - default: DISABLED sopersistencetimeout: type: float description: - Time-out value, in minutes, for spillover persistence. - default: 2 sothreshold: type: float description: @@ -608,7 +580,6 @@ - C(DISABLED) C(DISABLED) C(DISABLED) - If you want to enable state updates for only some content switching virtual servers, be sure to disable the state update parameter. - default: DISABLED targettype: type: str choices: @@ -636,7 +607,6 @@ type: float description: - Time period for which a persistence session is in effect. - default: 2 ttl: type: float description: @@ -645,7 +615,6 @@ type: float description: - Persistence mask for IP based persistence types, for IPv6 virtual servers. - default: 128 vipheader: type: str description: @@ -1206,6 +1175,72 @@ """ EXAMPLES = r""" +--- + +- name: Sample Playbook + hosts: localhost + + gather_facts: false + + tasks: + - name: Set lb vserver 1 + delegate_to: localhost + netscaler.adc.lbvserver: + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable + # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: present + + name: lbvserver_1 + servicetype: HTTP + ipv46: 10.78.1.1 + port: 80 + + + - name: Set cs policy + delegate_to: localhost + netscaler.adc.cspolicy: + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable + # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: present + + policyname: policy_1 + rule: "HTTP.REQ.URL.CONTAINS(\"/test\")" + + + - name: Set cs vserver + delegate_to: localhost + netscaler.adc.csvserver: + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable + # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: present + + name: cs-vserver-1 + ipv46: 192.168.1.1 + port: 90 + servicetype: HTTP + + csvserver_cspolicy_binding: + mode: desired + binding_members: + - name: cs-vserver-1 + policyname: policy_1 + targetlbvserver: lbvserver_1 + priority: 1 """ RETURN = r""" diff --git a/plugins/modules/dbdbprofile.py b/plugins/modules/dbdbprofile.py index 8f50af10..f3928253 100644 --- a/plugins/modules/dbdbprofile.py +++ b/plugins/modules/dbdbprofile.py @@ -44,7 +44,6 @@ description: - Use the same server-side connection for multiple client-side requests. Default is enabled. - default: ENABLED enablecachingconmuxoff: type: str choices: @@ -52,7 +51,6 @@ - DISABLED description: - Enable caching when connection multiplexing is OFF. - default: DISABLED interpretquery: type: str choices: @@ -61,7 +59,6 @@ description: - If ENABLED, inspect the query and update the connection information, if required. If DISABLED, forward the query to the server. - default: 'YES' kcdaccount: type: str description: @@ -83,7 +80,6 @@ - 'NO' description: - If the queries are related to each other, forward to the same backend server. - default: 'NO' extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/dnsaaaarec.py b/plugins/modules/dnsaaaarec.py index a72a86df..2ac70eb1 100644 --- a/plugins/modules/dnsaaaarec.py +++ b/plugins/modules/dnsaaaarec.py @@ -63,7 +63,6 @@ of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone's minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600. - default: 3600 type: type: str choices: diff --git a/plugins/modules/dnsaction.py b/plugins/modules/dnsaction.py index bc53ec4d..adab349a 100644 --- a/plugins/modules/dnsaction.py +++ b/plugins/modules/dnsaction.py @@ -73,7 +73,6 @@ type: float description: - Time to live, in seconds. - default: 3600 viewname: type: str description: diff --git a/plugins/modules/dnsaddrec.py b/plugins/modules/dnsaddrec.py index afbca74e..99e7ae86 100644 --- a/plugins/modules/dnsaddrec.py +++ b/plugins/modules/dnsaddrec.py @@ -63,7 +63,6 @@ of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone's minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600. - default: 3600 type: type: str choices: @@ -82,6 +81,17 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | dnsaddRec + delegate_to: localhost + netscaler.adc.dnsaddrec: + state: present + hostname: k.root-servers.net + ipaddress: 193.0.14.129 + ttl: 3600000 """ RETURN = r""" diff --git a/plugins/modules/dnscaarec.py b/plugins/modules/dnscaarec.py index 31f669b0..1f0493c4 100644 --- a/plugins/modules/dnscaarec.py +++ b/plugins/modules/dnscaarec.py @@ -68,7 +68,6 @@ - String that represents the identifier of the property represented by the CAA record. The RFC currently defines three available tags - issue, issuwild and iodef. - default: '"issue"' ttl: type: float description: @@ -80,7 +79,6 @@ of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone's minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600. - default: 3600 type: type: str choices: @@ -92,7 +90,6 @@ - '* C(ADNS) - Display all authoritative address records.' - '* C(PROXY) - Display all proxy address records.' - '* C(ALL) - Display all address records.' - default: ADNS valuestring: type: str description: diff --git a/plugins/modules/dnscnamerec.py b/plugins/modules/dnscnamerec.py index 29c0d635..07d7f72e 100644 --- a/plugins/modules/dnscnamerec.py +++ b/plugins/modules/dnscnamerec.py @@ -63,7 +63,6 @@ of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone's minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600. - default: 3600 type: type: str choices: @@ -75,7 +74,6 @@ - '* C(ADNS) - Display all authoritative address records.' - '* C(PROXY) - Display all proxy address records.' - '* C(ALL) - Display all address records.' - default: ADNS extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/dnsglobal_dnspolicy_binding.py b/plugins/modules/dnsglobal_dnspolicy_binding.py index 6cc25270..f6639076 100644 --- a/plugins/modules/dnsglobal_dnspolicy_binding.py +++ b/plugins/modules/dnsglobal_dnspolicy_binding.py @@ -47,7 +47,6 @@ - APPFW_GLOBAL description: - '0' - default: SYSTEM_GLOBAL gotopriorityexpression: type: str description: diff --git a/plugins/modules/dnskey.py b/plugins/modules/dnskey.py index f0adccf6..2189ab66 100644 --- a/plugins/modules/dnskey.py +++ b/plugins/modules/dnskey.py @@ -28,6 +28,8 @@ choices: - present - absent + - created + - imported default: present description: - The state of the resource being configured by the module on the NetScaler @@ -44,13 +46,11 @@ - RSASHA512 description: - Algorithm to generate for zone signing. - default: RSASHA1 expires: type: float description: - Time period for which to consider the key valid, after the key is used to sign a zone. - default: 120 filenameprefix: type: str description: @@ -67,7 +67,6 @@ type: float description: - Size of the key, in bits. - default: 512 keytype: type: str choices: @@ -77,7 +76,6 @@ - ZoneSigningKey description: - Type of key to create. - default: ZSK notificationperiod: type: float description: @@ -85,7 +83,6 @@ of days, hours, or minutes before expiry. Must be less than the expiry period. The notification is an SNMP trap sent to an SNMP manager. To enable the appliance to send the trap, enable the DNSKEY-EXPIRY SNMP alarm. - default: 7 password: type: str description: @@ -112,7 +109,6 @@ the zone. TTL is the time for which the record must be cached by the DNS proxies. If the TTL is not specified, either the DNS zone's minimum TTL or the default value of 3600 is used. - default: 3600 units1: type: str choices: @@ -121,7 +117,6 @@ - DAYS description: - Units for the expiry period. - default: DAYS units2: type: str choices: @@ -130,7 +125,6 @@ - DAYS description: - Units for the notification period. - default: DAYS zonename: type: str description: diff --git a/plugins/modules/dnsmxrec.py b/plugins/modules/dnsmxrec.py index 1fa92ca3..4e7f3198 100644 --- a/plugins/modules/dnsmxrec.py +++ b/plugins/modules/dnsmxrec.py @@ -72,7 +72,6 @@ of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone's minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600. - default: 3600 type: type: str choices: @@ -84,7 +83,6 @@ - '* C(ADNS) - Display all authoritative address records.' - '* C(PROXY) - Display all proxy address records.' - '* C(ALL) - Display all address records.' - default: ADNS extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/dnsnameserver.py b/plugins/modules/dnsnameserver.py index 99efc88d..a664d1e1 100644 --- a/plugins/modules/dnsnameserver.py +++ b/plugins/modules/dnsnameserver.py @@ -73,7 +73,6 @@ description: - Protocol used by the name server. C(UDP_TCP) is not valid if the name server is a DNS virtual server configured on the appliance. - default: UDP extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/dnsnaptrrec.py b/plugins/modules/dnsnaptrrec.py index f334bda7..88ff4dea 100644 --- a/plugins/modules/dnsnaptrrec.py +++ b/plugins/modules/dnsnaptrrec.py @@ -95,7 +95,6 @@ of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone's minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600. - default: 3600 type: type: str choices: @@ -107,7 +106,6 @@ - '* C(ADNS) - Display all authoritative address records.' - '* C(PROXY) - Display all proxy address records.' - '* C(ALL) - Display all address records.' - default: ADNS extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/dnsnsrec.py b/plugins/modules/dnsnsrec.py index 67bdb0bb..ce020a89 100644 --- a/plugins/modules/dnsnsrec.py +++ b/plugins/modules/dnsnsrec.py @@ -63,7 +63,6 @@ of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone's minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600. - default: 3600 type: type: str choices: @@ -80,6 +79,17 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | dnsnsRec + delegate_to: localhost + netscaler.adc.dnsnsrec: + state: present + domain: . + nameserver: a.root-servers.net + ttl: 3600000 """ RETURN = r""" diff --git a/plugins/modules/dnsparameter.py b/plugins/modules/dnsparameter.py index de9a98fd..91ce8827 100644 --- a/plugins/modules/dnsparameter.py +++ b/plugins/modules/dnsparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str cacheecszeroprefix: type: str @@ -45,7 +47,6 @@ ECS responses with Scope Prefix length of zero will be cached, but not tied to any subnet. This option has no effect if caching of ECS responses is disabled in the corresponding DNS profile. - default: ENABLED cachehitbypass: type: str choices: @@ -55,7 +56,6 @@ - This parameter is applicable only in proxy mode and if this parameter is enabled we will forward all the client requests to the backend DNS server and the response served will be cached on Citrix ADC - default: DISABLED cachenoexpire: type: str choices: @@ -64,7 +64,6 @@ description: - If this flag is set to YES, the existing entries in cache do not age out. On reaching the max limit the cache records are frozen - default: DISABLED cacherecords: type: str choices: @@ -77,7 +76,6 @@ When you disable record caching, the appliance stops caching server responses. However, cached records are not flushed. The appliance does not serve requests from the cache until record caching is enabled again. - default: 'YES' dns64timeout: type: float description: @@ -96,7 +94,6 @@ to domains for which the appliance is authoritative. Disable the parameter when the appliance is under attack from a client that is sending a flood of queries for unrelated domains. - default: DISABLED dnssec: type: str choices: @@ -108,7 +105,6 @@ configurations (used by internal Citrix ADC features such as SSL VPN and Cache Redirection for name resolution) do not support the DNSSEC OK (DO) bit in the EDNS0 OPT header.' - default: ENABLED ecsmaxsubnets: type: float description: @@ -137,7 +133,6 @@ before caching. When you modify this setting, the new value is applied only to those records that are cached after the modification. The TTL values of existing records are not changed. - default: 604800 maxpipeline: type: float description: @@ -154,7 +149,6 @@ of the record is set to the value of maxTTL before caching. When you modify this setting, the new value is applied only to those records that are cached after the modification. The TTL values of existing records are not changed. - default: 604800 maxudppacketsize: type: float description: @@ -164,7 +158,6 @@ acting as a proxy, requests from clients are limited by this parameter - if a request contains a size greater than this value in the OPT record, it will be replaced. - default: 1280 minttl: type: float description: @@ -184,7 +177,6 @@ - Type of lookup (C(DNS) or C(WINS)) to attempt first. If the first-priority lookup fails, the second-priority lookup is attempted. Used only by the SSL VPN feature. - default: WINS nxdomainratelimitthreshold: type: float description: @@ -205,7 +197,6 @@ are unavailable. When external name servers are unavailable, the appliance queries a root server and resolves the request recursively, as it does for an end resolver configuration. - default: DISABLED resolutionorder: type: str choices: @@ -228,13 +219,11 @@ - '* C(AAAAThenAQuery). Send a query for an AAAA record, and then send a query for an A record if the query for the AAAA record results in a NODATA response from the name server.' - default: OnlyAQuery retries: type: float description: - Maximum number of retry attempts when no response is received for a query sent to a name server. Applies to end resolver and forwarder configurations. - default: 5 splitpktqueryprocessing: type: str choices: @@ -242,7 +231,6 @@ - DROP description: - Processing requests split across multiple packets - default: ALLOW extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/dnsprofile.py b/plugins/modules/dnsprofile.py index 1af7f2c9..711b47a1 100644 --- a/plugins/modules/dnsprofile.py +++ b/plugins/modules/dnsprofile.py @@ -47,7 +47,6 @@ is relevant to proxy configuration. Enabling/disabling support of ECS option when Citrix ADC is authoritative for a GSLB domain is supported using a knob in GSLB vserver. In all other modes, ECS option is ignored. - default: DISABLED cachenegativeresponses: type: str choices: @@ -59,7 +58,6 @@ - proxy, end resolver, and forwarder. However, cached responses are not flushed. The appliance does not serve negative responses from the cache until this parameter is enabled again. - default: ENABLED cacherecords: type: str choices: @@ -72,7 +70,6 @@ When you disable record caching, the appliance stops caching server responses. However, cached records are not flushed. The appliance does not serve requests from the cache until record caching is enabled again. - default: ENABLED dnsanswerseclogging: type: str choices: @@ -80,7 +77,6 @@ - DISABLED description: - DNS answer section; if enabled, answer section in the response will be logged. - default: DISABLED dnserrorlogging: type: str choices: @@ -89,7 +85,6 @@ description: - DNS error logging; if enabled, whenever error is encountered in DNS module reason for the error will be logged. - default: DISABLED dnsextendedlogging: type: str choices: @@ -98,7 +93,6 @@ description: - DNS extended logging; if enabled, authority and additional section in the response will be logged. - default: DISABLED dnsprofilename: type: str description: @@ -111,7 +105,6 @@ description: - DNS query logging; if enabled, DNS query information such as DNS query id, DNS query flags , DNS domain name and DNS query type will be logged - default: DISABLED dropmultiqueryrequest: type: str choices: @@ -123,7 +116,6 @@ by default the DNS request containing multiple queries is forwarded to the backend and in case of ADNS and Resolver configuration NOCODE error response will be sent to the client. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/dnsptrrec.py b/plugins/modules/dnsptrrec.py index c7ed5b54..f7e37ec2 100644 --- a/plugins/modules/dnsptrrec.py +++ b/plugins/modules/dnsptrrec.py @@ -65,7 +65,6 @@ of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone's minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600. - default: 3600 type: type: str choices: diff --git a/plugins/modules/dnssoarec.py b/plugins/modules/dnssoarec.py index 192dad31..42b0e5ce 100644 --- a/plugins/modules/dnssoarec.py +++ b/plugins/modules/dnssoarec.py @@ -58,13 +58,11 @@ made during the period have failed. After the expiry period, the secondary server stops serving the zone. Typically one week. Not used by the primary server. - default: 3600 minimum: type: float description: - Default time to live (TTL) for all records in the zone. Can be overridden for individual records. - default: 5 nodeid: type: float description: @@ -78,19 +76,16 @@ description: - Time, in seconds, for which a secondary server must wait between successive checks on the value of the serial number. - default: 3600 retry: type: float description: - Time, in seconds, between retries if a secondary server's attempt to contact the primary server for a zone refresh fails. - default: 3 serial: type: float description: - The secondary server uses this parameter to determine whether it requires a zone transfer from the primary server. - default: 100 ttl: type: float description: @@ -102,7 +97,6 @@ of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone's minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600. - default: 3600 type: type: str choices: diff --git a/plugins/modules/dnssrvrec.py b/plugins/modules/dnssrvrec.py index f41afe47..6b5a8aed 100644 --- a/plugins/modules/dnssrvrec.py +++ b/plugins/modules/dnssrvrec.py @@ -77,7 +77,6 @@ of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone's minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600. - default: 3600 type: type: str choices: diff --git a/plugins/modules/dnssuffix.py b/plugins/modules/dnssuffix.py index 3264f3e1..8983f9b4 100644 --- a/plugins/modules/dnssuffix.py +++ b/plugins/modules/dnssuffix.py @@ -36,7 +36,7 @@ to the module's parameters. - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str - Dnssuffix: + dnssuffix: type: str description: - Suffix to be appended when resolving domain names that are not fully qualified. diff --git a/plugins/modules/dnstxtrec.py b/plugins/modules/dnstxtrec.py index 1cdc3ddc..12bef1ee 100644 --- a/plugins/modules/dnstxtrec.py +++ b/plugins/modules/dnstxtrec.py @@ -36,7 +36,7 @@ to the module's parameters. - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str - String: + string: type: list description: - Information to store in the TXT resource record. Enclose the string in single @@ -73,7 +73,6 @@ of example.com are changed to 36000. If the TTL is not specified, the Citrix ADC uses either the DNS zone's minimum TTL or, if the SOA record is not available on the appliance, the default value of 3600. - default: 3600 type: type: str choices: @@ -85,7 +84,6 @@ - '* C(ADNS) - Display all authoritative address records.' - '* C(PROXY) - Display all proxy address records.' - '* C(ALL) - Display all address records.' - default: ADNS extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/dnszone.py b/plugins/modules/dnszone.py index 321f45a7..4f664985 100644 --- a/plugins/modules/dnszone.py +++ b/plugins/modules/dnszone.py @@ -43,7 +43,6 @@ - DISABLED description: - Enable dnssec offload for this zone. - default: DISABLED keyname: type: list description: @@ -57,7 +56,6 @@ - DISABLED description: - Enable nsec generation for dnssec offload. - default: DISABLED proxymode: type: str choices: diff --git a/plugins/modules/endpointinfo.py b/plugins/modules/endpointinfo.py index fc70d949..e400210e 100644 --- a/plugins/modules/endpointinfo.py +++ b/plugins/modules/endpointinfo.py @@ -42,7 +42,6 @@ - IP description: - Endpoint kind. Currently, C(IP) endpoints are supported - default: IP endpointlabelsjson: type: str description: diff --git a/plugins/modules/extendedmemoryparam.py b/plugins/modules/extendedmemoryparam.py index 0e07cd86..3e376f5d 100644 --- a/plugins/modules/extendedmemoryparam.py +++ b/plugins/modules/extendedmemoryparam.py @@ -29,12 +29,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str memlimit: type: float diff --git a/plugins/modules/feoaction.py b/plugins/modules/feoaction.py index c354463d..d843226d 100644 --- a/plugins/modules/feoaction.py +++ b/plugins/modules/feoaction.py @@ -40,7 +40,6 @@ type: float description: - Maxage for cache extension. - default: 30 clientsidemeasurements: type: bool description: diff --git a/plugins/modules/feoglobal_feopolicy_binding.py b/plugins/modules/feoglobal_feopolicy_binding.py index 8315d35c..2db8a4db 100644 --- a/plugins/modules/feoglobal_feopolicy_binding.py +++ b/plugins/modules/feoglobal_feopolicy_binding.py @@ -47,7 +47,6 @@ - APPFW_GLOBAL description: - '0' - default: SYSTEM_GLOBAL gotopriorityexpression: type: str description: diff --git a/plugins/modules/feoparameter.py b/plugins/modules/feoparameter.py index b5bed887..b716f6a8 100644 --- a/plugins/modules/feoparameter.py +++ b/plugins/modules/feoparameter.py @@ -27,36 +27,34 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str cssinlinethressize: type: float description: - Threshold value of the file size (in bytes) for converting external CSS files to inline CSS files. - default: 1024 imginlinethressize: type: float description: - Maximum file size of an image (in bytes), for coverting linked images to inline images. - default: 1024 jpegqualitypercent: type: float description: - 'The percentage value of a JPEG image quality to be reduced. Range: 0 - 100' - default: 75 jsinlinethressize: type: float description: - Threshold value of the file size (in bytes), for converting external JavaScript files to inline JavaScript files. - default: 1024 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/forwardingsession.py b/plugins/modules/forwardingsession.py index 999f47cf..8c1ee9d5 100644 --- a/plugins/modules/forwardingsession.py +++ b/plugins/modules/forwardingsession.py @@ -55,7 +55,6 @@ - Synchronize connection information with the secondary appliance in a high availability (HA) pair. That is, synchronize all connection-related information for the forwarding session. - default: DISABLED name: type: str description: @@ -83,7 +82,6 @@ description: - Enabling this option on forwarding session will not steer the packet to flow processor. Instead, packet will be routed. - default: DISABLED sourceroutecache: type: str choices: @@ -91,7 +89,6 @@ - DISABLED description: - Cache the source ip address and mac address of the DA servers. - default: DISABLED td: type: float description: diff --git a/plugins/modules/gslbparameter.py b/plugins/modules/gslbparameter.py index b0009a62..60170624 100644 --- a/plugins/modules/gslbparameter.py +++ b/plugins/modules/gslbparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str automaticconfigsync: type: str @@ -41,7 +43,6 @@ - DISABLED description: - GSLB configuration will be synced automatically to remote gslb sites if enabled. - default: DISABLED dropldnsreq: type: str choices: @@ -49,7 +50,6 @@ - DISABLED description: - Drop LDNS requests if round-trip time (RTT) information is not available. - default: DISABLED gslbconfigsyncmonitor: type: str choices: @@ -58,7 +58,6 @@ description: - If enabled, remote gslb site's rsync port will be monitored and site is considered for configuration sync only when the monitor is successful. - default: DISABLED gslbsvcstatedelaytime: type: float description: @@ -71,7 +70,6 @@ description: - Time duartion (in seconds) for which the gslb sync process will wait before checking for config changes. - default: 10 gslbsynclocfiles: type: str choices: @@ -80,7 +78,6 @@ description: - If disabled, Location files will not be synced to the remote sites as part of automatic sync. - default: ENABLED gslbsyncmode: type: str choices: @@ -88,7 +85,6 @@ - FullSync description: - Mode in which configuration will be synced from master site to remote sites. - default: IncrementalSync gslbsyncsaveconfigcommand: type: str choices: @@ -97,12 +93,10 @@ description: - If enabled, 'save ns config' command will be treated as other GSLB commands and synced to GSLB nodes when auto gslb sync option is enabled. - default: DISABLED ldnsentrytimeout: type: float description: - Time, in seconds, after which an inactive LDNS entry is removed. - default: 180 ldnsmask: type: str description: @@ -121,7 +115,6 @@ description: - Time duartion (in seconds) during which if no new packets received by Local gslb site from Remote gslb site then mark the MEP connection DOWN - default: 10 rtttolerance: type: float description: @@ -130,7 +123,6 @@ is less than or equal to the specified tolerance value, the LDNS entry in the network metric table is not updated with the new RTT value. Prevents the exchange of metrics when variations in RTT values are negligible. - default: 5 svcstatelearningtime: type: float description: @@ -150,14 +142,12 @@ - '* RESET - Reset the request and notify the user, so that the user can resend the request.' - '* DROP - Drop the request without sending a response to the user.' - default: '"NOLBACTION"' v6ldnsmasklen: type: float description: - Mask for creating LDNS entries for IPv6 source addresses. The mask is defined as the number of leading bits to consider, in the source IP address, when creating an LDNS entry. - default: 128 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/gslbservice.py b/plugins/modules/gslbservice.py index a3e7effc..85a1b6de 100644 --- a/plugins/modules/gslbservice.py +++ b/plugins/modules/gslbservice.py @@ -43,7 +43,6 @@ - DISABLED description: - Enable logging appflow flow information - default: ENABLED cip: type: str choices: @@ -53,7 +52,6 @@ - In the request that is forwarded to the GSLB service, insert a header that stores the client's IP address. Client IP header insertion is used in connection-proxy based site persistence. - default: DISABLED cipheader: type: str description: @@ -102,7 +100,6 @@ - 'NO' description: - Monitor the health of the GSLB service. - default: 'YES' ip: type: str description: @@ -148,20 +145,17 @@ type: float description: - Modify the TTL of the internally created naptr domain - default: 3600 naptrorder: type: float description: - An integer specifying the order in which the NAPTR records MUST be processed in order to accurately represent the ordered list of Rules. The ordering is from lowest to highest - default: 1 naptrpreference: type: float description: - An integer specifying the preference of this NAPTR among NAPTR records having same order. lower the number, higher the preference. - default: 1 naptrreplacement: type: str description: diff --git a/plugins/modules/gslbservicegroup.py b/plugins/modules/gslbservicegroup.py index 9ff38d1b..5126e052 100644 --- a/plugins/modules/gslbservicegroup.py +++ b/plugins/modules/gslbservicegroup.py @@ -47,7 +47,6 @@ - DISABLED description: - Enable logging of AppFlow information for the specified GSLB service group. - default: ENABLED autodelayedtrofs: type: str choices: @@ -56,7 +55,6 @@ description: - Indicates graceful movement of the service to TROFS. System will wait for monitor response time out before moving to TROFS - default: 'NO' autoscale: type: str choices: @@ -64,7 +62,6 @@ - DNS description: - Auto scale option for a GSLB servicegroup - default: DISABLED cip: type: str choices: @@ -107,7 +104,6 @@ - Flush all active transactions associated with all the services in the GSLB service group whose state transitions from UP to DOWN. Do not enable this option for applications that must complete their transactions. - default: ENABLED dup_weight: type: float description: @@ -120,7 +116,6 @@ description: - Wait for all existing connections to the service to terminate before shutting down the service. - default: 'NO' hashid: type: float description: @@ -137,7 +132,6 @@ - C(YES) - Send probes to check the health of the GSLB service. - C(NO) - Do not send probes to check the health of the GSLB service. With the C(NO) option, the appliance shows the service as UP at all times. - default: 'YES' includemembers: type: bool description: diff --git a/plugins/modules/gslbsite.py b/plugins/modules/gslbsite.py index f7cb5403..6596b1f1 100644 --- a/plugins/modules/gslbsite.py +++ b/plugins/modules/gslbsite.py @@ -64,7 +64,6 @@ least connection) is in operation, the appliance falls back to round robin. Also, if you disable metrics exchange, you must use a monitor to determine the state of GSLB services. Otherwise, the service is marked as DOWN. - default: ENABLED naptrreplacementsuffix: type: str description: @@ -80,7 +79,6 @@ learned from communications with various local DNS (LDNS) servers used by clients. RTT information is used in the dynamic RTT load balancing method, and is exchanged every 5 seconds. - default: ENABLED parentsite: type: str description: @@ -103,7 +101,6 @@ - DISABLED description: - Exchange persistent session entries with other GSLB sites every five seconds. - default: ENABLED siteipaddress: type: str description: @@ -148,7 +145,6 @@ - '* The exchange of metrics through MEP is disabled.' - '* The exchange of metrics through MEP is enabled but the status of the service, learned through metrics exchange, is DOWN.' - default: ALWAYS extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/gslbvserver.py b/plugins/modules/gslbvserver.py index 4388c867..c1357143 100644 --- a/plugins/modules/gslbvserver.py +++ b/plugins/modules/gslbvserver.py @@ -47,7 +47,6 @@ - DISABLED description: - Enable logging appflow flow information - default: ENABLED backupip: type: str description: @@ -103,7 +102,6 @@ virtual server to serve traffic. The effective state of the load balancing virtual server, which is transferred to the GSLB service, is UP even if only one virtual server in the backup chain of virtual servers is in the UP state. - default: NONE cookie_domain: type: str description: @@ -122,7 +120,6 @@ - Continue to direct traffic to the backup chain even after the primary GSLB virtual server returns to the UP state. Used when spillover is configured for the virtual server. - default: DISABLED dnsrecordtype: type: str choices: @@ -132,7 +129,6 @@ - NAPTR description: - DNS record type to associate with the GSLB virtual server's domain name. - default: A domainname: type: str description: @@ -149,7 +145,6 @@ or ignore both when using weight-based load balancing methods. The state of the number of services bound to the virtual server help the appliance to select the service. - default: DISABLED ecs: type: str choices: @@ -160,7 +155,6 @@ a DNS query with ECS. The ECS address will be used for persistence and spillover persistence (if enabled) instead of the LDNS address. Persistence mask is ignored if ECS is enabled. - default: DISABLED ecsaddrvalidation: type: str choices: @@ -169,7 +163,6 @@ description: - Validate if ECS address is a private or unroutable address and in such cases, use the LDNS IP. - default: DISABLED edr: type: str choices: @@ -177,7 +170,6 @@ - DISABLED description: - Send clients an empty DNS response when the GSLB virtual server is DOWN. - default: DISABLED iptype: type: str choices: @@ -185,7 +177,6 @@ - IPV6 description: - The IP type for this GSLB vserver. - default: IPV4 lbmethod: type: str choices: @@ -201,7 +192,6 @@ - API description: - Load balancing method for the GSLB virtual server. - default: LEASTCONNECTION mir: type: str choices: @@ -209,7 +199,6 @@ - DISABLED description: - Include multiple IP addresses in the DNS responses sent to clients. - default: DISABLED name: type: str description: @@ -273,7 +262,6 @@ by using the \ character.' - '* Alternatively, you can use single quotation marks to enclose the rule, in which case you do not have to escape the double quotation marks.' - default: '"none"' servicegroupname: type: str description: @@ -354,12 +342,10 @@ description: - If spillover occurs, maintain source IP address based persistence for both primary and backup GSLB virtual servers. - default: DISABLED sopersistencetimeout: type: float description: - Timeout for spillover persistence, in minutes. - default: 2 sothreshold: type: float description: @@ -371,7 +357,6 @@ type: float description: - Idle time, in minutes, after which a persistence entry is cleared. - default: 2 toggleorder: type: str choices: @@ -379,7 +364,6 @@ - DESCENDING description: - Configure this option to toggle order preference - default: ASCENDING tolerance: type: float description: @@ -399,13 +383,11 @@ description: - Number of bits to consider, in an IPv6 source IP address, for creating the hash that is required by the SOURCEIPHASH load balancing method. - default: 128 v6persistmasklen: type: float description: - Number of bits to consider in an IPv6 source IP address when creating source IP address based persistence sessions. - default: 128 weight: type: float description: diff --git a/plugins/modules/hanode.py b/plugins/modules/hanode.py index eb818b59..9251070b 100644 --- a/plugins/modules/hanode.py +++ b/plugins/modules/hanode.py @@ -41,7 +41,6 @@ description: - Number of seconds after which a peer node is marked DOWN if heartbeat messages are not received from the peer node. - default: 3 failsafe: type: str choices: @@ -51,7 +50,6 @@ - Keep one node primary if both nodes fail the health check, so that a partially available node can back up data and handle traffic. This mode is set independently on each node. - default: 'OFF' haprop: type: str choices: @@ -70,7 +68,6 @@ on the secondary, the primary node executes the command and logs an error. Command propagation uses port 3010. - 'Note: After enabling propagation, run force synchronization on either node.' - default: ENABLED hastatus: type: str choices: @@ -104,13 +101,11 @@ the primary node on the secondary node. This setting is not propagated. Automatic synchronization requires that this setting be enabled (the default) on the current secondary node. Synchronization uses TCP port 3010. - default: ENABLED hellointerval: type: float description: - Interval, in milliseconds, between heartbeat messages sent to the peer node. The heartbeat messages are UDP packets sent to port 3003 of the peer node. - default: 200 id: type: float description: @@ -128,7 +123,6 @@ (except LLB routes), route monitors, RNAT rules (except any RNAT rule with a VIP as the NAT IP), and dynamic routing configurations. They are maintained independently on each node.' - default: DISABLED ipaddress: type: str description: @@ -149,7 +143,6 @@ - DISABLED description: - strict mode flag for sync status - default: DISABLED syncvlan: type: float description: @@ -211,6 +204,16 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | HAnode + delegate_to: localhost + netscaler.adc.hanode: + state: present + id: 1 + ipaddress: 10.222.74.141 """ RETURN = r""" diff --git a/plugins/modules/icaaccessprofile.py b/plugins/modules/icaaccessprofile.py index 2af20836..257201e8 100644 --- a/plugins/modules/icaaccessprofile.py +++ b/plugins/modules/icaaccessprofile.py @@ -45,7 +45,6 @@ - Allow Default access/Disable applications hosted on the server to play sounds through a sound device installed on the client computer, also allows or prevents users to record audio input - default: DISABLED clientclipboardredirection: type: str choices: @@ -54,7 +53,6 @@ description: - Allow Default access/Disable the clipboard on the client device to be mapped to the clipboard on the server - default: DISABLED clientcomportredirection: type: str choices: @@ -62,7 +60,6 @@ - DISABLED description: - Allow Default access/Disable COM port redirection to and from the client - default: DISABLED clientdriveredirection: type: str choices: @@ -70,7 +67,6 @@ - DISABLED description: - Allow Default access/Disables drive redirection to and from the client - default: DISABLED clientprinterredirection: type: str choices: @@ -79,7 +75,6 @@ description: - Allow Default access/Disable client printers to be mapped to a server when a user logs on to a session - default: DISABLED clientusbdriveredirection: type: str choices: @@ -88,7 +83,6 @@ description: - Allow Default access/Disable the redirection of USB devices to and from the client - default: DISABLED connectclientlptports: type: str choices: @@ -97,7 +91,6 @@ description: - Allow Default access/Disable automatic connection of LPT ports from the client when the user logs on - default: DISABLED localremotedatasharing: type: str choices: @@ -105,7 +98,6 @@ - DISABLED description: - Allow Default access/Disable file/data sharing via the Receiver for HTML5 - default: DISABLED multistream: type: str choices: @@ -113,7 +105,6 @@ - DISABLED description: - Allow Default access/Disable the multistream feature for the specified users - default: DISABLED name: type: str description: diff --git a/plugins/modules/icaglobal_icapolicy_binding.py b/plugins/modules/icaglobal_icapolicy_binding.py index b996de68..a986930d 100644 --- a/plugins/modules/icaglobal_icapolicy_binding.py +++ b/plugins/modules/icaglobal_icapolicy_binding.py @@ -47,7 +47,6 @@ - APPFW_GLOBAL description: - '0' - default: SYSTEM_GLOBAL gotopriorityexpression: type: str description: diff --git a/plugins/modules/icalatencyprofile.py b/plugins/modules/icalatencyprofile.py index 1a893392..8dc929f3 100644 --- a/plugins/modules/icalatencyprofile.py +++ b/plugins/modules/icalatencyprofile.py @@ -42,7 +42,6 @@ - L7 Latency Max notify Count. This is the upper limit on the number of notifications sent to the Insight Center within an interval where the Latency is above the threshold. - default: 5 l7latencymonitoring: type: str choices: @@ -50,27 +49,23 @@ - DISABLED description: - Enable/Disable L7 Latency monitoring for L7 latency notifications - default: DISABLED l7latencynotifyinterval: type: float description: - L7 Latency Notify Interval. This is the interval at which the Citrix ADC sends out notifications to the Insight Center after the wait time has passed. - default: 20 l7latencythresholdfactor: type: float description: - L7 Latency threshold factor. This is the factor by which the active latency should be greater than the minimum observed value to determine that the latency is high and may need to be reported - default: 4 l7latencywaittime: type: float description: - L7 Latency Wait time. This is the time for which the Citrix ADC waits after the threshold is exceeded before it sends out a Notification to the Insight Center. - default: 20 name: type: str description: diff --git a/plugins/modules/icaparameter.py b/plugins/modules/icaparameter.py index 06832483..ddc76db6 100644 --- a/plugins/modules/icaparameter.py +++ b/plugins/modules/icaparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str edtpmtuddf: type: str @@ -41,12 +43,10 @@ - DISABLED description: - Enable/Disable DF enforcement for EDT PMTUD Control Blocks - default: ENABLED edtpmtuddftimeout: type: float description: - DF enforcement timeout for EDTPMTUDDF - default: 100 enablesronhafailover: type: str choices: @@ -54,7 +54,6 @@ - 'NO' description: - Enable/Disable Session Reliability on HA failover. The default value is No - default: 'NO' hdxinsightnonnsap: type: str choices: @@ -63,7 +62,6 @@ description: - Enable/Disable HDXInsight for Non NSAP ICA Sessions. The default value is Yes - default: 'YES' l7latencyfrequency: type: float description: diff --git a/plugins/modules/inat.py b/plugins/modules/inat.py index 1360f683..8746c5cb 100644 --- a/plugins/modules/inat.py +++ b/plugins/modules/inat.py @@ -45,7 +45,6 @@ - Synchronize connection information with the secondary appliance in a high availability (HA) pair. That is, synchronize all connection-related information for the INAT session - default: DISABLED ftp: type: str choices: @@ -54,7 +53,6 @@ description: - Enable the FTP protocol on the server for transferring files between the client and the server. - default: DISABLED mode: type: str choices: @@ -90,7 +88,6 @@ description: - Enable TCP proxy, which enables the Citrix ADC to optimize the RNAT TCP traffic by using Layer 4 features. - default: DISABLED td: type: float description: @@ -104,7 +101,6 @@ - DISABLED description: - To enable/disable TFTP (Default C(DISABLED)). - default: DISABLED useproxyport: type: str choices: @@ -113,7 +109,6 @@ description: - Enable the Citrix ADC to proxy the source port of packets before sending the packets to the server. - default: ENABLED usip: type: str choices: diff --git a/plugins/modules/inatparam.py b/plugins/modules/inatparam.py index d8af39b5..56dc5d8b 100644 --- a/plugins/modules/inatparam.py +++ b/plugins/modules/inatparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str nat46fragheader: type: str @@ -42,7 +44,6 @@ description: - When disabled, translator will not insert IPv6 fragmentation header for non fragmented IPv4 packets - default: ENABLED nat46ignoretos: type: str choices: @@ -50,13 +51,11 @@ - 'NO' description: - Ignore TOS. - default: 'NO' nat46v6mtu: type: float description: - MTU setting for the IPv6 side. If the incoming IPv4 packet greater than this, either fragment or send icmp need fragmentation error. - default: 1280 nat46v6prefix: type: str description: @@ -74,7 +73,6 @@ - DISABLED description: - Calculate checksum for UDP packets with zero checksum - default: ENABLED td: type: float description: diff --git a/plugins/modules/ip6tunnel.py b/plugins/modules/ip6tunnel.py index 54c9241d..5e6f6cbf 100644 --- a/plugins/modules/ip6tunnel.py +++ b/plugins/modules/ip6tunnel.py @@ -50,7 +50,6 @@ type: str description: - The owner node group in a Cluster for the tunnel. - default: DEFAULT_NG remote: type: str description: diff --git a/plugins/modules/ip6tunnelparam.py b/plugins/modules/ip6tunnelparam.py index 624f346d..e2f3676a 100644 --- a/plugins/modules/ip6tunnelparam.py +++ b/plugins/modules/ip6tunnelparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str dropfrag: type: str @@ -41,7 +43,6 @@ - 'NO' description: - Drop any packet that requires fragmentation. - default: 'NO' dropfragcputhreshold: type: float description: @@ -62,7 +63,6 @@ This setting is ignored if a common global source IPv6 address has been specified for all the IPv6 tunnels. This setting does not apply to a tunnel for which a source IPv6 address has been specified. - default: 'NO' useclientsourceipv6: type: str choices: @@ -71,12 +71,20 @@ description: - Use client source IPv6 address as source IPv6 address for outer tunnel IPv6 header - default: 'NO' extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | ip6TunnelParam + delegate_to: localhost + netscaler.adc.ip6tunnelparam: + state: present + srcip: '::' """ RETURN = r""" diff --git a/plugins/modules/ipsecalgprofile.py b/plugins/modules/ipsecalgprofile.py index b2767d57..de1a5fbd 100644 --- a/plugins/modules/ipsecalgprofile.py +++ b/plugins/modules/ipsecalgprofile.py @@ -45,22 +45,18 @@ - Mode in which the connection failover feature must operate for the IPSec Alg. After a failover, established UDP connections and ESP packet flows are kept active and resumed on the secondary appliance. Recomended setting is C(ENABLED). - default: ENABLED espgatetimeout: type: float description: - Timeout ESP in seconds as no ESP packets are seen after IKE negotiation - default: 30 espsessiontimeout: type: float description: - ESP session timeout in minutes. - default: 60 ikesessiontimeout: type: float description: - IKE session timeout in minutes - default: 60 name: type: str description: diff --git a/plugins/modules/ipsecparameter.py b/plugins/modules/ipsecparameter.py index 5c3f8fd7..308a4292 100644 --- a/plugins/modules/ipsecparameter.py +++ b/plugins/modules/ipsecparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str encalgo: type: list @@ -43,7 +45,6 @@ description: - 'Type of encryption algorithm (Note: Selection of C(AES) enables AES128)' elements: str - default: AES hashalgo: type: list choices: @@ -55,7 +56,6 @@ description: - Type of hashing algorithm elements: str - default: HMAC_SHA256 ikeretryinterval: type: float description: @@ -67,7 +67,6 @@ - V2 description: - IKE Protocol Version - default: V2 lifetime: type: float description: @@ -86,7 +85,6 @@ - DISABLE description: - Enable/Disable PFS. - default: DISABLE replaywindowsize: type: float description: diff --git a/plugins/modules/ipset.py b/plugins/modules/ipset.py index eaaf3948..283139e4 100644 --- a/plugins/modules/ipset.py +++ b/plugins/modules/ipset.py @@ -105,6 +105,15 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | ipset + delegate_to: localhost + netscaler.adc.ipset: + state: present + name: ipset-001 """ RETURN = r""" diff --git a/plugins/modules/iptunnel.py b/plugins/modules/iptunnel.py index 0f9f580a..125dd7f7 100644 --- a/plugins/modules/iptunnel.py +++ b/plugins/modules/iptunnel.py @@ -40,7 +40,6 @@ type: int description: - Specifies UDP destination port for Geneve packets. Default port is 6081. - default: 6081 grepayload: type: str choices: @@ -49,12 +48,10 @@ - IP description: - The payload GRE will carry - default: ETHERNETwithDOT1Q ipsecprofilename: type: str description: - Name of IPSec profile to be associated. - default: '"ns_ipsec_default_profile"' local: type: str description: @@ -70,7 +67,6 @@ type: str description: - The owner node group in a Cluster for the iptunnel. - default: DEFAULT_NG protocol: type: str choices: @@ -81,7 +77,6 @@ - GENEVE description: - Name of the protocol to be used on this tunnel. - default: IPIP remote: type: str description: @@ -100,7 +95,6 @@ - Default behavior is to copy the ToS field of the internal IP Packet (Payload) to the outer IP packet (Transport packet). But the user can configure a new ToS field using this option. - default: ENABLED vlan: type: float description: @@ -112,7 +106,6 @@ - DISABLED description: - Option to select Vlan Tagging. - default: DISABLED vnid: type: float description: diff --git a/plugins/modules/iptunnelparam.py b/plugins/modules/iptunnelparam.py index 4e4231eb..333ffeb1 100644 --- a/plugins/modules/iptunnelparam.py +++ b/plugins/modules/iptunnelparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str dropfrag: type: str @@ -42,7 +44,6 @@ description: - Drop any IP packet that requires fragmentation before it is sent through the tunnel. - default: 'NO' dropfragcputhreshold: type: float description: @@ -56,7 +57,6 @@ - 'NO' description: - Strict PBR check for IPSec packets received through tunnel - default: 'NO' enablestricttx: type: str choices: @@ -64,7 +64,6 @@ - 'NO' description: - Strict PBR check for packets to be sent IPSec protected - default: 'NO' mac: type: str description: @@ -86,7 +85,6 @@ This setting is ignored if a common global source IP address has been specified for all the IP tunnels. This setting does not apply to a tunnel for which a source IP address has been specified. - default: 'NO' useclientsourceip: type: str choices: @@ -94,7 +92,6 @@ - 'NO' description: - Use client source IP as source IP for outer tunnel IP header - default: 'NO' extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/ipv6.py b/plugins/modules/ipv6.py index 535348d0..16e6da4f 100644 --- a/plugins/modules/ipv6.py +++ b/plugins/modules/ipv6.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str dodad: type: str @@ -44,7 +46,6 @@ - Detection (DAD) for all the Citrix ADC owned IPv6 addresses regardless of whether they are obtained through stateless auto configuration, DHCPv6, or manual configuration. - default: DISABLED natprefix: type: str description: @@ -61,14 +62,12 @@ - Base reachable time of the Neighbor Discovery (ND6) protocol. The time, in milliseconds, that the Citrix ADC assumes an adjacent device is reachable after receiving a reachability confirmation. - default: 30000 ndretransmissiontime: type: float description: - Retransmission time of the Neighbor Discovery (ND6) protocol. The time, in milliseconds, between retransmitted Neighbor Solicitation (NS) messages, to an adjacent device. - default: 1000 ralearning: type: str choices: @@ -77,7 +76,6 @@ description: - Enable the Citrix ADC to learn about various routes from Router Advertisement (RA) and Router Solicitation (RS) messages sent by the routers. - default: DISABLED routerredirection: type: str choices: @@ -85,7 +83,6 @@ - DISABLED description: - Enable the Citrix ADC to do Router Redirection. - default: DISABLED td: type: float description: diff --git a/plugins/modules/l2param.py b/plugins/modules/l2param.py index 180e4ea5..b8315d13 100644 --- a/plugins/modules/l2param.py +++ b/plugins/modules/l2param.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str bdggrpproxyarp: type: str @@ -41,7 +43,6 @@ - DISABLED description: - Set/reset proxy ARP in bridge group deployment - default: ENABLED bdgsetting: type: str choices: @@ -51,7 +52,6 @@ - Bridging settings for C2C behavior. If enabled, each PE will learn MAC entries independently. Otherwise, when L2 mode is ON, learned MAC entries on a PE will be broadcasted to all other PEs. - default: DISABLED bridgeagetimeout: type: float description: @@ -59,7 +59,6 @@ only to the entries that are dynamically learned after the new value is set. Previously existing bridge table entries expire after the previously configured time-out value. - default: 300 garponvridintf: type: str choices: @@ -67,7 +66,6 @@ - DISABLED description: - Send GARP messagess on VRID-configured interfaces upon failover - default: ENABLED garpreply: type: str choices: @@ -75,7 +73,6 @@ - DISABLED description: - Set/reset REPLY form of GARP - default: DISABLED macmodefwdmypkt: type: str choices: @@ -84,12 +81,10 @@ description: - Allows MAC mode vserver to pick and forward the packets even if it is destined to Citrix ADC owned VIP. - default: DISABLED maxbridgecollision: type: float description: - Maximum bridge collision for loop detection - default: 20 mbfinstlearning: type: str choices: @@ -97,13 +92,11 @@ - DISABLED description: - Enable instant learning of MAC changes in MBF mode. - default: DISABLED mbfpeermacupdate: type: float description: - When mbf_instant_learning is enabled, learn any changes in peer's MAC after this time interval, which is in 10ms ticks. - default: 10 proxyarp: type: str choices: @@ -111,7 +104,6 @@ - DISABLED description: - Proxies the ARP as Citrix ADC MAC for FreeBSD. - default: ENABLED returntoethernetsender: type: str choices: @@ -119,7 +111,6 @@ - DISABLED description: - Return to ethernet sender. - default: DISABLED rstintfonhafo: type: str choices: @@ -127,7 +118,6 @@ - DISABLED description: - Enable the reset interface upon HA failover. - default: DISABLED skipproxyingbsdtraffic: type: str choices: @@ -137,7 +127,6 @@ - Control source parameters (IP and Port) for FreeBSD initiated traffic. If Enabled, source parameters are retained. Else proxy the source parameters based on next hop. - default: DISABLED stopmacmoveupdate: type: str choices: @@ -145,7 +134,6 @@ - DISABLED description: - Stop Update of server mac change to NAT sessions. - default: DISABLED usemymac: type: str choices: @@ -153,7 +141,6 @@ - DISABLED description: - Use Citrix ADC MAC for all outgoing packets. - default: DISABLED usenetprofilebsdtraffic: type: str choices: @@ -163,7 +150,6 @@ - Control source parameters (IP and Port) for FreeBSD initiated traffic. If enabled proxy the source parameters based on netprofile source ip. If netprofile does not have ip configured, then it will continue to use NSIP as earlier. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/l3param.py b/plugins/modules/l3param.py index 13edfcd7..e1a58019 100644 --- a/plugins/modules/l3param.py +++ b/plugins/modules/l3param.py @@ -27,18 +27,17 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str acllogtime: type: str - choices: - - ENABLED - - DISABLED description: - Parameter to tune acl logging time allowclasseipv4: @@ -48,7 +47,6 @@ - DISABLED description: - Enable/Disable IPv4 Class E address clients - default: DISABLED dropdfflag: type: str choices: @@ -56,7 +54,6 @@ - DISABLED description: - Enable dropping the IP DF flag. - default: DISABLED dropipfragments: type: str choices: @@ -64,7 +61,6 @@ - DISABLED description: - Enable dropping of IP fragments. - default: DISABLED dynamicrouting: type: str choices: @@ -73,7 +69,6 @@ description: - Enable/Disable Dynamic routing on partition. This configuration is not applicable to default partition - default: DISABLED externalloopback: type: str choices: @@ -81,7 +76,6 @@ - DISABLED description: - Enable external loopback. - default: DISABLED forwardicmpfragments: type: str choices: @@ -89,12 +83,10 @@ - DISABLED description: - Enable forwarding of ICMP fragments. - default: DISABLED icmpgenratethreshold: type: float description: - NS generated ICMP pkts per 10ms rate threshold - default: 100 implicitaclallow: type: str choices: @@ -102,7 +94,6 @@ - DISABLED description: - Do not apply ACLs for internal ports - default: ENABLED ipv6dynamicrouting: type: str choices: @@ -110,7 +101,6 @@ - DISABLED description: - Enable/Disable IPv6 Dynamic routing - default: DISABLED miproundrobin: type: str choices: @@ -118,7 +108,6 @@ - DISABLED description: - Enable round robin usage of mapped IPs. - default: ENABLED overridernat: type: str choices: @@ -127,7 +116,6 @@ description: - USNIP/USIP settings override RNAT settings for configured - ' service/virtual server traffic..' - default: DISABLED srcnat: type: str choices: @@ -135,7 +123,6 @@ - DISABLED description: - Perform NAT if only the source is in the private network - default: ENABLED tnlpmtuwoconn: type: str choices: @@ -144,7 +131,6 @@ description: - Enable/Disable learning PMTU of IP tunnel when ICMP error does not contain connection information. - default: ENABLED usipserverstraypkt: type: str choices: @@ -152,12 +138,28 @@ - DISABLED description: - Enable detection of stray server side pkts in USIP mode. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +--- +- name: Sample Task + hosts: localhost + + gather_facts: false + + tasks: + - name: Sample task | set l3param + delegate_to: localhost + netscaler.adc.l3param: + state: present + acllogtime: 3000 + - name: Sample task | unset l3param + delegate_to: localhost + netscaler.adc.l3param: + state: absent # absent for l3param calls unset action + acllogtime: "true" """ RETURN = r""" diff --git a/plugins/modules/l4param.py b/plugins/modules/l4param.py index c621c964..d4610716 100644 --- a/plugins/modules/l4param.py +++ b/plugins/modules/l4param.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str l2connmethod: type: str @@ -50,7 +52,6 @@ lb vserver is ON then method specified here will be used to identify a connection in addition to the 4-tuple (::::). - default: MacVlanChannel l4switch: type: str choices: @@ -59,7 +60,6 @@ description: - In L4 switch topology, always clients and servers are on the same side. Enable l4switch to allow such connections. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/lacp.py b/plugins/modules/lacp.py index e070cb8e..684b10cf 100644 --- a/plugins/modules/lacp.py +++ b/plugins/modules/lacp.py @@ -39,19 +39,26 @@ description: - The owner node in a cluster for which we want to set the lacp priority. Owner node can vary from 0 to 31. Ownernode value of 254 is used for Cluster. - default: 255 syspriority: type: float description: - Priority number that determines which peer device of an LACP LA channel can have control over the LA channel. This parameter is globally applied to all LACP channels on the Citrix ADC. The lower the number, the higher the priority. - default: 32768 extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | lacp + delegate_to: localhost + netscaler.adc.lacp: + state: present + syspriority: '32768' """ RETURN = r""" diff --git a/plugins/modules/lbglobal_lbpolicy_binding.py b/plugins/modules/lbglobal_lbpolicy_binding.py index dc0c8e43..d0bc6e85 100644 --- a/plugins/modules/lbglobal_lbpolicy_binding.py +++ b/plugins/modules/lbglobal_lbpolicy_binding.py @@ -47,7 +47,6 @@ - APPFW_GLOBAL description: - '0' - default: SYSTEM_GLOBAL gotopriorityexpression: type: str description: diff --git a/plugins/modules/lbgroup.py b/plugins/modules/lbgroup.py index f7646df5..c0caec55 100644 --- a/plugins/modules/lbgroup.py +++ b/plugins/modules/lbgroup.py @@ -40,7 +40,6 @@ type: float description: - Time period, in minutes, for which backup persistence is in effect. - default: 2 cookiedomain: type: str description: @@ -104,12 +103,10 @@ by using the \ character.' - '* Alternatively, you can use single quotation marks to enclose the rule, in which case you do not have to escape the double quotation marks.' - default: '"None"' timeout: type: float description: - Time period for which a persistence session is in effect. - default: 2 usevserverpersistency: type: str choices: @@ -120,13 +117,11 @@ allows member vservers to have their own persistence, but need to be compatible with other members persistence rules. When this setting is enabled persistence sessions created by any of the members can be shared by other member vservers. - default: DISABLED v6persistmasklen: type: float description: - Persistence mask to apply to source IPv6 addresses when creating source IP based persistence sessions. - default: 128 lbgroup_lbvserver_binding: type: dict description: Bindings for lbgroup_lbvserver_binding resource diff --git a/plugins/modules/lbmetrictable.py b/plugins/modules/lbmetrictable.py index 50144a87..c0c3fd9f 100644 --- a/plugins/modules/lbmetrictable.py +++ b/plugins/modules/lbmetrictable.py @@ -36,7 +36,7 @@ to the module's parameters. - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str - Snmpoid: + snmpoid: type: str description: - New SNMP OID of the metric. diff --git a/plugins/modules/lbmetrictable_metric_binding.py b/plugins/modules/lbmetrictable_metric_binding.py index 038ed4a4..bec863cc 100644 --- a/plugins/modules/lbmetrictable_metric_binding.py +++ b/plugins/modules/lbmetrictable_metric_binding.py @@ -38,7 +38,7 @@ to the module's parameters. - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str - Snmpoid: + snmpoid: type: str description: - New SNMP OID of the metric. diff --git a/plugins/modules/lbmonitor.py b/plugins/modules/lbmonitor.py index c8116e41..71cbca12 100644 --- a/plugins/modules/lbmonitor.py +++ b/plugins/modules/lbmonitor.py @@ -40,7 +40,7 @@ - When C(enabled) the resource will be enabled on the NetScaler ADC node. - When C(disabled) the resource will be disabled on the NetScaler ADC node. type: str - Snmpoid: + snmpoid: type: str description: - SNMP OID for SNMP monitors. @@ -72,7 +72,6 @@ to the service until the configured down time has expired. Persistent connections to the service are terminated as soon as the service is marked as C(DOWN). Also, log the event in NSLOG or SYSLOG.' - default: DOWN alertretries: type: int description: @@ -156,7 +155,6 @@ description: - Time duration for which to wait before probing a service that has been marked as DOWN. Expressed in milliseconds, seconds, or minutes. - default: 30 evalrule: type: str description: @@ -204,7 +202,6 @@ - 'NO' description: - Option to enable or disable gRPC health check service. - default: 'NO' grpcservicename: type: str description: @@ -246,7 +243,6 @@ description: - Time interval between two successive probes. Must be greater than the value of Response Time-out. - default: 5 ipaddress: type: list description: @@ -261,7 +257,6 @@ description: - Send the monitoring probe to the service through an IP tunnel. A destination IP address must be specified. - default: 'NO' kcdaccount: type: str description: @@ -292,7 +287,6 @@ description: - Maximum number of hops that the SIP request used for monitoring can traverse to reach the server. Applicable only to monitors of type SIP-UDP. - default: 1 metric: type: str description: @@ -328,7 +322,6 @@ description: - Version of MQTT protocol used in connect message, default is version 3.1.1 [4] - default: 4 mssqlprotocolversion: type: str choices: @@ -398,7 +391,6 @@ description: - Account Type to be used in Account Request Packet. Applicable to monitors of type RADIUS_ACCOUNTING. - default: 1 radapn: type: str description: @@ -452,7 +444,6 @@ response timeout does not apply. For UDP-ECV monitors with no receive string, probe failure is indicated by an ICMP port unreachable error received from the service.' - default: 2 resptimeoutthresh: type: float description: @@ -467,7 +458,6 @@ description: - Maximum number of probes to send to establish the state of a service for which a monitoring probe failed. - default: 3 reverse: type: str choices: @@ -476,7 +466,6 @@ description: - Mark a service as DOWN, instead of UP, when probe criteria are satisfied, and as UP instead of DOWN when probe criteria are not satisfied. - default: 'NO' rtsprequest: type: str description: @@ -505,7 +494,6 @@ - Use a secure SSL connection when monitoring a service. Applicable only to TCP based monitors. The secure option cannot be used with a CITRIX-AG monitor, because a CITRIX-AG monitor uses a secure connection by default. - default: 'NO' secureargs: type: str description: @@ -579,7 +567,6 @@ description: - Store the database list populated with the responses to monitor probes. Used in database specific load balancing if MSSQL-ECV/MYSQL-ECV monitor is configured. - default: DISABLED storefrontacctservice: type: str choices: @@ -588,7 +575,6 @@ description: - Enable/Disable probing for Account Service. Applicable only to Store Front monitors. For multi-tenancy configuration users my skip account service - default: 'YES' storefrontcheckbackendservices: type: str choices: @@ -599,7 +585,6 @@ Storefront services are monitored by probing to a Windows service that runs on the Storefront server and exposes details of which storefront services are running. - default: 'NO' storename: type: str description: @@ -610,7 +595,6 @@ description: - Number of consecutive successful probes required to transition a service's state from DOWN to UP. - default: 1 supportedvendorids: type: list description: @@ -642,7 +626,6 @@ behind it. If a transparent device is being monitored, a destination IP address must be specified. The probe is sent to the specified IP address by using the MAC address of the transparent device. - default: 'NO' trofscode: type: float description: @@ -715,7 +698,6 @@ description: - Unit of measurement for the Deviation parameter. Cannot be changed after the monitor is created. - default: SEC units2: type: str choices: @@ -725,7 +707,6 @@ description: - Unit of measurement for the Down Time parameter. Cannot be changed after the monitor is created. - default: SEC units3: type: str choices: @@ -734,7 +715,6 @@ - MIN description: - monitor interval units - default: SEC units4: type: str choices: @@ -743,7 +723,6 @@ - MIN description: - monitor response timeout units - default: SEC username: type: str description: @@ -758,7 +737,6 @@ description: - Validate the credentials of the Xen Desktop DDC server user. Applicable to monitors of type CITRIX-XD-DDC. - default: 'NO' vendorid: type: float description: @@ -845,6 +823,42 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | lbmonitor + delegate_to: localhost + netscaler.adc.lbmonitor: + state: present + monitorname: ldns-dns + type: LDNS-DNS + query: . + querytype: Address + deviation: '0' + interval: 6 + resptimeout: 3 + downtime: 20 + - name: Sample Task | lbmonitor | 2 + delegate_to: localhost + netscaler.adc.lbmonitor: + state: present + monitorname: stasecure + type: CITRIX-STA-SERVICE + deviation: '0' + interval: 2 + units3: MIN + resptimeout: 4 + downtime: 5 + - name: Sample Task | lbmonitor | 3 + delegate_to: localhost + tags: test + netscaler.adc.lbmonitor: + state: present + monitorname: test-monitor1 + type: TCP + interval: 15 + retries: 20 """ RETURN = r""" diff --git a/plugins/modules/lbparameter.py b/plugins/modules/lbparameter.py index 5968e3b2..f0b6cd36 100644 --- a/plugins/modules/lbparameter.py +++ b/plugins/modules/lbparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str allowboundsvcremoval: type: str @@ -44,7 +46,6 @@ is bound to one or more vserver. If it is enabled, the svc/svcgroup can be removed, even if it bound to vservers. If disabled, an error will be thrown, when the user tries to remove a svc/svcgroup without unbinding from its vservers. - default: ENABLED computedadccookieattribute: type: str description: @@ -75,7 +76,6 @@ consolidated connection statistics from all the packet engines. The C(NO) setting allows consideration of only the number of connections on the packet engine that received the new connection. - default: 'YES' cookiepassphrase: type: str description: @@ -94,7 +94,6 @@ description: - When this option is enabled, MQTT messages of length greater than 64k will be dropped and the client/server connections will be reset. - default: 'YES' httponlycookieflag: type: str choices: @@ -104,7 +103,6 @@ - Include the HttpOnly attribute in persistence cookies. The HttpOnly attribute limits the scope of a cookie to HTTP requests and helps mitigate the risk of cross-site scripting attacks. - default: ENABLED lbhashalgorithm: type: str choices: @@ -115,14 +113,12 @@ - This option dictates the hashing algorithm used for hash based LB methods (URLHASH, DOMAINHASH, SOURCEIPHASH, DESTINATIONIPHASH, SRCIPDESTIPHASH, SRCIPSRCPORTHASH, TOKEN, USER_TOKEN, CALLIDHASH). - default: DEFAULT lbhashfingers: type: float description: - This option is used to specify the number of fingers to be used in PRAC and JARH algorithms for hash based LB methods. Increasing the number of fingers might give better distribution of traffic at the expense of additional memory - default: 256 literaladccookieattribute: type: str description: @@ -148,7 +144,6 @@ description: - Close monitoring connections by sending the service a connection termination message with the specified bit set. - default: FIN monitorskipmaxclient: type: str choices: @@ -159,7 +154,6 @@ whether the number of connections to the service has reached the limit specified by the service's Max Clients setting. Enables monitoring to continue even if the service has reached its connection limit. - default: DISABLED preferdirectroute: type: str choices: @@ -172,7 +166,6 @@ intermediary device, such as a firewall, even if their destination is directly connected to the appliance. Route lookup is performed after the packets have been processed and returned by the intermediary device. - default: 'YES' retainservicestate: type: str choices: @@ -181,7 +174,6 @@ description: - This option is used to retain the original state of service or servicegroup member when an enable server command is issued. - default: 'OFF' startuprrfactor: type: float description: @@ -221,7 +213,6 @@ description: - This option allows to store the MQTT clientid and username in transactional logs - default: 'NO' undefaction: type: str description: @@ -231,7 +222,6 @@ - '* RESET - Reset the request and notify the user, so that the user can resend the request.' - '* DROP - Drop the request without sending a response to the user.' - default: '"NOLBACTION"' useencryptedpersistencecookie: type: str choices: @@ -239,7 +229,6 @@ - DISABLED description: - Encode persistence cookie values using SHA2 hash. - default: DISABLED useportforhashlb: type: str choices: @@ -249,7 +238,6 @@ - Include the port number of the service when creating a hash for hash based load balancing methods. With the C(NO) setting, only the IP address of the service is considered when creating a hash. - default: 'YES' usesecuredpersistencecookie: type: str choices: @@ -257,7 +245,6 @@ - DISABLED description: - Encode persistence cookie values using SHA2 hash. - default: DISABLED vserverspecificmac: type: str choices: @@ -273,12 +260,33 @@ of intermediary devices, such as another set of firewalls. If necessary, you can configure multiple MAC-mode virtual servers to pass traffic successively through multiple sets of intermediary devices.' - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +--- + +- name: Sample Task + hosts: localhost + + gather_facts: false + + tasks: + + - name: Sample playbook + delegate_to: localhost + netscaler.adc.lbparameter: + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable + # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: present + + allowboundsvcremoval: DISABLED """ RETURN = r""" diff --git a/plugins/modules/lbpolicylabel.py b/plugins/modules/lbpolicylabel.py index 2a5d7b8e..6a9eb528 100644 --- a/plugins/modules/lbpolicylabel.py +++ b/plugins/modules/lbpolicylabel.py @@ -91,7 +91,6 @@ - '* C(MQTT) - C(MQTT) request.' - '* C(QUIC_BRIDGE) - C(QUIC_BRIDGE) request.' - '* C(HTTP_QUIC) - C(HTTP_QUIC) request.' - default: HTTP lbpolicylabel_lbpolicy_binding: type: dict description: Bindings for lbpolicylabel_lbpolicy_binding resource diff --git a/plugins/modules/lbprofile.py b/plugins/modules/lbprofile.py index d0a46525..5b64546a 100644 --- a/plugins/modules/lbprofile.py +++ b/plugins/modules/lbprofile.py @@ -68,7 +68,6 @@ - DISABLED description: - Enable database specific load balancing for MySQL and MSSQL service types. - default: DISABLED httponlycookieflag: type: str choices: @@ -78,7 +77,6 @@ - Include the HttpOnly attribute in persistence cookies. The HttpOnly attribute limits the scope of a cookie to HTTP requests and helps mitigate the risk of cross-site scripting attacks. - default: ENABLED lbhashalgorithm: type: str choices: @@ -89,14 +87,12 @@ - This option dictates the hashing algorithm used for hash based LB methods (URLHASH, DOMAINHASH, SOURCEIPHASH, DESTINATIONIPHASH, SRCIPDESTIPHASH, SRCIPSRCPORTHASH, TOKEN, USER_TOKEN, CALLIDHASH). - default: DEFAULT lbhashfingers: type: float description: - This option is used to specify the number of fingers to be used in PRAC and JARH algorithms for hash based LB methods. Increasing the number of fingers might give better distribution of traffic at the expense of additional memory. - default: 256 lbprofilename: type: str description: @@ -120,7 +116,6 @@ not under go any steering. Turn this option for single pa - cket request response mode or when the upstream device is performing a proper RSS for connection based distribution. - default: DISABLED storemqttclientidandusername: type: str choices: @@ -129,7 +124,6 @@ description: - This option allows to store the MQTT clientid and username in transactional logs - default: 'NO' useencryptedpersistencecookie: type: str choices: @@ -137,7 +131,6 @@ - DISABLED description: - Encode persistence cookie values using SHA2 hash. - default: DISABLED usesecuredpersistencecookie: type: str choices: @@ -145,7 +138,6 @@ - DISABLED description: - Encode persistence cookie values using SHA2 hash. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/lbsipparameters.py b/plugins/modules/lbsipparameters.py index 1f75603c..c348c993 100644 --- a/plugins/modules/lbsipparameters.py +++ b/plugins/modules/lbsipparameters.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str addrportvip: type: str @@ -42,14 +44,12 @@ description: - Add the rport parameter to the VIA headers of SIP requests that virtual servers receive from clients or servers. - default: ENABLED retrydur: type: int description: - Time, in seconds, for which a client must wait before initiating a connection after receiving a 503 Service Unavailable response from the SIP server. The time value is sent in the "Retry-After" header in the 503 response. - default: 120 rnatdstport: type: int description: @@ -83,7 +83,6 @@ description: - Maximum number of 503 Service Unavailable responses to generate, once every 10 milliseconds, when a SIP virtual server becomes unavailable. - default: 100 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/lbvserver.py b/plugins/modules/lbvserver.py index 94fca3d7..46b7784d 100644 --- a/plugins/modules/lbvserver.py +++ b/plugins/modules/lbvserver.py @@ -52,7 +52,6 @@ - DISABLED description: - Apply AppFlow logging to the virtual server. - default: ENABLED authentication: type: str choices: @@ -60,7 +59,6 @@ - 'OFF' description: - Enable or disable user authentication. - default: 'OFF' authenticationhost: type: str description: @@ -74,7 +72,6 @@ - 'OFF' description: - Enable or disable user authentication with HTTP 401 responses. - default: 'OFF' authnprofile: type: str description: @@ -100,12 +97,10 @@ - thod fails or cannot be used. - ' Valid only if the primary method is based on static proximity.' - default: ROUNDROBIN backuppersistencetimeout: type: float description: - Time period for which backup persistence is in effect. - default: 2 backupvserver: type: str description: @@ -119,7 +114,6 @@ description: - If this option is enabled while resolving DNS64 query AAAA queries are not sent to back end dns server - default: 'NO' cacheable: type: str choices: @@ -130,7 +124,6 @@ virtual server can forward requests only to a transparent cache redirection virtual server that has an IP address and port combination of *:80, so such a cache redirection virtual server must be configured on the appliance. - default: 'NO' clttimeout: type: float description: @@ -156,7 +149,6 @@ tries to re-create the packet flow on the basis of the information contained in the packets it receives.' - '* C(DISABLED) - Connection failover does not occur.' - default: DISABLED cookiename: type: str description: @@ -187,7 +179,6 @@ - DISABLED description: - Enable database specific load balancing for MySQL and MSSQL service types. - default: DISABLED disableprimaryondown: type: str choices: @@ -196,7 +187,6 @@ description: - If the primary virtual server goes down, do not allow it to return to primary status until manually enabled. - default: DISABLED dns64: type: str choices: @@ -219,13 +209,11 @@ - Flush all active transactions associated with a virtual server whose state transitions from UP to DOWN. Do not enable this option for applications that must complete their transactions. - default: ENABLED hashlength: type: float description: - Number of bytes to consider for the hash value used in the URLHASH and DOMAINHASH load balancing methods. - default: 80 healththreshold: type: float description: @@ -261,7 +249,6 @@ parameter, ICMP Response, is available at the IP address level, for IPv4 addresses of type VIP. To set that parameter, use the add ip command in the CLI or the Create IP dialog box in the GUI.' - default: PASSIVE insertvserveripport: type: str choices: @@ -394,7 +381,6 @@ - '* C(CALLIDHASH) - Create a hash of the SIP Call-ID header.' - '* C(USER_TOKEN) - Same as C(TOKEN) LB method but token needs to be provided from an extension.' - default: LEASTCONNECTION lbprofilename: type: str description: @@ -406,7 +392,6 @@ an expression (for example, CLIENT.IP.DST.IN_SUBNET(192.0.2.0/24) or the name of a named expression. In the above example, the virtual server accepts all requests whose destination IP address is in the 192.0.2.0/24 subnet. - default: '"NONE"' listenpriority: type: float description: @@ -414,7 +399,6 @@ a lower priority. If a request matches the listen policies of more than one virtual server the virtual server whose listen policy has the highest priority (the lowest priority number) accepts the request. - default: 101 m: type: str choices: @@ -439,7 +423,6 @@ the C(IP) header.' - You can use either the C(IPTUNNEL) or the C(TOS) option to implement Direct Server Return (DSR). - default: IP macmoderetainvlan: type: str choices: @@ -448,7 +431,6 @@ description: - This option is used to retain vlan information of incoming packet when macmode is enabled - default: DISABLED maxautoscalemembers: type: float description: @@ -474,7 +456,6 @@ from the version of the database. This setting provides compatibility between the client-side and server-side connections by ensuring that all communication conforms to the server's version. - default: 2008R2 mysqlcharacterset: type: float description: @@ -539,7 +520,6 @@ - PERCENT description: - Units in which to increment load at each interval in slow-start mode. - default: PER_SECOND oracleserverversion: type: str choices: @@ -547,7 +527,6 @@ - 11G description: - Oracle server version - default: 10G order: type: float description: @@ -649,7 +628,6 @@ type: str description: - HTTP code to return in SUCCESS case. - default: '"200 OK"' processlocal: type: str choices: @@ -660,7 +638,6 @@ not under go any steering. Turn this option for single packet request response mode or when the upstream device is performing a proper RSS for connection based distribution. - default: DISABLED push: type: str choices: @@ -669,13 +646,11 @@ description: - Process traffic with the push virtual server that is bound to this load balancing virtual server. - default: DISABLED pushlabel: type: str description: - Expression for extracting a label from the server's response. Can be either an expression or the name of a named expression. - default: '"none"' pushmulticlients: type: str choices: @@ -684,7 +659,6 @@ description: - Allow multiple Web 2.0 connections from the same client to connect to the virtual server and expect updates. - default: 'NO' pushvserver: type: str description: @@ -716,7 +690,6 @@ use brackets in the IP Address and Name parameters to specify the range. For example:' - add lb vserver my_vserver[1-3] HTTP 192.0.2.[1-3] 80 - default: 1 recursionavailable: type: str choices: @@ -727,7 +700,6 @@ have the RA bit turned on. Typically one would set this option to C(YES), when the vserver is load balancing a set of DNS servers thatsupport recursive queries. - default: 'NO' redirectfromport: type: int description: @@ -741,7 +713,6 @@ description: - Rewrite the port and change the protocol to ensure successful HTTP redirects from services. - default: DISABLED redirurl: type: str description: @@ -761,7 +732,6 @@ expression or the name of a named expression. - 'Example:' - HTTP.RES.HEADER("setcookie").VALUE(0).TYPECAST_NVLIST_T('=',';').VALUE("server1"). - default: '"none"' retainconnectionsoncluster: type: str choices: @@ -771,7 +741,6 @@ - This option enables you to retain existing connections on a node joining a Cluster system or when a node is being configured for passive timeout. By default, this option is disabled. - default: 'NO' rhistate: type: str choices: @@ -791,7 +760,6 @@ - '* If you set RHI STATE to C(ACTIVE) on some and C(PASSIVE) on others, the Citrix ADC advertises the route for the VIP address if at least one of the associated virtual servers, whose RHI STATE set to C(ACTIVE), is in UP state.' - default: PASSIVE rtspnat: type: str choices: @@ -799,7 +767,6 @@ - 'OFF' description: - Use network address translation (NAT) for RTSP data connections. - default: 'OFF' rule: type: str description: @@ -811,7 +778,6 @@ by using the \ character.' - '* Alternatively, you can use single quotation marks to enclose the rule, in which case you do not have to escape the double quotation marks.' - default: '"none"' servicename: type: str description: @@ -875,7 +841,6 @@ Recommended for load balancing of intrusion detection system (IDS) servers and scenarios involving direct server return (DSR), where session information is unnecessary. - default: DISABLED skippersistency: type: str choices: @@ -885,7 +850,6 @@ description: - This argument decides the behavior incase the service which is selected from an existing persistence session has reached threshold. - default: None sobackupaction: type: str choices: @@ -929,12 +893,10 @@ description: - If spillover occurs, maintain source IP address based persistence for both primary and backup virtual servers. - default: DISABLED sopersistencetimeout: type: float description: - Timeout for spillover persistence, in minutes. - default: 2 sothreshold: type: float description: @@ -962,7 +924,6 @@ type: float description: - Time period for which a persistence session is in effect. - default: 2 toggleorder: type: str choices: @@ -970,7 +931,6 @@ - DESCENDING description: - Configure this option to toggle order preference - default: ASCENDING tosid: type: float description: @@ -984,19 +944,16 @@ description: - When value is C(ENABLED), Trofs persistence is honored. When value is C(DISABLED), Trofs persistence is not honored. - default: ENABLED v6netmasklen: type: float description: - Number of bits to consider in an IPv6 destination or source IP address, for creating the hash that is required by the DESTINATIONIPHASH and SOURCEIPHASH load balancing methods. - default: 128 v6persistmasklen: type: float description: - Persistence mask for IP based persistence types, for IPv6 virtual servers. - default: 128 vipheader: type: str description: @@ -1585,6 +1542,95 @@ """ EXAMPLES = r""" +--- + +- name: Simple LBVserver playbook + hosts: localhost + + gather_facts: false + + tasks: + - name: Sample Task | service + delegate_to: localhost + netscaler.adc.service: + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable + # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: present + + name: s1 + ipaddress: 10.222.74.181 + servicetype: HTTP + port: 80 + + - name: Sample Task | service + delegate_to: localhost + netscaler.adc.service: + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable + # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: present + + name: s2 + ipaddress: 10.10.10.10 + servicetype: HTTP + port: 80 + + - name: Sample Task | servicegroup + delegate_to: localhost + netscaler.adc.servicegroup: + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable + # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: present + + servicegroupname: sg1 + servicetype: HTTP + + - name: Sample Task | lbvserver with bindings + delegate_to: localhost + netscaler.adc.lbvserver: + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable + # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: present + + name: test_lbvser + servicetype: HTTP + ipv46: 10.10.10.11 + port: 80 + lbmethod: LEASTCONNECTION + + lbvserver_servicegroup_binding: + # mode: desired # bind | unbind | desired + binding_members: + - name: test_lbvser + servicename: sg1 + lbvserver_service_binding: + # mode: desired # bind | unbind | desired + binding_members: + - name: test_lbvser + servicename: s1 + weight: 16 + - name: test_lbvser + servicename: s2 + weight: 20 """ RETURN = r""" diff --git a/plugins/modules/lbvserver_service_binding.py b/plugins/modules/lbvserver_service_binding.py index 81242722..4f637cc4 100644 --- a/plugins/modules/lbvserver_service_binding.py +++ b/plugins/modules/lbvserver_service_binding.py @@ -69,6 +69,29 @@ """ EXAMPLES = r""" +--- + +- name: Simple lbvserver_service_binding playbook + hosts: localhost + + gather_facts: false + + tasks: + - name: Sample Task | lbvserver_service_binding + delegate_to: localhost + netscaler.adc.lbvserver_service_binding: + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable + # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: absent + + name: test_lbvser + servicename: s1 + weight: 16 """ RETURN = r""" diff --git a/plugins/modules/lbvserver_servicegroup_binding.py b/plugins/modules/lbvserver_servicegroup_binding.py index 96ef305a..26ae4917 100644 --- a/plugins/modules/lbvserver_servicegroup_binding.py +++ b/plugins/modules/lbvserver_servicegroup_binding.py @@ -67,7 +67,6 @@ greater weight. Defines the capacity of the service relative to the other services in the load balancing configuration. Determines the priority given to the service in load balancing decisions. - default: 1 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/lbwlm.py b/plugins/modules/lbwlm.py index 4c850dbc..c8b3a13f 100644 --- a/plugins/modules/lbwlm.py +++ b/plugins/modules/lbwlm.py @@ -45,7 +45,6 @@ description: - The idle time period after which Citrix ADC would probe the WLM. The value ranges from 1 to 1440 minutes. - default: 2 lbuid: type: str description: diff --git a/plugins/modules/lldpparam.py b/plugins/modules/lldpparam.py index 77405eac..db197183 100644 --- a/plugins/modules/lldpparam.py +++ b/plugins/modules/lldpparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str holdtimetxmult: type: float @@ -41,7 +43,6 @@ the LLDP information in its database before discarding or removing it. The duration is calculated as the holdtimeTxMult (Holdtime Multiplier) parameter value multiplied by the timer (Timer) parameter value. - default: 4 mode: type: str choices: @@ -58,7 +59,6 @@ description: - Interval, in seconds, between LLDP packet data units (LLDPDUs). that the Citrix ADC sends to a directly connected device. - default: 30 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/locationfile.py b/plugins/modules/locationfile.py index 243052b9..cff54836 100644 --- a/plugins/modules/locationfile.py +++ b/plugins/modules/locationfile.py @@ -28,6 +28,7 @@ choices: - present - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler @@ -36,7 +37,7 @@ to the module's parameters. - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str - Locationfile: + locationfile: type: str description: - Name of the location file, with or without absolute path. If the path is not @@ -60,7 +61,6 @@ description: - Format of the location file. Required for the Citrix ADC to identify how to read the location file. - default: netscaler src: type: str description: @@ -73,6 +73,17 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | sslcert + delegate_to: localhost + netscaler.adc.locationfile: + state: imported + + locationfile: my_file + src: local:my_location_file """ RETURN = r""" diff --git a/plugins/modules/locationfile6.py b/plugins/modules/locationfile6.py index c249c60d..d3f6d288 100644 --- a/plugins/modules/locationfile6.py +++ b/plugins/modules/locationfile6.py @@ -28,6 +28,7 @@ choices: - present - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler @@ -36,7 +37,7 @@ to the module's parameters. - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str - Locationfile: + locationfile: type: str description: - Name of the IPv6 location file, with or without absolute path. If the path @@ -51,7 +52,6 @@ description: - Format of the IPv6 location file. Required for the Citrix ADC to identify how to read the location file. - default: netscaler6 src: type: str description: diff --git a/plugins/modules/locationparameter.py b/plugins/modules/locationparameter.py index 587e8947..c8519704 100644 --- a/plugins/modules/locationparameter.py +++ b/plugins/modules/locationparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str context: type: str @@ -62,7 +64,6 @@ - ' match any qualifier in an LDNS location,' - ' wildcard qualifiers in the LDNS location do not match' - ' non-wildcard qualifiers in an expression' - default: 'NO' q1label: type: str description: diff --git a/plugins/modules/lsnappsattributes.py b/plugins/modules/lsnappsattributes.py index 89f682ba..0753ec92 100644 --- a/plugins/modules/lsnappsattributes.py +++ b/plugins/modules/lsnappsattributes.py @@ -62,7 +62,6 @@ a time that exceeds this value, the Citrix ADC removes the session.This timeout does not apply for a TCP LSN session when a FIN or RST message is received from either of the endpoints. - default: 30 transportprotocol: type: str choices: diff --git a/plugins/modules/lsnappsprofile.py b/plugins/modules/lsnappsprofile.py index f3852b16..d9c8e734 100644 --- a/plugins/modules/lsnappsprofile.py +++ b/plugins/modules/lsnappsprofile.py @@ -78,7 +78,6 @@ not previously sent packets to Y:y. In other words, receiving packets from a specific external host requires that the subscriber first send packets first to that external IP address and port.' - default: ADDRESS-PORT-DEPENDENT ippooling: type: str choices: @@ -96,7 +95,6 @@ for different sessions associated with the same subscriber.' - '' - This parameter is applicable to dynamic NAT allocation only. - default: RANDOM l2info: type: str choices: @@ -105,7 +103,6 @@ description: - Enable l2info by creating natpcbs for LSN, which enables the Citrix ADC to use L2CONN/MBF with LSN. - default: DISABLED mapping: type: str choices: @@ -132,7 +129,6 @@ - '* C(ADDRESS-PORT-DEPENDENT) - Reuse the LSN mapping for subsequent packets sent from the same internal IP address and port (X:x) to the same external IP address and port (Y:y) while the mapping is still active.' - default: ADDRESS-PORT-DEPENDENT tcpproxy: type: str choices: @@ -141,7 +137,6 @@ description: - Enable TCP proxy, which enables the Citrix ADC to optimize the TCP traffic by using Layer 4 features. - default: DISABLED td: type: float description: @@ -150,7 +145,6 @@ - '' - If you do not specify an ID, the ADC sends the outbound traffic through the default traffic domain, which has an ID of 0. - default: 4095 transportprotocol: type: str choices: diff --git a/plugins/modules/lsngroup.py b/plugins/modules/lsngroup.py index 5d54cf50..2e59e483 100644 --- a/plugins/modules/lsngroup.py +++ b/plugins/modules/lsngroup.py @@ -66,7 +66,6 @@ - 2.2.2.1 => 4.4.4.1:PB1 - 2.2.2.2 => 4.4.4.2:PB1 - 2.2.2.3 => 4.4.4.1:PB2 - default: PORTS clientname: type: str description: @@ -91,7 +90,6 @@ automatically for an LSN group when you bind a UDP LSN application profile, with endpoint-independent-mapping, endpoint-independent filtering, and destination port as 69 (well-known port for TFTP), to the LSN group.' - default: ENABLED ftpcm: type: str choices: @@ -101,7 +99,6 @@ - Enable the FTP connection mirroring for specified LSN group. Connection mirroring (CM or connection failover) refers to keeping active an established TCP or UDP connection when a failover occurs. - default: DISABLED groupname: type: str description: @@ -153,7 +150,6 @@ mapping' - '** Destination IP address and port are logged for Address-Port-Dependent mapping' - default: DISABLED nattype: type: str choices: @@ -188,7 +184,6 @@ connections from this subscriber. If all the ports are allocated (for different subscriber''s connections) from the subscriber''s allocated port block, the ADC allocates a new random port block for the subscriber.' - default: DYNAMIC portblocksize: type: float description: @@ -212,7 +207,6 @@ - DISABLED description: - Enable the PPTP Application Layer Gateway. - default: DISABLED rtspalg: type: str choices: @@ -220,7 +214,6 @@ - DISABLED description: - Enable the RTSP ALG. - default: DISABLED sessionlogging: type: str choices: @@ -240,7 +233,6 @@ - '* NAT IP address and port' - '* Protocol name' - '* Destination IP address, port, and traffic domain ID' - default: DISABLED sessionsync: type: str choices: @@ -254,7 +246,6 @@ - '' - For this setting to work, you must enable the global session synchronization parameter. - default: ENABLED sipalg: type: str choices: @@ -262,13 +253,11 @@ - DISABLED description: - Enable the SIP ALG. - default: DISABLED snmptraplimit: type: float description: - Maximum number of SNMP Trap messages that can be generated for the LSN group in one minute. - default: 100 lsngroup_ipsecalgprofile_binding: type: dict description: Bindings for lsngroup_ipsecalgprofile_binding resource diff --git a/plugins/modules/lsnhttphdrlogprofile.py b/plugins/modules/lsnhttphdrlogprofile.py index d1b368c8..f2854fdc 100644 --- a/plugins/modules/lsnhttphdrlogprofile.py +++ b/plugins/modules/lsnhttphdrlogprofile.py @@ -47,7 +47,6 @@ - DISABLED description: - Host information is logged if option is enabled. - default: ENABLED logmethod: type: str choices: @@ -55,7 +54,6 @@ - DISABLED description: - HTTP method information is logged if option is enabled. - default: ENABLED logurl: type: str choices: @@ -63,7 +61,6 @@ - DISABLED description: - URL information is logged if option is enabled. - default: ENABLED logversion: type: str choices: @@ -71,7 +68,6 @@ - DISABLED description: - Version information is logged if option is enabled. - default: ENABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/lsnlogprofile.py b/plugins/modules/lsnlogprofile.py index 2b8869c7..73c56614 100644 --- a/plugins/modules/lsnlogprofile.py +++ b/plugins/modules/lsnlogprofile.py @@ -47,7 +47,6 @@ - DISABLED description: - Logs in Compact Logging format if option is enabled. - default: ENABLED logipfix: type: str choices: @@ -55,7 +54,6 @@ - DISABLED description: - Logs in IPFIX format if option is enabled. - default: DISABLED logprofilename: type: str description: @@ -67,7 +65,6 @@ - DISABLED description: - LSN Session deletion will not be logged if disabled. - default: ENABLED logsubscrinfo: type: str choices: @@ -75,7 +72,6 @@ - DISABLED description: - Subscriber ID information is logged if option is enabled. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/lsnparameter.py b/plugins/modules/lsnparameter.py index 80e5ea0a..1f3b0c3a 100644 --- a/plugins/modules/lsnparameter.py +++ b/plugins/modules/lsnparameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str memlimit: type: float @@ -61,7 +63,6 @@ - For a group, when both the global level and the group level LSN session synchronization parameters are enabled, the primary node synchronizes information of all LSN sessions related to this LSN group with the secondary node. - default: ENABLED subscrsessionremoval: type: str choices: @@ -73,7 +74,6 @@ database, sessions corresponding to that subscriber will be removed. if this setting is disabled, subscriber sessions will be timed out as per the idle time out settings. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/lsnpool.py b/plugins/modules/lsnpool.py index a92c6f5d..98ba49d0 100644 --- a/plugins/modules/lsnpool.py +++ b/plugins/modules/lsnpool.py @@ -45,7 +45,6 @@ - '' - When the queue size is full, the next port deallocated is reallocated immediately for a new LSN session. - default: 65536 nattype: type: str choices: @@ -82,7 +81,6 @@ - Only LSN Pools and LSN groups with the same NAT type settings can be bound together. Multiples LSN pools can be bound to an LSN group. A maximum of 16 LSN pools can be bound to an LSN group. - default: DYNAMIC poolname: type: str description: @@ -111,7 +109,6 @@ - '' - For Deterministic NAT, this parameter is enabled by default, and you cannot disable it. - default: DISABLED portrealloctimeout: type: float description: diff --git a/plugins/modules/lsnrtspalgprofile.py b/plugins/modules/lsnrtspalgprofile.py index 2a7a70c5..ebd013c8 100644 --- a/plugins/modules/lsnrtspalgprofile.py +++ b/plugins/modules/lsnrtspalgprofile.py @@ -44,7 +44,6 @@ type: float description: - Idle timeout for the rtsp sessions in seconds. - default: 120 rtspportrange: type: str description: @@ -56,7 +55,6 @@ - UDP description: - RTSP ALG Profile transport protocol type. - default: TCP extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/lsnsession.py b/plugins/modules/lsnsession.py index eab9ace4..a283f4f2 100644 --- a/plugins/modules/lsnsession.py +++ b/plugins/modules/lsnsession.py @@ -51,7 +51,6 @@ - NAT64 description: - Type of sessions to be displayed. - default: NAT44 netmask: type: str description: diff --git a/plugins/modules/lsnsipalgprofile.py b/plugins/modules/lsnsipalgprofile.py index c9f401f3..e4c992c2 100644 --- a/plugins/modules/lsnsipalgprofile.py +++ b/plugins/modules/lsnsipalgprofile.py @@ -40,7 +40,6 @@ type: float description: - Idle timeout for the data channel sessions in seconds. - default: 120 opencontactpinhole: type: str choices: @@ -48,7 +47,6 @@ - DISABLED description: - ENABLE/DISABLE ContactPinhole creation. - default: ENABLED openrecordroutepinhole: type: str choices: @@ -56,7 +54,6 @@ - DISABLED description: - ENABLE/DISABLE RecordRoutePinhole creation. - default: ENABLED openregisterpinhole: type: str choices: @@ -64,7 +61,6 @@ - DISABLED description: - ENABLE/DISABLE RegisterPinhole creation. - default: ENABLED openroutepinhole: type: str choices: @@ -72,7 +68,6 @@ - DISABLED description: - ENABLE/DISABLE RoutePinhole creation. - default: ENABLED openviapinhole: type: str choices: @@ -80,12 +75,10 @@ - DISABLED description: - ENABLE/DISABLE ViaPinhole creation. - default: ENABLED registrationtimeout: type: float description: - SIP registration timeout in seconds. - default: 60 rport: type: str choices: @@ -93,7 +86,6 @@ - DISABLED description: - ENABLE/DISABLE rport. - default: ENABLED sipalgprofilename: type: str description: @@ -106,7 +98,6 @@ type: float description: - SIP control channel session timeout in seconds. - default: 600 sipsrcportrange: type: str description: diff --git a/plugins/modules/lsntransportprofile.py b/plugins/modules/lsntransportprofile.py index ab06856a..3f6d592f 100644 --- a/plugins/modules/lsntransportprofile.py +++ b/plugins/modules/lsntransportprofile.py @@ -49,7 +49,6 @@ of any TCP LSN sessions, this timeout accommodates the transmission of the FIN or RST, and ACK messages from the other endpoint so that both endpoints can properly close the connection. - default: 30 groupsessionlimit: type: float description: @@ -71,7 +70,6 @@ - You must set this parameter for proper functioning of protocols that require the source port to be even or odd numbered, for example, in peer-to-peer applications that use RTP or RTCP protocol. - default: DISABLED portpreserverange: type: str choices: @@ -90,7 +88,6 @@ - When all the well-known ports of all the available NAT IP addresses are used in different subscriber's connections (LSN sessions), and a subscriber initiates a connection from a well-known port, the Citrix ADC drops this connection. - default: DISABLED portquota: type: float description: @@ -113,12 +110,10 @@ - '' - This timeout does not apply for a TCP LSN session when a FIN or RST message is received from either of the endpoints. - default: 120 stuntimeout: type: float description: - STUN protocol timeout - default: 600 syncheck: type: str choices: @@ -137,12 +132,10 @@ because the LSN session was idle for a time that exceeded the configured session timeout.' - '* Such packets can be a part of a DoS attack.' - default: ENABLED synidletimeout: type: float description: - SYN Idle timeout - default: 60 transportprofilename: type: str description: diff --git a/plugins/modules/mapbmr.py b/plugins/modules/mapbmr.py index 3bc809a2..a7fc83b0 100644 --- a/plugins/modules/mapbmr.py +++ b/plugins/modules/mapbmr.py @@ -42,7 +42,6 @@ - The Embedded Address (EA) bit field encodes the CE-specific IPv4 address and port information. The EA bit field, which is unique for a - "\t\t\t given Rule IPv6 prefix." - default: 16 name: type: str description: @@ -63,13 +62,11 @@ description: - Length of Port Set IdentifierPort Set Identifier(PSID) in Embedded Address (EA) bits - default: 8 psidoffset: type: float description: - Start bit position of Port Set Identifier(PSID) value in Embedded Address (EA) bits. - default: 6 ruleipv6prefix: type: str description: diff --git a/plugins/modules/nat64param.py b/plugins/modules/nat64param.py index fc1feac9..b746b053 100644 --- a/plugins/modules/nat64param.py +++ b/plugins/modules/nat64param.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str nat64fragheader: type: str @@ -42,7 +44,6 @@ description: - When disabled, translator will not insert IPv6 fragmentation header for non fragmented IPv4 packets - default: ENABLED nat64ignoretos: type: str choices: @@ -50,13 +51,11 @@ - 'NO' description: - Ignore TOS. - default: 'NO' nat64v6mtu: type: float description: - MTU setting for the IPv6 side. If the incoming IPv4 packet greater than this, either fragment or send icmp need fragmentation error. - default: 1280 nat64zerochecksum: type: str choices: @@ -64,7 +63,6 @@ - DISABLED description: - Calculate checksum for UDP packets with zero checksum - default: ENABLED td: type: float description: diff --git a/plugins/modules/nd6ravariables.py b/plugins/modules/nd6ravariables.py index e8178999..d4ac95a1 100644 --- a/plugins/modules/nd6ravariables.py +++ b/plugins/modules/nd6ravariables.py @@ -28,12 +28,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str ceaserouteradv: type: str @@ -42,17 +44,14 @@ - 'NO' description: - Cease router advertisements on this vlan. - default: 'NO' currhoplimit: type: float description: - Current Hop limit. - default: 64 defaultlifetime: type: int description: - Default life time, in seconds. - default: 1800 linkmtu: type: float description: @@ -64,17 +63,14 @@ - 'NO' description: - Value to be placed in the Managed address configuration flag field. - default: 'NO' maxrtadvinterval: type: float description: - Maximum time allowed between unsolicited multicast RAs, in seconds. - default: 600 minrtadvinterval: type: float description: - Minimum time interval between RA messages, in seconds. - default: 198 onlyunicastrtadvresponse: type: str choices: @@ -82,7 +78,6 @@ - 'NO' description: - Send only Unicast Router Advertisements in respond to Router Solicitations. - default: 'NO' otheraddrconfig: type: str choices: @@ -90,7 +85,6 @@ - 'NO' description: - Value to be placed in the Other configuration flag field. - default: 'NO' reachabletime: type: float description: @@ -106,7 +100,6 @@ - 'NO' description: - whether the router sends periodic RAs and responds to Router Solicitations. - default: 'NO' srclinklayeraddroption: type: str choices: @@ -114,7 +107,6 @@ - 'NO' description: - Include source link layer address option in RA messages. - default: 'YES' vlan: type: float description: @@ -149,6 +141,15 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | nd6RAvariables + delegate_to: localhost + netscaler.adc.nd6ravariables: + state: present + vlan: 1 """ RETURN = r""" diff --git a/plugins/modules/netprofile.py b/plugins/modules/netprofile.py index 97ee095e..ac920212 100644 --- a/plugins/modules/netprofile.py +++ b/plugins/modules/netprofile.py @@ -63,7 +63,6 @@ description: - USNIP/USIP settings override LSN settings for configured - ' service/virtual server traffic..' - default: DISABLED proxyprotocol: type: str choices: @@ -71,7 +70,6 @@ - DISABLED description: - Proxy Protocol Action (Enabled/Disabled) - default: DISABLED proxyprotocolaftertlshandshake: type: str choices: @@ -80,7 +78,6 @@ description: - ADC doesnt look for proxy header before TLS handshake, if enabled. Proxy protocol parsed after TLS handshake - default: DISABLED proxyprotocoltxversion: type: str choices: @@ -88,7 +85,6 @@ - V2 description: - Proxy Protocol Version (C(V1)/C(V2)) - default: V1 srcip: type: str description: @@ -103,7 +99,6 @@ this option enables the Citrix ADC to use the same address, specified in the net profile, to communicate to servers for all sessions initiated from a particular client to the virtual server. - default: DISABLED td: type: float description: @@ -165,6 +160,17 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | netProfile + delegate_to: localhost + netscaler.adc.netprofile: + state: present + name: netprofile-001 + srcip: ipset-001 + mbf: DISABLED """ RETURN = r""" diff --git a/plugins/modules/nsacls.py b/plugins/modules/nsacls.py index e6ea3986..d1b3461f 100644 --- a/plugins/modules/nsacls.py +++ b/plugins/modules/nsacls.py @@ -42,7 +42,6 @@ - '* C(CLASSIC) - specifies the regular extended acls.' - '* C(DFD) - cluster specific acls,specifies hashmethod for steering of the packet in cluster .' - default: CLASSIC extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nsacls6.py b/plugins/modules/nsacls6.py index 63bcfc4d..28fbe5e6 100644 --- a/plugins/modules/nsacls6.py +++ b/plugins/modules/nsacls6.py @@ -42,7 +42,6 @@ - '* C(CLASSIC) - specifies the regular extended acls.' - '* C(DFD) - cluster specific acls,specifies hashmethod for steering of the packet in cluster .' - default: CLASSIC extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nsappflowcollector.py b/plugins/modules/nsappflowcollector.py index 59d08fee..def39033 100644 --- a/plugins/modules/nsappflowcollector.py +++ b/plugins/modules/nsappflowcollector.py @@ -48,7 +48,6 @@ type: int description: - The UDP port on which the AppFlow collector is listening. - default: 4739 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nsappflowparam.py b/plugins/modules/nsappflowparam.py index 2b57333c..ce3f728d 100644 --- a/plugins/modules/nsappflowparam.py +++ b/plugins/modules/nsappflowparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str clienttrafficonly: type: str @@ -41,7 +43,6 @@ - 'NO' description: - Control whether AppFlow records should be generated only for client-side traffic. - default: 'NO' httpcookie: type: str choices: @@ -49,7 +50,6 @@ - DISABLED description: - Enable AppFlow HTTP cookie logging. - default: DISABLED httphost: type: str choices: @@ -57,7 +57,6 @@ - DISABLED description: - Enable AppFlow HTTP host logging. - default: DISABLED httpmethod: type: str choices: @@ -65,7 +64,6 @@ - DISABLED description: - Enable AppFlow HTTP method logging. - default: DISABLED httpreferer: type: str choices: @@ -73,7 +71,6 @@ - DISABLED description: - Enable AppFlow HTTP referer logging. - default: DISABLED httpurl: type: str choices: @@ -81,7 +78,6 @@ - DISABLED description: - Enable AppFlow HTTP URL logging. - default: DISABLED httpuseragent: type: str choices: @@ -89,17 +85,14 @@ - DISABLED description: - Enable AppFlow HTTP user-agent logging. - default: DISABLED templaterefresh: type: float description: - IPFIX template refresh interval (in seconds). - default: 600 udppmtu: type: float description: - MTU to be used for IPFIX UDP packets. - default: 1472 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nsaptlicense.py b/plugins/modules/nsaptlicense.py index 9c58e428..30e5334b 100644 --- a/plugins/modules/nsaptlicense.py +++ b/plugins/modules/nsaptlicense.py @@ -64,7 +64,6 @@ description: - Specifies whether to use the licenseproxyserver to reach the internet. Make sure to configure licenseproxyserver to use this option. - default: 'NO' extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nsassignment.py b/plugins/modules/nsassignment.py index ff7e5231..cb894786 100644 --- a/plugins/modules/nsassignment.py +++ b/plugins/modules/nsassignment.py @@ -36,7 +36,7 @@ to the module's parameters. - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str - Add: + add: type: str description: - Right hand side of the assignment. The expression is evaluated and added to diff --git a/plugins/modules/nscapacity.py b/plugins/modules/nscapacity.py index 61525068..b05097af 100644 --- a/plugins/modules/nscapacity.py +++ b/plugins/modules/nscapacity.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str bandwidth: type: float diff --git a/plugins/modules/nscentralmanagementserver.py b/plugins/modules/nscentralmanagementserver.py index 3b6306a5..657a2374 100644 --- a/plugins/modules/nscentralmanagementserver.py +++ b/plugins/modules/nscentralmanagementserver.py @@ -92,7 +92,6 @@ - 'NO' description: - validate the server certificate for secure SSL connections. - default: 'YES' extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nsconfig.py b/plugins/modules/nsconfig.py index 8cc80db5..65c46de0 100644 --- a/plugins/modules/nsconfig.py +++ b/plugins/modules/nsconfig.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str all: type: bool @@ -91,12 +93,10 @@ type: float description: - The percentage of maxClient to be given to PEs - default: 80 exclusivequotaspillover: type: float description: - The percentage of max limit to be given to PEs - default: 80 force: type: bool description: @@ -109,12 +109,10 @@ type: float description: - The percentage of shared quota to be granted at a time for maxClient - default: 10 grantquotaspillover: type: float description: - The percentage of shared quota to be granted at a time for spillover - default: 10 httpport: type: list description: @@ -191,12 +189,10 @@ type: float description: - The minimum Path MTU. - default: 576 pmtutimeout: type: float description: - The timeout value in minutes. - default: 10 rbaconfig: type: str choices: @@ -206,7 +202,6 @@ - RBA configurations and TACACS policies bound to system global will not be cleared if RBA is set to C(NO).This option is applicable only for BASIC level of clear configuration.Default is C(YES), which will clear rba configurations. - default: 'YES' securecookie: type: str choices: @@ -214,7 +209,6 @@ - DISABLED description: - enable/disable secure flag for persistence cookie - default: ENABLED tagged: type: str choices: @@ -226,7 +220,6 @@ tag which identifies the VLAN. - To use 802.1q tagging, the switch connected to the appliance's interfaces must also be configured for tagging. - default: 'YES' template: type: bool description: @@ -235,7 +228,6 @@ type: str description: - Name of the timezone - default: CoordinatedUniversalTime weakpassword: type: bool description: @@ -248,6 +240,16 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | nsconfig + delegate_to: localhost + netscaler.adc.nsconfig: + state: present + ipaddress: 10.10.10.10 + netmask: 255.255.255.0 """ RETURN = r""" diff --git a/plugins/modules/nsconsoleloginprompt.py b/plugins/modules/nsconsoleloginprompt.py index dec5f714..e13f9800 100644 --- a/plugins/modules/nsconsoleloginprompt.py +++ b/plugins/modules/nsconsoleloginprompt.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str promptstring: type: str diff --git a/plugins/modules/nscqaparam.py b/plugins/modules/nscqaparam.py index 70299c38..8b48524d 100644 --- a/plugins/modules/nscqaparam.py +++ b/plugins/modules/nscqaparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str harqretxdelay: type: float diff --git a/plugins/modules/nsdhcpparams.py b/plugins/modules/nsdhcpparams.py index d868f6db..28978722 100644 --- a/plugins/modules/nsdhcpparams.py +++ b/plugins/modules/nsdhcpparams.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str dhcpclient: type: str @@ -42,7 +44,6 @@ description: - Enables DHCP client to acquire IP address from the DHCP server in the next boot. When set to C(OFF), disables the DHCP client in the next boot. - default: 'OFF' saveroute: type: str choices: @@ -50,7 +51,6 @@ - 'OFF' description: - DHCP acquired routes are saved on the Citrix ADC. - default: 'OFF' extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nsdiameter.py b/plugins/modules/nsdiameter.py index a95bc9cf..eb25c7f3 100644 --- a/plugins/modules/nsdiameter.py +++ b/plugins/modules/nsdiameter.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str identity: type: str @@ -49,7 +51,6 @@ description: - ID of the cluster node for which the diameter id is set, can be configured only through CLIP - default: -1 realm: type: str description: @@ -66,12 +67,21 @@ description: - when a Server connection goes down, whether to close the corresponding client connection if there were requests pending on the server. - default: 'NO' extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | nsdiameter + delegate_to: localhost + netscaler.adc.nsdiameter: + state: present + identity: netscaler.com + realm: com """ RETURN = r""" diff --git a/plugins/modules/nsextension.py b/plugins/modules/nsextension.py index d3b98c4e..6ecfd656 100644 --- a/plugins/modules/nsextension.py +++ b/plugins/modules/nsextension.py @@ -28,6 +28,7 @@ choices: - present - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler @@ -80,7 +81,6 @@ C(lines)' - Note that the DEBUG log level must be enabled to see extension tracing. - This can be done by set audit syslogParams -loglevel ALL or -loglevel DEBUG. - default: 'off' tracefunctions: type: str description: diff --git a/plugins/modules/nsfeature.py b/plugins/modules/nsfeature.py index 5dea2c93..1f84d0ff 100644 --- a/plugins/modules/nsfeature.py +++ b/plugins/modules/nsfeature.py @@ -118,6 +118,17 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | nsfeature + delegate_to: localhost + netscaler.adc.nsfeature: + state: enabled + feature: + - CS + - LB """ RETURN = r""" diff --git a/plugins/modules/nshostname.py b/plugins/modules/nshostname.py index 969e775c..df519e4c 100644 --- a/plugins/modules/nshostname.py +++ b/plugins/modules/nshostname.py @@ -43,12 +43,20 @@ description: - ID of the cluster node for which you are setting the hostname. Can be configured only through the cluster IP address. - default: 255 extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | nshostName + delegate_to: localhost + netscaler.adc.nshostname: + state: present + hostname: ansible-test """ RETURN = r""" diff --git a/plugins/modules/nshttpparam.py b/plugins/modules/nshttpparam.py index e89cc586..deb8ec1e 100644 --- a/plugins/modules/nshttpparam.py +++ b/plugins/modules/nshttpparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str conmultiplex: type: str @@ -41,7 +43,6 @@ - DISABLED description: - Reuse server connections for requests from more than one client connections. - default: ENABLED dropinvalreqs: type: str choices: @@ -49,7 +50,6 @@ - 'OFF' description: - Drop invalid HTTP requests or responses. - default: 'OFF' http2serverside: type: str choices: @@ -57,7 +57,6 @@ - 'OFF' description: - Enable/Disable HTTP/2 on server side - default: 'OFF' ignoreconnectcodingscheme: type: str choices: @@ -65,7 +64,6 @@ - DISABLED description: - Ignore Coding scheme in CONNECT request. - default: DISABLED insnssrvrhdr: type: str choices: @@ -74,7 +72,6 @@ description: - Enable or disable Citrix ADC server header insertion for Citrix ADC generated HTTP responses. - default: 'OFF' logerrresp: type: str choices: @@ -82,7 +79,6 @@ - 'OFF' description: - Server header value to be inserted. - default: 'ON' markconnreqinval: type: str choices: @@ -90,7 +86,6 @@ - 'OFF' description: - Mark CONNECT requests as invalid. - default: 'OFF' markhttp09inval: type: str choices: @@ -98,7 +93,6 @@ - 'OFF' description: - Mark HTTP/0.9 requests as invalid. - default: 'OFF' maxreusepool: type: float description: diff --git a/plugins/modules/nshttpprofile.py b/plugins/modules/nshttpprofile.py index 130f2c2e..de2461b1 100644 --- a/plugins/modules/nshttpprofile.py +++ b/plugins/modules/nshttpprofile.py @@ -44,7 +44,6 @@ description: - Adapts the configured request timeout based on flow conditions. The timeout is increased or decreased internally and applied on the flow. - default: DISABLED allowonlywordcharactersandhyphen: type: str choices: @@ -55,7 +54,6 @@ the request/response header names and the connection will be reset for the other characters. When disabled allows any visible (printing) characters (%21-%7E) except delimiters (double quotes and "(),/:;<=>?@[]{}"). - default: DISABLED altsvc: type: str choices: @@ -63,7 +61,6 @@ - DISABLED description: - Choose whether to enable support for Alternative Services. - default: DISABLED altsvcvalue: type: str description: @@ -79,7 +76,6 @@ than 4*T time is considered frustrating. Citrix ADC maintains stats for such tolerable and frustrating transcations. And client response time related apdex counters are only updated on a vserver which receives clients traffic. - default: 500 clientiphdrexpr: type: str description: @@ -91,7 +87,6 @@ - DISABLED description: - Start data compression on receiving a TCP packet with PUSH flag set. - default: DISABLED conmultiplex: type: str choices: @@ -99,7 +94,6 @@ - DISABLED description: - Reuse server connections for requests from more than one client connections. - default: ENABLED dropextracrlf: type: str choices: @@ -107,7 +101,6 @@ - DISABLED description: - Drop any extra 'CR' and 'LF' characters present after the header. - default: ENABLED dropextradata: type: str choices: @@ -115,7 +108,6 @@ - DISABLED description: - Drop any extra data when server sends more data than the specified content-length. - default: DISABLED dropinvalreqs: type: str choices: @@ -123,18 +115,15 @@ - DISABLED description: - Drop invalid HTTP requests or responses. - default: DISABLED grpcholdlimit: type: float description: - Maximum size in bytes allowed to buffer gRPC packets till trailer is received - default: 131072 grpcholdtimeout: type: float description: - Maximum time in milliseconds allowed to buffer gRPC packets till trailer is received. The value should be in multiples of 100 - default: 1000 grpclengthdelimitation: type: str choices: @@ -142,7 +131,6 @@ - DISABLED description: - Set to C(DISABLED) for gRPC without a length delimitation. - default: ENABLED http2: type: str choices: @@ -150,7 +138,6 @@ - DISABLED description: - Choose whether to enable support for HTTP/2. - default: DISABLED http2altsvcframe: type: str choices: @@ -160,7 +147,6 @@ - Choose whether to enable support for sending HTTP/2 ALTSVC frames. When enabled, the ADC sends HTTP/2 ALTSVC frames to HTTP/2 clients, instead of the Alt-Svc response header field. Not applicable to servers. - default: DISABLED http2direct: type: str choices: @@ -168,39 +154,32 @@ - DISABLED description: - Choose whether to enable support for Direct HTTP/2. - default: DISABLED http2headertablesize: type: float description: - Maximum size of the header compression table used to decode header blocks, in bytes. - default: 4096 http2initialconnwindowsize: type: float description: - Initial window size for connection level flow control, in bytes. - default: 65535 http2initialwindowsize: type: float description: - Initial window size for stream level flow control, in bytes. - default: 65535 http2maxconcurrentstreams: type: float description: - Maximum number of concurrent streams that is allowed per connection. - default: 100 http2maxemptyframespermin: type: float description: - Maximum number of empty frames allowed in HTTP2 connection per minute - default: 60 http2maxframesize: type: float description: - Maximum size of the frame payload that the Citrix ADC is willing to receive, in bytes. - default: 16384 http2maxheaderlistsize: type: float description: @@ -208,29 +187,24 @@ bytes. NOTE: The actual plain text header size that the Citrix ADC accepts is limited by maxHeaderLen. Please change maxHeaderLen parameter as well when modifying http2MaxHeaderListSize.' - default: 24576 http2maxpingframespermin: type: float description: - Maximum number of ping frames allowed in HTTP2 connection per minute - default: 60 http2maxresetframespermin: type: float description: - Maximum number of reset frames allowed in HTTP/2 connection per minute - default: 90 http2maxsettingsframespermin: type: float description: - Maximum number of settings frames allowed in HTTP2 connection per minute - default: 15 http2minseverconn: type: float description: - Minimum number of HTTP2 connections established to backend server, on receiving HTTP requests from client before multiplexing the streams into the available HTTP/2 connections. - default: 20 http2strictcipher: type: str choices: @@ -238,7 +212,6 @@ - DISABLED description: - Choose whether to enable strict HTTP/2 cipher selection - default: ENABLED http3: type: str choices: @@ -246,35 +219,29 @@ - DISABLED description: - Choose whether to enable support for HTTP/3. - default: DISABLED http3maxheaderblockedstreams: type: float description: - Maximum number of HTTP/3 streams that can be blocked while HTTP/3 headers are being decoded. - default: 100 http3maxheaderfieldsectionsize: type: float description: - Maximum size of the HTTP/3 header field section, in bytes. - default: 24576 http3maxheadertablesize: type: float description: - Maximum size of the HTTP/3 QPACK dynamic header table, in bytes. - default: 4096 httppipelinebuffsize: type: float description: - Application pipeline request buffering size, in bytes. - default: 131072 incomphdrdelay: type: float description: - Maximum time to wait, in milliseconds, between incomplete header packets. If the header packets take longer to arrive at Citrix ADC, the connection is silently dropped. - default: 7000 markconnreqinval: type: str choices: @@ -282,7 +249,6 @@ - DISABLED description: - Mark CONNECT requests as invalid. - default: DISABLED markhttp09inval: type: str choices: @@ -290,7 +256,6 @@ - DISABLED description: - Mark HTTP/0.9 requests as invalid. - default: DISABLED markhttpheaderextrawserror: type: str choices: @@ -298,7 +263,6 @@ - DISABLED description: - Mark Http header with extra white space as invalid - default: DISABLED markrfc7230noncompliantinval: type: str choices: @@ -306,7 +270,6 @@ - DISABLED description: - Mark RFC7230 non-compliant transaction as invalid - default: DISABLED marktracereqinval: type: str choices: @@ -314,13 +277,11 @@ - DISABLED description: - Mark TRACE requests as invalid. - default: DISABLED maxheaderfieldlen: type: float description: - Number of bytes allowed for header field for HTTP header. If number of bytes exceeds beyond configured value, then request will be marked invalid - default: 24820 maxheaderlen: type: float description: @@ -328,7 +289,6 @@ error. If complete header is not obtained after queuing these many bytes, request will be marked as invalid and no L7 processing will be done for that TCP connection. - default: 24820 maxreq: type: float description: @@ -368,7 +328,6 @@ - DISABLED description: - Pass protocol upgrade request to the server. - default: ENABLED persistentetag: type: str choices: @@ -377,7 +336,6 @@ description: - Generate the persistent Citrix ADC specific ETag for the HTTP response with ETag header. - default: DISABLED reqtimeout: type: float description: @@ -407,7 +365,6 @@ - Allow RTSP tunnel in HTTP. Once application/x-rtsp-tunnelled is seen in Accept or Content-Type header, Citrix ADC does not process Layer 7 traffic on this connection. - default: DISABLED weblog: type: str choices: @@ -415,7 +372,6 @@ - DISABLED description: - Enable or disable web logging. - default: ENABLED websocket: type: str choices: @@ -424,12 +380,21 @@ description: - HTTP connection to be upgraded to a web socket connection. Once upgraded, Citrix ADC does not process Layer 7 traffic on this connection. - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | nshttpProfile + delegate_to: localhost + netscaler.adc.nshttpprofile: + state: present + name: httpprofile-HTTP2-0 + http2: ENABLED """ RETURN = r""" diff --git a/plugins/modules/nsicapprofile.py b/plugins/modules/nsicapprofile.py index 0a1fb86f..32c74f93 100644 --- a/plugins/modules/nsicapprofile.py +++ b/plugins/modules/nsicapprofile.py @@ -43,7 +43,6 @@ - DISABLED description: - 'Enable or Disable sending Allow: 204 header in ICAP request.' - default: ENABLED connectionkeepalive: type: str choices: @@ -52,7 +51,6 @@ description: - If enabled, Citrix ADC keeps the ICAP connection alive after a transaction to reuse it to send next ICAP request. - default: ENABLED hostheader: type: str description: @@ -109,13 +107,11 @@ ICAP server to see the beginning of a transaction, then decide if it wants to opt-out of the transaction early instead of receiving the remainder of the request message. - default: DISABLED previewlength: type: float description: - Value of Preview Header field. Citrix ADC uses the minimum of this set value and the preview size received on OPTIONS response. - default: 4096 queryparams: type: str description: @@ -147,7 +143,6 @@ such as a browser, will handle this and may inform the user. The client may then resend the request if desired.' - '* C(DROP) - Drop the request without sending a response to the user.' - default: RESET uri: type: str description: diff --git a/plugins/modules/nsip.py b/plugins/modules/nsip.py index c3c33fb6..2d9d932b 100644 --- a/plugins/modules/nsip.py +++ b/plugins/modules/nsip.py @@ -47,7 +47,6 @@ - DISABLED description: - Advertise VIPs from Shared VLAN on Default Partition. - default: DISABLED arp: type: str choices: @@ -55,12 +54,10 @@ - DISABLED description: - Respond to ARP requests for this IP address. - default: ENABLED arpowner: type: float description: - The arp owner in a Cluster for this IP address. It can vary from 0 to 31. - default: 255 arpresponse: type: str choices: @@ -85,7 +82,6 @@ - DISABLED description: - Use this option to enable or disable BGP on this IP address for the entity. - default: DISABLED decrementttl: type: str choices: @@ -94,7 +90,6 @@ description: - Decrement TTL by 1 when C(ENABLED).This setting is applicable only for UDP traffic. - default: DISABLED dynamicrouting: type: str choices: @@ -102,7 +97,6 @@ - DISABLED description: - Allow dynamic routing on this IP address. Specific to Subnet IP (SNIP) address. - default: DISABLED ftp: type: str choices: @@ -110,7 +104,6 @@ - DISABLED description: - Allow File Transfer Protocol (FTP) access to this IP address. - default: ENABLED gui: type: str choices: @@ -119,7 +112,6 @@ - DISABLED description: - Allow graphical user interface (GUI) access to this IP address. - default: ENABLED hostroute: type: str choices: @@ -139,7 +131,6 @@ - DISABLED description: - Respond to ICMP requests for this IP address. - default: ENABLED icmpresponse: type: str choices: @@ -185,7 +176,6 @@ - DISABLED description: - Allow access to management applications on this IP address. - default: DISABLED mptcpadvertise: type: str choices: @@ -194,7 +184,6 @@ description: - If enabled, this IP will be advertised by Citrix ADC to MPTCP enabled clients as part of ADD_ADDR option. - default: 'NO' netmask: type: str description: @@ -214,7 +203,6 @@ - DISABLED description: - Use this option to enable or disable OSPF on this IP address for the entity. - default: DISABLED ospfarea: type: float description: @@ -222,7 +210,6 @@ be advertised for this virtual IP (VIP) address by the OSPF protocol running on the Citrix ADC. When this parameter is not set, the VIP is advertised on all areas. - default: -1 ospflsatype: type: str choices: @@ -231,7 +218,6 @@ description: - Type of LSAs to be used by the OSPF protocol, running on the Citrix ADC, for advertising the route for this VIP address. - default: TYPE5 ownerdownresponse: type: str choices: @@ -240,13 +226,11 @@ description: - in cluster system, if the owner node is down, whether should it respond to icmp/arp - default: 'YES' ownernode: type: float description: - The owner node in a Cluster for this IP address. Owner node can vary from 0 to 31. If ownernode is not specified then the IP is treated as Striped IP. - default: 255 restrictaccess: type: str choices: @@ -256,7 +240,6 @@ - Block access to nonmanagement applications on this IP. This option is applicable for MIPs, SNIPs, and NSIP, and is disabled by default. Nonmanagement applications can run on the underlying Citrix ADC Free BSD operating system. - default: DISABLED rip: type: str choices: @@ -264,7 +247,6 @@ - DISABLED description: - Use this option to enable or disable RIP on this IP address for the entity. - default: DISABLED snmp: type: str choices: @@ -272,7 +254,6 @@ - DISABLED description: - Allow Simple Network Management Protocol (SNMP) access to this IP address. - default: ENABLED ssh: type: str choices: @@ -280,7 +261,6 @@ - DISABLED description: - Allow secure shell (SSH) access to this IP address. - default: ENABLED tag: type: float description: @@ -299,7 +279,6 @@ - DISABLED description: - Allow Telnet access to this IP address. - default: ENABLED type: type: str choices: @@ -328,7 +307,6 @@ - '* A Cluster IP (C(CLIP)) address is the management address of the cluster. All cluster configurations must be performed by accessing the cluster through this IP address.' - default: SNIP vrid: type: float description: @@ -343,7 +321,6 @@ description: - Use this option to set (enable or disable) the virtual server attribute for this IP address. - default: ENABLED vserverrhilevel: type: str choices: @@ -375,12 +352,48 @@ - ' *If you set RHI STATE to ACTIVE on some and PASSIVE on others, the Citrix ADC advertises the route for the VIP address if at least one of the associated virtual servers, whose RHI STATE set to ACTIVE, is in UP state.' - default: ONE_VSERVER extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | nsip + delegate_to: localhost + netscaler.adc.nsip: + state: present + ipaddress: 1.1.1.1 + netmask: 255.255.255.192 + type: VIP + - name: Sample Task | nsip | 2 + delegate_to: localhost + netscaler.adc.nsip: + state: present + ipaddress: 192.188.1.1 + netmask: 255.255.255.0 + vserver: DISABLED + dynamicrouting: ENABLED + - name: Sample Task | nsip | 3 + delegate_to: localhost + netscaler.adc.nsip: + state: present + ipaddress: 192.179.1.1 + netmask: 255.255.255.255 + type: VIP + arp: DISABLED + snmp: DISABLED + hostroute: ENABLED + hostrtgw: 0.0.0.0 + - name: Sample Task | nsip | 4 + delegate_to: localhost + netscaler.adc.nsip: + state: present + ipaddress: 192.188.1.2 + netmask: 255.255.0.0 + vserver: DISABLED """ RETURN = r""" diff --git a/plugins/modules/nsip6.py b/plugins/modules/nsip6.py index c34bd548..4673c9c0 100644 --- a/plugins/modules/nsip6.py +++ b/plugins/modules/nsip6.py @@ -43,7 +43,6 @@ - DISABLED description: - Advertise VIPs from Shared VLAN on Default Partition - default: DISABLED decrementhoplimit: type: str choices: @@ -52,7 +51,6 @@ description: - Decrement Hop Limit by 1 when C(ENABLED).This setting is applicable only for UDP traffic. - default: DISABLED dynamicrouting: type: str choices: @@ -61,7 +59,6 @@ description: - Allow dynamic routing on this IP address. Specific to Subnet IPv6 (SNIP6) address. - default: DISABLED ftp: type: str choices: @@ -69,7 +66,6 @@ - DISABLED description: - Allow File Transfer Protocol (FTP) access to this IP address. - default: ENABLED gui: type: str choices: @@ -78,7 +74,6 @@ - DISABLED description: - Allow graphical user interface (GUI) access to this IP address. - default: ENABLED hostroute: type: str choices: @@ -94,7 +89,6 @@ - DISABLED description: - Respond to ICMP requests for this IP address. - default: ENABLED ip6hostrtgw: type: str description: @@ -120,7 +114,6 @@ - DISABLED description: - Allow access to management applications on this IP address. - default: DISABLED mptcpadvertise: type: str choices: @@ -129,7 +122,6 @@ description: - If enabled, this IP will be advertised by Citrix ADC to MPTCP enabled clients as part of ADD_ADDR option. - default: 'NO' nd: type: str choices: @@ -137,12 +129,10 @@ - DISABLED description: - Respond to Neighbor Discovery (ND) requests for this IP address. - default: ENABLED ndowner: type: float description: - NdOwner in Cluster for VIPS and Striped SNIPS - default: 255 networkroute: type: str choices: @@ -159,14 +149,12 @@ description: - Type of LSAs to be used by the IPv6 OSPF protocol, running on the Citrix ADC, for advertising the route for the VIP6 address. - default: EXTERNAL ospfarea: type: float description: - ID of the area in which the Intra-Area-Prefix LSAs are to be advertised for the VIP6 address by the IPv6 OSPF protocol running on the Citrix ADC. When ospfArea is not set, VIP6 is advertised on all areas. - default: -1 ownerdownresponse: type: str choices: @@ -175,7 +163,6 @@ description: - in cluster system, if the owner node is down, whether should it respond to icmp/arp - default: 'YES' ownernode: type: float description: @@ -183,7 +170,6 @@ if you want the IP address to be active only on the specific node. Can be configured only through the cluster IP address. Cannot be changed after the IP address is created. - default: 255 restrictaccess: type: str choices: @@ -193,7 +179,6 @@ - Block access to nonmanagement applications on this IP address. This option is applicable forMIP6s, SNIP6s, and NSIP6s, and is disabled by default. Nonmanagement applications can run on the underlying Citrix ADC Free BSD operating system. - default: DISABLED scope: type: str choices: @@ -202,7 +187,6 @@ description: - Scope of the IPv6 address to be created. Cannot be changed after the IP address is created. - default: global snmp: type: str choices: @@ -210,7 +194,6 @@ - DISABLED description: - Allow Simple Network Management Protocol (SNMP) access to this IP address. - default: ENABLED ssh: type: str choices: @@ -218,7 +201,6 @@ - DISABLED description: - Allow secure Shell (SSH) access to this IP address. - default: ENABLED tag: type: float description: @@ -236,7 +218,6 @@ - DISABLED description: - Allow Telnet access to this IP address. - default: ENABLED type: type: str choices: @@ -250,7 +231,6 @@ description: - Type of IP address to be created on the Citrix ADC. Cannot be changed after the IP address is created. - default: SNIP vlan: type: float description: @@ -269,7 +249,6 @@ description: - Enable or disable the state of all the virtual servers associated with this VIP6 address. - default: ENABLED vserverrhilevel: type: str choices: @@ -301,12 +280,26 @@ - ' *If you set RHI STATE to ACTIVE on some and PASSIVE on others, the Citrix ADC advertises the route for the VIP address if at least one of the associated virtual servers, whose RHI STATE set to ACTIVE, is in UP state.' - default: ONE_VSERVER extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | nsip6 + delegate_to: localhost + netscaler.adc.nsip6: + state: present + ipv6address: ae80::1024:45aa:fe3b:9843/64 + scope: link-local + type: SNIP + vlan: '1' + vserver: DISABLED + mgmtaccess: DISABLED + dynamicrouting: ENABLED """ RETURN = r""" diff --git a/plugins/modules/nslicenseparameters.py b/plugins/modules/nslicenseparameters.py index 6a2e8299..be2a424f 100644 --- a/plugins/modules/nslicenseparameters.py +++ b/plugins/modules/nslicenseparameters.py @@ -27,42 +27,39 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str alert1gracetimeout: type: float description: - If ADC remains in grace for the configured hours then first grace alert will be raised - default: 6 alert2gracetimeout: type: float description: - If ADC remains in grace for the configured hours then major grace alert will be raised - default: 240 heartbeatinterval: type: float description: - Heartbeat between ADC and Licenseserver is configurable and applicable in case of pooled licensing - default: 280 inventoryrefreshinterval: type: float description: - Inventory refresh interval between ADC and Licenseserver is configurable and applicable in case of pooled licensing - default: 360 licenseexpiryalerttime: type: float description: - If ADC termed license is nearer to expiry then SNMP expiry alert will be raised - default: 30 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nslimitidentifier.py b/plugins/modules/nslimitidentifier.py index 5e100736..6773f5d3 100644 --- a/plugins/modules/nslimitidentifier.py +++ b/plugins/modules/nslimitidentifier.py @@ -54,7 +54,6 @@ - '* C(BURSTY) - When you want the permitted number of requests to exhaust the quota anytime within the timeslice.' - This argument is needed only when the mode is set to REQUEST_RATE. - default: BURSTY maxbandwidth: type: float description: @@ -91,7 +90,6 @@ - '5. To permit 5000 requests in 1000 ms and 200 traps in 1000 ms:' - set limitidentifier limit_req -mode request_rate -timeslice 1000 -Threshold 5000 -limitType BURSTY - default: REQUEST_RATE selectorname: type: str description: @@ -106,14 +104,12 @@ (mode is set as REQUEST_RATE) are tracked per timeslice. - When connections (mode is set as CONNECTION) are tracked, it is the total number of connections that would be let through. - default: 1 timeslice: type: float description: - Time interval, in milliseconds, specified in multiples of 10, during which requests are tracked to check if they cross the threshold. This argument is needed only when the mode is set to REQUEST_RATE. - default: 1000 trapsintimeslice: type: float description: diff --git a/plugins/modules/nsmigration.py b/plugins/modules/nsmigration.py index bff17cce..8500c7b4 100644 --- a/plugins/modules/nsmigration.py +++ b/plugins/modules/nsmigration.py @@ -39,7 +39,6 @@ description: - Displays the current active migrated session details, if DUMPSESSION option is C(YES). - default: 'NO' extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nsparam.py b/plugins/modules/nsparam.py index 6298a3cf..d1b5c1e3 100644 --- a/plugins/modules/nsparam.py +++ b/plugins/modules/nsparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str advancedanalyticsstats: type: str @@ -41,7 +43,6 @@ - DISABLED description: - Disable/Enable advanace analytics stats - default: DISABLED aftpallowrandomsourceport: type: str choices: @@ -50,7 +51,6 @@ description: - Allow the FTP server to come from a random source port for active FTP data connections - default: DISABLED cip: type: str choices: @@ -83,12 +83,10 @@ type: float description: - Percentage of maxClient to be given to PEs. - default: 80 exclusivequotaspillover: type: float description: - Percentage of maximum limit to be given to PEs. - default: 80 ftpportrange: type: str description: @@ -97,12 +95,10 @@ type: float description: - Percentage of shared quota to be granted at a time for maxClient. - default: 10 grantquotaspillover: type: float description: - Percentage of shared quota to be granted at a time for spillover. - default: 10 httpport: type: list description: @@ -127,13 +123,11 @@ - Enables/disables the internal user from logging in to the appliance. Before disabling internal user login, you must have key-based authentication set up on the appliance. The file name for the key pair must be "ns_comm_key". - default: ENABLED ipttl: type: float description: - Set the IP Time to Live (TTL) and Hop Limit value for all outgoing packets from Citrix ADC. - default: 255 maxconn: type: float description: @@ -151,24 +145,20 @@ type: int description: - This allow the configuration of management HTTP port. - default: 80 mgmthttpsport: type: int description: - This allows the configuration of management HTTPS port. - default: 443 pmtumin: type: float description: - Minimum path MTU value that Citrix ADC will process in the ICMP fragmentation needed message. If the ICMP message contains a value less than this value, then this value is used instead. - default: 576 pmtutimeout: type: float description: - Interval, in minutes, for flushing the PMTU entries. - default: 10 proxyprotocol: type: str choices: @@ -176,7 +166,6 @@ - DISABLED description: - Disable/Enable v1 or v2 proxy protocol header for client info insertion - default: DISABLED securecookie: type: str choices: @@ -184,7 +173,6 @@ - DISABLED description: - Enable or disable secure flag for persistence cookie. - default: ENABLED secureicaports: type: list description: @@ -207,13 +195,11 @@ passed from the client to one, some, or all servers attached to the system. The passed address can then be accessed through a minor modification to the server. - default: DISABLED timezone: type: str description: - Time zone for the Citrix ADC. Name of the time zone should be specified as argument. - default: CoordinatedUniversalTime useproxyport: type: str choices: @@ -221,12 +207,20 @@ - DISABLED description: - Enable/Disable use_proxy_port setting - default: ENABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | nsparam + delegate_to: localhost + netscaler.adc.nsparam: + state: present + timezone: GMT+09:00-KST-Asia/Seoul """ RETURN = r""" diff --git a/plugins/modules/nspartition.py b/plugins/modules/nspartition.py index fb6e20c9..8f4f45ed 100644 --- a/plugins/modules/nspartition.py +++ b/plugins/modules/nspartition.py @@ -28,6 +28,7 @@ choices: - present - absent + - switched default: present description: - The state of the resource being configured by the module on the NetScaler @@ -47,27 +48,23 @@ - Maximum bandwidth, in Kbps, that the partition can consume. A zero value indicates the bandwidth is unrestricted on the partition and it can consume up to the system limits. - default: 10240 maxconn: type: float description: - Maximum number of concurrent connections that can be open in the partition. A zero value indicates no limit on number of open connections. - default: 1024 maxmemlimit: type: float description: - Maximum memory, in megabytes, allocated to the partition. A zero value indicates the memory is unlimited on the partition and it can consume up to the system limits. - default: 10 minbandwidth: type: float description: - Minimum bandwidth, in Kbps, that the partition can consume. A zero value indicates the bandwidth is unrestricted on the partition and it can consume up to the system limits - default: 10240 partitionmac: type: str description: diff --git a/plugins/modules/nsratecontrol.py b/plugins/modules/nsratecontrol.py index aa9d82c1..decb2edf 100644 --- a/plugins/modules/nsratecontrol.py +++ b/plugins/modules/nsratecontrol.py @@ -27,24 +27,24 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str icmpthreshold: type: float description: - Number of ICMP packets permitted per 10 milliseconds. - default: 100 tcprstthreshold: type: float description: - The number of TCP RST packets permitted per 10 milli second. zero means rate control is disabled and 0xffffffff means every thing is rate controlled - default: 100 tcpthreshold: type: float description: diff --git a/plugins/modules/nsrpcnode.py b/plugins/modules/nsrpcnode.py index e5d3a39e..f49bbe78 100644 --- a/plugins/modules/nsrpcnode.py +++ b/plugins/modules/nsrpcnode.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str ipaddress: type: str @@ -49,7 +51,6 @@ - 'NO' description: - State of the channel when talking to the node. - default: 'YES' srcip: type: str description: @@ -63,7 +64,6 @@ - 'NO' description: - validate the server certificate for secure SSL connections - default: 'NO' extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nsspparams.py b/plugins/modules/nsspparams.py index ed4caeb2..22ab189d 100644 --- a/plugins/modules/nsspparams.py +++ b/plugins/modules/nsspparams.py @@ -27,19 +27,20 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str basethreshold: type: int description: - Maximum number of server connections that can be opened before surge protection is activated. - default: 200 throttle: type: str choices: @@ -48,12 +49,34 @@ - Relaxed description: - Rate at which the system opens connections to the server. - default: Normal extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +--- + +- name: Sample Task + hosts: localhost + + gather_facts: false + + tasks: + + - name: Sample playbook + delegate_to: localhost + netscaler.adc.nsspparams: + # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable + # nitro_user: nitrouser # This can also be given via NETSCALER_NITRO_USER environment variable + # nitro_pass: verysecretpassword # This can also be given via NETSCALER_NITRO_PASS environment variable + # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable + # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable + # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable + + state: present + + basethreshold: 200 + throttle: Aggressive """ RETURN = r""" diff --git a/plugins/modules/nstcpbufparam.py b/plugins/modules/nstcpbufparam.py index fa73f4d0..92af3de9 100644 --- a/plugins/modules/nstcpbufparam.py +++ b/plugins/modules/nstcpbufparam.py @@ -27,23 +27,23 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str memlimit: type: float description: - Maximum memory, in megabytes, that can be used for buffering. - default: 64 size: type: float description: - TCP buffering size per connection, in kilobytes. - default: 64 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nstcpparam.py b/plugins/modules/nstcpparam.py index 1607b8bc..a2ec8479 100644 --- a/plugins/modules/nstcpparam.py +++ b/plugins/modules/nstcpparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str ackonpush: type: str @@ -42,14 +44,12 @@ description: - Send immediate positive acknowledgement (ACK) on receipt of TCP packets with PUSH flag. - default: ENABLED autosyncookietimeout: type: float description: - Timeout for the server to function in syncookie mode after the synattack. This is valid if TCP syncookie is disabled on the profile and server acts in non syncookie mode by default. - default: 30 compacttcpoptionnoop: type: str choices: @@ -60,7 +60,6 @@ while proxying it. By default, non-negotiated TCP options would be replaced by NOPs in the proxied packets. This option is not applicable for Citrix ADC generated packets. - default: DISABLED connflushifnomem: type: str choices: @@ -93,7 +92,6 @@ type: float description: - Timeout for TCP delayed ACK, in milliseconds. - default: 100 delinkclientserveronrst: type: str choices: @@ -102,7 +100,6 @@ description: - If enabled, Delink client and server connection, when there is outstanding data to be sent to the other side. - default: DISABLED downstaterst: type: str choices: @@ -110,13 +107,11 @@ - DISABLED description: - Flag to switch on RST on down services. - default: DISABLED initialcwnd: type: float description: - Initial maximum upper limit on the number of TCP packets that can be outstanding on the TCP link to the server. - default: 10 kaprobeupdatelastactivity: type: str choices: @@ -124,7 +119,6 @@ - DISABLED description: - Update last activity for KA probes - default: ENABLED learnvsvrmss: type: str choices: @@ -132,7 +126,6 @@ - DISABLED description: - Enable or disable maximum segment size (MSS) learning for virtual servers. - default: DISABLED limitedpersist: type: str choices: @@ -140,19 +133,16 @@ - DISABLED description: - Limit the number of persist (zero window) probes. - default: ENABLED maxburst: type: float description: - Maximum number of TCP segments allowed in a burst. - default: 6 maxdynserverprobes: type: float description: - Maximum number of probes that Citrix ADC can send out in 10 milliseconds, to dynamically learn a service. Citrix ADC probes for the existence of the origin in case of wildcard virtual server or services. - default: 7 maxpktpermss: type: float description: @@ -164,31 +154,26 @@ server or service, and the number of TCP SYN+ACK retransmission by Citrix ADC for that virtual server or service crosses this threshold, the Citrix ADC responds by using the TCP SYN-Cookie mechanism. - default: 100 maxsynhold: type: float description: - Limit the number of client connections (SYN) waiting for status of probe system wide. Any new SYN packets will be dropped. - default: 16384 maxsynholdperprobe: type: float description: - Limit the number of client connections (SYN) waiting for status of single probe. Any new SYN packets will be dropped. - default: 128 maxtimewaitconn: type: float description: - Maximum number of connections to hold in the TCP TIME_WAIT state on a packet engine. New connections entering TIME_WAIT state are proactively cleaned up. - default: 7000 minrto: type: int description: - Minimum retransmission timeout, in milliseconds, specified in 10-millisecond increments (value must yield a whole number if divided by 10). - default: 1000 mptcpchecksum: type: str choices: @@ -196,7 +181,6 @@ - DISABLED description: - Use MPTCP DSS checksum - default: ENABLED mptcpclosemptcpsessiononlastsfclose: type: str choices: @@ -205,7 +189,6 @@ description: - Allow to send DATA FIN or FAST CLOSE on mptcp connection while sending FIN or RST on the last subflow. - default: DISABLED mptcpconcloseonpassivesf: type: str choices: @@ -213,7 +196,6 @@ - DISABLED description: - Accept DATA_FIN/FAST_CLOSE on passive subflow - default: ENABLED mptcpfastcloseoption: type: str choices: @@ -222,7 +204,6 @@ description: - Allow to select option C(ACK) or C(RESET) to force the closure of an MPTCP connection abruptly. - default: ACK mptcpimmediatesfcloseonfin: type: str choices: @@ -231,19 +212,16 @@ description: - Allow subflows to close immediately on FIN before the DATA_FIN exchange is completed at mptcp level. - default: DISABLED mptcpmaxpendingsf: type: float description: - Maximum number of subflow connections supported in pending join state per mptcp connection. - default: 4 mptcpmaxsf: type: float description: - Maximum number of subflow connections supported in established state per mptcp connection. - default: 4 mptcppendingjointhreshold: type: float description: @@ -257,13 +235,11 @@ - If enabled, Citrix ADC retransmits MPTCP ADD-ADDR option if echo response is not received within the timeout interval. The retransmission is attempted only once. - default: DISABLED mptcprtostoswitchsf: type: float description: - Number of RTO's at subflow level, after which MPCTP should start using other subflow. - default: 2 mptcpsendsfresetoption: type: str choices: @@ -272,7 +248,6 @@ description: - Allow MPTCP subflows to send TCP RST Reason (MP_TCPRST) Option while sending TCP RST. - default: DISABLED mptcpsfreplacetimeout: type: float description: @@ -280,7 +255,6 @@ the sublow is replaced by new incoming subflow if maximum subflow limit is reached. The priority for replacement is given to those subflow without any transaction - default: 10 mptcpsftimeout: type: float description: @@ -296,14 +270,12 @@ that subflow to send data. And if disabled, NS will continue to transmit on current chosen subflow. In case there is some error on a subflow (like RTO's/RST etc.) then NS can choose a backup subflow irrespective of this tunable. - default: ENABLED msslearndelay: type: float description: - Frequency, in seconds, at which the virtual servers learn the Maximum segment size (MSS) from the services. The argument to enable maximum segment size (MSS) for virtual servers must be enabled. - default: 3600 msslearninterval: type: float description: @@ -311,7 +283,6 @@ The Citrix ADC determines the best MSS to set for the virtual server based on this sampling. The argument to enable maximum segment size (MSS) for virtual servers must be enabled. - default: 180 nagle: type: str choices: @@ -319,23 +290,19 @@ - DISABLED description: - Enable or disable the Nagle algorithm on TCP connections. - default: DISABLED oooqsize: type: float description: - Maximum size of out-of-order packets queue. A value of 0 means no limit. - default: 300 pktperretx: type: int description: - Maximum limit on the number of packets that should be retransmitted on receiving a partial ACK. - default: 1 recvbuffsize: type: float description: - TCP Receive buffer size - default: 8190 sack: type: str choices: @@ -343,13 +310,11 @@ - DISABLED description: - Enable or disable Selective ACKnowledgement (SACK). - default: ENABLED slowstartincr: type: int description: - Multiplier that determines the rate at which slow start increases the size of the TCP transmission window after each acknowledgement of successful transmission. - default: 2 synattackdetection: type: str choices: @@ -357,14 +322,12 @@ - DISABLED description: - Detect TCP SYN packet flood and send an SNMP trap. - default: ENABLED synholdfastgiveup: type: float description: - Maximum threshold. After crossing this threshold number of outstanding probes for origin, the Citrix ADC reduces the number of connection retries for probe connections. - default: 1024 tcpfastopencookietimeout: type: float description: @@ -376,12 +339,10 @@ description: - The amount of time in seconds, after which a TCP connnection in the TCP TIME-WAIT state is flushed. - default: 40 tcpmaxretries: type: float description: - Number of RTO's after which a connection should be freed. - default: 7 ws: type: str choices: @@ -389,13 +350,11 @@ - DISABLED description: - Enable or disable window scaling. - default: ENABLED wsval: type: float description: - Factor used to calculate the new window size. - This argument is needed only when the window scaling is enabled. - default: 8 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nstcpprofile.py b/plugins/modules/nstcpprofile.py index f261ea30..e864524d 100644 --- a/plugins/modules/nstcpprofile.py +++ b/plugins/modules/nstcpprofile.py @@ -43,7 +43,6 @@ - DISABLED description: - Enable or disable ACK Aggregation. - default: DISABLED ackonpush: type: str choices: @@ -52,7 +51,6 @@ description: - Send immediate positive acknowledgement (ACK) on receipt of TCP packets with PUSH flag. - default: ENABLED applyadaptivetcp: type: str choices: @@ -60,12 +58,10 @@ - DISABLED description: - Apply Adaptive TCP optimizations - default: DISABLED buffersize: type: float description: - TCP buffering size, in bytes. - default: 8190 burstratecontrol: type: str choices: @@ -75,7 +71,6 @@ description: - TCP Burst Rate Control C(DISABLED)/C(FIXED)/C(DYNAMIC). C(FIXED) requires a TCP rate to be set. - default: DISABLED clientiptcpoption: type: str choices: @@ -83,7 +78,6 @@ - DISABLED description: - Client IP in TCP options - default: DISABLED clientiptcpoptionnumber: type: float description: @@ -92,7 +86,6 @@ type: float description: - Timeout for TCP delayed ACK, in milliseconds. - default: 100 dropestconnontimeout: type: str choices: @@ -100,7 +93,6 @@ - DISABLED description: - Silently drop tcp established connections on idle timeout - default: DISABLED drophalfclosedconnontimeout: type: str choices: @@ -108,7 +100,6 @@ - DISABLED description: - Silently drop tcp half closed connections on idle timeout - default: DISABLED dsack: type: str choices: @@ -116,12 +107,10 @@ - DISABLED description: - Enable or disable DSACK. - default: ENABLED dupackthresh: type: float description: - TCP dupack threshold. - default: 3 dynamicreceivebuffering: type: str choices: @@ -132,7 +121,6 @@ buffer to be adjusted dynamically based on memory and network conditions. - 'Note: The buffer size argument must be set for dynamic adjustments to take place.' - default: DISABLED ecn: type: str choices: @@ -140,7 +128,6 @@ - DISABLED description: - Enable or disable TCP Explicit Congestion Notification. - default: DISABLED establishclientconn: type: str choices: @@ -149,7 +136,6 @@ - ON_FIRST_DATA description: - Establishing Client Client connection on First data/ Final-ACK / Automatic - default: AUTOMATIC fack: type: str choices: @@ -157,7 +143,6 @@ - DISABLED description: - Enable or disable FACK (Forward ACK). - default: DISABLED flavor: type: str choices: @@ -168,7 +153,6 @@ - Nile description: - Set TCP congestion control algorithm. - default: Default frto: type: str choices: @@ -176,7 +160,6 @@ - DISABLED description: - Enable or disable FRTO (Forward RTO-Recovery). - default: DISABLED hystart: type: str choices: @@ -184,13 +167,11 @@ - DISABLED description: - Enable or disable CUBIC Hystart - default: DISABLED initialcwnd: type: float description: - Initial maximum upper limit on the number of TCP packets that can be outstanding on the TCP link to the server. - default: 4 ka: type: str choices: @@ -198,7 +179,6 @@ - DISABLED description: - Send periodic TCP keep-alive (KA) probes to check if peer is still up. - default: DISABLED kaconnidletime: type: float description: @@ -221,17 +201,14 @@ - DISABLED description: - Update last activity for the connection after receiving keep-alive (KA) probes. - default: ENABLED maxburst: type: float description: - Maximum number of TCP segments allowed in a burst. - default: 6 maxcwnd: type: float description: - TCP Maximum Congestion Window. - default: 524288 maxpktpermss: type: float description: @@ -241,7 +218,6 @@ description: - Minimum retransmission timeout, in milliseconds, specified in 10-millisecond increments (value must yield a whole number if divided by 10). - default: 1000 mpcapablecbit: type: str choices: @@ -249,7 +225,6 @@ - DISABLED description: - Set C bit in MP-CAPABLE Syn-Ack sent by Citrix ADC - default: DISABLED mptcp: type: str choices: @@ -257,7 +232,6 @@ - DISABLED description: - Enable or disable Multipath TCP. - default: DISABLED mptcpdropdataonpreestsf: type: str choices: @@ -267,7 +241,6 @@ - Enable or disable silently dropping the data on Pre-Established subflow. When enabled, DSS data packets are dropped silently instead of dropping the connection when data is received on pre established subflow. - default: DISABLED mptcpfastopen: type: str choices: @@ -276,7 +249,6 @@ description: - Enable or disable Multipath TCP fastopen. When enabled, DSS data packets are accepted before receiving the third ack of SYN handshake. - default: DISABLED mptcpsessiontimeout: type: float description: @@ -293,7 +265,6 @@ - DISABLED description: - Enable or disable the Nagle algorithm on TCP connections. - default: DISABLED name: type: str description: @@ -309,13 +280,11 @@ type: float description: - Maximum size of out-of-order packets queue. A value of 0 means no limit. - default: 64 pktperretx: type: float description: - Maximum limit on the number of packets that should be retransmitted on receiving a partial ACK. - default: 1 rateqmax: type: float description: @@ -328,7 +297,6 @@ description: - Enable or disable acceptance of RST that is out of window yet echoes highest ACK sequence number. Useful only in proxy mode. - default: DISABLED rstwindowattenuate: type: str choices: @@ -337,7 +305,6 @@ description: - Enable or disable RST window attenuation to protect against spoofing. When enabled, will reply with corrective ACK when a sequence number is invalid. - default: DISABLED sack: type: str choices: @@ -345,12 +312,10 @@ - DISABLED description: - Enable or disable Selective ACKnowledgement (SACK). - default: DISABLED sendbuffsize: type: float description: - TCP Send Buffer Size - default: 8190 sendclientportintcpoption: type: str choices: @@ -359,18 +324,15 @@ description: - Send Client Port number along with Client IP in TCP-Options. ClientIpTcpOption must be C(ENABLED) - default: DISABLED slowstartincr: type: float description: - Multiplier that determines the rate at which slow start increases the size of the TCP transmission window after each acknowledgement of successful transmission. - default: 2 slowstartthreshold: type: float description: - TCP Slow Start Threhsold Value. - default: 524288 spoofsyndrop: type: str choices: @@ -380,7 +342,6 @@ - Enable or disable drop of invalid SYN packets to protect against spoofing. When disabled, established connections will be reset when a SYN packet is received. - default: ENABLED syncookie: type: str choices: @@ -389,7 +350,6 @@ description: - Enable or disable the SYNCOOKIE mechanism for TCP handshake with clients. Disabling SYNCOOKIE prevents SYN attack protection on the Citrix ADC. - default: ENABLED taillossprobe: type: str choices: @@ -397,7 +357,6 @@ - DISABLED description: - TCP tail loss probe optimizations - default: DISABLED tcpfastopen: type: str choices: @@ -406,13 +365,11 @@ description: - Enable or disable TCP Fastopen. When enabled, NS can receive or send Data in SYN or SYN-ACK packets. - default: DISABLED tcpfastopencookiesize: type: float description: - TCP FastOpen Cookie size. This accepts only even numbers. Odd number is trimmed down to nearest even number. - default: 8 tcpmode: type: str choices: @@ -420,7 +377,6 @@ - ENDPOINT description: - TCP Optimization modes C(TRANSPARENT) / C(ENDPOINT). - default: TRANSPARENT tcprate: type: float description: @@ -433,7 +389,6 @@ description: - Offload TCP segmentation to the NIC. If set to C(AUTOMATIC), TCP segmentation will be offloaded to the NIC, if the NIC supports it. - default: AUTOMATIC timestamp: type: str choices: @@ -441,7 +396,6 @@ - DISABLED description: - Enable or Disable TCP Timestamp option (RFC 1323) - default: DISABLED ws: type: str choices: @@ -449,18 +403,26 @@ - DISABLED description: - Enable or disable window scaling. - default: DISABLED wsval: type: float description: - Factor used to calculate the new window size. - This argument is needed only when window scaling is enabled. - default: 4 extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | nstcpProfile + delegate_to: localhost + netscaler.adc.nstcpprofile: + state: present + name: tcpprofile-mptcp + mptcp: ENABLED """ RETURN = r""" diff --git a/plugins/modules/nstimeout.py b/plugins/modules/nstimeout.py index 2d41e18b..4c34f9c2 100644 --- a/plugins/modules/nstimeout.py +++ b/plugins/modules/nstimeout.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str anyclient: type: float @@ -65,7 +67,6 @@ type: float description: - Idle timeout, in seconds, for connections that are in TCP half-closed state. - default: 10 httpclient: type: float description: @@ -83,18 +84,15 @@ description: - Timer interval, in seconds, for new TCP NATPCB connections on which no data was received. - default: 4 nontcpzombie: type: float description: - Interval at which the zombie clean-up process for non-TCP connections should run. Inactive IP NAT connections will be cleaned up. - default: 60 reducedfintimeout: type: float description: - Alternative idle timeout, in seconds, for closed TCP NATPCB connections. - default: 30 reducedrsttimeout: type: float description: @@ -121,7 +119,6 @@ description: - Interval, in seconds, at which the Citrix ADC zombie cleanup process must run. This process cleans up inactive TCP connections. - default: 120 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/nstimer.py b/plugins/modules/nstimer.py index 3203bde5..671bbe64 100644 --- a/plugins/modules/nstimer.py +++ b/plugins/modules/nstimer.py @@ -45,7 +45,6 @@ description: - The frequency at which the policies bound to this timer are invoked. The minimum value is 20 msec. The maximum value is 20940 in seconds and 349 in minutes - default: 5 name: type: str description: @@ -61,7 +60,6 @@ - MIN description: - Timer interval unit - default: SEC nstimer_autoscalepolicy_binding: type: dict description: Bindings for nstimer_autoscalepolicy_binding resource diff --git a/plugins/modules/nstimer_autoscalepolicy_binding.py b/plugins/modules/nstimer_autoscalepolicy_binding.py index b3dcb4b1..c8bed7e4 100644 --- a/plugins/modules/nstimer_autoscalepolicy_binding.py +++ b/plugins/modules/nstimer_autoscalepolicy_binding.py @@ -63,7 +63,6 @@ present with the binding. For example, sample size of 10 means that there is a state of previous 9 policy evaluation results and also the current policy evaluation result. - default: 3 threshold: type: float description: @@ -71,7 +70,6 @@ 'threshold size' number of times in 'sample size' to true, then the corresponding action is taken. Its value needs to be less than or equal to the sample size value. - default: 3 vserver: type: str description: diff --git a/plugins/modules/nstrace.py b/plugins/modules/nstrace.py index edf63fd9..0ba07845 100644 --- a/plugins/modules/nstrace.py +++ b/plugins/modules/nstrace.py @@ -38,7 +38,6 @@ - DISABLED description: - Captures Dropped Packets if set to C(ENABLED). - default: DISABLED capsslkeys: type: str choices: @@ -49,7 +48,6 @@ - ' Warning: The captured keys can be used to decrypt information that may be confidential. The captured key files have to be stored in a secure environment' - default: DISABLED doruntimecleanup: type: str choices: @@ -57,7 +55,6 @@ - DISABLED description: - Enable or disable runtime temp file cleanup - default: ENABLED fileid: type: str description: @@ -72,7 +69,6 @@ description: - File size, in MB, treshold for rollover. If free disk space is less than 2GB at the time of rollover, trace will stop - default: 1024 filter: type: str description: @@ -226,7 +222,6 @@ description: - Logs packets in appliance's memory and dumps the trace file on stopping the nstrace operation - default: DISABLED link: type: str choices: @@ -234,7 +229,6 @@ - DISABLED description: - Includes filtered connection's peer traffic. - default: DISABLED merge: type: str choices: @@ -276,7 +270,6 @@ type: float description: - Number of files to be generated in cycle. - default: 24 nodeid: type: float description: @@ -293,12 +286,10 @@ - DISABLED description: - Use separate trace files for each interface. Works only with cap format. - default: DISABLED size: type: float description: - Size of the captured data. Set 0 for full packet trace. - default: 164 skiplocalssh: type: str choices: @@ -306,7 +297,6 @@ - DISABLED description: - skip local SSH packets - default: DISABLED skiprpc: type: str choices: @@ -314,17 +304,14 @@ - DISABLED description: - skip RPC packets - default: DISABLED time: type: float description: - Time per file (sec). - default: 3600 tracebuffers: type: float description: - Number of 16KB trace buffers - default: 5000 traceformat: type: str choices: diff --git a/plugins/modules/nstrafficdomain.py b/plugins/modules/nstrafficdomain.py index 26d20dfd..08bec07f 100644 --- a/plugins/modules/nstrafficdomain.py +++ b/plugins/modules/nstrafficdomain.py @@ -62,7 +62,6 @@ VMAC address of the traffic domain. After creating entities on a traffic domain, you can easily manage and monitor them by performing traffic domain level operations. - default: DISABLED nstrafficdomain_bridgegroup_binding: type: dict description: Bindings for nstrafficdomain_bridgegroup_binding resource diff --git a/plugins/modules/nsvariable.py b/plugins/modules/nsvariable.py index 59f1f558..c1f04e61 100644 --- a/plugins/modules/nsvariable.py +++ b/plugins/modules/nsvariable.py @@ -55,7 +55,6 @@ - ' C(lru) - (default) reuse the least recently used entry in the map.' - ' C(undef) - force the assignment to return an undefined (Undef) result to the policy executing the assignment.' - default: lru ifnovalue: type: str choices: @@ -70,7 +69,6 @@ - using the -C(init) value or its default. - ' C(undef) - force the expression evaluation to return an undefined (Undef) result to the policy executing the expression.' - default: init ifvaluetoobig: type: str choices: @@ -84,7 +82,6 @@ bytes and proceed.' - ' C(undef) - force the assignment or expression evaluation to return an undefined (Undef) result to the policy executing the assignment or expression.' - default: truncate init: type: str description: @@ -115,7 +112,6 @@ on a standalone Citrix ADC, an HA pair, or all nodes of a cluster' - ' C(transaction) - one value for each request-response C(transaction) (singleton variables only; no expiration)' - default: global type: type: str description: diff --git a/plugins/modules/nsvpxparam.py b/plugins/modules/nsvpxparam.py index b981193e..3b6a01bc 100644 --- a/plugins/modules/nsvpxparam.py +++ b/plugins/modules/nsvpxparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str cpuyield: type: str @@ -56,7 +58,6 @@ - 2. In cluster setup, use '-ownerNode' to specify ID of the cluster node. - 3. This setting is a system wide implementation and not granular to vCPUs. - 4. No effect on the management PE. - default: DEFAULT masterclockcpu1: type: str choices: @@ -69,12 +70,20 @@ description: - ID of the cluster node for which you are setting the cpuyield. It can be configured only through the cluster IP address. - default: 255 extends_documentation_fragment: netscaler.adc.netscaler_adc """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | nsvpxparam + delegate_to: localhost + netscaler.adc.nsvpxparam: + state: present + cpuyield: 'YES' """ RETURN = r""" diff --git a/plugins/modules/nsweblogparam.py b/plugins/modules/nsweblogparam.py index 6b61630b..c2f0a0ad 100644 --- a/plugins/modules/nsweblogparam.py +++ b/plugins/modules/nsweblogparam.py @@ -27,19 +27,20 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str buffersizemb: type: float description: - Buffer size, in MB, allocated for log transaction data on the system. The maximum value is limited to the memory available on the system. - default: 16 customreqhdrs: type: list description: @@ -57,6 +58,15 @@ """ EXAMPLES = r""" +- name: Sample Playbook + hosts: localhost + gather_facts: false + tasks: + - name: Sample Task | nsweblogparam + delegate_to: localhost + netscaler.adc.nsweblogparam: + state: present + buffersizemb: '3' """ RETURN = r""" diff --git a/plugins/modules/nsxmlnamespace.py b/plugins/modules/nsxmlnamespace.py index 12181666..421504ba 100644 --- a/plugins/modules/nsxmlnamespace.py +++ b/plugins/modules/nsxmlnamespace.py @@ -36,7 +36,7 @@ to the module's parameters. - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str - Namespace: + namespace: type: str description: - Expanded namespace for which the XML prefix is provided. diff --git a/plugins/modules/ntpparam.py b/plugins/modules/ntpparam.py index 9574a2bb..79671d54 100644 --- a/plugins/modules/ntpparam.py +++ b/plugins/modules/ntpparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str authentication: type: str @@ -42,20 +44,17 @@ description: - Apply NTP authentication, which enables the NTP client (Citrix ADC) to verify that the server is in fact known and trusted. - default: 'YES' autokeylogsec: type: float description: - Autokey protocol requires the keys to be refreshed periodically. This parameter specifies the interval between regenerations of new session keys. In seconds, expressed as a power of 2. - default: 12 revokelogsec: type: float description: - Interval between re-randomizations of the autokey seeds to prevent brute-force attacks on the autokey algorithms. - default: 16 trustedkey: type: list description: diff --git a/plugins/modules/ntpserver.py b/plugins/modules/ntpserver.py index bd026e6d..c0d36d1c 100644 --- a/plugins/modules/ntpserver.py +++ b/plugins/modules/ntpserver.py @@ -69,7 +69,6 @@ description: - Preferred NTP server. The Citrix ADC chooses this NTP server for time synchronization among a set of correctly operating hosts. - default: 'NO' serverip: type: str description: diff --git a/plugins/modules/onlinkipv6prefix.py b/plugins/modules/onlinkipv6prefix.py index ba741e32..5b7df6bc 100644 --- a/plugins/modules/onlinkipv6prefix.py +++ b/plugins/modules/onlinkipv6prefix.py @@ -45,7 +45,6 @@ - 'NO' description: - RA Prefix Autonomus flag. - default: 'YES' decrementprefixlifetimes: type: str choices: @@ -53,7 +52,6 @@ - 'NO' description: - RA Prefix Autonomus flag. - default: 'NO' depricateprefix: type: str choices: @@ -61,7 +59,6 @@ - 'NO' description: - Depricate the prefix. - default: 'NO' ipv6prefix: type: str description: @@ -73,17 +70,14 @@ - 'NO' description: - RA Prefix onlink flag. - default: 'YES' prefixpreferredlifetime: type: float description: - Preferred life time of the prefix, in seconds. - default: 604800 prefixvalidelifetime: type: float description: - Valide life time of the prefix, in seconds. - default: 2592000 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/pcpprofile.py b/plugins/modules/pcpprofile.py index 0ba4d2a7..7924dab9 100644 --- a/plugins/modules/pcpprofile.py +++ b/plugins/modules/pcpprofile.py @@ -40,7 +40,6 @@ type: float description: - Integer value that identify the number announce message to be send. - default: 10 mapping: type: str choices: @@ -48,7 +47,6 @@ - DISABLED description: - This argument is for enabling/disabling the MAP opcode of current PCP Profile - default: ENABLED maxmaplife: type: float description: @@ -73,7 +71,6 @@ - DISABLED description: - This argument is for enabling/disabling the PEER opcode of current PCP Profile - default: ENABLED thirdparty: type: str choices: @@ -82,7 +79,6 @@ description: - This argument is for enabling/disabling the THIRD PARTY opcode of current PCP Profile - default: DISABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/pcpserver.py b/plugins/modules/pcpserver.py index d4b2612e..6fc49e2e 100644 --- a/plugins/modules/pcpserver.py +++ b/plugins/modules/pcpserver.py @@ -55,7 +55,6 @@ type: int description: - Port number for the PCP server. - default: 5351 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/policyparam.py b/plugins/modules/policyparam.py index 1b2f5857..ca86518e 100644 --- a/plugins/modules/policyparam.py +++ b/plugins/modules/policyparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str timeout: type: float @@ -40,7 +42,6 @@ - Maximum time in milliseconds to allow for processing expressions and policies without interruption. If the timeout is reached then the evaluation causes an UNDEF to be raised and no further processing is performed. - default: 3900 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/policypatset_pattern_binding.py b/plugins/modules/policypatset_pattern_binding.py index fb1fe58b..1d93d6ca 100644 --- a/plugins/modules/policypatset_pattern_binding.py +++ b/plugins/modules/policypatset_pattern_binding.py @@ -38,7 +38,7 @@ to the module's parameters. - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str - String: + string: type: str description: - String of characters that constitutes a pattern. For more information about diff --git a/plugins/modules/policypatsetfile.py b/plugins/modules/policypatsetfile.py index 856103b6..410f6a00 100644 --- a/plugins/modules/policypatsetfile.py +++ b/plugins/modules/policypatsetfile.py @@ -28,6 +28,7 @@ choices: - present - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler diff --git a/plugins/modules/policyurlset.py b/plugins/modules/policyurlset.py index 5073e0fd..1256ea19 100644 --- a/plugins/modules/policyurlset.py +++ b/plugins/modules/policyurlset.py @@ -28,6 +28,7 @@ choices: - present - absent + - imported default: present description: - The state of the resource being configured by the module on the NetScaler @@ -63,7 +64,6 @@ description: - An ID that would be sent to AppFlow to indicate which URLSet was the last one that matched the requested URL. - default: 1 name: type: str description: diff --git a/plugins/modules/protocolhttpband.py b/plugins/modules/protocolhttpband.py index 4e92e506..e8778717 100644 --- a/plugins/modules/protocolhttpband.py +++ b/plugins/modules/protocolhttpband.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str nodeid: type: float @@ -47,7 +49,6 @@ - 0 - 99 bytes - 100 - 199 bytes - 200 - 299 bytes and so on. - default: 100 respbandsize: type: int description: @@ -57,7 +58,6 @@ - 0 - 99 bytes - 100 - 199 bytes - 200 - 299 bytes and so on. - default: 1024 type: type: str choices: diff --git a/plugins/modules/quicbridgeprofile.py b/plugins/modules/quicbridgeprofile.py index 397ddcd4..5d94c427 100644 --- a/plugins/modules/quicbridgeprofile.py +++ b/plugins/modules/quicbridgeprofile.py @@ -49,12 +49,10 @@ - PLAINTEXT description: - Routing algorithm to generate routable connection IDs. - default: PLAINTEXT serveridlength: type: float description: - Length of serverid to encode/decode server information - default: 4 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/quicparam.py b/plugins/modules/quicparam.py index 6008c9a6..4d8ba069 100644 --- a/plugins/modules/quicparam.py +++ b/plugins/modules/quicparam.py @@ -27,12 +27,14 @@ state: choices: - present + - absent default: present description: - The state of the resource being configured by the module on the NetScaler ADC node. - When C(present) the resource will be created if needed and configured according to the module's parameters. + - When C(absent) the resource will be deleted from the NetScaler ADC node. type: str quicsecrettimeout: type: float @@ -41,7 +43,6 @@ tokens that will be issued in QUIC Retry packets and QUIC NEW_TOKEN frames sent by the Citrix ADC. A value of 0 can be configured if secret rotation is not desired. - default: 3600 extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/quicprofile.py b/plugins/modules/quicprofile.py index 49f89d7e..f6e21174 100644 --- a/plugins/modules/quicprofile.py +++ b/plugins/modules/quicprofile.py @@ -42,14 +42,12 @@ - An integer value advertised by the Citrix ADC to the remote QUIC endpoint, indicating an exponent that the remote QUIC endpoint should use, to decode the ACK Delay field in QUIC ACK frames sent by the Citrix ADC. - default: 3 activeconnectionidlimit: type: float description: - An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the maximum number of QUIC connection IDs from the remote QUIC endpoint, that the Citrix ADC is willing to store. - default: 3 activeconnectionmigration: type: str choices: @@ -58,7 +56,6 @@ description: - Specify whether the Citrix ADC should allow the remote QUIC endpoint to perform active QUIC connection migration. - default: ENABLED congestionctrlalgorithm: type: str choices: @@ -69,56 +66,48 @@ description: - Specify the congestion control algorithm to be used for QUIC connections. The default congestion control algorithm is C(CUBIC). - default: Default initialmaxdata: type: float description: - An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the initial value, in bytes, for the maximum amount of data that can be sent on a QUIC connection. - default: 1048576 initialmaxstreamdatabidilocal: type: float description: - An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the initial flow control limit, in bytes, for bidirectional QUIC streams initiated by the Citrix ADC. - default: 262144 initialmaxstreamdatabidiremote: type: float description: - An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the initial flow control limit, in bytes, for bidirectional QUIC streams initiated by the remote QUIC endpoint. - default: 262144 initialmaxstreamdatauni: type: float description: - An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the initial flow control limit, in bytes, for unidirectional streams initiated by the remote QUIC endpoint. - default: 262144 initialmaxstreamsbidi: type: float description: - An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the initial maximum number of bidirectional streams the remote QUIC endpoint may initiate. - default: 100 initialmaxstreamsuni: type: float description: - An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the initial maximum number of unidirectional streams the remote QUIC endpoint may initiate. - default: 10 maxackdelay: type: float description: - An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the maximum amount of time, in milliseconds, by which the Citrix ADC will delay sending acknowledgments. - default: 20 maxidletimeout: type: float description: @@ -128,21 +117,18 @@ idle for longer than the minimum of the idle timeout values advertised by the Citrix ADC and the remote QUIC endpoint, and three times the current Probe Timeout (PTO). - default: 180 maxudpdatagramsperburst: type: float description: - An integer value, specifying the maximum number of UDP datagrams that can be transmitted by the Citrix ADC in a single transmission burst on a QUIC connection. - default: 8 maxudppayloadsize: type: float description: - An integer value advertised by the Citrix ADC to the remote QUIC endpoint, specifying the size of the largest UDP datagram payload, in bytes, that the Citrix ADC is willing to receive on a QUIC connection. - default: 1472 name: type: str description: @@ -155,13 +141,11 @@ description: - An integer value, specifying the validity period, in seconds, of address validation tokens issued through QUIC NEW_TOKEN frames sent by the Citrix ADC. - default: 300 retrytokenvalidityperiod: type: float description: - An integer value, specifying the validity period, in seconds, of address validation tokens issued through QUIC Retry packets sent by the Citrix ADC. - default: 10 statelessaddressvalidation: type: str choices: @@ -172,7 +156,6 @@ for QUIC clients, by sending tokens in QUIC Retry packets during QUIC connection establishment, and by sending tokens in QUIC NEW_TOKEN frames after QUIC connection establishment. - default: ENABLED extends_documentation_fragment: netscaler.adc.netscaler_adc """ diff --git a/plugins/modules/rdpclientprofile.py b/plugins/modules/rdpclientprofile.py index b09b2bca..aa1fe23f 100644 --- a/plugins/modules/rdpclientprofile.py +++ b/plugins/modules/rdpclientprofile.py @@ -43,7 +43,6 @@ - 'NO' description: - Add username in rdp file. - default: 'NO' audiocapturemode: type: str choices: @@ -52,7 +51,6 @@ description: - This setting corresponds to the selections in the Remote audio area on the Local Resources tab under Options in RDC. - default: DISABLE keyboardhook: type: str choices: @@ -62,7 +60,6 @@ description: - This setting corresponds to the selection in the Keyboard drop-down list on the Local Resources tab under Options in RDC. - default: InFullScreenMode multimonitorsupport: type: str choices: @@ -70,7 +67,6 @@ - DISABLE description: - Enable/Disable Multiple Monitor Support for Remote Desktop Connection (RDC). - default: ENABLE name: type: str description: @@ -89,14 +85,12 @@ output of time() function in the format _