-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: partial import export areas covered #37661
Conversation
WalkthroughThe changes introduce a new Cypress test suite for validating partial import and export functionality within an application. This includes the addition of a new test file, updates to test specifications, and the introduction of JSON configuration files that define application components and API actions. The modifications ensure comprehensive testing across various contexts, including workspace and Git branch scenarios, enhancing the overall test coverage for import/export features. Changes
Possibly related PRs
Suggested labels
Suggested reviewers
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
…rt/PartialImportExportWithinNewPageAndApp.ts
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 8
🧹 Outside diff range and nitpick comments (4)
app/client/cypress/fixtures/PartialImportExport/PartialQueryXport.json (1)
1-1
: Enhance test data variation with parameterized valuesThe fixture contains static values for pagination and filtering which limits test coverage. Consider parameterizing these values to support multiple test scenarios.
Suggested improvements:
- Use variables for pagination limits
- Add more filter conditions
- Include multiple sort configurations
Example:
{ "pagination": { "data": { "limit": "<%= testData.paginationLimit %>", "offset": "<%= testData.paginationOffset %>" } } }app/client/cypress/fixtures/PartialImportExport/PartialWidgetXport.json (2)
1-1
: Format JSON for better readabilityThe JSON is minified, making it difficult to read and maintain. Consider formatting it with proper indentation for better readability in the test fixtures.
1-1
: Consider extracting theme valuesMultiple theme-related values are repeated throughout the configuration:
appsmith.theme.colors.primaryColor
appsmith.theme.borderRadius.appBorderRadius
appsmith.theme.boxShadow.appBoxShadow
Consider extracting these into a separate theme configuration file to maintain consistency across test fixtures.
app/client/cypress/fixtures/PartialImportExport/ImportExportUpdated.json (1)
1-1
: Specify default sort column for Table1The table is sortable but missing a default sort configuration, which may lead to inconsistent data presentation.
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
📒 Files selected for processing (4)
app/client/cypress/e2e/Regression/ClientSide/PartialImportExport/PartialImportRegularApp.ts
(1 hunks)app/client/cypress/fixtures/PartialImportExport/ImportExportUpdated.json
(1 hunks)app/client/cypress/fixtures/PartialImportExport/PartialQueryXport.json
(1 hunks)app/client/cypress/fixtures/PartialImportExport/PartialWidgetXport.json
(1 hunks)
🧰 Additional context used
📓 Path-based instructions (4)
app/client/cypress/e2e/Regression/ClientSide/PartialImportExport/PartialImportRegularApp.ts (1)
Pattern app/client/cypress/**/**.*
: Review the following e2e test code written using the Cypress test library. Ensure that:
- Follow best practices for Cypress code and e2e automation.
- Avoid using cy.wait in code.
- Avoid using cy.pause in code.
- Avoid using agHelper.sleep().
- Use locator variables for locators and do not use plain strings.
- Use data-* attributes for selectors.
- Avoid Xpaths, Attributes and CSS path.
- Avoid selectors like .btn.submit or button[type=submit].
- Perform logins via API with LoginFromAPI.
- Perform logout via API with LogOutviaAPI.
- Perform signup via API with SignupFromAPI.
- Avoid using it.only.
- Avoid using after and aftereach in test cases.
- Use multiple assertions for expect statements.
- Avoid using strings for assertions.
- Do not use duplicate filenames even with different paths.
- Avoid using agHelper.Sleep, this.Sleep in any file in code.
app/client/cypress/fixtures/PartialImportExport/ImportExportUpdated.json (1)
Pattern app/client/cypress/**/**.*
: Review the following e2e test code written using the Cypress test library. Ensure that:
- Follow best practices for Cypress code and e2e automation.
- Avoid using cy.wait in code.
- Avoid using cy.pause in code.
- Avoid using agHelper.sleep().
- Use locator variables for locators and do not use plain strings.
- Use data-* attributes for selectors.
- Avoid Xpaths, Attributes and CSS path.
- Avoid selectors like .btn.submit or button[type=submit].
- Perform logins via API with LoginFromAPI.
- Perform logout via API with LogOutviaAPI.
- Perform signup via API with SignupFromAPI.
- Avoid using it.only.
- Avoid using after and aftereach in test cases.
- Use multiple assertions for expect statements.
- Avoid using strings for assertions.
- Do not use duplicate filenames even with different paths.
- Avoid using agHelper.Sleep, this.Sleep in any file in code.
app/client/cypress/fixtures/PartialImportExport/PartialQueryXport.json (1)
Pattern app/client/cypress/**/**.*
: Review the following e2e test code written using the Cypress test library. Ensure that:
- Follow best practices for Cypress code and e2e automation.
- Avoid using cy.wait in code.
- Avoid using cy.pause in code.
- Avoid using agHelper.sleep().
- Use locator variables for locators and do not use plain strings.
- Use data-* attributes for selectors.
- Avoid Xpaths, Attributes and CSS path.
- Avoid selectors like .btn.submit or button[type=submit].
- Perform logins via API with LoginFromAPI.
- Perform logout via API with LogOutviaAPI.
- Perform signup via API with SignupFromAPI.
- Avoid using it.only.
- Avoid using after and aftereach in test cases.
- Use multiple assertions for expect statements.
- Avoid using strings for assertions.
- Do not use duplicate filenames even with different paths.
- Avoid using agHelper.Sleep, this.Sleep in any file in code.
app/client/cypress/fixtures/PartialImportExport/PartialWidgetXport.json (1)
Pattern app/client/cypress/**/**.*
: Review the following e2e test code written using the Cypress test library. Ensure that:
- Follow best practices for Cypress code and e2e automation.
- Avoid using cy.wait in code.
- Avoid using cy.pause in code.
- Avoid using agHelper.sleep().
- Use locator variables for locators and do not use plain strings.
- Use data-* attributes for selectors.
- Avoid Xpaths, Attributes and CSS path.
- Avoid selectors like .btn.submit or button[type=submit].
- Perform logins via API with LoginFromAPI.
- Perform logout via API with LogOutviaAPI.
- Perform signup via API with SignupFromAPI.
- Avoid using it.only.
- Avoid using after and aftereach in test cases.
- Use multiple assertions for expect statements.
- Avoid using strings for assertions.
- Do not use duplicate filenames even with different paths.
- Avoid using agHelper.Sleep, this.Sleep in any file in code.
🔇 Additional comments (6)
app/client/cypress/fixtures/PartialImportExport/PartialWidgetXport.json (2)
1-1
: Review table widget's client-side features
The table widget configuration enables client-side features that might impact performance:
- Client-side search is enabled (
enableClientSideSearch: true
) - Inline editing is configured (
inlineEditingSaveOption: "ROW_LEVEL"
) - Client-side sorting is enabled (
isSortable: true
)
Ensure these features are actually required for the test scenarios.
✅ Verification successful
Features are required for test scenarios
The client-side features in the table widget configuration are actively tested in the test suite:
- Client-side search is verified in
Table_ClientSide_Search_spec.js
- Inline editing is tested in
Inline_editing_1_spec.js
- Sorting functionality is validated in
TableV2_spec.js
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Search for test files that validate these client-side features
rg -l "enableClientSideSearch|inlineEditingSaveOption|isSortable" app/client/cypress/integration/
Length of output: 171
Script:
#!/bin/bash
# First, let's find the correct test directory path
fd -t d "cypress" --full-path
# Then search for test files containing these features
rg -l "enableClientSideSearch|inlineEditingSaveOption|isSortable" app/client/cypress/
Length of output: 16253
Script:
#!/bin/bash
# Let's check the test files that specifically test these features
rg -l "enableClientSideSearch.*test|inlineEditingSaveOption.*test|isSortable.*test" app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/
# Also check the content of Table_ClientSide_Search_spec.js which seems relevant
rg -A 5 "enableClientSideSearch|inlineEditingSaveOption|isSortable" app/client/cypress/e2e/Regression/ClientSide/Binding/Table_ClientSide_Search_spec.js
Length of output: 584
Script:
#!/bin/bash
# Let's check the test file content for inline editing and sorting features
rg -A 5 "inlineEditingSaveOption|isSortable" app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/Inline_editing_1_spec.js
# Also check if these features are being tested in TableV2_spec.js
rg -A 5 "inlineEditingSaveOption|isSortable" app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/TableV2_spec.js
Length of output: 1038
1-1
: Verify button's onClick handler implementation
The button is configured to call JSObject1.genPDF()
on click. Ensure this function exists and is properly tested.
app/client/cypress/e2e/Regression/ClientSide/PartialImportExport/PartialImportRegularApp.ts (2)
1-13
: LGTM!
The imports are well-organized and the fixture setup is clean.
78-100
: LGTM!
Good use of assertions and proper locator variables.
app/client/cypress/fixtures/PartialImportExport/ImportExportUpdated.json (2)
1-1
: Update dependencies to latest stable versions
Consider updating:
- jsonwebtoken from 8.5.1 to latest version
- jspdf from 2.5.1 to latest version
1-1
: Verify schema version compatibility
The large gap between client (v1) and server (v11) schema versions might cause compatibility issues.
✅ Verification successful
Schema version mismatch is expected and handled
The server has built-in migration support for schema version differences through JsonSchemaMigration.java
. The version gap between client (v1) and server (v11) is part of the normal versioning pattern.
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Check for schema version compatibility issues in other configuration files
fd -e json -x jq -r 'select(.clientSchemaVersion != null and .serverSchemaVersion != null) | "\(.clientSchemaVersion) \(.serverSchemaVersion)"'
Length of output: 1342
Script:
#!/bin/bash
# Let's check the schema version compatibility in the application configuration files
fd -e json -x grep -l "schemaVersion" {} \; | while read -r file; do
echo "=== $file ==="
jq -r 'select(.clientSchemaVersion != null and .serverSchemaVersion != null) | "Client: \(.clientSchemaVersion), Server: \(.serverSchemaVersion)"' "$file" 2>/dev/null
done
# Also check if there are any documented schema version requirements
fd -t f -e md -e txt -x grep -l "schema.*version" {} \;
Length of output: 122
Script:
#!/bin/bash
# Let's check the schema version patterns in the codebase
rg -g '*.{ts,js}' -l 'schemaVersion'
# Check for schema version handling in code
ast-grep --pattern 'schemaVersion'
# Look for schema version documentation
rg -g '*.md' -l 'schema.*version'
Length of output: 434
@@ -0,0 +1 @@ | |||
{"artifactJsonType":"APPLICATION","clientSchemaVersion":1,"serverSchemaVersion":11,"actionList":[{"id":"Home_Api1","pluginType":"SAAS","pluginId":"google-sheets-plugin","unpublishedAction":{"name":"Api1","fullyQualifiedName":"Api1","datasource":{"userPermissions":[],"name":"Untitled datasource 2","pluginId":"google-sheets-plugin","messages":[],"isValid":true},"pageId":"Home","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"formData":{"command":{"data":"FETCH_MANY"},"entityType":{"data":"ROWS"},"tableHeaderIndex":{"data":"1"},"projection":{"data":["Currency"]},"queryFormat":{"data":"ROWS"},"range":{"data":""},"where":{"data":{"condition":"AND","children":[{"condition":"LT"}]}},"pagination":{"data":{"limit":"20","offset":"0"}},"smartSubstitution":{"data":true},"sheetUrl":{"data":"https://docs.google.com/spreadsheets/d/1DLNNumIhXhbajHGAEhWfzlgixcAu259gzAOVvLtWVpA/edit"},"sheetName":{"data":"Sheet1"},"sortBy":{"data":[{"column":"","order":"Ascending"}]}}},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[]},"publishedAction":{"name":"Api1","fullyQualifiedName":"Api1","datasource":{"userPermissions":[],"name":"Untitled datasource 2","pluginId":"google-sheets-plugin","messages":[],"isValid":true},"pageId":"Home","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"formData":{"command":{"data":"FETCH_MANY"},"entityType":{"data":"ROWS"},"tableHeaderIndex":{"data":"1"},"projection":{"data":["Currency"]},"queryFormat":{"data":"ROWS"},"range":{"data":""},"where":{"data":{"condition":"AND","children":[{"condition":"LT"}]}},"pagination":{"data":{"limit":"20","offset":"0"}},"smartSubstitution":{"data":true},"sheetUrl":{"data":"https://docs.google.com/spreadsheets/d/1DLNNumIhXhbajHGAEhWfzlgixcAu259gzAOVvLtWVpA/edit"},"sheetName":{"data":"Sheet1"},"sortBy":{"data":[{"column":"","order":"Ascending"}]}}},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[]}}],"widgets":""} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using environment variables or test constants for sensitive URLs
The Google Sheets URL should not be hardcoded in test fixtures. Consider moving it to a centralized test constants file or environment variables.
Suggested approaches:
- Use Cypress environment variables
- Create a separate test constants file
- Use a mock URL for tests
Example implementation:
-"sheetUrl":{"data":"https://docs.google.com/spreadsheets/d/1DLNNumIhXhbajHGAEhWfzlgixcAu259gzAOVvLtWVpA/edit"}
+"sheetUrl":{"data":"<%= Cypress.env('TEST_SHEET_URL') %>"}
Committable suggestion skipped: line range outside the PR's diff.
partialImportExport.OpenImportModal(); | ||
partialImportExport.ImportPartiallyExportedFile( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Consolidate duplicate modal operations
There are unnecessary duplicate calls to OpenImportModal()
. The modal is already open from the previous call.
- partialImportExport.OpenImportModal();
partialImportExport.ImportPartiallyExportedFile(
"PartialWidgetExport.json",
"Widgets",
["Table1", "Button1"],
);
// Import Queries
- partialImportExport.OpenImportModal();
partialImportExport.ImportPartiallyExportedFile(
Also applies to: 64-65
partialImportExport.OpenImportModal(); | ||
partialImportExport.ImportPartiallyExportedFile( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Remove redundant modal operations
Similar to the previous test, there are unnecessary duplicate calls to OpenImportModal()
.
- partialImportExport.OpenImportModal();
partialImportExport.ImportPartiallyExportedFile(
"PartialWidgetExport.json",
"Widgets",
["Table1", "Button1"],
);
// Import Queries
- partialImportExport.OpenImportModal();
partialImportExport.ImportPartiallyExportedFile(
Also applies to: 115-116
partialImportExport.OpenImportModal(); | ||
partialImportExport.ImportPartiallyExportedFile( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Remove redundant modal operations
Multiple instances of unnecessary duplicate calls to OpenImportModal()
. The modal is already open from the previous call.
- partialImportExport.OpenImportModal();
partialImportExport.ImportPartiallyExportedFile(
"PartialWidgetExport.json",
"Widgets",
["Table1", "Button1"],
);
// Import Queries
- partialImportExport.OpenImportModal();
partialImportExport.ImportPartiallyExportedFile(
Also applies to: 147-148, 164-165, 172-173
); | ||
}); | ||
|
||
beforeEach(() => {}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove empty beforeEach hook
According to the guidelines, we should avoid using empty hooks. Please remove this empty beforeEach hook.
- beforeEach(() => {});
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
beforeEach(() => {}); |
gitSync.CreateGitBranch("New_Branch"); | ||
gitSync.CreateGitBranch(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codebase verification
Remove redundant Git branch creation
The second CreateGitBranch()
call is redundant and should be removed. The CreateGitBranch
method has a default parameter branch = "br"
and will create a branch even without parameters, making the second call unnecessary and potentially confusing.
- Remove line 134:
gitSync.CreateGitBranch();
🔗 Analysis chain
Clarify Git branch creation intent
There are two consecutive CreateGitBranch()
calls, one with a parameter and one without. This might cause confusion.
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Check the implementation of CreateGitBranch to understand the behavior without parameters
ast-grep --pattern 'CreateGitBranch($$$) {
$$$
}'
Length of output: 53
Script:
#!/bin/bash
# Search for CreateGitBranch function definition in test helper files
fd "gitSync" --type f --exec rg -l "CreateGitBranch"
# After finding the files, let's look at the implementation
rg "CreateGitBranch" -A 5 -B 2
Length of output: 37095
@@ -0,0 +1 @@ | |||
{"artifactJsonType":"APPLICATION","clientSchemaVersion":1,"serverSchemaVersion":11,"datasourceList":[{"datasourceConfiguration":{"url":""},"name":"Untitled datasource 2","pluginId":"google-sheets-plugin","messages":[],"isAutoGenerated":false,"isValid":true}],"customJSLibList":[{"userPermissions":[],"name":"jsonwebtoken","uidString":"jsonwebtoken_/libraries/jsonwebtoken@8.5.1.js","accessor":["jsonwebtoken"],"url":"/libraries/jsonwebtoken@8.5.1.js","version":"8.5.1","defs":"{\"!name\":\"LIB/jsonwebtoken\",\"jsonwebtoken\":{\"decode\":{\"!type\":\"fn()\",\"prototype\":{}},\"verify\":{\"!type\":\"fn()\",\"prototype\":{}},\"sign\":{\"!type\":\"fn()\",\"prototype\":{}},\"JsonWebTokenError\":{\"!type\":\"fn()\",\"prototype\":{\"message\":{\"!type\":\"string\"},\"toString\":{\"!type\":\"fn()\"}}},\"NotBeforeError\":{\"!type\":\"fn()\",\"prototype\":{}},\"TokenExpiredError\":{\"!type\":\"fn()\",\"prototype\":{}}}}"},{"userPermissions":[],"name":"jspdf","uidString":"jspdf_https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js","accessor":["jspdf"],"url":"https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js","version":"2.5.1","defs":"{\"!name\":\"LIB/jspdf\",\"jspdf\":{\"AcroForm\":{\"ChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"ListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"ComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"EditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"Button\":{\"!type\":\"fn()\",\"prototype\":{}},\"PushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"RadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"CheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"TextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"PasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"Appearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}}},\"AcroFormAppearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"AcroFormButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormCheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormEditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormPasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormPushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormRadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"AcroFormTextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"GState\":{\"!type\":\"fn()\",\"prototype\":{\"equals\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"ShadingPattern\":{\"!type\":\"fn()\",\"prototype\":{}},\"TilingPattern\":{\"!type\":\"fn()\",\"prototype\":{}},\"default\":{\"!type\":\"fn()\",\"API\":{\"events\":{\"0\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"1\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"2\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"3\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"4\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"5\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"6\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"7\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"8\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"9\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"10\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"11\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"12\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"13\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"__acroform__\":{\"setBit\":{\"!type\":\"fn()\",\"prototype\":{}},\"clearBit\":{\"!type\":\"fn()\",\"prototype\":{}},\"getBit\":{\"!type\":\"fn()\",\"prototype\":{}},\"getBitForPdf\":{\"!type\":\"fn()\",\"prototype\":{}},\"setBitForPdf\":{\"!type\":\"fn()\",\"prototype\":{}},\"clearBitForPdf\":{\"!type\":\"fn()\",\"prototype\":{}},\"calculateCoordinates\":{\"!type\":\"fn()\",\"prototype\":{}},\"arrayToPdfArray\":{\"!type\":\"fn()\",\"prototype\":{}}},\"addField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormEditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormPushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormRadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"AcroFormCheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormTextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormPasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormAppearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"AcroForm\":{\"ChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"ListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"ComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"EditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"Button\":{\"!type\":\"fn()\",\"prototype\":{}},\"PushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"RadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"CheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"TextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"PasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"Appearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}}},\"__addimage__\":{\"getImageFileTypeByImageData\":{\"!type\":\"fn()\",\"prototype\":{}},\"sHashCode\":{\"!type\":\"fn()\",\"prototype\":{}},\"validateStringAsBase64\":{\"!type\":\"fn()\",\"prototype\":{}},\"extractImageFromDataUrl\":{\"!type\":\"fn()\",\"prototype\":{}},\"supportsArrayBuffer\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArrayBuffer\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArrayBufferView\":{\"!type\":\"fn()\",\"prototype\":{}},\"binaryStringToUint8Array\":{\"!type\":\"fn()\",\"prototype\":{}},\"arrayBufferToBinaryString\":{\"!type\":\"fn()\",\"prototype\":{}},\"convertBase64ToBinaryString\":{\"!type\":\"fn()\",\"prototype\":{}}},\"color_spaces\":{\"DEVICE_RGB\":{\"!type\":\"string\"},\"DEVICE_GRAY\":{\"!type\":\"string\"},\"DEVICE_CMYK\":{\"!type\":\"string\"},\"CAL_GREY\":{\"!type\":\"string\"},\"CAL_RGB\":{\"!type\":\"string\"},\"LAB\":{\"!type\":\"string\"},\"ICC_BASED\":{\"!type\":\"string\"},\"INDEXED\":{\"!type\":\"string\"},\"PATTERN\":{\"!type\":\"string\"},\"SEPARATION\":{\"!type\":\"string\"},\"DEVICE_N\":{\"!type\":\"string\"}},\"decode\":{\"DCT_DECODE\":{\"!type\":\"string\"},\"FLATE_DECODE\":{\"!type\":\"string\"},\"LZW_DECODE\":{\"!type\":\"string\"},\"JPX_DECODE\":{\"!type\":\"string\"},\"JBIG2_DECODE\":{\"!type\":\"string\"},\"ASCII85_DECODE\":{\"!type\":\"string\"},\"ASCII_HEX_DECODE\":{\"!type\":\"string\"},\"RUN_LENGTH_DECODE\":{\"!type\":\"string\"},\"CCITT_FAX_DECODE\":{\"!type\":\"string\"}},\"image_compression\":{\"NONE\":{\"!type\":\"string\"},\"FAST\":{\"!type\":\"string\"},\"MEDIUM\":{\"!type\":\"string\"},\"SLOW\":{\"!type\":\"string\"}},\"addImage\":{\"!type\":\"fn()\",\"prototype\":{}},\"getImageProperties\":{\"!type\":\"fn()\",\"prototype\":{}},\"createAnnotation\":{\"!type\":\"fn()\",\"prototype\":{}},\"link\":{\"!type\":\"fn()\",\"prototype\":{}},\"textWithLink\":{\"!type\":\"fn()\",\"prototype\":{}},\"getTextWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"__arabicParser__\":{\"isInArabicSubstitutionA\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicLetter\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicEndLetter\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicAlfLetter\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasIsolatedForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasFinalForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasInitialForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasMedialForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"resolveLigatures\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicDiacritic\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCorrectForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"processArabic\":{\"!type\":\"fn()\",\"prototype\":{}}},\"processArabic\":{\"!type\":\"fn()\",\"prototype\":{}},\"autoPrint\":{\"!type\":\"fn()\",\"prototype\":{}},\"setHeaderFunction\":{\"!type\":\"fn()\",\"prototype\":{}},\"getTextDimensions\":{\"!type\":\"fn()\",\"prototype\":{}},\"cellAddPage\":{\"!type\":\"fn()\",\"prototype\":{}},\"cell\":{\"!type\":\"fn()\",\"prototype\":{}},\"table\":{\"!type\":\"fn()\",\"prototype\":{}},\"setTableHeaderRow\":{\"!type\":\"fn()\",\"prototype\":{}},\"printHeaderRow\":{\"!type\":\"fn()\",\"prototype\":{}},\"processDataByFilters\":{\"!type\":\"fn()\",\"prototype\":{}},\"loadFile\":{\"!type\":\"fn()\",\"prototype\":{}},\"loadImageFile\":{\"!type\":\"fn()\",\"prototype\":{}},\"html\":{\"!type\":\"fn()\",\"prototype\":{}},\"addJS\":{\"!type\":\"fn()\",\"prototype\":{}},\"processJPEG\":{\"!type\":\"fn()\",\"prototype\":{}},\"processPNG\":{\"!type\":\"fn()\",\"prototype\":{}},\"processGIF89A\":{\"!type\":\"fn()\",\"prototype\":{}},\"processGIF87A\":{\"!type\":\"fn()\",\"prototype\":{}},\"processBMP\":{\"!type\":\"fn()\",\"prototype\":{}},\"processWEBP\":{\"!type\":\"fn()\",\"prototype\":{}},\"processRGBA\":{\"!type\":\"fn()\",\"prototype\":{}},\"setLanguage\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCharWidthsArray\":{\"!type\":\"fn()\",\"prototype\":{}},\"getStringUnitWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"splitTextToSize\":{\"!type\":\"fn()\",\"prototype\":{}},\"__fontmetrics__\":{\"compress\":{\"!type\":\"fn()\",\"prototype\":{}},\"uncompress\":{\"!type\":\"fn()\",\"prototype\":{}}},\"addSvgAsImage\":{\"!type\":\"fn()\",\"prototype\":{}},\"putTotalPages\":{\"!type\":\"fn()\",\"prototype\":{}},\"viewerPreferences\":{\"!type\":\"fn()\",\"prototype\":{}},\"addMetadata\":{\"!type\":\"fn()\",\"prototype\":{}},\"pdfEscape16\":{\"!type\":\"fn()\",\"prototype\":{}},\"existsFileInVFS\":{\"!type\":\"fn()\",\"prototype\":{}},\"addFileToVFS\":{\"!type\":\"fn()\",\"prototype\":{}},\"getFileFromVFS\":{\"!type\":\"fn()\",\"prototype\":{}},\"TTFFont\":{\"!type\":\"fn()\",\"open\":{\"!type\":\"fn()\",\"prototype\":{}},\"prototype\":{\"parse\":{\"!type\":\"fn()\",\"prototype\":{}},\"registerTTF\":{\"!type\":\"fn()\",\"prototype\":{}},\"characterToGlyph\":{\"!type\":\"fn()\",\"prototype\":{}},\"widthOfGlyph\":{\"!type\":\"fn()\",\"prototype\":{}},\"widthOfString\":{\"!type\":\"fn()\",\"prototype\":{}},\"lineHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"PDFObject\":{\"!type\":\"fn()\",\"convert\":{\"!type\":\"fn()\",\"prototype\":{}},\"prototype\":{}}},\"version\":{\"!type\":\"string\"},\"AcroForm\":{\"ChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"ListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"ComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"EditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"Button\":{\"!type\":\"fn()\",\"prototype\":{}},\"PushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"RadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"CheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"TextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"PasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"Appearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}}},\"getPageSize\":{\"!type\":\"fn()\",\"prototype\":{}},\"prototype\":{\"__bidiEngine__\":{\"!type\":\"fn()\",\"prototype\":{}}},\"__bidiEngine__\":{\"!type\":\"fn()\",\"prototype\":{}}},\"jsPDF\":{\"!type\":\"fn()\",\"API\":{\"events\":{\"0\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"1\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"2\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"3\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"4\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"5\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"6\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"7\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"8\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"9\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"10\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"11\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"12\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"13\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"__acroform__\":{\"setBit\":{\"!type\":\"fn()\",\"prototype\":{}},\"clearBit\":{\"!type\":\"fn()\",\"prototype\":{}},\"getBit\":{\"!type\":\"fn()\",\"prototype\":{}},\"getBitForPdf\":{\"!type\":\"fn()\",\"prototype\":{}},\"setBitForPdf\":{\"!type\":\"fn()\",\"prototype\":{}},\"clearBitForPdf\":{\"!type\":\"fn()\",\"prototype\":{}},\"calculateCoordinates\":{\"!type\":\"fn()\",\"prototype\":{}},\"arrayToPdfArray\":{\"!type\":\"fn()\",\"prototype\":{}}},\"addField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormEditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormPushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormRadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"AcroFormCheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormTextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormPasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormAppearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"AcroForm\":{\"ChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"ListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"ComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"EditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"Button\":{\"!type\":\"fn()\",\"prototype\":{}},\"PushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"RadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"CheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"TextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"PasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"Appearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}}},\"__addimage__\":{\"getImageFileTypeByImageData\":{\"!type\":\"fn()\",\"prototype\":{}},\"sHashCode\":{\"!type\":\"fn()\",\"prototype\":{}},\"validateStringAsBase64\":{\"!type\":\"fn()\",\"prototype\":{}},\"extractImageFromDataUrl\":{\"!type\":\"fn()\",\"prototype\":{}},\"supportsArrayBuffer\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArrayBuffer\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArrayBufferView\":{\"!type\":\"fn()\",\"prototype\":{}},\"binaryStringToUint8Array\":{\"!type\":\"fn()\",\"prototype\":{}},\"arrayBufferToBinaryString\":{\"!type\":\"fn()\",\"prototype\":{}},\"convertBase64ToBinaryString\":{\"!type\":\"fn()\",\"prototype\":{}}},\"color_spaces\":{\"DEVICE_RGB\":{\"!type\":\"string\"},\"DEVICE_GRAY\":{\"!type\":\"string\"},\"DEVICE_CMYK\":{\"!type\":\"string\"},\"CAL_GREY\":{\"!type\":\"string\"},\"CAL_RGB\":{\"!type\":\"string\"},\"LAB\":{\"!type\":\"string\"},\"ICC_BASED\":{\"!type\":\"string\"},\"INDEXED\":{\"!type\":\"string\"},\"PATTERN\":{\"!type\":\"string\"},\"SEPARATION\":{\"!type\":\"string\"},\"DEVICE_N\":{\"!type\":\"string\"}},\"decode\":{\"DCT_DECODE\":{\"!type\":\"string\"},\"FLATE_DECODE\":{\"!type\":\"string\"},\"LZW_DECODE\":{\"!type\":\"string\"},\"JPX_DECODE\":{\"!type\":\"string\"},\"JBIG2_DECODE\":{\"!type\":\"string\"},\"ASCII85_DECODE\":{\"!type\":\"string\"},\"ASCII_HEX_DECODE\":{\"!type\":\"string\"},\"RUN_LENGTH_DECODE\":{\"!type\":\"string\"},\"CCITT_FAX_DECODE\":{\"!type\":\"string\"}},\"image_compression\":{\"NONE\":{\"!type\":\"string\"},\"FAST\":{\"!type\":\"string\"},\"MEDIUM\":{\"!type\":\"string\"},\"SLOW\":{\"!type\":\"string\"}},\"addImage\":{\"!type\":\"fn()\",\"prototype\":{}},\"getImageProperties\":{\"!type\":\"fn()\",\"prototype\":{}},\"createAnnotation\":{\"!type\":\"fn()\",\"prototype\":{}},\"link\":{\"!type\":\"fn()\",\"prototype\":{}},\"textWithLink\":{\"!type\":\"fn()\",\"prototype\":{}},\"getTextWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"__arabicParser__\":{\"isInArabicSubstitutionA\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicLetter\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicEndLetter\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicAlfLetter\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasIsolatedForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasFinalForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasInitialForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasMedialForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"resolveLigatures\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicDiacritic\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCorrectForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"processArabic\":{\"!type\":\"fn()\",\"prototype\":{}}},\"processArabic\":{\"!type\":\"fn()\",\"prototype\":{}},\"autoPrint\":{\"!type\":\"fn()\",\"prototype\":{}},\"setHeaderFunction\":{\"!type\":\"fn()\",\"prototype\":{}},\"getTextDimensions\":{\"!type\":\"fn()\",\"prototype\":{}},\"cellAddPage\":{\"!type\":\"fn()\",\"prototype\":{}},\"cell\":{\"!type\":\"fn()\",\"prototype\":{}},\"table\":{\"!type\":\"fn()\",\"prototype\":{}},\"setTableHeaderRow\":{\"!type\":\"fn()\",\"prototype\":{}},\"printHeaderRow\":{\"!type\":\"fn()\",\"prototype\":{}},\"processDataByFilters\":{\"!type\":\"fn()\",\"prototype\":{}},\"loadFile\":{\"!type\":\"fn()\",\"prototype\":{}},\"loadImageFile\":{\"!type\":\"fn()\",\"prototype\":{}},\"html\":{\"!type\":\"fn()\",\"prototype\":{}},\"addJS\":{\"!type\":\"fn()\",\"prototype\":{}},\"processJPEG\":{\"!type\":\"fn()\",\"prototype\":{}},\"processPNG\":{\"!type\":\"fn()\",\"prototype\":{}},\"processGIF89A\":{\"!type\":\"fn()\",\"prototype\":{}},\"processGIF87A\":{\"!type\":\"fn()\",\"prototype\":{}},\"processBMP\":{\"!type\":\"fn()\",\"prototype\":{}},\"processWEBP\":{\"!type\":\"fn()\",\"prototype\":{}},\"processRGBA\":{\"!type\":\"fn()\",\"prototype\":{}},\"setLanguage\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCharWidthsArray\":{\"!type\":\"fn()\",\"prototype\":{}},\"getStringUnitWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"splitTextToSize\":{\"!type\":\"fn()\",\"prototype\":{}},\"__fontmetrics__\":{\"compress\":{\"!type\":\"fn()\",\"prototype\":{}},\"uncompress\":{\"!type\":\"fn()\",\"prototype\":{}}},\"addSvgAsImage\":{\"!type\":\"fn()\",\"prototype\":{}},\"putTotalPages\":{\"!type\":\"fn()\",\"prototype\":{}},\"viewerPreferences\":{\"!type\":\"fn()\",\"prototype\":{}},\"addMetadata\":{\"!type\":\"fn()\",\"prototype\":{}},\"pdfEscape16\":{\"!type\":\"fn()\",\"prototype\":{}},\"existsFileInVFS\":{\"!type\":\"fn()\",\"prototype\":{}},\"addFileToVFS\":{\"!type\":\"fn()\",\"prototype\":{}},\"getFileFromVFS\":{\"!type\":\"fn()\",\"prototype\":{}},\"TTFFont\":{\"!type\":\"fn()\",\"open\":{\"!type\":\"fn()\",\"prototype\":{}},\"prototype\":{\"parse\":{\"!type\":\"fn()\",\"prototype\":{}},\"registerTTF\":{\"!type\":\"fn()\",\"prototype\":{}},\"characterToGlyph\":{\"!type\":\"fn()\",\"prototype\":{}},\"widthOfGlyph\":{\"!type\":\"fn()\",\"prototype\":{}},\"widthOfString\":{\"!type\":\"fn()\",\"prototype\":{}},\"lineHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"PDFObject\":{\"!type\":\"fn()\",\"convert\":{\"!type\":\"fn()\",\"prototype\":{}},\"prototype\":{}}},\"version\":{\"!type\":\"string\"},\"AcroForm\":{\"ChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"ListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"ComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"EditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"Button\":{\"!type\":\"fn()\",\"prototype\":{}},\"PushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"RadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"CheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"TextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"PasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"Appearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}}},\"getPageSize\":{\"!type\":\"fn()\",\"prototype\":{}},\"prototype\":{\"__bidiEngine__\":{\"!type\":\"fn()\",\"prototype\":{}}},\"__bidiEngine__\":{\"!type\":\"fn()\",\"prototype\":{}}},\"__esModule\":{\"!type\":\"bool\"}}}"}],"actionList":[{"id":"Home_Api1","pluginType":"SAAS","pluginId":"google-sheets-plugin","unpublishedAction":{"name":"Api1","fullyQualifiedName":"Api1","datasource":{"id":"Untitled datasource 2","userPermissions":[],"name":"Untitled datasource 2","pluginId":"google-sheets-plugin","messages":[],"isValid":true},"pageId":"Home","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"formData":{"command":{"data":"FETCH_MANY"},"entityType":{"data":"ROWS"},"tableHeaderIndex":{"data":"1"},"projection":{"data":["Currency"]},"queryFormat":{"data":"ROWS"},"range":{"data":""},"where":{"data":{"condition":"AND","children":[{"condition":"LT"}]}},"pagination":{"data":{"limit":"20","offset":"0"}},"smartSubstitution":{"data":true},"sheetUrl":{"data":"https://docs.google.com/spreadsheets/d/1DLNNumIhXhbajHGAEhWfzlgixcAu259gzAOVvLtWVpA/edit"},"sheetName":{"data":"Sheet1"},"sortBy":{"data":[{"column":"","order":"Ascending"}]}}},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[]},"publishedAction":{"name":"Api1","fullyQualifiedName":"Api1","datasource":{"id":"Untitled datasource 2","userPermissions":[],"name":"Untitled datasource 2","pluginId":"google-sheets-plugin","messages":[],"isValid":true},"pageId":"Home","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"formData":{"command":{"data":"FETCH_MANY"},"entityType":{"data":"ROWS"},"tableHeaderIndex":{"data":"1"},"projection":{"data":["Currency"]},"queryFormat":{"data":"ROWS"},"range":{"data":""},"where":{"data":{"condition":"AND","children":[{"condition":"LT"}]}},"pagination":{"data":{"limit":"20","offset":"0"}},"smartSubstitution":{"data":true},"sheetUrl":{"data":"https://docs.google.com/spreadsheets/d/1DLNNumIhXhbajHGAEhWfzlgixcAu259gzAOVvLtWVpA/edit"},"sheetName":{"data":"Sheet1"},"sortBy":{"data":[{"column":"","order":"Ascending"}]}}},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[]}}],"actionCollectionList":[{"id":"Home_JSObject1","unpublishedCollection":{"name":"JSObject1","pageId":"Home","pluginId":"js-plugin","pluginType":"JS","actions":[],"archivedActions":[],"body":"export default {\n\tgenPDF: () => {\n\t\tconst doc = new jspdf.jsPDF();\n\tdoc.text('Users', 20, 20);\n\t\tdoc.table(20, 30, Table1.tableData, Table1.columnOrder, {autoSize: true});\n\t\tdownload(doc.output(), 'users_list.pdf');\n\t}\n}","variables":[],"userPermissions":[]},"publishedCollection":{"name":"JSObject1","pageId":"Home","pluginId":"js-plugin","pluginType":"JS","actions":[],"archivedActions":[],"body":"export default {\n\tgenPDF: () => {\n\t\tconst doc = new jspdf.jsPDF();\n\tdoc.text('Users', 20, 20);\n\t\tdoc.table(20, 30, Table1.tableData, Table1.columnOrder, {autoSize: true});\n\t\tdownload(doc.output(), 'users_list.pdf');\n\t}\n}","variables":[],"userPermissions":[]}},{"id":"Home_JSObject2","unpublishedCollection":{"name":"JSObject2","pageId":"Home","pluginId":"js-plugin","pluginType":"JS","actions":[],"archivedActions":[],"body":"export default {\n\tmyVar1: [],\n\tmyVar2: {},\n\tmyFun1 () {\n\t\tshowAlert(moment().daysInMonth().toString());\n\t},\n\tasync myFun2 () {\n\t\t//\tuse async-await or promises\n\t\t//\tawait storeValue('varName', 'hello world')\n\t}\n}","variables":[{"name":"myVar1","value":"[]"},{"name":"myVar2","value":"{}"}],"userPermissions":[]},"publishedCollection":{"name":"JSObject2","pageId":"Home","pluginId":"js-plugin","pluginType":"JS","actions":[],"archivedActions":[],"body":"export default {\n\tmyVar1: [],\n\tmyVar2: {},\n\tmyFun1 () {\n\t\tshowAlert(moment().daysInMonth().toString());\n\t},\n\tasync myFun2 () {\n\t\t//\tuse async-await or promises\n\t\t//\tawait storeValue('varName', 'hello world')\n\t}\n}","variables":[{"name":"myVar1","value":"[]"},{"name":"myVar2","value":"{}"}],"userPermissions":[]}}],"widgets":"{\"layoutSystemType\":\"FIXED\",\"widgets\":[{\"hierarchy\":4,\"list\":[{\"boxShadow\":\"{{appsmith.theme.boxShadow.appBoxShadow}}\",\"borderColor\":\"#E0DEDE\",\"isVisibleDownload\":true,\"topRow\":1,\"isSortable\":true,\"type\":\"TABLE_WIDGET_V2\",\"inlineEditingSaveOption\":\"ROW_LEVEL\",\"animateLoading\":true,\"dynamicBindingPathList\":[{\"key\":\"accentColor\"},{\"key\":\"borderRadius\"},{\"key\":\"boxShadow\"},{\"key\":\"tableData\"},{\"key\":\"primaryColumns.rowIndex.computedValue\"},{\"key\":\"primaryColumns.Currency.computedValue\"}],\"leftColumn\":7,\"delimiter\":\",\",\"customIsLoadingValue\":\"\",\"defaultSelectedRowIndex\":0,\"flexVerticalAlignment\":\"start\",\"accentColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"isVisibleFilters\":false,\"isVisible\":true,\"enableClientSideSearch\":true,\"version\":2,\"totalRecordsCount\":0,\"isLoading\":false,\"childStylesheet\":{\"button\":{\"buttonColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"borderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\",\"boxShadow\":\"none\"},\"menuButton\":{\"menuColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"borderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\",\"boxShadow\":\"none\"},\"iconButton\":{\"buttonColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"borderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\",\"boxShadow\":\"none\"},\"editActions\":{\"saveButtonColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"saveBorderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\",\"discardButtonColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"discardBorderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\"}},\"customIsLoading\":false,\"borderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\",\"columnUpdatedAt\":1731311884410,\"defaultSelectedRowIndices\":[0],\"needsErrorInfo\":false,\"mobileBottomRow\":62,\"widgetName\":\"Table1\",\"defaultPageSize\":0,\"columnOrder\":[\"rowIndex\",\"Currency\"],\"dynamicPropertyPathList\":[{\"key\":\"tableData\"}],\"bottomRow\":34,\"columnWidthMap\":{},\"parentRowSpace\":10,\"mobileRightColumn\":41,\"parentColumnSpace\":30.5625,\"dynamicTriggerPathList\":[],\"borderWidth\":\"1\",\"primaryColumns\":{\"rowIndex\":{\"allowCellWrapping\":false,\"allowSameOptionsInNewRow\":true,\"index\":1,\"width\":150,\"originalId\":\"rowIndex\",\"id\":\"rowIndex\",\"alias\":\"rowIndex\",\"horizontalAlignment\":\"LEFT\",\"verticalAlignment\":\"CENTER\",\"columnType\":\"number\",\"textColor\":\"\",\"textSize\":\"0.875rem\",\"fontStyle\":\"\",\"enableFilter\":true,\"enableSort\":true,\"isVisible\":true,\"isDisabled\":false,\"isCellEditable\":false,\"isEditable\":false,\"isCellVisible\":true,\"isDerived\":false,\"label\":\"rowIndex\",\"isSaveVisible\":true,\"isDiscardVisible\":true,\"computedValue\":\"{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\\\"rowIndex\\\"]))}}\",\"sticky\":\"\",\"validation\":{},\"currencyCode\":\"USD\",\"decimals\":0,\"thousandSeparator\":true,\"notation\":\"standard\",\"cellBackground\":\"\"},\"Currency\":{\"allowCellWrapping\":false,\"allowSameOptionsInNewRow\":true,\"index\":9,\"width\":150,\"originalId\":\"Currency\",\"id\":\"Currency\",\"alias\":\"Currency\",\"horizontalAlignment\":\"LEFT\",\"verticalAlignment\":\"CENTER\",\"columnType\":\"number\",\"textColor\":\"\",\"textSize\":\"0.875rem\",\"fontStyle\":\"\",\"enableFilter\":true,\"enableSort\":true,\"isVisible\":true,\"isDisabled\":false,\"isCellEditable\":false,\"isEditable\":false,\"isCellVisible\":true,\"isDerived\":false,\"label\":\"Currency\",\"isSaveVisible\":true,\"isDiscardVisible\":true,\"computedValue\":\"{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\\\"Currency\\\"]))}}\",\"sticky\":\"\",\"validation\":{},\"currencyCode\":\"USD\",\"decimals\":0,\"thousandSeparator\":true,\"notation\":\"standard\",\"cellBackground\":\"\"}},\"key\":\"iwmm57yz9c\",\"canFreezeColumn\":true,\"rightColumn\":41,\"textSize\":\"0.875rem\",\"widgetId\":\"6auq1k5wf7\",\"minWidth\":450,\"tableData\":\"{{Api1.data}}\",\"label\":\"Data\",\"searchKey\":\"\",\"parentId\":\"0\",\"renderMode\":\"CANVAS\",\"mobileTopRow\":34,\"horizontalAlignment\":\"LEFT\",\"isVisibleSearch\":true,\"responsiveBehavior\":\"fill\",\"mobileLeftColumn\":7,\"isVisiblePagination\":true,\"verticalAlignment\":\"CENTER\"}],\"parentId\":\"0\",\"widgetId\":\"6auq1k5wf7\",\"widgetPositionInfo\":null},{\"hierarchy\":4,\"list\":[{\"resetFormOnClick\":false,\"needsErrorInfo\":false,\"boxShadow\":\"none\",\"mobileBottomRow\":79,\"widgetName\":\"Button1\",\"onClick\":\"{{JSObject1.genPDF();}}\",\"buttonColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"topRow\":42,\"bottomRow\":46,\"parentRowSpace\":10,\"type\":\"BUTTON_WIDGET\",\"mobileRightColumn\":38,\"animateLoading\":true,\"parentColumnSpace\":30.5625,\"dynamicTriggerPathList\":[{\"key\":\"onClick\"}],\"leftColumn\":22,\"dynamicBindingPathList\":[{\"key\":\"buttonColor\"},{\"key\":\"borderRadius\"}],\"text\":\"Submit\",\"isDisabled\":false,\"key\":\"dlbj0skcwr\",\"rightColumn\":38,\"isDefaultClickDisabled\":true,\"widgetId\":\"vdsey2khz4\",\"minWidth\":120,\"isVisible\":true,\"recaptchaType\":\"V3\",\"version\":1,\"parentId\":\"0\",\"renderMode\":\"CANVAS\",\"isLoading\":false,\"mobileTopRow\":75,\"responsiveBehavior\":\"hug\",\"disabledWhenInvalid\":false,\"borderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\",\"mobileLeftColumn\":22,\"buttonVariant\":\"PRIMARY\",\"placement\":\"CENTER\"}],\"parentId\":\"0\",\"widgetId\":\"vdsey2khz4\",\"widgetPositionInfo\":null}],\"flexLayers\":[]}"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Configure the Google Sheets datasource URL
The datasource URL is empty, which will prevent the Google Sheets plugin from functioning correctly.
🛠️ Refactor suggestion
Add error handling to PDF generation
The PDF generation in JSObject1 lacks try-catch blocks and error handling.
export default {
genPDF: () => {
+ try {
const doc = new jspdf.jsPDF();
doc.text('Users', 20, 20);
doc.table(20, 30, Table1.tableData, Table1.columnOrder, {autoSize: true});
download(doc.output(), 'users_list.pdf');
+ } catch (error) {
+ showAlert('Failed to generate PDF: ' + error.message);
+ }
}
}
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
{"artifactJsonType":"APPLICATION","clientSchemaVersion":1,"serverSchemaVersion":11,"datasourceList":[{"datasourceConfiguration":{"url":""},"name":"Untitled datasource 2","pluginId":"google-sheets-plugin","messages":[],"isAutoGenerated":false,"isValid":true}],"customJSLibList":[{"userPermissions":[],"name":"jsonwebtoken","uidString":"jsonwebtoken_/libraries/jsonwebtoken@8.5.1.js","accessor":["jsonwebtoken"],"url":"/libraries/jsonwebtoken@8.5.1.js","version":"8.5.1","defs":"{\"!name\":\"LIB/jsonwebtoken\",\"jsonwebtoken\":{\"decode\":{\"!type\":\"fn()\",\"prototype\":{}},\"verify\":{\"!type\":\"fn()\",\"prototype\":{}},\"sign\":{\"!type\":\"fn()\",\"prototype\":{}},\"JsonWebTokenError\":{\"!type\":\"fn()\",\"prototype\":{\"message\":{\"!type\":\"string\"},\"toString\":{\"!type\":\"fn()\"}}},\"NotBeforeError\":{\"!type\":\"fn()\",\"prototype\":{}},\"TokenExpiredError\":{\"!type\":\"fn()\",\"prototype\":{}}}}"},{"userPermissions":[],"name":"jspdf","uidString":"jspdf_https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js","accessor":["jspdf"],"url":"https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js","version":"2.5.1","defs":"{\"!name\":\"LIB/jspdf\",\"jspdf\":{\"AcroForm\":{\"ChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"ListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"ComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"EditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"Button\":{\"!type\":\"fn()\",\"prototype\":{}},\"PushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"RadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"CheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"TextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"PasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"Appearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}}},\"AcroFormAppearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"AcroFormButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormCheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormEditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormPasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormPushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormRadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"AcroFormTextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"GState\":{\"!type\":\"fn()\",\"prototype\":{\"equals\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"ShadingPattern\":{\"!type\":\"fn()\",\"prototype\":{}},\"TilingPattern\":{\"!type\":\"fn()\",\"prototype\":{}},\"default\":{\"!type\":\"fn()\",\"API\":{\"events\":{\"0\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"1\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"2\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"3\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"4\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"5\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"6\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"7\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"8\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"9\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"10\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"11\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"12\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"13\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"__acroform__\":{\"setBit\":{\"!type\":\"fn()\",\"prototype\":{}},\"clearBit\":{\"!type\":\"fn()\",\"prototype\":{}},\"getBit\":{\"!type\":\"fn()\",\"prototype\":{}},\"getBitForPdf\":{\"!type\":\"fn()\",\"prototype\":{}},\"setBitForPdf\":{\"!type\":\"fn()\",\"prototype\":{}},\"clearBitForPdf\":{\"!type\":\"fn()\",\"prototype\":{}},\"calculateCoordinates\":{\"!type\":\"fn()\",\"prototype\":{}},\"arrayToPdfArray\":{\"!type\":\"fn()\",\"prototype\":{}}},\"addField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormEditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormPushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormRadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"AcroFormCheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormTextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormPasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormAppearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"AcroForm\":{\"ChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"ListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"ComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"EditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"Button\":{\"!type\":\"fn()\",\"prototype\":{}},\"PushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"RadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"CheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"TextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"PasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"Appearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}}},\"__addimage__\":{\"getImageFileTypeByImageData\":{\"!type\":\"fn()\",\"prototype\":{}},\"sHashCode\":{\"!type\":\"fn()\",\"prototype\":{}},\"validateStringAsBase64\":{\"!type\":\"fn()\",\"prototype\":{}},\"extractImageFromDataUrl\":{\"!type\":\"fn()\",\"prototype\":{}},\"supportsArrayBuffer\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArrayBuffer\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArrayBufferView\":{\"!type\":\"fn()\",\"prototype\":{}},\"binaryStringToUint8Array\":{\"!type\":\"fn()\",\"prototype\":{}},\"arrayBufferToBinaryString\":{\"!type\":\"fn()\",\"prototype\":{}},\"convertBase64ToBinaryString\":{\"!type\":\"fn()\",\"prototype\":{}}},\"color_spaces\":{\"DEVICE_RGB\":{\"!type\":\"string\"},\"DEVICE_GRAY\":{\"!type\":\"string\"},\"DEVICE_CMYK\":{\"!type\":\"string\"},\"CAL_GREY\":{\"!type\":\"string\"},\"CAL_RGB\":{\"!type\":\"string\"},\"LAB\":{\"!type\":\"string\"},\"ICC_BASED\":{\"!type\":\"string\"},\"INDEXED\":{\"!type\":\"string\"},\"PATTERN\":{\"!type\":\"string\"},\"SEPARATION\":{\"!type\":\"string\"},\"DEVICE_N\":{\"!type\":\"string\"}},\"decode\":{\"DCT_DECODE\":{\"!type\":\"string\"},\"FLATE_DECODE\":{\"!type\":\"string\"},\"LZW_DECODE\":{\"!type\":\"string\"},\"JPX_DECODE\":{\"!type\":\"string\"},\"JBIG2_DECODE\":{\"!type\":\"string\"},\"ASCII85_DECODE\":{\"!type\":\"string\"},\"ASCII_HEX_DECODE\":{\"!type\":\"string\"},\"RUN_LENGTH_DECODE\":{\"!type\":\"string\"},\"CCITT_FAX_DECODE\":{\"!type\":\"string\"}},\"image_compression\":{\"NONE\":{\"!type\":\"string\"},\"FAST\":{\"!type\":\"string\"},\"MEDIUM\":{\"!type\":\"string\"},\"SLOW\":{\"!type\":\"string\"}},\"addImage\":{\"!type\":\"fn()\",\"prototype\":{}},\"getImageProperties\":{\"!type\":\"fn()\",\"prototype\":{}},\"createAnnotation\":{\"!type\":\"fn()\",\"prototype\":{}},\"link\":{\"!type\":\"fn()\",\"prototype\":{}},\"textWithLink\":{\"!type\":\"fn()\",\"prototype\":{}},\"getTextWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"__arabicParser__\":{\"isInArabicSubstitutionA\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicLetter\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicEndLetter\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicAlfLetter\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasIsolatedForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasFinalForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasInitialForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasMedialForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"resolveLigatures\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicDiacritic\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCorrectForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"processArabic\":{\"!type\":\"fn()\",\"prototype\":{}}},\"processArabic\":{\"!type\":\"fn()\",\"prototype\":{}},\"autoPrint\":{\"!type\":\"fn()\",\"prototype\":{}},\"setHeaderFunction\":{\"!type\":\"fn()\",\"prototype\":{}},\"getTextDimensions\":{\"!type\":\"fn()\",\"prototype\":{}},\"cellAddPage\":{\"!type\":\"fn()\",\"prototype\":{}},\"cell\":{\"!type\":\"fn()\",\"prototype\":{}},\"table\":{\"!type\":\"fn()\",\"prototype\":{}},\"setTableHeaderRow\":{\"!type\":\"fn()\",\"prototype\":{}},\"printHeaderRow\":{\"!type\":\"fn()\",\"prototype\":{}},\"processDataByFilters\":{\"!type\":\"fn()\",\"prototype\":{}},\"loadFile\":{\"!type\":\"fn()\",\"prototype\":{}},\"loadImageFile\":{\"!type\":\"fn()\",\"prototype\":{}},\"html\":{\"!type\":\"fn()\",\"prototype\":{}},\"addJS\":{\"!type\":\"fn()\",\"prototype\":{}},\"processJPEG\":{\"!type\":\"fn()\",\"prototype\":{}},\"processPNG\":{\"!type\":\"fn()\",\"prototype\":{}},\"processGIF89A\":{\"!type\":\"fn()\",\"prototype\":{}},\"processGIF87A\":{\"!type\":\"fn()\",\"prototype\":{}},\"processBMP\":{\"!type\":\"fn()\",\"prototype\":{}},\"processWEBP\":{\"!type\":\"fn()\",\"prototype\":{}},\"processRGBA\":{\"!type\":\"fn()\",\"prototype\":{}},\"setLanguage\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCharWidthsArray\":{\"!type\":\"fn()\",\"prototype\":{}},\"getStringUnitWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"splitTextToSize\":{\"!type\":\"fn()\",\"prototype\":{}},\"__fontmetrics__\":{\"compress\":{\"!type\":\"fn()\",\"prototype\":{}},\"uncompress\":{\"!type\":\"fn()\",\"prototype\":{}}},\"addSvgAsImage\":{\"!type\":\"fn()\",\"prototype\":{}},\"putTotalPages\":{\"!type\":\"fn()\",\"prototype\":{}},\"viewerPreferences\":{\"!type\":\"fn()\",\"prototype\":{}},\"addMetadata\":{\"!type\":\"fn()\",\"prototype\":{}},\"pdfEscape16\":{\"!type\":\"fn()\",\"prototype\":{}},\"existsFileInVFS\":{\"!type\":\"fn()\",\"prototype\":{}},\"addFileToVFS\":{\"!type\":\"fn()\",\"prototype\":{}},\"getFileFromVFS\":{\"!type\":\"fn()\",\"prototype\":{}},\"TTFFont\":{\"!type\":\"fn()\",\"open\":{\"!type\":\"fn()\",\"prototype\":{}},\"prototype\":{\"parse\":{\"!type\":\"fn()\",\"prototype\":{}},\"registerTTF\":{\"!type\":\"fn()\",\"prototype\":{}},\"characterToGlyph\":{\"!type\":\"fn()\",\"prototype\":{}},\"widthOfGlyph\":{\"!type\":\"fn()\",\"prototype\":{}},\"widthOfString\":{\"!type\":\"fn()\",\"prototype\":{}},\"lineHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"PDFObject\":{\"!type\":\"fn()\",\"convert\":{\"!type\":\"fn()\",\"prototype\":{}},\"prototype\":{}}},\"version\":{\"!type\":\"string\"},\"AcroForm\":{\"ChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"ListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"ComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"EditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"Button\":{\"!type\":\"fn()\",\"prototype\":{}},\"PushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"RadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"CheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"TextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"PasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"Appearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}}},\"getPageSize\":{\"!type\":\"fn()\",\"prototype\":{}},\"prototype\":{\"__bidiEngine__\":{\"!type\":\"fn()\",\"prototype\":{}}},\"__bidiEngine__\":{\"!type\":\"fn()\",\"prototype\":{}}},\"jsPDF\":{\"!type\":\"fn()\",\"API\":{\"events\":{\"0\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"1\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"2\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"3\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"4\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"5\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"6\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"7\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"8\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"9\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"10\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"11\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"12\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"13\":{\"0\":{\"!type\":\"string\"},\"1\":{\"!type\":\"fn()\",\"prototype\":{}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"toString\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"Symbol(src)_1.z6tyubfuv9\":{\"!type\":\"string\"}},\"toLocaleString\":{\"!type\":\"fn()\"},\"join\":{\"!type\":\"fn()\"},\"reverse\":{\"!type\":\"fn()\"},\"sort\":{\"!type\":\"fn()\"},\"push\":{\"!type\":\"fn()\"},\"pop\":{\"!type\":\"fn()\"},\"shift\":{\"!type\":\"fn()\"},\"unshift\":{\"!type\":\"fn()\"},\"splice\":{\"!type\":\"fn()\"},\"concat\":{\"!type\":\"fn()\"},\"slice\":{\"!type\":\"fn()\"},\"lastIndexOf\":{\"!type\":\"fn()\"},\"indexOf\":{\"!type\":\"fn()\"},\"forEach\":{\"!type\":\"fn()\"},\"map\":{\"!type\":\"fn()\"},\"filter\":{\"!type\":\"fn()\"},\"reduce\":{\"!type\":\"fn()\"},\"reduceRight\":{\"!type\":\"fn()\"},\"some\":{\"!type\":\"fn()\"},\"every\":{\"!type\":\"fn()\"},\"find\":{\"!type\":\"fn()\"},\"findIndex\":{\"!type\":\"fn()\"},\"copyWithin\":{\"!type\":\"fn()\"},\"fill\":{\"!type\":\"fn()\"},\"entries\":{\"!type\":\"fn()\"},\"keys\":{\"!type\":\"fn()\"},\"values\":{\"!type\":\"fn()\"},\"includes\":{\"!type\":\"fn()\"},\"flatMap\":{\"!type\":\"fn()\"},\"flat\":{\"!type\":\"fn()\"},\"at\":{\"!type\":\"fn()\"},\"findLast\":{\"!type\":\"fn()\"},\"findLastIndex\":{\"!type\":\"fn()\"},\"toReversed\":{\"!type\":\"fn()\"},\"toSorted\":{\"!type\":\"fn()\"},\"toSpliced\":{\"!type\":\"fn()\"},\"with\":{\"!type\":\"fn()\"},\"flatten\":{\"!type\":\"fn()\",\"Symbol(src)_1.nlgkvika8m\":{\"!type\":\"string\"},\"prototype\":{}}},\"__acroform__\":{\"setBit\":{\"!type\":\"fn()\",\"prototype\":{}},\"clearBit\":{\"!type\":\"fn()\",\"prototype\":{}},\"getBit\":{\"!type\":\"fn()\",\"prototype\":{}},\"getBitForPdf\":{\"!type\":\"fn()\",\"prototype\":{}},\"setBitForPdf\":{\"!type\":\"fn()\",\"prototype\":{}},\"clearBitForPdf\":{\"!type\":\"fn()\",\"prototype\":{}},\"calculateCoordinates\":{\"!type\":\"fn()\",\"prototype\":{}},\"arrayToPdfArray\":{\"!type\":\"fn()\",\"prototype\":{}}},\"addField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormEditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormPushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormRadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"AcroFormCheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormTextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormPasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"AcroFormAppearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"AcroForm\":{\"ChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"ListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"ComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"EditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"Button\":{\"!type\":\"fn()\",\"prototype\":{}},\"PushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"RadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"CheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"TextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"PasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"Appearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}}},\"__addimage__\":{\"getImageFileTypeByImageData\":{\"!type\":\"fn()\",\"prototype\":{}},\"sHashCode\":{\"!type\":\"fn()\",\"prototype\":{}},\"validateStringAsBase64\":{\"!type\":\"fn()\",\"prototype\":{}},\"extractImageFromDataUrl\":{\"!type\":\"fn()\",\"prototype\":{}},\"supportsArrayBuffer\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArrayBuffer\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArrayBufferView\":{\"!type\":\"fn()\",\"prototype\":{}},\"binaryStringToUint8Array\":{\"!type\":\"fn()\",\"prototype\":{}},\"arrayBufferToBinaryString\":{\"!type\":\"fn()\",\"prototype\":{}},\"convertBase64ToBinaryString\":{\"!type\":\"fn()\",\"prototype\":{}}},\"color_spaces\":{\"DEVICE_RGB\":{\"!type\":\"string\"},\"DEVICE_GRAY\":{\"!type\":\"string\"},\"DEVICE_CMYK\":{\"!type\":\"string\"},\"CAL_GREY\":{\"!type\":\"string\"},\"CAL_RGB\":{\"!type\":\"string\"},\"LAB\":{\"!type\":\"string\"},\"ICC_BASED\":{\"!type\":\"string\"},\"INDEXED\":{\"!type\":\"string\"},\"PATTERN\":{\"!type\":\"string\"},\"SEPARATION\":{\"!type\":\"string\"},\"DEVICE_N\":{\"!type\":\"string\"}},\"decode\":{\"DCT_DECODE\":{\"!type\":\"string\"},\"FLATE_DECODE\":{\"!type\":\"string\"},\"LZW_DECODE\":{\"!type\":\"string\"},\"JPX_DECODE\":{\"!type\":\"string\"},\"JBIG2_DECODE\":{\"!type\":\"string\"},\"ASCII85_DECODE\":{\"!type\":\"string\"},\"ASCII_HEX_DECODE\":{\"!type\":\"string\"},\"RUN_LENGTH_DECODE\":{\"!type\":\"string\"},\"CCITT_FAX_DECODE\":{\"!type\":\"string\"}},\"image_compression\":{\"NONE\":{\"!type\":\"string\"},\"FAST\":{\"!type\":\"string\"},\"MEDIUM\":{\"!type\":\"string\"},\"SLOW\":{\"!type\":\"string\"}},\"addImage\":{\"!type\":\"fn()\",\"prototype\":{}},\"getImageProperties\":{\"!type\":\"fn()\",\"prototype\":{}},\"createAnnotation\":{\"!type\":\"fn()\",\"prototype\":{}},\"link\":{\"!type\":\"fn()\",\"prototype\":{}},\"textWithLink\":{\"!type\":\"fn()\",\"prototype\":{}},\"getTextWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"__arabicParser__\":{\"isInArabicSubstitutionA\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicLetter\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicEndLetter\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicAlfLetter\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasIsolatedForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasFinalForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasInitialForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"arabicLetterHasMedialForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"resolveLigatures\":{\"!type\":\"fn()\",\"prototype\":{}},\"isArabicDiacritic\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCorrectForm\":{\"!type\":\"fn()\",\"prototype\":{}},\"processArabic\":{\"!type\":\"fn()\",\"prototype\":{}}},\"processArabic\":{\"!type\":\"fn()\",\"prototype\":{}},\"autoPrint\":{\"!type\":\"fn()\",\"prototype\":{}},\"setHeaderFunction\":{\"!type\":\"fn()\",\"prototype\":{}},\"getTextDimensions\":{\"!type\":\"fn()\",\"prototype\":{}},\"cellAddPage\":{\"!type\":\"fn()\",\"prototype\":{}},\"cell\":{\"!type\":\"fn()\",\"prototype\":{}},\"table\":{\"!type\":\"fn()\",\"prototype\":{}},\"setTableHeaderRow\":{\"!type\":\"fn()\",\"prototype\":{}},\"printHeaderRow\":{\"!type\":\"fn()\",\"prototype\":{}},\"processDataByFilters\":{\"!type\":\"fn()\",\"prototype\":{}},\"loadFile\":{\"!type\":\"fn()\",\"prototype\":{}},\"loadImageFile\":{\"!type\":\"fn()\",\"prototype\":{}},\"html\":{\"!type\":\"fn()\",\"prototype\":{}},\"addJS\":{\"!type\":\"fn()\",\"prototype\":{}},\"processJPEG\":{\"!type\":\"fn()\",\"prototype\":{}},\"processPNG\":{\"!type\":\"fn()\",\"prototype\":{}},\"processGIF89A\":{\"!type\":\"fn()\",\"prototype\":{}},\"processGIF87A\":{\"!type\":\"fn()\",\"prototype\":{}},\"processBMP\":{\"!type\":\"fn()\",\"prototype\":{}},\"processWEBP\":{\"!type\":\"fn()\",\"prototype\":{}},\"processRGBA\":{\"!type\":\"fn()\",\"prototype\":{}},\"setLanguage\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCharWidthsArray\":{\"!type\":\"fn()\",\"prototype\":{}},\"getStringUnitWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"splitTextToSize\":{\"!type\":\"fn()\",\"prototype\":{}},\"__fontmetrics__\":{\"compress\":{\"!type\":\"fn()\",\"prototype\":{}},\"uncompress\":{\"!type\":\"fn()\",\"prototype\":{}}},\"addSvgAsImage\":{\"!type\":\"fn()\",\"prototype\":{}},\"putTotalPages\":{\"!type\":\"fn()\",\"prototype\":{}},\"viewerPreferences\":{\"!type\":\"fn()\",\"prototype\":{}},\"addMetadata\":{\"!type\":\"fn()\",\"prototype\":{}},\"pdfEscape16\":{\"!type\":\"fn()\",\"prototype\":{}},\"existsFileInVFS\":{\"!type\":\"fn()\",\"prototype\":{}},\"addFileToVFS\":{\"!type\":\"fn()\",\"prototype\":{}},\"getFileFromVFS\":{\"!type\":\"fn()\",\"prototype\":{}},\"TTFFont\":{\"!type\":\"fn()\",\"open\":{\"!type\":\"fn()\",\"prototype\":{}},\"prototype\":{\"parse\":{\"!type\":\"fn()\",\"prototype\":{}},\"registerTTF\":{\"!type\":\"fn()\",\"prototype\":{}},\"characterToGlyph\":{\"!type\":\"fn()\",\"prototype\":{}},\"widthOfGlyph\":{\"!type\":\"fn()\",\"prototype\":{}},\"widthOfString\":{\"!type\":\"fn()\",\"prototype\":{}},\"lineHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"PDFObject\":{\"!type\":\"fn()\",\"convert\":{\"!type\":\"fn()\",\"prototype\":{}},\"prototype\":{}}},\"version\":{\"!type\":\"string\"},\"AcroForm\":{\"ChoiceField\":{\"!type\":\"fn()\",\"prototype\":{}},\"ListBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"ComboBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"EditBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"Button\":{\"!type\":\"fn()\",\"prototype\":{}},\"PushButton\":{\"!type\":\"fn()\",\"prototype\":{}},\"RadioButton\":{\"!type\":\"fn()\",\"prototype\":{\"setAppearance\":{\"!type\":\"fn()\",\"prototype\":{}},\"createOption\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"CheckBox\":{\"!type\":\"fn()\",\"prototype\":{}},\"TextField\":{\"!type\":\"fn()\",\"prototype\":{}},\"PasswordField\":{\"!type\":\"fn()\",\"prototype\":{}},\"Appearance\":{\"CheckBox\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"RadioButton\":{\"Circle\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}},\"Cross\":{\"createAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"getCA\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesNormal\":{\"!type\":\"fn()\",\"prototype\":{}},\"YesPushDown\":{\"!type\":\"fn()\",\"prototype\":{}},\"OffPushDown\":{\"!type\":\"fn()\",\"prototype\":{}}}},\"createDefaultAppearanceStream\":{\"!type\":\"fn()\",\"prototype\":{}},\"internal\":{\"Bezier_C\":{\"!type\":\"number\"},\"calculateCross\":{\"!type\":\"fn()\",\"prototype\":{}},\"getWidth\":{\"!type\":\"fn()\",\"prototype\":{}},\"getHeight\":{\"!type\":\"fn()\",\"prototype\":{}}}}},\"getPageSize\":{\"!type\":\"fn()\",\"prototype\":{}},\"prototype\":{\"__bidiEngine__\":{\"!type\":\"fn()\",\"prototype\":{}}},\"__bidiEngine__\":{\"!type\":\"fn()\",\"prototype\":{}}},\"__esModule\":{\"!type\":\"bool\"}}}"}],"actionList":[{"id":"Home_Api1","pluginType":"SAAS","pluginId":"google-sheets-plugin","unpublishedAction":{"name":"Api1","fullyQualifiedName":"Api1","datasource":{"id":"Untitled datasource 2","userPermissions":[],"name":"Untitled datasource 2","pluginId":"google-sheets-plugin","messages":[],"isValid":true},"pageId":"Home","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"formData":{"command":{"data":"FETCH_MANY"},"entityType":{"data":"ROWS"},"tableHeaderIndex":{"data":"1"},"projection":{"data":["Currency"]},"queryFormat":{"data":"ROWS"},"range":{"data":""},"where":{"data":{"condition":"AND","children":[{"condition":"LT"}]}},"pagination":{"data":{"limit":"20","offset":"0"}},"smartSubstitution":{"data":true},"sheetUrl":{"data":"https://docs.google.com/spreadsheets/d/1DLNNumIhXhbajHGAEhWfzlgixcAu259gzAOVvLtWVpA/edit"},"sheetName":{"data":"Sheet1"},"sortBy":{"data":[{"column":"","order":"Ascending"}]}}},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[]},"publishedAction":{"name":"Api1","fullyQualifiedName":"Api1","datasource":{"id":"Untitled datasource 2","userPermissions":[],"name":"Untitled datasource 2","pluginId":"google-sheets-plugin","messages":[],"isValid":true},"pageId":"Home","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"formData":{"command":{"data":"FETCH_MANY"},"entityType":{"data":"ROWS"},"tableHeaderIndex":{"data":"1"},"projection":{"data":["Currency"]},"queryFormat":{"data":"ROWS"},"range":{"data":""},"where":{"data":{"condition":"AND","children":[{"condition":"LT"}]}},"pagination":{"data":{"limit":"20","offset":"0"}},"smartSubstitution":{"data":true},"sheetUrl":{"data":"https://docs.google.com/spreadsheets/d/1DLNNumIhXhbajHGAEhWfzlgixcAu259gzAOVvLtWVpA/edit"},"sheetName":{"data":"Sheet1"},"sortBy":{"data":[{"column":"","order":"Ascending"}]}}},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[]}}],"actionCollectionList":[{"id":"Home_JSObject1","unpublishedCollection":{"name":"JSObject1","pageId":"Home","pluginId":"js-plugin","pluginType":"JS","actions":[],"archivedActions":[],"body":"export default {\n\tgenPDF: () => {\n\t\tconst doc = new jspdf.jsPDF();\n\tdoc.text('Users', 20, 20);\n\t\tdoc.table(20, 30, Table1.tableData, Table1.columnOrder, {autoSize: true});\n\t\tdownload(doc.output(), 'users_list.pdf');\n\t}\n}","variables":[],"userPermissions":[]},"publishedCollection":{"name":"JSObject1","pageId":"Home","pluginId":"js-plugin","pluginType":"JS","actions":[],"archivedActions":[],"body":"export default {\n\tgenPDF: () => {\n\t\tconst doc = new jspdf.jsPDF();\n\tdoc.text('Users', 20, 20);\n\t\tdoc.table(20, 30, Table1.tableData, Table1.columnOrder, {autoSize: true});\n\t\tdownload(doc.output(), 'users_list.pdf');\n\t}\n}","variables":[],"userPermissions":[]}},{"id":"Home_JSObject2","unpublishedCollection":{"name":"JSObject2","pageId":"Home","pluginId":"js-plugin","pluginType":"JS","actions":[],"archivedActions":[],"body":"export default {\n\tmyVar1: [],\n\tmyVar2: {},\n\tmyFun1 () {\n\t\tshowAlert(moment().daysInMonth().toString());\n\t},\n\tasync myFun2 () {\n\t\t//\tuse async-await or promises\n\t\t//\tawait storeValue('varName', 'hello world')\n\t}\n}","variables":[{"name":"myVar1","value":"[]"},{"name":"myVar2","value":"{}"}],"userPermissions":[]},"publishedCollection":{"name":"JSObject2","pageId":"Home","pluginId":"js-plugin","pluginType":"JS","actions":[],"archivedActions":[],"body":"export default {\n\tmyVar1: [],\n\tmyVar2: {},\n\tmyFun1 () {\n\t\tshowAlert(moment().daysInMonth().toString());\n\t},\n\tasync myFun2 () {\n\t\t//\tuse async-await or promises\n\t\t//\tawait storeValue('varName', 'hello world')\n\t}\n}","variables":[{"name":"myVar1","value":"[]"},{"name":"myVar2","value":"{}"}],"userPermissions":[]}}],"widgets":"{\"layoutSystemType\":\"FIXED\",\"widgets\":[{\"hierarchy\":4,\"list\":[{\"boxShadow\":\"{{appsmith.theme.boxShadow.appBoxShadow}}\",\"borderColor\":\"#E0DEDE\",\"isVisibleDownload\":true,\"topRow\":1,\"isSortable\":true,\"type\":\"TABLE_WIDGET_V2\",\"inlineEditingSaveOption\":\"ROW_LEVEL\",\"animateLoading\":true,\"dynamicBindingPathList\":[{\"key\":\"accentColor\"},{\"key\":\"borderRadius\"},{\"key\":\"boxShadow\"},{\"key\":\"tableData\"},{\"key\":\"primaryColumns.rowIndex.computedValue\"},{\"key\":\"primaryColumns.Currency.computedValue\"}],\"leftColumn\":7,\"delimiter\":\",\",\"customIsLoadingValue\":\"\",\"defaultSelectedRowIndex\":0,\"flexVerticalAlignment\":\"start\",\"accentColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"isVisibleFilters\":false,\"isVisible\":true,\"enableClientSideSearch\":true,\"version\":2,\"totalRecordsCount\":0,\"isLoading\":false,\"childStylesheet\":{\"button\":{\"buttonColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"borderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\",\"boxShadow\":\"none\"},\"menuButton\":{\"menuColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"borderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\",\"boxShadow\":\"none\"},\"iconButton\":{\"buttonColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"borderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\",\"boxShadow\":\"none\"},\"editActions\":{\"saveButtonColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"saveBorderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\",\"discardButtonColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"discardBorderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\"}},\"customIsLoading\":false,\"borderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\",\"columnUpdatedAt\":1731311884410,\"defaultSelectedRowIndices\":[0],\"needsErrorInfo\":false,\"mobileBottomRow\":62,\"widgetName\":\"Table1\",\"defaultPageSize\":0,\"columnOrder\":[\"rowIndex\",\"Currency\"],\"dynamicPropertyPathList\":[{\"key\":\"tableData\"}],\"bottomRow\":34,\"columnWidthMap\":{},\"parentRowSpace\":10,\"mobileRightColumn\":41,\"parentColumnSpace\":30.5625,\"dynamicTriggerPathList\":[],\"borderWidth\":\"1\",\"primaryColumns\":{\"rowIndex\":{\"allowCellWrapping\":false,\"allowSameOptionsInNewRow\":true,\"index\":1,\"width\":150,\"originalId\":\"rowIndex\",\"id\":\"rowIndex\",\"alias\":\"rowIndex\",\"horizontalAlignment\":\"LEFT\",\"verticalAlignment\":\"CENTER\",\"columnType\":\"number\",\"textColor\":\"\",\"textSize\":\"0.875rem\",\"fontStyle\":\"\",\"enableFilter\":true,\"enableSort\":true,\"isVisible\":true,\"isDisabled\":false,\"isCellEditable\":false,\"isEditable\":false,\"isCellVisible\":true,\"isDerived\":false,\"label\":\"rowIndex\",\"isSaveVisible\":true,\"isDiscardVisible\":true,\"computedValue\":\"{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\\\"rowIndex\\\"]))}}\",\"sticky\":\"\",\"validation\":{},\"currencyCode\":\"USD\",\"decimals\":0,\"thousandSeparator\":true,\"notation\":\"standard\",\"cellBackground\":\"\"},\"Currency\":{\"allowCellWrapping\":false,\"allowSameOptionsInNewRow\":true,\"index\":9,\"width\":150,\"originalId\":\"Currency\",\"id\":\"Currency\",\"alias\":\"Currency\",\"horizontalAlignment\":\"LEFT\",\"verticalAlignment\":\"CENTER\",\"columnType\":\"number\",\"textColor\":\"\",\"textSize\":\"0.875rem\",\"fontStyle\":\"\",\"enableFilter\":true,\"enableSort\":true,\"isVisible\":true,\"isDisabled\":false,\"isCellEditable\":false,\"isEditable\":false,\"isCellVisible\":true,\"isDerived\":false,\"label\":\"Currency\",\"isSaveVisible\":true,\"isDiscardVisible\":true,\"computedValue\":\"{{Table1.processedTableData.map((currentRow, currentIndex) => ( currentRow[\\\"Currency\\\"]))}}\",\"sticky\":\"\",\"validation\":{},\"currencyCode\":\"USD\",\"decimals\":0,\"thousandSeparator\":true,\"notation\":\"standard\",\"cellBackground\":\"\"}},\"key\":\"iwmm57yz9c\",\"canFreezeColumn\":true,\"rightColumn\":41,\"textSize\":\"0.875rem\",\"widgetId\":\"6auq1k5wf7\",\"minWidth\":450,\"tableData\":\"{{Api1.data}}\",\"label\":\"Data\",\"searchKey\":\"\",\"parentId\":\"0\",\"renderMode\":\"CANVAS\",\"mobileTopRow\":34,\"horizontalAlignment\":\"LEFT\",\"isVisibleSearch\":true,\"responsiveBehavior\":\"fill\",\"mobileLeftColumn\":7,\"isVisiblePagination\":true,\"verticalAlignment\":\"CENTER\"}],\"parentId\":\"0\",\"widgetId\":\"6auq1k5wf7\",\"widgetPositionInfo\":null},{\"hierarchy\":4,\"list\":[{\"resetFormOnClick\":false,\"needsErrorInfo\":false,\"boxShadow\":\"none\",\"mobileBottomRow\":79,\"widgetName\":\"Button1\",\"onClick\":\"{{JSObject1.genPDF();}}\",\"buttonColor\":\"{{appsmith.theme.colors.primaryColor}}\",\"topRow\":42,\"bottomRow\":46,\"parentRowSpace\":10,\"type\":\"BUTTON_WIDGET\",\"mobileRightColumn\":38,\"animateLoading\":true,\"parentColumnSpace\":30.5625,\"dynamicTriggerPathList\":[{\"key\":\"onClick\"}],\"leftColumn\":22,\"dynamicBindingPathList\":[{\"key\":\"buttonColor\"},{\"key\":\"borderRadius\"}],\"text\":\"Submit\",\"isDisabled\":false,\"key\":\"dlbj0skcwr\",\"rightColumn\":38,\"isDefaultClickDisabled\":true,\"widgetId\":\"vdsey2khz4\",\"minWidth\":120,\"isVisible\":true,\"recaptchaType\":\"V3\",\"version\":1,\"parentId\":\"0\",\"renderMode\":\"CANVAS\",\"isLoading\":false,\"mobileTopRow\":75,\"responsiveBehavior\":\"hug\",\"disabledWhenInvalid\":false,\"borderRadius\":\"{{appsmith.theme.borderRadius.appBorderRadius}}\",\"mobileLeftColumn\":22,\"buttonVariant\":\"PRIMARY\",\"placement\":\"CENTER\"}],\"parentId\":\"0\",\"widgetId\":\"vdsey2khz4\",\"widgetPositionInfo\":null}],\"flexLayers\":[]}"} | |
export default { | |
genPDF: () => { | |
try { | |
const doc = new jspdf.jsPDF(); | |
doc.text('Users', 20, 20); | |
doc.table(20, 30, Table1.tableData, Table1.columnOrder, {autoSize: true}); | |
download(doc.output(), 'users_list.pdf'); | |
} catch (error) { | |
showAlert('Failed to generate PDF: ' + error.message); | |
} | |
} | |
} |
/ci-test-limit-count run_count=25 |
Tests running at: https://github.com/appsmithorg/appsmith/actions/runs/11985117369. |
Workflow run: https://github.com/appsmithorg/appsmith/actions/runs/11985117369.
|
/ci-test-limit |
Tests running at: https://github.com/appsmithorg/appsmith/actions/runs/11988423349. |
Workflow run: https://github.com/appsmithorg/appsmith/actions/runs/11988423349. |
Adding tests for partial import/export
To be done into a new app
To be done into a new page
GitConnected App and importApp testing
https://docs.google.com/spreadsheets/d/1Vq5vRUyAMv2npPv4j41omzZrYcRUb8LEOhNVu_O4OE8/edit?gid=428365096#gid=428365096
/ok-to-test tags="@tag.All"
Summary by CodeRabbit
Release Notes
New Features
Improvements
These updates aim to improve the reliability and functionality of the import/export processes within the application.
Tip
🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
Workflow run: https://github.com/appsmithorg/appsmith/actions/runs/12035486686
Commit: 5c3d72b
Cypress dashboard.
Tags:
@tag.All
Spec:
Wed, 27 Nov 2024 06:19:10 UTC