arelle-release 2.17.1__py3-none-any.whl → 2.37.71__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- arelle/Aspect.py +6 -3
- arelle/BetaFeatures.py +3 -0
- arelle/Cntlr.py +117 -413
- arelle/CntlrCmdLine.py +364 -227
- arelle/CntlrQuickBooks.py +4 -2
- arelle/CntlrWebMain.py +179 -119
- arelle/CntlrWinMain.py +342 -124
- arelle/DialogAbout.py +1 -1
- arelle/DialogArcroleGroup.py +1 -1
- arelle/DialogFind.py +1 -1
- arelle/DialogFormulaParameters.py +2 -2
- arelle/DialogLanguage.py +45 -36
- arelle/DialogNewFactItem.py +1 -1
- arelle/DialogOpenArchive.py +30 -34
- arelle/DialogPackageManager.py +11 -8
- arelle/DialogPluginManager.py +43 -89
- arelle/DialogRssWatch.py +2 -2
- arelle/DialogURL.py +1 -1
- arelle/DialogUserPassword.py +1 -1
- arelle/DisclosureSystem.py +69 -1
- arelle/ErrorManager.py +321 -0
- arelle/FileSource.py +201 -99
- arelle/FunctionFn.py +44 -5
- arelle/FunctionIxt.py +16 -13
- arelle/FunctionUtil.py +1 -1
- arelle/FunctionXfi.py +68 -24
- arelle/FunctionXs.py +1 -1
- arelle/HtmlUtil.py +5 -4
- arelle/LeiUtil.py +63 -43
- arelle/LinkbaseType.py +94 -0
- arelle/LocalViewer.py +8 -2
- arelle/Locale.py +239 -79
- arelle/ModelDocument.py +180 -48
- arelle/ModelDtsObject.py +32 -27
- arelle/ModelFormulaObject.py +14 -6
- arelle/ModelInstanceObject.py +43 -14
- arelle/ModelManager.py +6 -1
- arelle/ModelObject.py +12 -8
- arelle/ModelObjectFactory.py +18 -2
- arelle/ModelRelationshipSet.py +46 -3
- arelle/ModelRenderingObject.py +899 -951
- arelle/ModelRssItem.py +2 -4
- arelle/ModelTestcaseObject.py +41 -4
- arelle/ModelValue.py +42 -14
- arelle/ModelVersReport.py +1 -1
- arelle/ModelXbrl.py +133 -273
- arelle/PackageManager.py +202 -176
- arelle/PluginManager.py +551 -239
- arelle/PluginUtils.py +54 -0
- arelle/PrototypeInstanceObject.py +53 -12
- arelle/PythonUtil.py +166 -25
- arelle/RuntimeOptions.py +32 -18
- arelle/SocketUtils.py +3 -0
- arelle/SystemInfo.py +1 -1
- arelle/TkTableWrapper.py +33 -5
- arelle/UITkTable.py +27 -21
- arelle/Updater.py +7 -3
- arelle/UrlUtil.py +6 -2
- arelle/Validate.py +596 -402
- arelle/ValidateDuplicateFacts.py +584 -0
- arelle/ValidateFileSource.py +38 -0
- arelle/ValidateFilingText.py +46 -29
- arelle/ValidateInfoset.py +104 -32
- arelle/ValidateUtr.py +31 -4
- arelle/ValidateXbrl.py +144 -120
- arelle/ValidateXbrlCalcs.py +51 -66
- arelle/ValidateXbrlDTS.py +98 -29
- arelle/Version.py +2 -7
- arelle/ViewFile.py +2 -0
- arelle/ViewFileDTS.py +7 -2
- arelle/ViewFileFactList.py +1 -1
- arelle/ViewFileFactTable.py +4 -4
- arelle/ViewFileRelationshipSet.py +36 -19
- arelle/ViewFileRenderedGrid.py +164 -753
- arelle/ViewFileRenderedLayout.py +174 -0
- arelle/ViewFileRenderedStructure.py +108 -0
- arelle/ViewWinDTS.py +4 -1
- arelle/ViewWinFactList.py +1 -1
- arelle/ViewWinFactTable.py +1 -1
- arelle/ViewWinRelationshipSet.py +14 -8
- arelle/ViewWinRenderedGrid.py +397 -287
- arelle/ViewWinRssFeed.py +4 -0
- arelle/ViewWinTree.py +15 -9
- arelle/ViewWinXml.py +1 -1
- arelle/WebCache.py +510 -272
- arelle/XbrlConst.py +202 -196
- arelle/XbrlUtil.py +2 -1
- arelle/XhtmlValidate.py +9 -23
- arelle/XmlUtil.py +24 -19
- arelle/XmlValidate.py +95 -67
- arelle/XmlValidateParticles.py +4 -4
- arelle/_version.py +33 -3
- arelle/api/Session.py +183 -0
- arelle/config/creationSoftwareNames.json +24 -10
- arelle/config/disclosuresystems.xml +1 -1
- arelle/config/disclosuresystems.xsd +3 -0
- arelle/config/sbr-text-formatting.xsd +737 -0
- arelle/conformance/CSVTestcaseLoader.py +102 -0
- arelle/formula/FactAspectsCache.py +10 -4
- arelle/formula/ValidateFormula.py +82 -194
- arelle/formula/XPathContext.py +42 -28
- arelle/formula/XPathParser.py +15 -9
- arelle/locale/ar_EG/LC_MESSAGES/ar_EG.po +3 -4
- arelle/locale/messages.pot +1 -2
- arelle/locale/ru/LC_MESSAGES/ru.po +2 -2
- arelle/logging/formatters/LogFormatter.py +47 -0
- arelle/logging/handlers/LogHandlerWithXml.py +94 -0
- arelle/logging/handlers/LogToBufferHandler.py +20 -0
- arelle/logging/handlers/LogToPrintHandler.py +41 -0
- arelle/logging/handlers/LogToXmlHandler.py +244 -0
- arelle/logging/handlers/StructuredMessageLogHandler.py +74 -0
- arelle/model/CommentBase.py +3 -0
- arelle/model/ElementBase.py +3 -0
- arelle/model/PIBase.py +3 -0
- arelle/model/__init__.py +3 -0
- arelle/oim/Load.py +2869 -0
- arelle/oim/Validate.py +155 -0
- arelle/oim/xml/Save.py +21 -0
- arelle/packages/PackageConst.py +7 -0
- arelle/packages/PackageType.py +13 -0
- arelle/packages/PackageUtils.py +22 -0
- arelle/packages/PackageValidation.py +200 -0
- arelle/packages/report/DetectReportPackage.py +13 -0
- arelle/packages/report/ReportPackage.py +265 -0
- arelle/packages/report/ReportPackageConst.py +79 -0
- arelle/packages/report/ReportPackageValidator.py +207 -0
- arelle/plugin/EdgarRendererAllReports.py +12 -12
- arelle/plugin/OimTaxonomy/ModelValueMore.py +15 -0
- arelle/plugin/OimTaxonomy/ValidateDTS.py +484 -0
- arelle/plugin/OimTaxonomy/ViewXbrlTxmyObj.py +239 -0
- arelle/plugin/OimTaxonomy/XbrlAbstract.py +16 -0
- arelle/plugin/OimTaxonomy/XbrlConcept.py +68 -0
- arelle/plugin/OimTaxonomy/XbrlConst.py +261 -0
- arelle/plugin/OimTaxonomy/XbrlCube.py +91 -0
- arelle/plugin/OimTaxonomy/XbrlDimension.py +38 -0
- arelle/plugin/OimTaxonomy/XbrlDts.py +152 -0
- arelle/plugin/OimTaxonomy/XbrlEntity.py +16 -0
- arelle/plugin/OimTaxonomy/XbrlGroup.py +22 -0
- arelle/plugin/OimTaxonomy/XbrlImportedTaxonomy.py +22 -0
- arelle/plugin/OimTaxonomy/XbrlLabel.py +31 -0
- arelle/plugin/OimTaxonomy/XbrlNetwork.py +100 -0
- arelle/plugin/OimTaxonomy/XbrlProperty.py +28 -0
- arelle/plugin/OimTaxonomy/XbrlReference.py +33 -0
- arelle/plugin/OimTaxonomy/XbrlReport.py +24 -0
- arelle/plugin/OimTaxonomy/XbrlTableTemplate.py +35 -0
- arelle/plugin/OimTaxonomy/XbrlTaxonomy.py +93 -0
- arelle/plugin/OimTaxonomy/XbrlTaxonomyObject.py +154 -0
- arelle/plugin/OimTaxonomy/XbrlTransform.py +17 -0
- arelle/plugin/OimTaxonomy/XbrlTypes.py +23 -0
- arelle/plugin/OimTaxonomy/XbrlUnit.py +17 -0
- arelle/plugin/OimTaxonomy/__init__.py +1037 -0
- arelle/plugin/OimTaxonomy/resources/iso4217.json +4479 -0
- arelle/plugin/OimTaxonomy/resources/oim-taxonomy-schema.json +935 -0
- arelle/plugin/OimTaxonomy/resources/ref.json +333 -0
- arelle/plugin/OimTaxonomy/resources/transform-types.json +2481 -0
- arelle/plugin/OimTaxonomy/resources/types.json +727 -0
- arelle/plugin/OimTaxonomy/resources/utr.json +3046 -0
- arelle/plugin/OimTaxonomy/resources/xbrlSpec.json +1082 -0
- arelle/plugin/formulaLoader.py +3 -3
- arelle/plugin/formulaSaver.py +4 -4
- arelle/plugin/inlineXbrlDocumentSet.py +331 -102
- arelle/plugin/internet/proxyNTLM/HTTPNtlmAuthHandler.py +1 -1
- arelle/plugin/loadFromExcel.py +13 -10
- arelle/plugin/loadFromOIM.py +16 -3096
- arelle/plugin/logging/saveMessages.py +1 -1
- arelle/plugin/saveHtmlEBAtables.py +293 -213
- arelle/plugin/saveLoadableOIM.py +652 -361
- arelle/plugin/saveOIMTaxonomy.py +311 -0
- arelle/plugin/streamingExtensions.py +1 -1
- arelle/plugin/systemInfo.py +46 -0
- arelle/plugin/transforms/tester.py +4 -4
- arelle/plugin/validate/CIPC/Const.py +18 -0
- arelle/plugin/validate/CIPC/__init__.py +34 -13
- arelle/plugin/validate/DBA/DisclosureSystems.py +12 -0
- arelle/plugin/validate/DBA/PluginValidationDataExtension.py +165 -0
- arelle/plugin/validate/DBA/ValidationPluginExtension.py +545 -0
- arelle/plugin/validate/DBA/__init__.py +49 -0
- arelle/plugin/validate/DBA/resources/config.xml +21 -0
- arelle/plugin/validate/DBA/rules/__init__.py +323 -0
- arelle/plugin/validate/DBA/rules/fr.py +1377 -0
- arelle/plugin/validate/DBA/rules/tc.py +45 -0
- arelle/plugin/validate/DBA/rules/th.py +172 -0
- arelle/plugin/validate/DBA/rules/tm.py +351 -0
- arelle/plugin/validate/DBA/rules/tr.py +373 -0
- arelle/plugin/validate/EBA/__init__.py +11 -12
- arelle/plugin/validate/EDINET/Constants.py +208 -0
- arelle/plugin/validate/EDINET/ContextRequirement.py +58 -0
- arelle/plugin/validate/EDINET/ControllerPluginData.py +298 -0
- arelle/plugin/validate/EDINET/CoverItemRequirements.py +42 -0
- arelle/plugin/validate/EDINET/DeiRequirements.py +118 -0
- arelle/plugin/validate/EDINET/DisclosureSystems.py +1 -0
- arelle/plugin/validate/EDINET/FilingFormat.py +275 -0
- arelle/plugin/validate/EDINET/FormType.py +134 -0
- arelle/plugin/validate/EDINET/ManifestInstance.py +236 -0
- arelle/plugin/validate/EDINET/PluginValidationDataExtension.py +640 -0
- arelle/plugin/validate/EDINET/ReportFolderType.py +162 -0
- arelle/plugin/validate/EDINET/Statement.py +139 -0
- arelle/plugin/validate/EDINET/TableOfContentsBuilder.py +493 -0
- arelle/plugin/validate/EDINET/UploadContents.py +48 -0
- arelle/plugin/validate/EDINET/ValidationPluginExtension.py +64 -0
- arelle/plugin/validate/EDINET/__init__.py +109 -0
- arelle/plugin/validate/EDINET/resources/config.xml +22 -0
- arelle/plugin/validate/EDINET/resources/cover-item-requirements.json +793 -0
- arelle/plugin/validate/EDINET/resources/dei-requirements.csv +27 -0
- arelle/plugin/validate/EDINET/resources/edinet-taxonomies.xml +62 -0
- arelle/plugin/validate/EDINET/rules/contexts.py +547 -0
- arelle/plugin/validate/EDINET/rules/edinet.py +1991 -0
- arelle/plugin/validate/EDINET/rules/frta.py +301 -0
- arelle/plugin/validate/EDINET/rules/gfm.py +2394 -0
- arelle/plugin/validate/EDINET/rules/manifests.py +88 -0
- arelle/plugin/validate/EDINET/rules/upload.py +1370 -0
- arelle/plugin/validate/ESEF/Const.py +16 -75
- arelle/plugin/validate/ESEF/Dimensions.py +2 -2
- arelle/plugin/validate/ESEF/ESEF_2021/DTS.py +6 -1
- arelle/plugin/validate/ESEF/ESEF_2021/Image.py +7 -4
- arelle/plugin/validate/ESEF/ESEF_2021/ValidateXbrlFinally.py +80 -57
- arelle/plugin/validate/ESEF/ESEF_Current/DTS.py +60 -22
- arelle/plugin/validate/ESEF/ESEF_Current/ValidateXbrlFinally.py +272 -133
- arelle/plugin/validate/ESEF/Util.py +5 -19
- arelle/plugin/validate/ESEF/__init__.py +61 -46
- arelle/plugin/validate/ESEF/resources/authority-validations.json +120 -10
- arelle/plugin/validate/ESEF/resources/config.xml +44 -3
- arelle/plugin/validate/FERC/__init__.py +31 -18
- arelle/plugin/validate/FERC/config.xml +18 -18
- arelle/plugin/validate/NL/DisclosureSystems.py +19 -3
- arelle/plugin/validate/NL/PluginValidationDataExtension.py +710 -7
- arelle/plugin/validate/NL/ValidationPluginExtension.py +117 -12
- arelle/plugin/validate/NL/__init__.py +21 -10
- arelle/plugin/validate/NL/resources/config.xml +27 -6
- arelle/plugin/validate/NL/rules/br_kvk.py +81 -21
- arelle/plugin/validate/NL/rules/fg_nl.py +292 -0
- arelle/plugin/validate/NL/rules/fr_kvk.py +60 -7
- arelle/plugin/validate/NL/rules/fr_nl.py +705 -24
- arelle/plugin/validate/NL/rules/nl_kvk.py +2182 -0
- arelle/plugin/validate/ROS/DisclosureSystems.py +1 -0
- arelle/plugin/validate/ROS/PluginValidationDataExtension.py +109 -0
- arelle/plugin/validate/ROS/ValidationPluginExtension.py +27 -0
- arelle/plugin/validate/ROS/__init__.py +28 -341
- arelle/plugin/validate/ROS/resources/config.xml +20 -0
- arelle/plugin/validate/ROS/rules/__init__.py +56 -0
- arelle/plugin/validate/ROS/rules/ros.py +393 -0
- arelle/plugin/validate/UK/ValidateUK.py +1372 -0
- arelle/plugin/validate/{HMRC → UK}/__init__.py +195 -189
- arelle/plugin/validate/{HMRC → UK}/config.xml +1 -1
- arelle/plugin/xbrlDB/SqlDb.py +1 -1
- arelle/plugin/xbrlDB/XbrlOpenSqlDB.py +5 -5
- arelle/plugin/xbrlDB/XbrlPublicPostgresDB.py +1 -1
- arelle/plugin/xbrlDB/XbrlSemanticJsonDB.py +1 -1
- arelle/plugin/xbrlDB/XbrlSemanticRdfDB.py +1 -1
- arelle/plugin/xbrlDB/__init__.py +4 -1
- arelle/{RenderingEvaluator.py → rendering/RenderingEvaluator.py} +120 -99
- arelle/rendering/RenderingLayout.py +476 -0
- arelle/rendering/RenderingResolution.py +814 -0
- arelle/resources/cache/http/www.eurofiling.info/eu/fr/xbrl/ext/filing-indicators.xsd +20 -0
- arelle/resources/cache/http/www.w3.org/2001/03/xml.xsd +117 -0
- arelle/resources/cache/http/www.w3.org/2001/XMLSchema.xsd +2534 -0
- arelle/resources/cache/http/www.w3.org/2001/xml.xsd +287 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xbrl-instance-2003-12-31.xsd +779 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xbrl-linkbase-2003-12-31.xsd +486 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xl-2003-12-31.xsd +251 -0
- arelle/resources/cache/http/www.xbrl.org/2003/xlink-2003-12-31.xsd +121 -0
- arelle/resources/cache/http/www.xbrl.org/2004/ref-2004-08-10.xsd +129 -0
- arelle/resources/cache/http/www.xbrl.org/2005/xbrldt-2005.xsd +53 -0
- arelle/resources/cache/http/www.xbrl.org/2006/ref-2006-02-27.xsd +120 -0
- arelle/resources/cache/http/www.xbrl.org/2006/xbrldi-2006.xsd +41 -0
- arelle/resources/cache/http/www.xbrl.org/2008/boolean-filter.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/concept-filter.xsd +127 -0
- arelle/resources/cache/http/www.xbrl.org/2008/conformance.xsd +116 -0
- arelle/resources/cache/http/www.xbrl.org/2008/conformanceFunction.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/consistency-assertion.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2008/dimension-filter.xsd +86 -0
- arelle/resources/cache/http/www.xbrl.org/2008/entity-filter.xsd +92 -0
- arelle/resources/cache/http/www.xbrl.org/2008/existence-assertion.xsd +44 -0
- arelle/resources/cache/http/www.xbrl.org/2008/formula.xsd +261 -0
- arelle/resources/cache/http/www.xbrl.org/2008/function.xsd +90 -0
- arelle/resources/cache/http/www.xbrl.org/2008/general-filter.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2008/generic-label.xsd +80 -0
- arelle/resources/cache/http/www.xbrl.org/2008/generic-link.xsd +81 -0
- arelle/resources/cache/http/www.xbrl.org/2008/generic-reference.xsd +63 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xbrl-instance-2003-12-31-ixmod.xsd +788 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xbrl-linkbase-2003-12-31-ixmod.xsd +488 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xl-2003-12-31.xsd +248 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xlink-2003-12-31.xsd +117 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xframes-1.xsd +166 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-applet-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-attribs-1.xsd +72 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-base-1.xsd +36 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic-form-1.xsd +195 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic-table-1.xsd +169 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-model-1.xsd +376 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-module-redefines-1.xsd +61 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-modules-1.xsd +259 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-bdo-1.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkphras-1.xsd +161 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkpres-1.xsd +37 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkstruct-1.xsd +49 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-charent-1.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-copyright-1.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-csismap-1.xsd +96 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-datatypes-1.xsd +128 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-edit-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-events-1.xsd +130 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-form-1.xsd +326 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-frames-1.xsd +113 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-framework-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-hypertext-1.xsd +47 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-iframe-1.xsd +68 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-image-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlphras-1.xsd +163 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlpres-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlstruct-1.xsd +50 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlstyle-1.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-legacy-1.xsd +97 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-link-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-list-1.xsd +99 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-meta-1.xsd +42 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-misc-1.xsd +441 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-nameident-1.xsd +63 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-notations-1.xsd +69 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-object-1.xsd +76 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-param-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-pres-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ruby-1.xsd +171 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ruby-basic-1.xsd +89 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-script-1.xsd +70 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ssismap-1.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-struct-1.xsd +112 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-style-1.xsd +52 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-table-1.xsd +272 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-target-1.xsd +53 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-text-1.xsd +67 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-model-1.xsd +677 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-module-redefines-1.xsd +335 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-modules-1.xsd +528 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11.xsd +104 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml2.xsd +21 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-2.xsd +74 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-attribs-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-attribs-2.xsd +75 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-copyright-1.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-copyright-2.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-handlers-2.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-definitions.xsd +225 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-model.xsd +681 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-modules.xsd +535 -0
- arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0.xsd +40 -0
- arelle/resources/cache/http/www.xbrl.org/2008/match-filter.xsd +94 -0
- arelle/resources/cache/http/www.xbrl.org/2008/period-filter.xsd +86 -0
- arelle/resources/cache/http/www.xbrl.org/2008/registry.xsd +145 -0
- arelle/resources/cache/http/www.xbrl.org/2008/relative-filter.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2008/segment-scenario-filter.xsd +41 -0
- arelle/resources/cache/http/www.xbrl.org/2008/tuple-filter.xsd +83 -0
- arelle/resources/cache/http/www.xbrl.org/2008/unit-filter.xsd +58 -0
- arelle/resources/cache/http/www.xbrl.org/2008/validation.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/2008/value-assertion.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2008/value-filter.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2008/variable.xsd +240 -0
- arelle/resources/cache/http/www.xbrl.org/2010/aspect-cover-filter.xsd +67 -0
- arelle/resources/cache/http/www.xbrl.org/2010/concept-relation-filter.xsd +108 -0
- arelle/resources/cache/http/www.xbrl.org/2010/custom-function-implementation.xsd +71 -0
- arelle/resources/cache/http/www.xbrl.org/2010/generic-message.xsd +68 -0
- arelle/resources/cache/http/www.xbrl.org/2010/validation-message.xsd +50 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xbrl-instance-2003-12-31-ixmod.xsd +788 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xbrl-linkbase-2003-12-31-ixmod.xsd +488 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xl-2003-12-31.xsd +248 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xlink-2003-12-31.xsd +117 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xframes-1.xsd +166 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-applet-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-attribs-1.xsd +72 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-base-1.xsd +36 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic-form-1.xsd +195 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic-table-1.xsd +169 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-model-1.xsd +376 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-module-redefines-1.xsd +61 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-modules-1.xsd +259 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-bdo-1.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkphras-1.xsd +161 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkpres-1.xsd +37 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkstruct-1.xsd +49 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-charent-1.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-copyright-1.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-csismap-1.xsd +96 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-datatypes-1.xsd +128 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-edit-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-events-1.xsd +130 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-form-1.xsd +326 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-frames-1.xsd +113 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-framework-1.xsd +66 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-hypertext-1.xsd +47 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-iframe-1.xsd +68 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-image-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlphras-1.xsd +163 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlpres-1.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlstruct-1.xsd +50 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlstyle-1.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-legacy-1.xsd +97 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-link-1.xsd +45 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-list-1.xsd +99 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-meta-1.xsd +42 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-misc-1.xsd +441 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-nameident-1.xsd +63 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-notations-1.xsd +69 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-object-1.xsd +76 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-param-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-pres-1.xsd +51 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ruby-1.xsd +171 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ruby-basic-1.xsd +89 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-script-1.xsd +70 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ssismap-1.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-struct-1.xsd +112 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-style-1.xsd +52 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-table-1.xsd +272 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-target-1.xsd +53 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-text-1.xsd +67 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-model-1.xsd +677 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-module-redefines-1.xsd +335 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-modules-1.xsd +528 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11.xsd +104 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml2.xsd +21 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-2.xsd +74 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-attribs-1.xsd +73 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-attribs-2.xsd +75 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-copyright-1.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-copyright-2.xsd +34 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-handlers-2.xsd +98 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-definitions.xsd +252 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-model.xsd +681 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-modules.xsd +535 -0
- arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1.xsd +40 -0
- arelle/resources/cache/http/www.xbrl.org/2013/match-filter.xsd +94 -0
- arelle/resources/cache/http/www.xbrl.org/2013/preferred-label.xsd +12 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-base.xsd +142 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-concept-details.xsd +143 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-concept-use.xsd +64 -0
- arelle/resources/cache/http/www.xbrl.org/2013/versioning-dimensions.xsd +162 -0
- arelle/resources/cache/http/www.xbrl.org/2014/extensible-enumerations.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/2014/table.xsd +356 -0
- arelle/resources/cache/http/www.xbrl.org/2014/tablemodel.xsd +156 -0
- arelle/resources/cache/http/www.xbrl.org/2016/assertion-severity.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/2016/severities.xml +21 -0
- arelle/resources/cache/http/www.xbrl.org/2016/taxonomy-package-catalog.xsd +38 -0
- arelle/resources/cache/http/www.xbrl.org/2016/taxonomy-package.xsd +154 -0
- arelle/resources/cache/http/www.xbrl.org/2022/assertion-severity.xsd +43 -0
- arelle/resources/cache/http/www.xbrl.org/2022/severities.xml +21 -0
- arelle/resources/cache/http/www.xbrl.org/dtr/type/nonNumeric-2009-12-16.xsd +76 -0
- arelle/resources/cache/http/www.xbrl.org/dtr/type/numeric-2009-12-16.xsd +78 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/accounting-arcrole-2023-01-04.xsd +39 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/deprecated-2009-12-16.xsd +29 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/esma-arcrole-2018-11-21.xsd +14 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/factExplanatory-2009-12-16.xsd +13 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/jpfr-arcrole-2007-11-07.xsd +27 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/parent-child-2013-09-19.xsd +12 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/deprecated-2009-12-16.xsd +17 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/jpfr-role-2007-11-07.xsd +47 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/negated-2008-03-31.xsd +30 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/negated-2009-12-16.xsd +33 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/negative-2009-12-16.xsd +25 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/net-2009-12-16.xsd +13 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/positive-2009-12-16.xsd +25 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/property-2022-09-28.xsd +15 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/reference-2009-12-16.xsd +21 -0
- arelle/resources/cache/http/www.xbrl.org/lrr/role/restated-2006-02-21.xsd +19 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2012-01-30/utr.xml +4543 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2012-10-31/utr.xml +4510 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2012-11-30/utr.xml +4567 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2013-02-28/utr.xml +5180 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2013-05-17/utr.xml +5349 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2016-08-10/utr.xml +5363 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2017-07-12/utr.xml +6164 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2021-02-16/utr.xml +6370 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2021-12-08/utr.xml +6493 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2022-02-16/utr.xml +6551 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2022-07-20/utr.xml +6638 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2023-12-20/utr.xml +6680 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2024-01-31/utr.xml +6680 -0
- arelle/resources/cache/http/www.xbrl.org/utr/2024-10-22/utr.xml +6693 -0
- arelle/resources/cache/http/www.xbrl.org/utr/utr.xml +6693 -0
- arelle/resources/cache/https/www.xbrl.org/2005/conformance.xsd +87 -0
- arelle/resources/cache/https/www.xbrl.org/2020/extensible-enumerations-2.0.xsd +51 -0
- arelle/resources/cache/https/www.xbrl.org/2023/calculation-1.1.xsd +27 -0
- arelle/resources/cache/https/www.xbrl.org/dtr/type/2020-01-21/types.xsd +812 -0
- arelle/resources/cache/https/www.xbrl.org/dtr/type/2022-03-31/types.xsd +847 -0
- arelle/resources/cache/https/www.xbrl.org/dtr/type/2024-01-31/types.xsd +897 -0
- arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators-def.xml +68 -0
- arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators-label.xml +84 -0
- arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators.xsd +67 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/README.txt +149 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/html/tkTable.html +2039 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/libTktable2.11.so +0 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/license.txt +51 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/pkgIndex.tcl +3 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/tkTable.tcl +825 -0
- arelle/resources/libs/Tktable2.11/linux-x86_64/tktable.py +674 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/README.txt +149 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/html/tkTable.html +2039 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/libTktable2.11.dylib +0 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/license.txt +51 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/pkgIndex.tcl +2 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/tkTable.tcl +825 -0
- arelle/resources/libs/Tktable2.11/macos-arm64/tktable.py +674 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/README.txt +149 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/html/tkTable.html +2039 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/libTktable2.11.dylib +0 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/license.txt +51 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/pkgIndex.tcl +2 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/tkTable.tcl +825 -0
- arelle/resources/libs/Tktable2.11/macos-x86_64/tktable.py +674 -0
- arelle/resources/libs/Tktable2.11/win-x86_64/Tktable.dll +0 -0
- arelle/resources/libs/Tktable2.11/win-x86_64/pkgIndex.tcl +2 -0
- arelle/resources/libs/Tktable2.11/win-x86_64/tkTable.tcl +825 -0
- arelle/typing.py +9 -4
- arelle/utils/Contexts.py +38 -0
- arelle/utils/EntryPointDetection.py +139 -0
- arelle/utils/Equivalence.py +22 -0
- arelle/utils/{validate/PluginValidationData.py → PluginData.py} +5 -2
- arelle/utils/PluginHooks.py +256 -5
- arelle/utils/Units.py +36 -0
- arelle/utils/validate/Decorator.py +5 -3
- arelle/utils/validate/DetectScriptsInXhtml.py +99 -0
- arelle/utils/validate/ESEFImage.py +283 -0
- arelle/utils/validate/Validation.py +9 -1
- arelle/utils/validate/ValidationPlugin.py +74 -11
- arelle/utils/validate/ValidationUtil.py +55 -0
- arelle/webserver/bottle.py +5 -4424
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/METADATA +51 -42
- arelle_release-2.37.71.dist-info/RECORD +697 -0
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/WHEEL +1 -1
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info/licenses}/LICENSE.md +1 -4
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/top_level.txt +0 -1
- arelle/DialogOpenTaxonomyPackage.py +0 -1
- arelle/RenderingResolver.py +0 -624
- arelle/examples/.pydevproject +0 -5
- arelle/examples/CustomLogger.py +0 -43
- arelle/examples/LoadEFMvalidate.py +0 -32
- arelle/examples/LoadSavePreLbCsv.py +0 -26
- arelle/examples/LoadValidate.cs +0 -31
- arelle/examples/LoadValidate.py +0 -36
- arelle/examples/LoadValidateCmdLine.java +0 -69
- arelle/examples/LoadValidatePostedZip.java +0 -57
- arelle/examples/LoadValidateWebService.java +0 -34
- arelle/examples/SaveTableToExelle.py +0 -140
- arelle/examples/TR3toTR4.py +0 -88
- arelle/examples/plugin/bigInstance.py +0 -394
- arelle/examples/plugin/cmdWebServerExtension.py +0 -42
- arelle/examples/plugin/crashTest.py +0 -38
- arelle/examples/plugin/formulaSuiteConverter.py +0 -212
- arelle/examples/plugin/functionsCustom.py +0 -59
- arelle/examples/plugin/hello_dolly.py +0 -64
- arelle/examples/plugin/hello_i18n.pot +0 -26
- arelle/examples/plugin/hello_i18n.py +0 -32
- arelle/examples/plugin/importTestChild1.py +0 -21
- arelle/examples/plugin/importTestChild2.py +0 -22
- arelle/examples/plugin/importTestGrandchild1.py +0 -21
- arelle/examples/plugin/importTestGrandchild2.py +0 -21
- arelle/examples/plugin/importTestImported1.py +0 -23
- arelle/examples/plugin/importTestImported11.py +0 -22
- arelle/examples/plugin/importTestParent.py +0 -48
- arelle/examples/plugin/locale/fr/LC_MESSAGES/hello_i18n.po +0 -25
- arelle/examples/plugin/packagedImportTest/__init__.py +0 -47
- arelle/examples/plugin/packagedImportTest/importTestChild1.py +0 -21
- arelle/examples/plugin/packagedImportTest/importTestChild2.py +0 -22
- arelle/examples/plugin/packagedImportTest/importTestGrandchild1.py +0 -21
- arelle/examples/plugin/packagedImportTest/importTestGrandchild2.py +0 -21
- arelle/examples/plugin/packagedImportTest/importTestImported1.py +0 -24
- arelle/examples/plugin/packagedImportTest/importTestImported11.py +0 -21
- arelle/examples/plugin/packagedImportTest/subdir/importTestImported111.py +0 -21
- arelle/examples/plugin/packagedImportTest/subdir/subsubdir/importTestImported1111.py +0 -21
- arelle/examples/plugin/sakaCalendar.py +0 -215
- arelle/examples/plugin/saveInstanceInfoset.py +0 -121
- arelle/examples/plugin/streamingExtensions.py +0 -335
- arelle/examples/plugin/testcaseCalc11ValidateSetup.py +0 -32
- arelle/examples/plugin/testcaseIxExpectedHtmlFixup.py +0 -45
- arelle/examples/plugin/updateTableLB.py +0 -242
- arelle/examples/plugin/validate/XYZ/DisclosureSystems.py +0 -2
- arelle/examples/plugin/validate/XYZ/PluginValidationDataExtension.py +0 -10
- arelle/examples/plugin/validate/XYZ/ValidationPluginExtension.py +0 -49
- arelle/examples/plugin/validate/XYZ/__init__.py +0 -75
- arelle/examples/plugin/validate/XYZ/resources/config.xml +0 -16
- arelle/examples/plugin/validate/XYZ/rules/rules01.py +0 -109
- arelle/examples/plugin/validate/XYZ/rules/rules02.py +0 -58
- arelle/examples/plugin/validateSchemaLxml.py +0 -156
- arelle/examples/plugin/validateTableInfoset.py +0 -52
- arelle/examples/us-gaap-dei-docType-extraction-frm.xml +0 -90
- arelle/examples/us-gaap-dei-ratio-cash-frm.xml +0 -150
- arelle/plugin/functionsXmlCreation.py +0 -106
- arelle/plugin/instanceInfo.py +0 -306
- arelle/plugin/loadFromOIM-2018.py +0 -1282
- arelle/plugin/objectmaker.py +0 -285
- arelle/plugin/sphinx/FormulaGenerator.py +0 -823
- arelle/plugin/sphinx/SphinxContext.py +0 -404
- arelle/plugin/sphinx/SphinxEvaluator.py +0 -783
- arelle/plugin/sphinx/SphinxMethods.py +0 -1287
- arelle/plugin/sphinx/SphinxParser.py +0 -1093
- arelle/plugin/sphinx/SphinxValidator.py +0 -163
- arelle/plugin/sphinx/US-GAAP Ratios Example.xsr +0 -52
- arelle/plugin/sphinx/__init__.py +0 -285
- arelle/plugin/transforms/SEC/__init__.py +0 -308
- arelle/plugin/transforms/SEC/conf/README.md +0 -39
- arelle/plugin/transforms/SEC/conf/extractTestcase.sh +0 -2
- arelle/plugin/transforms/SEC/conf/extractTestcase.xsl +0 -109
- arelle/plugin/transforms/SEC/conf/runIxtSecTests.sh +0 -16
- arelle/plugin/transforms/SEC/conf/saxon9.jar +0 -0
- arelle/plugin/transforms/SEC/conf/testcase.xml +0 -7117
- arelle/plugin/transforms/SEC/conf/tests.xml +0 -848
- arelle/plugin/transforms/SEC/text2num.py +0 -110
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-boolballotbox.xml +0 -66
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-countrynameen.xml +0 -65
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-datequarterend.xml +0 -66
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durday.xml +0 -61
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durhour.xml +0 -69
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durmonth.xml +0 -71
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durweek.xml +0 -70
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-durwordsen.xml +0 -56
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-duryear.xml +0 -64
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-edgarprovcountryen.xml +0 -65
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-entityfilercategoryen.xml +0 -63
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-exchnameen.xml +0 -86
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-numwordsen.xml +0 -55
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-stateprovnameen.xml +0 -64
- arelle/plugin/transforms/SEC/transformationRegistry/registry/ixt-sec-yesnoballotbox.xml +0 -66
- arelle/plugin/transforms/SEC/transformationRegistry/registry/transform-registry.xml +0 -314
- arelle/plugin/transforms/SEC/transformationRegistry/schema/inlinexbrl-sec-transformation.xsd +0 -418
- arelle/plugin/validate/EFM/Consts.py +0 -362
- arelle/plugin/validate/EFM/DTS.py +0 -569
- arelle/plugin/validate/EFM/Dimensions.py +0 -264
- arelle/plugin/validate/EFM/Document.py +0 -206
- arelle/plugin/validate/EFM/Filing.py +0 -4383
- arelle/plugin/validate/EFM/IsolateSeparateIXDSes.py +0 -19
- arelle/plugin/validate/EFM/MessageNumericId.py +0 -142
- arelle/plugin/validate/EFM/PreCalAlignment.py +0 -324
- arelle/plugin/validate/EFM/Util.py +0 -688
- arelle/plugin/validate/EFM/__init__.py +0 -843
- arelle/plugin/validate/EFM/config.xml +0 -333
- arelle/plugin/validate/EFM/resources/README.md +0 -57
- arelle/plugin/validate/EFM/resources/axiswarnings.json +0 -27
- arelle/plugin/validate/EFM/resources/cef-deprecated-concepts.json +0 -8
- arelle/plugin/validate/EFM/resources/country-deprecated-concepts.json +0 -19
- arelle/plugin/validate/EFM/resources/currency-deprecated-concepts.json +0 -7
- arelle/plugin/validate/EFM/resources/dei-deprecated-concepts.json +0 -8
- arelle/plugin/validate/EFM/resources/dei-validations.json +0 -2884
- arelle/plugin/validate/EFM/resources/dqc-us-rules.json +0 -1389
- arelle/plugin/validate/EFM/resources/ecd-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-16-4.xml +0 -115
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-0-4.xml +0 -300
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-1.xml +0 -304
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-2.xml +0 -290
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-17-3-1.xml +0 -294
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.1.xml +0 -549
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.2.xml +0 -506
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-18.3.xml +0 -496
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-1.xml +0 -662
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-2.xml +0 -3761
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-19-3.xml +0 -3577
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-1.xml +0 -4020
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-2.xml +0 -3320
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-20-3.xml +0 -2998
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2012.xml +0 -957
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2013.xml +0 -982
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2014.xml +0 -1001
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2015.xml +0 -1076
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-2016.xml +0 -120
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-1.xml +0 -3329
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-2.xml +0 -1230
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-3.xml +0 -1113
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-21-4.xml +0 -1321
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-1-preview.xml +0 -1721
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-1.xml +0 -1841
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-2-2.xml +0 -1450
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-2.xml +0 -1429
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-22-4.xml +0 -1527
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-1-1.xml +0 -2049
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-1.xml +0 -2065
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-2.xml +0 -1674
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-23-3.xml +0 -1715
- arelle/plugin/validate/EFM/resources/edgartaxonomies/edgartaxonomies-all-years.xml +0 -10671
- arelle/plugin/validate/EFM/resources/edgartaxonomies/erxl.xsd +0 -69
- arelle/plugin/validate/EFM/resources/edgartaxonomies/extendedtaxonomies-all-years.xml +0 -18
- arelle/plugin/validate/EFM/resources/edgartaxonomies/ifrs-taxonomies.xml +0 -3126
- arelle/plugin/validate/EFM/resources/edgartaxonomies/ifrstaxonomies-all-years.xml +0 -22
- arelle/plugin/validate/EFM/resources/ex26-validations.json +0 -255
- arelle/plugin/validate/EFM/resources/exch-deprecated-concepts.json +0 -163
- arelle/plugin/validate/EFM/resources/ifrs-full-deprecated-concepts.json +0 -204
- arelle/plugin/validate/EFM/resources/invest-deprecated-concepts.json +0 -99
- arelle/plugin/validate/EFM/resources/ixbrl-transform-registries.json +0 -16
- arelle/plugin/validate/EFM/resources/naics-deprecated-concepts.json +0 -295
- arelle/plugin/validate/EFM/resources/oef-deprecated-concepts.json +0 -59
- arelle/plugin/validate/EFM/resources/other-standard-taxonomies.json +0 -12
- arelle/plugin/validate/EFM/resources/rr-deprecated-concepts.json +0 -14
- arelle/plugin/validate/EFM/resources/rxp-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/shr-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/sic-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/signwarnings.json +0 -112
- arelle/plugin/validate/EFM/resources/srt-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/stpr-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/resources/taxonomy-compatibility.json +0 -79
- arelle/plugin/validate/EFM/resources/us-gaap-deprecated-concepts.json +0 -2886
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2020.json +0 -29068
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2021.json +0 -29598
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2022.json +0 -29141
- arelle/plugin/validate/EFM/resources/us-gaap-rels-2023.json +0 -29400
- arelle/plugin/validate/EFM/resources/vip-deprecated-concepts.json +0 -1
- arelle/plugin/validate/EFM/tools/CheckTxmyRefs.py +0 -180
- arelle/plugin/validate/EFM-htm/Const.py +0 -205
- arelle/plugin/validate/EFM-htm/__init__.py +0 -217
- arelle/plugin/validate/EFM-htm/config.xml +0 -17
- arelle/plugin/validate/EFM-htm/resources/efm-htm.dtd +0 -664
- arelle/plugin/validate/ESEF/ESEF_Current/Image.py +0 -199
- arelle/plugin/validate/ESEF_2022/__init__.py +0 -47
- arelle/plugin/validate/GFM/__init__.py +0 -59
- arelle/plugin/validate/GFM/config.xml +0 -82
- arelle/plugin/validate/SBRnl/CustomLoader.py +0 -19
- arelle/plugin/validate/SBRnl/DTS.py +0 -305
- arelle/plugin/validate/SBRnl/Dimensions.py +0 -357
- arelle/plugin/validate/SBRnl/Document.py +0 -799
- arelle/plugin/validate/SBRnl/Filing.py +0 -467
- arelle/plugin/validate/SBRnl/__init__.py +0 -75
- arelle/plugin/validate/SBRnl/config.xml +0 -26
- arelle/plugin/validate/SBRnl/sbr-nl-taxonomies.xml +0 -754
- arelle/plugin/validate/USBestPractices.py +0 -570
- arelle/plugin/validate/USCorpAction.py +0 -557
- arelle/plugin/validate/USSecTagging.py +0 -337
- arelle/plugin/validate/XDC/__init__.py +0 -77
- arelle/plugin/validate/XDC/config.xml +0 -20
- arelle/plugin/validate/XFsyntax/__init__.py +0 -64
- arelle/plugin/validate/XFsyntax/xf.py +0 -2227
- arelle/plugin/validate/__init__.py +0 -20
- arelle/plugin/validate/calc2.py +0 -536
- arelle/plugin/validateSBRnl.py +0 -530
- arelle/scripts-macOS/startWebServer.command +0 -3
- arelle/scripts-unix/startWebServer.sh +0 -1
- arelle/scripts-windows/startWebServer.bat +0 -5
- arelle_release-2.17.1.dist-info/RECORD +0 -676
- tests/__init__.py +0 -0
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/ArelleGUITest.csproj +0 -30
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Tests.cs +0 -381
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest/Usings.cs +0 -1
- tests/integration_tests/ui_tests/ArelleGUITest/ArelleGUITest.sln +0 -31
- tests/integration_tests/ui_tests/resources/workiva.zip +0 -0
- tests/integration_tests/validation/README.md +0 -50
- tests/integration_tests/validation/conformance_suite_config.py +0 -59
- tests/integration_tests/validation/conformance_suite_configs.py +0 -63
- tests/integration_tests/validation/conformance_suite_configurations/efm_current.py +0 -261
- tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2021.py +0 -85
- tests/integration_tests/validation/conformance_suite_configurations/esef_ixbrl_2022.py +0 -90
- tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2021.py +0 -15
- tests/integration_tests/validation/conformance_suite_configurations/esef_xhtml_2022.py +0 -15
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt16.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt17.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/nl_nt18.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_2_1.py +0 -34
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_calculations_1_1.py +0 -40
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_dimensions_1_0.py +0 -28
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_extensible_enumerations_1_0.py +0 -10
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_extensible_enumerations_2_0.py +0 -10
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0.py +0 -9
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0_assertion_severity_2_0.py +0 -9
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_formula_1_0_function_registry.py +0 -14
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_ixbrl_1_1.py +0 -22
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_link_role_registry_1_0.py +0 -11
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_oim_1_0.py +0 -19
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_table_linkbase_1_0.py +0 -296
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_taxonomy_packages_1_0.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_3.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_4.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_transformation_registry_5.py +0 -13
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_malformed_1_0.py +0 -31
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_registry_1_0.py +0 -22
- tests/integration_tests/validation/conformance_suite_configurations/xbrl_utr_structure_1_0.py +0 -18
- tests/integration_tests/validation/conftest.py +0 -24
- tests/integration_tests/validation/discover_tests.py +0 -22
- tests/integration_tests/validation/download_conformance_suites.py +0 -47
- tests/integration_tests/validation/run_conformance_suites.py +0 -175
- tests/integration_tests/validation/test_conformance_suites.py +0 -14
- tests/integration_tests/validation/validation_util.py +0 -271
- tests/resources/conformance_suites/nl_nt16/br_kvk/2-04-invalid-period.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt16/br_kvk/2-04-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-missing.xbrl +0 -53
- tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-multiple.xbrl +0 -60
- tests/resources/conformance_suites/nl_nt16/br_kvk/3-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-07-invalid.xbrl +0 -57
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-07-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-10-invalid.xbrl +0 -58
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-10-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-12-invalid.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-12-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-16-missing.xbrl +0 -61
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-16-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-20-invalid-date.xbrl +0 -89
- tests/resources/conformance_suites/nl_nt16/br_kvk/4-20-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/1-01-invalid-file-extension.xml +0 -56
- tests/resources/conformance_suites/nl_nt16/fr_kvk/1-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-invalid-lang.xbrl +0 -56
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-missing-lang.xbrl +0 -55
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-entrypoint.xsd +0 -6
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-invalid-entrypoint.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt16/fr_kvk/2-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-01-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-02-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt16/fr_kvk/5-02-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-invalid-file.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-03-invalid-doctype.xbrl +0 -4
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-05-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-06-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt16/fr_nl/1-06.invalid.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-invalid-file.xbrl +0 -8
- tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt16/fr_nl/2-06-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt16/index.xml +0 -20
- tests/resources/conformance_suites/nl_nt17/br_kvk/2-04-invalid-period.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt17/br_kvk/2-04-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-missing.xbrl +0 -53
- tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-multiple.xbrl +0 -60
- tests/resources/conformance_suites/nl_nt17/br_kvk/3-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-07-invalid.xbrl +0 -57
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-07-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-10-invalid.xbrl +0 -58
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-10-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-12-invalid.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-12-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-16-missing.xbrl +0 -61
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-16-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-20-invalid-date.xbrl +0 -89
- tests/resources/conformance_suites/nl_nt17/br_kvk/4-20-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/1-01-invalid-file-extension.xml +0 -56
- tests/resources/conformance_suites/nl_nt17/fr_kvk/1-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-invalid-lang.xbrl +0 -56
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-missing-lang.xbrl +0 -55
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-entrypoint.xsd +0 -6
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-invalid-entrypoint.xbrl +0 -63
- tests/resources/conformance_suites/nl_nt17/fr_kvk/2-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-01-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-01-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-02-invalid-decimals.xbrl +0 -49
- tests/resources/conformance_suites/nl_nt17/fr_kvk/5-02-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-invalid-file.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-03-invalid-doctype.xbrl +0 -4
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-05-testcases.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-06-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt17/fr_nl/1-06.invalid.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-invalid-file.xbrl +0 -8
- tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt17/fr_nl/2-06-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt17/index.xml +0 -20
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-03-invalid-doctype.xbrl +0 -4
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-03-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-05-invalid-encoding.xbrl +0 -0
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-05-testcases.xml +0 -22
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-06-testcase.xml +0 -22
- tests/resources/conformance_suites/nl_nt18/fr_nl/1-06.invalid.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-invalid-file.xbrl +0 -2
- tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt18/fr_nl/1.01-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-invalid-file.xbrl +0 -8
- tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-invalid-zip.zip +0 -0
- tests/resources/conformance_suites/nl_nt18/fr_nl/2-06-testcase.xml +0 -33
- tests/resources/conformance_suites/nl_nt18/index.xml +0 -8
- tests/unit_tests/arelle/conftest.py +0 -16
- tests/unit_tests/arelle/formula/test_fact_aspects_cache.py +0 -170
- tests/unit_tests/arelle/plugin/test_loadfromoim.py +0 -40
- tests/unit_tests/arelle/plugin/test_plugin_imports.py +0 -27
- tests/unit_tests/arelle/test_betafeatures.py +0 -81
- tests/unit_tests/arelle/test_cntlr.py +0 -28
- tests/unit_tests/arelle/test_import.py +0 -40
- tests/unit_tests/arelle/test_locale.py +0 -73
- tests/unit_tests/arelle/test_modelmanager.py +0 -15
- tests/unit_tests/arelle/test_packagemanager.py +0 -65
- tests/unit_tests/arelle/test_pluginmanager.py +0 -176
- tests/unit_tests/arelle/test_qname.py +0 -140
- tests/unit_tests/arelle/test_runtimeoptions.py +0 -56
- tests/unit_tests/arelle/test_system_info.py +0 -26
- tests/unit_tests/arelle/test_updater.py +0 -507
- tests/unit_tests/arelle/test_urlutil.py +0 -49
- tests/unit_tests/arelle/test_version.py +0 -46
- tests/unit_tests/arelle/utils/validate/test_decorator.py +0 -59
- /arelle/{examples/plugin/validate/XYZ → plugin/validate/EDINET}/rules/__init__.py +0 -0
- /arelle/plugin/validate/{HMRC → UK}/consistencyChecksByName.json +0 -0
- /arelle/plugin/validate/{HMRC → UK}/hmrc-taxonomies.xml +0 -0
- {arelle_release-2.17.1.dist-info → arelle_release-2.37.71.dist-info}/entry_points.txt +0 -0
|
@@ -1,1429 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
-
<!--
|
|
3
|
-
This file was created by staff of the U.S. Securities and Exchange Commission.
|
|
4
|
-
Data and content created by government employees within the scope of their employment
|
|
5
|
-
are not subject to domestic copyright protection. 17 U.S.C. 105.
|
|
6
|
-
-->
|
|
7
|
-
<Erxl version="61" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="erxl.xsd">
|
|
8
|
-
<!-- 2022Q2 families -->
|
|
9
|
-
<Loc>
|
|
10
|
-
<Family>VIP</Family>
|
|
11
|
-
<Version>2022Q2</Version>
|
|
12
|
-
<Href>https://xbrl.sec.gov/vip/2022q2/vip-2022q2.xsd</Href>
|
|
13
|
-
<AttType>SCH</AttType>
|
|
14
|
-
<FileTypeName>Schema</FileTypeName>
|
|
15
|
-
<Elements>1</Elements>
|
|
16
|
-
<Namespace>http://xbrl.sec.gov/vip/2022q2</Namespace>
|
|
17
|
-
<Prefix>vip</Prefix>
|
|
18
|
-
</Loc>
|
|
19
|
-
<Loc>
|
|
20
|
-
<Family>VIP</Family>
|
|
21
|
-
<Version>2022Q2</Version>
|
|
22
|
-
<Href>https://xbrl.sec.gov/vip/2022q2/vip-n3-2022q2.xsd</Href>
|
|
23
|
-
<AttType>SCH</AttType>
|
|
24
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
25
|
-
<Elements>0</Elements>
|
|
26
|
-
<Namespace>http://xbrl.sec.gov/vip-n3/2022q2</Namespace>
|
|
27
|
-
</Loc>
|
|
28
|
-
<Loc>
|
|
29
|
-
<Family>VIP</Family>
|
|
30
|
-
<Version>2022Q2</Version>
|
|
31
|
-
<Href>https://xbrl.sec.gov/vip/2022q2/vip-n4-2022q2.xsd</Href>
|
|
32
|
-
<AttType>SCH</AttType>
|
|
33
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
34
|
-
<Elements>0</Elements>
|
|
35
|
-
<Namespace>http://xbrl.sec.gov/vip-n4/2022q2</Namespace>
|
|
36
|
-
</Loc>
|
|
37
|
-
<Loc>
|
|
38
|
-
<Family>VIP</Family>
|
|
39
|
-
<Version>2022Q2</Version>
|
|
40
|
-
<Href>https://xbrl.sec.gov/vip/2022q2/vip-n6-2022q2.xsd</Href>
|
|
41
|
-
<AttType>SCH</AttType>
|
|
42
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
43
|
-
<Elements>0</Elements>
|
|
44
|
-
<Namespace>http://xbrl.sec.gov/vip-n6/2022q2</Namespace>
|
|
45
|
-
</Loc>
|
|
46
|
-
<Loc>
|
|
47
|
-
<Family>VIP</Family>
|
|
48
|
-
<Version>2022Q2</Version>
|
|
49
|
-
<Href>https://xbrl.sec.gov/country/2022/country-2022.xsd</Href>
|
|
50
|
-
<AttType>SCH</AttType>
|
|
51
|
-
<FileTypeName>Schema</FileTypeName>
|
|
52
|
-
<Elements>1</Elements>
|
|
53
|
-
<Namespace>http://xbrl.sec.gov/country/2022</Namespace>
|
|
54
|
-
<Prefix>country</Prefix>
|
|
55
|
-
</Loc>
|
|
56
|
-
<Loc>
|
|
57
|
-
<Family>VIP</Family>
|
|
58
|
-
<Version>2022Q2</Version>
|
|
59
|
-
<Href>https://xbrl.sec.gov/currency/2022/currency-2022.xsd</Href>
|
|
60
|
-
<AttType>SCH</AttType>
|
|
61
|
-
<FileTypeName>Schema</FileTypeName>
|
|
62
|
-
<Elements>1</Elements>
|
|
63
|
-
<Namespace>http://xbrl.sec.gov/currency/2022</Namespace>
|
|
64
|
-
<Prefix>currency</Prefix>
|
|
65
|
-
</Loc>
|
|
66
|
-
<Loc>
|
|
67
|
-
<Family>VIP</Family>
|
|
68
|
-
<Version>2022Q2</Version>
|
|
69
|
-
<Href>https://www.xbrl.org/dtr/type/2020-01-21/types.xsd</Href>
|
|
70
|
-
<AttType>SCH</AttType>
|
|
71
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
72
|
-
<Elements>0</Elements>
|
|
73
|
-
<Namespace>http://www.xbrl.org/dtr/type/2020-01-21</Namespace>
|
|
74
|
-
</Loc>
|
|
75
|
-
<Loc>
|
|
76
|
-
<Family>VIP</Family>
|
|
77
|
-
<Version>2022Q2</Version>
|
|
78
|
-
<Href>http://www.xbrl.org/lrr/role/negated-2009-12-16.xsd</Href>
|
|
79
|
-
<AttType>SCH</AttType>
|
|
80
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
81
|
-
<Elements>0</Elements>
|
|
82
|
-
<Namespace>http://www.xbrl.org/2009/role/negated</Namespace>
|
|
83
|
-
</Loc>
|
|
84
|
-
<!-- 2022 families -->
|
|
85
|
-
<Loc>
|
|
86
|
-
<Family>IFRS</Family>
|
|
87
|
-
<Version>2022</Version>
|
|
88
|
-
<Href>https://xbrl.sec.gov/stpr/2022/stpr-2022.xsd</Href>
|
|
89
|
-
<AttType>SCH</AttType>
|
|
90
|
-
<FileTypeName>Schema</FileTypeName>
|
|
91
|
-
<Elements>1</Elements>
|
|
92
|
-
<Namespace>http://xbrl.sec.gov/stpr/2022</Namespace>
|
|
93
|
-
<Prefix>stpr</Prefix>
|
|
94
|
-
</Loc>
|
|
95
|
-
<Loc>
|
|
96
|
-
<Family>IFRS</Family>
|
|
97
|
-
<Version>2022</Version>
|
|
98
|
-
<Href>https://xbrl.sec.gov/sic/2022/sic-2022.xsd</Href>
|
|
99
|
-
<AttType>SCH</AttType>
|
|
100
|
-
<FileTypeName>Schema</FileTypeName>
|
|
101
|
-
<Elements>1</Elements>
|
|
102
|
-
<Namespace>http://xbrl.sec.gov/sic/2022</Namespace>
|
|
103
|
-
<Prefix>sic</Prefix>
|
|
104
|
-
</Loc>
|
|
105
|
-
<Loc>
|
|
106
|
-
<Family>IFRS</Family>
|
|
107
|
-
<Version>2022</Version>
|
|
108
|
-
<Href>https://xbrl.sec.gov/naics/2022/naics-2022.xsd</Href>
|
|
109
|
-
<AttType>SCH</AttType>
|
|
110
|
-
<FileTypeName>Schema</FileTypeName>
|
|
111
|
-
<Elements>1</Elements>
|
|
112
|
-
<Namespace>http://xbrl.sec.gov/naics/2022</Namespace>
|
|
113
|
-
<Prefix>naics</Prefix>
|
|
114
|
-
</Loc>
|
|
115
|
-
<Loc>
|
|
116
|
-
<Family>IFRS</Family>
|
|
117
|
-
<Version>2022</Version>
|
|
118
|
-
<Href>https://xbrl.sec.gov/exch/2022/exch-2022.xsd</Href>
|
|
119
|
-
<AttType>SCH</AttType>
|
|
120
|
-
<FileTypeName>Schema</FileTypeName>
|
|
121
|
-
<Elements>1</Elements>
|
|
122
|
-
<Namespace>http://xbrl.sec.gov/exch/2022</Namespace>
|
|
123
|
-
<Prefix>exch</Prefix>
|
|
124
|
-
</Loc>
|
|
125
|
-
<Loc>
|
|
126
|
-
<Family>IFRS</Family>
|
|
127
|
-
<Version>2022</Version>
|
|
128
|
-
<Href>https://xbrl.sec.gov/currency/2022/currency-2022.xsd</Href>
|
|
129
|
-
<AttType>SCH</AttType>
|
|
130
|
-
<FileTypeName>Schema</FileTypeName>
|
|
131
|
-
<Elements>1</Elements>
|
|
132
|
-
<Namespace>http://xbrl.sec.gov/currency/2022</Namespace>
|
|
133
|
-
<Prefix>currency</Prefix>
|
|
134
|
-
</Loc>
|
|
135
|
-
<Loc>
|
|
136
|
-
<Family>IFRS</Family>
|
|
137
|
-
<Version>2022</Version>
|
|
138
|
-
<Href>https://xbrl.sec.gov/country/2022/country-2022.xsd</Href>
|
|
139
|
-
<AttType>SCH</AttType>
|
|
140
|
-
<FileTypeName>Schema</FileTypeName>
|
|
141
|
-
<Elements>1</Elements>
|
|
142
|
-
<Namespace>http://xbrl.sec.gov/country/2022</Namespace>
|
|
143
|
-
<Prefix>country</Prefix>
|
|
144
|
-
</Loc>
|
|
145
|
-
<Loc>
|
|
146
|
-
<Family>IFRS</Family>
|
|
147
|
-
<Version>2022</Version>
|
|
148
|
-
<Href>https://xbrl.ifrs.org/taxonomy/2022-03-24/full_ifrs/full_ifrs-cor_2022-03-24.xsd</Href>
|
|
149
|
-
<AttType>SCH</AttType>
|
|
150
|
-
<FileTypeName>Schema</FileTypeName>
|
|
151
|
-
<Elements>1</Elements>
|
|
152
|
-
<Namespace>https://xbrl.ifrs.org/taxonomy/2022-03-24/ifrs-full</Namespace>
|
|
153
|
-
<Prefix>ifrs-full</Prefix>
|
|
154
|
-
</Loc>
|
|
155
|
-
<Loc>
|
|
156
|
-
<Family>IFRS</Family>
|
|
157
|
-
<Version>2022</Version>
|
|
158
|
-
<Href>https://xbrl.fasb.org/us-gaap/2022/elts/us-gaap-2022.xsd</Href>
|
|
159
|
-
<AttType>SCH</AttType>
|
|
160
|
-
<FileTypeName>Schema</FileTypeName>
|
|
161
|
-
<Elements>1</Elements>
|
|
162
|
-
<Namespace>http://fasb.org/us-gaap/2022</Namespace>
|
|
163
|
-
<Prefix>us-gaap</Prefix>
|
|
164
|
-
</Loc>
|
|
165
|
-
<Loc>
|
|
166
|
-
<Family>IFRS</Family>
|
|
167
|
-
<Version>2022</Version>
|
|
168
|
-
<Href>https://xbrl.fasb.org/srt/2022/elts/srt-2022.xsd</Href>
|
|
169
|
-
<AttType>SCH</AttType>
|
|
170
|
-
<FileTypeName>Schema</FileTypeName>
|
|
171
|
-
<Elements>1</Elements>
|
|
172
|
-
<Namespace>http://fasb.org/srt/2022</Namespace>
|
|
173
|
-
<Prefix>srt</Prefix>
|
|
174
|
-
</Loc>
|
|
175
|
-
<Loc>
|
|
176
|
-
<Family>IFRS</Family>
|
|
177
|
-
<Version>2022</Version>
|
|
178
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-2022.xsd</Href>
|
|
179
|
-
<AttType>SCH</AttType>
|
|
180
|
-
<FileTypeName>Schema</FileTypeName>
|
|
181
|
-
<Elements>1</Elements>
|
|
182
|
-
<Namespace>http://xbrl.sec.gov/dei/2022</Namespace>
|
|
183
|
-
<Prefix>dei</Prefix>
|
|
184
|
-
</Loc>
|
|
185
|
-
<Loc>
|
|
186
|
-
<Family>IFRS</Family>
|
|
187
|
-
<Version>2022</Version>
|
|
188
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-2022_lab.xsd</Href>
|
|
189
|
-
<AttType>SCH</AttType>
|
|
190
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
191
|
-
<Elements>0</Elements>
|
|
192
|
-
<Namespace>http://xbrl.sec.gov/dei-lab/2022</Namespace>
|
|
193
|
-
</Loc>
|
|
194
|
-
<Loc>
|
|
195
|
-
<Family>IFRS</Family>
|
|
196
|
-
<Version>2022</Version>
|
|
197
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-2022_pre.xsd</Href>
|
|
198
|
-
<AttType>SCH</AttType>
|
|
199
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
200
|
-
<Elements>0</Elements>
|
|
201
|
-
<Namespace>http://xbrl.sec.gov/dei-pre/2022</Namespace>
|
|
202
|
-
</Loc>
|
|
203
|
-
<Loc>
|
|
204
|
-
<Family>IFRS</Family>
|
|
205
|
-
<Version>2022</Version>
|
|
206
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-2022_def.xsd</Href>
|
|
207
|
-
<AttType>SCH</AttType>
|
|
208
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
209
|
-
<Elements>0</Elements>
|
|
210
|
-
<Namespace>http://xbrl.sec.gov/dei-def/2022</Namespace>
|
|
211
|
-
</Loc>
|
|
212
|
-
<Loc>
|
|
213
|
-
<Family>IFRS</Family>
|
|
214
|
-
<Version>2022</Version>
|
|
215
|
-
<Href>http://www.xbrl.org/lrr/arcrole/esma-arcrole-2018-11-21.xsd</Href>
|
|
216
|
-
<AttType>SCH</AttType>
|
|
217
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
218
|
-
<Elements>0</Elements>
|
|
219
|
-
<Namespace>http://www.esma.europa.eu/xbrl/esef/arcrole/wider-narrower</Namespace>
|
|
220
|
-
</Loc>
|
|
221
|
-
<Loc>
|
|
222
|
-
<Family>US GAAP</Family>
|
|
223
|
-
<Version>2022</Version>
|
|
224
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-2022.xsd</Href>
|
|
225
|
-
<AttType>SCH</AttType>
|
|
226
|
-
<FileTypeName>Schema</FileTypeName>
|
|
227
|
-
<Elements>1</Elements>
|
|
228
|
-
<Namespace>http://xbrl.sec.gov/dei/2022</Namespace>
|
|
229
|
-
<Prefix>dei</Prefix>
|
|
230
|
-
</Loc>
|
|
231
|
-
<Loc>
|
|
232
|
-
<Family>US GAAP</Family>
|
|
233
|
-
<Version>2022</Version>
|
|
234
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-2022_lab.xsd</Href>
|
|
235
|
-
<AttType>SCH</AttType>
|
|
236
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
237
|
-
<Elements>0</Elements>
|
|
238
|
-
<Namespace>http://xbrl.sec.gov/dei-lab/2022</Namespace>
|
|
239
|
-
</Loc>
|
|
240
|
-
<Loc>
|
|
241
|
-
<Family>US GAAP</Family>
|
|
242
|
-
<Version>2022</Version>
|
|
243
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-2022_pre.xsd</Href>
|
|
244
|
-
<AttType>SCH</AttType>
|
|
245
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
246
|
-
<Elements>0</Elements>
|
|
247
|
-
<Namespace>http://xbrl.sec.gov/dei-pre/2022</Namespace>
|
|
248
|
-
</Loc>
|
|
249
|
-
<Loc>
|
|
250
|
-
<Family>US GAAP</Family>
|
|
251
|
-
<Version>2022</Version>
|
|
252
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-2022_def.xsd</Href>
|
|
253
|
-
<AttType>SCH</AttType>
|
|
254
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
255
|
-
<Elements>0</Elements>
|
|
256
|
-
<Namespace>http://xbrl.sec.gov/dei-def/2022</Namespace>
|
|
257
|
-
</Loc>
|
|
258
|
-
<Loc>
|
|
259
|
-
<Family>US GAAP</Family>
|
|
260
|
-
<Version>2022</Version>
|
|
261
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-sub-2022.xsd</Href>
|
|
262
|
-
<AttType>SCH</AttType>
|
|
263
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
264
|
-
<Elements>0</Elements>
|
|
265
|
-
<Namespace>http://xbrl.sec.gov/dei-sub/2022</Namespace>
|
|
266
|
-
</Loc>
|
|
267
|
-
<Loc>
|
|
268
|
-
<Family>US GAAP</Family>
|
|
269
|
-
<Version>2022</Version>
|
|
270
|
-
<Href>https://xbrl.sec.gov/country/2022/country-2022.xsd</Href>
|
|
271
|
-
<AttType>SCH</AttType>
|
|
272
|
-
<FileTypeName>Schema</FileTypeName>
|
|
273
|
-
<Elements>1</Elements>
|
|
274
|
-
<Namespace>http://xbrl.sec.gov/country/2022</Namespace>
|
|
275
|
-
<Prefix>country</Prefix>
|
|
276
|
-
</Loc>
|
|
277
|
-
<Loc>
|
|
278
|
-
<Family>US GAAP</Family>
|
|
279
|
-
<Version>2022</Version>
|
|
280
|
-
<Href>https://xbrl.sec.gov/currency/2022/currency-2022.xsd</Href>
|
|
281
|
-
<AttType>SCH</AttType>
|
|
282
|
-
<FileTypeName>Schema</FileTypeName>
|
|
283
|
-
<Elements>1</Elements>
|
|
284
|
-
<Namespace>http://xbrl.sec.gov/currency/2022</Namespace>
|
|
285
|
-
<Prefix>currency</Prefix>
|
|
286
|
-
</Loc>
|
|
287
|
-
<Loc>
|
|
288
|
-
<Family>US GAAP</Family>
|
|
289
|
-
<Version>2022</Version>
|
|
290
|
-
<Href>https://xbrl.sec.gov/exch/2022/exch-2022.xsd</Href>
|
|
291
|
-
<AttType>SCH</AttType>
|
|
292
|
-
<FileTypeName>Schema</FileTypeName>
|
|
293
|
-
<Elements>1</Elements>
|
|
294
|
-
<Namespace>http://xbrl.sec.gov/exch/2022</Namespace>
|
|
295
|
-
<Prefix>exch</Prefix>
|
|
296
|
-
</Loc>
|
|
297
|
-
<Loc>
|
|
298
|
-
<Family>US GAAP</Family>
|
|
299
|
-
<Version>2022</Version>
|
|
300
|
-
<Href>https://xbrl.sec.gov/sic/2022/sic-2022.xsd</Href>
|
|
301
|
-
<AttType>SCH</AttType>
|
|
302
|
-
<FileTypeName>Schema</FileTypeName>
|
|
303
|
-
<Elements>1</Elements>
|
|
304
|
-
<Namespace>http://xbrl.sec.gov/sic/2022</Namespace>
|
|
305
|
-
<Prefix>sic</Prefix>
|
|
306
|
-
</Loc>
|
|
307
|
-
<Loc>
|
|
308
|
-
<Family>US GAAP</Family>
|
|
309
|
-
<Version>2022</Version>
|
|
310
|
-
<Href>https://xbrl.sec.gov/stpr/2022/stpr-2022.xsd</Href>
|
|
311
|
-
<AttType>SCH</AttType>
|
|
312
|
-
<FileTypeName>Schema</FileTypeName>
|
|
313
|
-
<Elements>1</Elements>
|
|
314
|
-
<Namespace>http://xbrl.sec.gov/stpr/2022</Namespace>
|
|
315
|
-
<Prefix>stpr</Prefix>
|
|
316
|
-
</Loc>
|
|
317
|
-
<Loc>
|
|
318
|
-
<Family>US GAAP</Family>
|
|
319
|
-
<Version>2022</Version>
|
|
320
|
-
<Href>https://xbrl.sec.gov/naics/2022/naics-2022.xsd</Href>
|
|
321
|
-
<AttType>SCH</AttType>
|
|
322
|
-
<FileTypeName>Schema</FileTypeName>
|
|
323
|
-
<Elements>1</Elements>
|
|
324
|
-
<Namespace>http://xbrl.sec.gov/naics/2022</Namespace>
|
|
325
|
-
<Prefix>naics</Prefix>
|
|
326
|
-
</Loc>
|
|
327
|
-
<Loc>
|
|
328
|
-
<Family>US GAAP</Family>
|
|
329
|
-
<Version>2022</Version>
|
|
330
|
-
<Href>https://xbrl.fasb.org/us-gaap/2022/elts/us-gaap-2022.xsd</Href>
|
|
331
|
-
<AttType>SCH</AttType>
|
|
332
|
-
<FileTypeName>Schema</FileTypeName>
|
|
333
|
-
<Elements>1</Elements>
|
|
334
|
-
<Namespace>http://fasb.org/us-gaap/2022</Namespace>
|
|
335
|
-
<Prefix>us-gaap</Prefix>
|
|
336
|
-
</Loc>
|
|
337
|
-
<Loc>
|
|
338
|
-
<Family>US GAAP</Family>
|
|
339
|
-
<Version>2022</Version>
|
|
340
|
-
<Href>https://xbrl.fasb.org/srt/2022/elts/srt-2022.xsd</Href>
|
|
341
|
-
<AttType>SCH</AttType>
|
|
342
|
-
<FileTypeName>Schema</FileTypeName>
|
|
343
|
-
<Elements>1</Elements>
|
|
344
|
-
<Namespace>http://fasb.org/srt/2022</Namespace>
|
|
345
|
-
<Prefix>srt</Prefix>
|
|
346
|
-
</Loc>
|
|
347
|
-
<Loc>
|
|
348
|
-
<Family>US GAAP</Family>
|
|
349
|
-
<Version>2022</Version>
|
|
350
|
-
<Href>https://xbrl.fasb.org/us-gaap/2022/elts/us-types-2022.xsd</Href>
|
|
351
|
-
<AttType>SCH</AttType>
|
|
352
|
-
<FileTypeName>Schema</FileTypeName>
|
|
353
|
-
<Elements>0</Elements>
|
|
354
|
-
<Namespace>http://fasb.org/us-types/2022</Namespace>
|
|
355
|
-
<Prefix>us-types</Prefix>
|
|
356
|
-
</Loc>
|
|
357
|
-
<Loc>
|
|
358
|
-
<Family>US GAAP</Family>
|
|
359
|
-
<Version>2022</Version>
|
|
360
|
-
<Href>https://xbrl.fasb.org/us-gaap/2022/elts/us-roles-2022.xsd</Href>
|
|
361
|
-
<AttType>SCH</AttType>
|
|
362
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
363
|
-
<Elements>0</Elements>
|
|
364
|
-
<Namespace>http://fasb.org/us-roles/2022</Namespace>
|
|
365
|
-
</Loc>
|
|
366
|
-
<Loc>
|
|
367
|
-
<Family>US GAAP</Family>
|
|
368
|
-
<Version>2022</Version>
|
|
369
|
-
<Href>https://xbrl.fasb.org/srt/2022/elts/srt-types-2022.xsd</Href>
|
|
370
|
-
<AttType>SCH</AttType>
|
|
371
|
-
<FileTypeName>Schema</FileTypeName>
|
|
372
|
-
<Elements>0</Elements>
|
|
373
|
-
<Namespace>http://fasb.org/srt-types/2022</Namespace>
|
|
374
|
-
<Prefix>srt-types</Prefix>
|
|
375
|
-
</Loc>
|
|
376
|
-
<Loc>
|
|
377
|
-
<Family>US GAAP</Family>
|
|
378
|
-
<Version>2022</Version>
|
|
379
|
-
<Href>https://xbrl.fasb.org/srt/2022/elts/srt-roles-2022.xsd</Href>
|
|
380
|
-
<AttType>SCH</AttType>
|
|
381
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
382
|
-
<Elements>0</Elements>
|
|
383
|
-
<Namespace>http://fasb.org/srt-roles/2022</Namespace>
|
|
384
|
-
</Loc>
|
|
385
|
-
<Loc>
|
|
386
|
-
<Family>US GAAP</Family>
|
|
387
|
-
<Version>2022</Version>
|
|
388
|
-
<Href>http://www.xbrl.org/lrr/role/net-2009-12-16.xsd</Href>
|
|
389
|
-
<AttType>SCH</AttType>
|
|
390
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
391
|
-
<Elements>0</Elements>
|
|
392
|
-
<Namespace>http://www.xbrl.org/2009/role/net</Namespace>
|
|
393
|
-
</Loc>
|
|
394
|
-
<Loc>
|
|
395
|
-
<Family>US GAAP</Family>
|
|
396
|
-
<Version>2022</Version>
|
|
397
|
-
<Href>https://www.xbrl.org/dtr/type/2020-01-21/types.xsd</Href>
|
|
398
|
-
<AttType>SCH</AttType>
|
|
399
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
400
|
-
<Elements>0</Elements>
|
|
401
|
-
<Namespace>http://www.xbrl.org/dtr/type/2020-01-21</Namespace>
|
|
402
|
-
</Loc>
|
|
403
|
-
<Loc>
|
|
404
|
-
<Family>US GAAP</Family>
|
|
405
|
-
<Version>2022</Version>
|
|
406
|
-
<Href>http://www.xbrl.org/lrr/role/negated-2009-12-16.xsd</Href>
|
|
407
|
-
<AttType>SCH</AttType>
|
|
408
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
409
|
-
<Elements>0</Elements>
|
|
410
|
-
<Namespace>http://www.xbrl.org/2009/role/negated</Namespace>
|
|
411
|
-
</Loc>
|
|
412
|
-
<Loc>
|
|
413
|
-
<Family>US GAAP</Family>
|
|
414
|
-
<Version>2022</Version>
|
|
415
|
-
<Href>http://www.xbrl.org/lrr/arcrole/factExplanatory-2009-12-16.xsd</Href>
|
|
416
|
-
<AttType>SCH</AttType>
|
|
417
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
418
|
-
<Elements>0</Elements>
|
|
419
|
-
<Namespace>http://www.xbrl.org/2009/arcrole/fact-explanatoryFact</Namespace>
|
|
420
|
-
</Loc>
|
|
421
|
-
<Loc>
|
|
422
|
-
<Family>US GAAP</Family>
|
|
423
|
-
<Version>2022</Version>
|
|
424
|
-
<Href>http://www.xbrl.org/lrr/arcrole/esma-arcrole-2018-11-21.xsd</Href>
|
|
425
|
-
<AttType>SCH</AttType>
|
|
426
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
427
|
-
<Elements>0</Elements>
|
|
428
|
-
<Namespace>http://www.esma.europa.eu/xbrl/esef/arcrole/wider-narrower</Namespace>
|
|
429
|
-
</Loc>
|
|
430
|
-
<Loc>
|
|
431
|
-
<Family>US GAAP</Family>
|
|
432
|
-
<Version>2022</Version>
|
|
433
|
-
<Href>https://www.xbrl.org/2020/extensible-enumerations-2.0.xsd</Href>
|
|
434
|
-
<AttType>SCH</AttType>
|
|
435
|
-
<FileTypeName>Schema</FileTypeName>
|
|
436
|
-
<Elements>0</Elements>
|
|
437
|
-
<Namespace>http://xbrl.org/2020/extensible-enumerations-2.0</Namespace>
|
|
438
|
-
<Prefix>enum2</Prefix>
|
|
439
|
-
</Loc>
|
|
440
|
-
<Loc>
|
|
441
|
-
<Family>CEF</Family>
|
|
442
|
-
<Version>2022</Version>
|
|
443
|
-
<Href>https://xbrl.sec.gov/cef/2022/cef-2022.xsd</Href>
|
|
444
|
-
<AttType>SCH</AttType>
|
|
445
|
-
<FileTypeName>Schema</FileTypeName>
|
|
446
|
-
<Elements>1</Elements>
|
|
447
|
-
<Namespace>http://xbrl.sec.gov/cef/2022</Namespace>
|
|
448
|
-
<Prefix>cef</Prefix>
|
|
449
|
-
</Loc>
|
|
450
|
-
<Loc>
|
|
451
|
-
<Family>CEF</Family>
|
|
452
|
-
<Version>2022</Version>
|
|
453
|
-
<Href>https://xbrl.sec.gov/country/2022/country-2022.xsd</Href>
|
|
454
|
-
<AttType>SCH</AttType>
|
|
455
|
-
<FileTypeName>Schema</FileTypeName>
|
|
456
|
-
<Elements>1</Elements>
|
|
457
|
-
<Namespace>http://xbrl.sec.gov/country/2022</Namespace>
|
|
458
|
-
<Prefix>country</Prefix>
|
|
459
|
-
</Loc>
|
|
460
|
-
<Loc>
|
|
461
|
-
<Family>CEF</Family>
|
|
462
|
-
<Version>2022</Version>
|
|
463
|
-
<Href>https://xbrl.sec.gov/currency/2022/currency-2022.xsd</Href>
|
|
464
|
-
<AttType>SCH</AttType>
|
|
465
|
-
<FileTypeName>Schema</FileTypeName>
|
|
466
|
-
<Elements>1</Elements>
|
|
467
|
-
<Namespace>http://xbrl.sec.gov/currency/2022</Namespace>
|
|
468
|
-
<Prefix>currency</Prefix>
|
|
469
|
-
</Loc>
|
|
470
|
-
<Loc>
|
|
471
|
-
<Family>CEF</Family>
|
|
472
|
-
<Version>2022</Version>
|
|
473
|
-
<Href>https://www.xbrl.org/dtr/type/2020-01-21/types.xsd</Href>
|
|
474
|
-
<AttType>SCH</AttType>
|
|
475
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
476
|
-
<Elements>0</Elements>
|
|
477
|
-
<Namespace>http://www.xbrl.org/dtr/type/2020-01-21</Namespace>
|
|
478
|
-
</Loc>
|
|
479
|
-
<Loc>
|
|
480
|
-
<Family>CEF</Family>
|
|
481
|
-
<Version>2022</Version>
|
|
482
|
-
<Href>http://www.xbrl.org/lrr/role/negated-2009-12-16.xsd</Href>
|
|
483
|
-
<AttType>SCH</AttType>
|
|
484
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
485
|
-
<Elements>0</Elements>
|
|
486
|
-
<Namespace>http://www.xbrl.org/2009/role/negated</Namespace>
|
|
487
|
-
</Loc>
|
|
488
|
-
<Loc>
|
|
489
|
-
<Family>VIP</Family>
|
|
490
|
-
<Version>2022</Version>
|
|
491
|
-
<Href>https://xbrl.sec.gov/vip/2022/vip-2022.xsd</Href>
|
|
492
|
-
<AttType>SCH</AttType>
|
|
493
|
-
<FileTypeName>Schema</FileTypeName>
|
|
494
|
-
<Elements>1</Elements>
|
|
495
|
-
<Namespace>http://xbrl.sec.gov/vip/2022</Namespace>
|
|
496
|
-
<Prefix>vip</Prefix>
|
|
497
|
-
</Loc>
|
|
498
|
-
<Loc>
|
|
499
|
-
<Family>VIP</Family>
|
|
500
|
-
<Version>2022</Version>
|
|
501
|
-
<Href>https://xbrl.sec.gov/vip/2022/vip-n3-2022.xsd</Href>
|
|
502
|
-
<AttType>SCH</AttType>
|
|
503
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
504
|
-
<Elements>0</Elements>
|
|
505
|
-
<Namespace>http://xbrl.sec.gov/vip-n3/2022</Namespace>
|
|
506
|
-
</Loc>
|
|
507
|
-
<Loc>
|
|
508
|
-
<Family>VIP</Family>
|
|
509
|
-
<Version>2022</Version>
|
|
510
|
-
<Href>https://xbrl.sec.gov/vip/2022/vip-n4-2022.xsd</Href>
|
|
511
|
-
<AttType>SCH</AttType>
|
|
512
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
513
|
-
<Elements>0</Elements>
|
|
514
|
-
<Namespace>http://xbrl.sec.gov/vip-n4/2022</Namespace>
|
|
515
|
-
</Loc>
|
|
516
|
-
<Loc>
|
|
517
|
-
<Family>VIP</Family>
|
|
518
|
-
<Version>2022</Version>
|
|
519
|
-
<Href>https://xbrl.sec.gov/vip/2022/vip-n6-2022.xsd</Href>
|
|
520
|
-
<AttType>SCH</AttType>
|
|
521
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
522
|
-
<Elements>0</Elements>
|
|
523
|
-
<Namespace>http://xbrl.sec.gov/vip-n6/2022</Namespace>
|
|
524
|
-
</Loc>
|
|
525
|
-
<Loc>
|
|
526
|
-
<Family>VIP</Family>
|
|
527
|
-
<Version>2022</Version>
|
|
528
|
-
<Href>https://xbrl.sec.gov/country/2022/country-2022.xsd</Href>
|
|
529
|
-
<AttType>SCH</AttType>
|
|
530
|
-
<FileTypeName>Schema</FileTypeName>
|
|
531
|
-
<Elements>1</Elements>
|
|
532
|
-
<Namespace>http://xbrl.sec.gov/country/2022</Namespace>
|
|
533
|
-
<Prefix>country</Prefix>
|
|
534
|
-
</Loc>
|
|
535
|
-
<Loc>
|
|
536
|
-
<Family>VIP</Family>
|
|
537
|
-
<Version>2022</Version>
|
|
538
|
-
<Href>https://xbrl.sec.gov/currency/2022/currency-2022.xsd</Href>
|
|
539
|
-
<AttType>SCH</AttType>
|
|
540
|
-
<FileTypeName>Schema</FileTypeName>
|
|
541
|
-
<Elements>1</Elements>
|
|
542
|
-
<Namespace>http://xbrl.sec.gov/currency/2022</Namespace>
|
|
543
|
-
<Prefix>currency</Prefix>
|
|
544
|
-
</Loc>
|
|
545
|
-
<Loc>
|
|
546
|
-
<Family>VIP</Family>
|
|
547
|
-
<Version>2022</Version>
|
|
548
|
-
<Href>https://www.xbrl.org/dtr/type/2020-01-21/types.xsd</Href>
|
|
549
|
-
<AttType>SCH</AttType>
|
|
550
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
551
|
-
<Elements>0</Elements>
|
|
552
|
-
<Namespace>http://www.xbrl.org/dtr/type/2020-01-21</Namespace>
|
|
553
|
-
</Loc>
|
|
554
|
-
<Loc>
|
|
555
|
-
<Family>VIP</Family>
|
|
556
|
-
<Version>2022</Version>
|
|
557
|
-
<Href>http://www.xbrl.org/lrr/role/negated-2009-12-16.xsd</Href>
|
|
558
|
-
<AttType>SCH</AttType>
|
|
559
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
560
|
-
<Elements>0</Elements>
|
|
561
|
-
<Namespace>http://www.xbrl.org/2009/role/negated</Namespace>
|
|
562
|
-
</Loc>
|
|
563
|
-
<Loc>
|
|
564
|
-
<Family>RR</Family>
|
|
565
|
-
<Version>2022</Version>
|
|
566
|
-
<Href>https://xbrl.sec.gov/rr/2022/rr-2022.xsd</Href>
|
|
567
|
-
<AttType>SCH</AttType>
|
|
568
|
-
<FileTypeName>Schema</FileTypeName>
|
|
569
|
-
<Elements>1</Elements>
|
|
570
|
-
<Namespace>http://xbrl.sec.gov/rr/2022</Namespace>
|
|
571
|
-
<Prefix>rr</Prefix>
|
|
572
|
-
</Loc>
|
|
573
|
-
<Loc>
|
|
574
|
-
<Family>RR</Family>
|
|
575
|
-
<Version>2022</Version>
|
|
576
|
-
<Href>https://xbrl.sec.gov/rr/2022/rr-2022_lab.xsd</Href>
|
|
577
|
-
<AttType>SCH</AttType>
|
|
578
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
579
|
-
<Elements>0</Elements>
|
|
580
|
-
<Namespace>http://xbrl.sec.gov/rr-lab/2022</Namespace>
|
|
581
|
-
</Loc>
|
|
582
|
-
<Loc>
|
|
583
|
-
<Family>RR</Family>
|
|
584
|
-
<Version>2022</Version>
|
|
585
|
-
<Href>https://xbrl.sec.gov/rr/2022/rr-2022_pre.xsd</Href>
|
|
586
|
-
<AttType>SCH</AttType>
|
|
587
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
588
|
-
<Elements>0</Elements>
|
|
589
|
-
<Namespace>http://xbrl.sec.gov/rr-pre/2022</Namespace>
|
|
590
|
-
</Loc>
|
|
591
|
-
<Loc>
|
|
592
|
-
<Family>RR</Family>
|
|
593
|
-
<Version>2022</Version>
|
|
594
|
-
<Href>https://xbrl.sec.gov/rr/2022/rr-2022_def.xsd</Href>
|
|
595
|
-
<AttType>SCH</AttType>
|
|
596
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
597
|
-
<Elements>0</Elements>
|
|
598
|
-
<Namespace>http://xbrl.sec.gov/rr-def/2022</Namespace>
|
|
599
|
-
</Loc>
|
|
600
|
-
<Loc>
|
|
601
|
-
<Family>RR</Family>
|
|
602
|
-
<Version>2022</Version>
|
|
603
|
-
<Href>https://www.xbrl.org/dtr/type/2020-01-21/types.xsd</Href>
|
|
604
|
-
<AttType>SCH</AttType>
|
|
605
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
606
|
-
<Elements>0</Elements>
|
|
607
|
-
<Namespace>http://www.xbrl.org/dtr/type/2020-01-21</Namespace>
|
|
608
|
-
</Loc>
|
|
609
|
-
<Loc>
|
|
610
|
-
<Family>RR</Family>
|
|
611
|
-
<Version>2022</Version>
|
|
612
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-2022.xsd</Href>
|
|
613
|
-
<AttType>SCH</AttType>
|
|
614
|
-
<FileTypeName>Schema</FileTypeName>
|
|
615
|
-
<Elements>1</Elements>
|
|
616
|
-
<Namespace>http://xbrl.sec.gov/dei/2022</Namespace>
|
|
617
|
-
<Prefix>dei</Prefix>
|
|
618
|
-
</Loc>
|
|
619
|
-
<Loc>
|
|
620
|
-
<Family>RR</Family>
|
|
621
|
-
<Version>2022</Version>
|
|
622
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-sub-2022.xsd</Href>
|
|
623
|
-
<AttType>SCH</AttType>
|
|
624
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
625
|
-
<Elements>0</Elements>
|
|
626
|
-
<Namespace>http://xbrl.sec.gov/dei-sub/2022</Namespace>
|
|
627
|
-
</Loc>
|
|
628
|
-
<Loc>
|
|
629
|
-
<Family>RR</Family>
|
|
630
|
-
<Version>2022</Version>
|
|
631
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-2022_pre.xsd</Href>
|
|
632
|
-
<AttType>SCH</AttType>
|
|
633
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
634
|
-
<Elements>0</Elements>
|
|
635
|
-
<Namespace>http://xbrl.sec.gov/dei-pre/2022</Namespace>
|
|
636
|
-
</Loc>
|
|
637
|
-
<Loc>
|
|
638
|
-
<Family>RR</Family>
|
|
639
|
-
<Version>2022</Version>
|
|
640
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-2022_lab.xsd</Href>
|
|
641
|
-
<AttType>SCH</AttType>
|
|
642
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
643
|
-
<Elements>0</Elements>
|
|
644
|
-
<Namespace>http://xbrl.sec.gov/dei-lab/2022</Namespace>
|
|
645
|
-
</Loc>
|
|
646
|
-
<Loc>
|
|
647
|
-
<Family>RR</Family>
|
|
648
|
-
<Version>2022</Version>
|
|
649
|
-
<Href>https://xbrl.sec.gov/dei/2022/dei-2022_def.xsd</Href>
|
|
650
|
-
<AttType>SCH</AttType>
|
|
651
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
652
|
-
<Elements>0</Elements>
|
|
653
|
-
<Namespace>http://xbrl.sec.gov/dei-def/2022</Namespace>
|
|
654
|
-
</Loc>
|
|
655
|
-
<Loc>
|
|
656
|
-
<Family>RR</Family>
|
|
657
|
-
<Version>2022</Version>
|
|
658
|
-
<Href>https://xbrl.sec.gov/currency/2022/currency-2022.xsd</Href>
|
|
659
|
-
<AttType>SCH</AttType>
|
|
660
|
-
<FileTypeName>Schema</FileTypeName>
|
|
661
|
-
<Elements>1</Elements>
|
|
662
|
-
<Namespace>http://xbrl.sec.gov/currency/2022</Namespace>
|
|
663
|
-
<Prefix>currency</Prefix>
|
|
664
|
-
</Loc>
|
|
665
|
-
<Loc>
|
|
666
|
-
<Family>RR</Family>
|
|
667
|
-
<Version>2022</Version>
|
|
668
|
-
<Href>https://xbrl.sec.gov/country/2022/country-2022.xsd</Href>
|
|
669
|
-
<AttType>SCH</AttType>
|
|
670
|
-
<FileTypeName>Schema</FileTypeName>
|
|
671
|
-
<Elements>1</Elements>
|
|
672
|
-
<Namespace>http://xbrl.sec.gov/country/2022</Namespace>
|
|
673
|
-
<Prefix>country</Prefix>
|
|
674
|
-
</Loc>
|
|
675
|
-
<Loc>
|
|
676
|
-
<Family>RR</Family>
|
|
677
|
-
<Version>2022</Version>
|
|
678
|
-
<Href>http://www.xbrl.org/lrr/role/negated-2009-12-16.xsd</Href>
|
|
679
|
-
<AttType>SCH</AttType>
|
|
680
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
681
|
-
<Elements>0</Elements>
|
|
682
|
-
<Namespace>http://www.xbrl.org/2009/role/negated</Namespace>
|
|
683
|
-
</Loc>
|
|
684
|
-
<!-- 2021Q4 families -->
|
|
685
|
-
<Loc>
|
|
686
|
-
<Family>CEF</Family>
|
|
687
|
-
<Version>2021Q4</Version>
|
|
688
|
-
<Href>https://xbrl.sec.gov/cef/2021q4/cef-2021q4.xsd</Href>
|
|
689
|
-
<AttType>SCH</AttType>
|
|
690
|
-
<FileTypeName>Schema</FileTypeName>
|
|
691
|
-
<Elements>1</Elements>
|
|
692
|
-
<Namespace>http://xbrl.sec.gov/cef/2021q4</Namespace>
|
|
693
|
-
<Prefix>cef</Prefix>
|
|
694
|
-
</Loc>
|
|
695
|
-
<Loc>
|
|
696
|
-
<Family>CEF</Family>
|
|
697
|
-
<Version>2021Q4</Version>
|
|
698
|
-
<Href>https://xbrl.sec.gov/country/2021/country-2021.xsd</Href>
|
|
699
|
-
<AttType>SCH</AttType>
|
|
700
|
-
<FileTypeName>Schema</FileTypeName>
|
|
701
|
-
<Elements>1</Elements>
|
|
702
|
-
<Namespace>http://xbrl.sec.gov/country/2021</Namespace>
|
|
703
|
-
<Prefix>country</Prefix>
|
|
704
|
-
</Loc>
|
|
705
|
-
<Loc>
|
|
706
|
-
<Family>CEF</Family>
|
|
707
|
-
<Version>2021Q4</Version>
|
|
708
|
-
<Href>https://xbrl.sec.gov/currency/2021/currency-2021.xsd</Href>
|
|
709
|
-
<AttType>SCH</AttType>
|
|
710
|
-
<FileTypeName>Schema</FileTypeName>
|
|
711
|
-
<Elements>1</Elements>
|
|
712
|
-
<Namespace>http://xbrl.sec.gov/currency/2021</Namespace>
|
|
713
|
-
<Prefix>currency</Prefix>
|
|
714
|
-
</Loc>
|
|
715
|
-
<Loc>
|
|
716
|
-
<Family>CEF</Family>
|
|
717
|
-
<Version>2021Q4</Version>
|
|
718
|
-
<Href>https://www.xbrl.org/dtr/type/2020-01-21/types.xsd</Href>
|
|
719
|
-
<AttType>SCH</AttType>
|
|
720
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
721
|
-
<Elements>0</Elements>
|
|
722
|
-
<Namespace>http://www.xbrl.org/dtr/type/2020-01-21</Namespace>
|
|
723
|
-
</Loc>
|
|
724
|
-
<Loc>
|
|
725
|
-
<Family>CEF</Family>
|
|
726
|
-
<Version>2021Q4</Version>
|
|
727
|
-
<Href>http://www.xbrl.org/lrr/role/negated-2009-12-16.xsd</Href>
|
|
728
|
-
<AttType>SCH</AttType>
|
|
729
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
730
|
-
<Elements>0</Elements>
|
|
731
|
-
<Namespace>http://www.xbrl.org/2009/role/negated</Namespace>
|
|
732
|
-
</Loc>
|
|
733
|
-
<!-- 2021 families -->
|
|
734
|
-
<Loc>
|
|
735
|
-
<Family>IFRS</Family>
|
|
736
|
-
<Version>2021</Version>
|
|
737
|
-
<Href>https://xbrl.sec.gov/stpr/2021/stpr-2021.xsd</Href>
|
|
738
|
-
<AttType>SCH</AttType>
|
|
739
|
-
<FileTypeName>Schema</FileTypeName>
|
|
740
|
-
<Elements>1</Elements>
|
|
741
|
-
<Namespace>http://xbrl.sec.gov/stpr/2021</Namespace>
|
|
742
|
-
<Prefix>stpr</Prefix>
|
|
743
|
-
</Loc>
|
|
744
|
-
<Loc>
|
|
745
|
-
<Family>IFRS</Family>
|
|
746
|
-
<Version>2021</Version>
|
|
747
|
-
<Href>https://xbrl.sec.gov/sic/2021/sic-2021.xsd</Href>
|
|
748
|
-
<AttType>SCH</AttType>
|
|
749
|
-
<FileTypeName>Schema</FileTypeName>
|
|
750
|
-
<Elements>1</Elements>
|
|
751
|
-
<Namespace>http://xbrl.sec.gov/sic/2021</Namespace>
|
|
752
|
-
<Prefix>sic</Prefix>
|
|
753
|
-
</Loc>
|
|
754
|
-
<Loc>
|
|
755
|
-
<Family>IFRS</Family>
|
|
756
|
-
<Version>2021</Version>
|
|
757
|
-
<Href>https://xbrl.sec.gov/naics/2021/naics-2021.xsd</Href>
|
|
758
|
-
<AttType>SCH</AttType>
|
|
759
|
-
<FileTypeName>Schema</FileTypeName>
|
|
760
|
-
<Elements>1</Elements>
|
|
761
|
-
<Namespace>http://xbrl.sec.gov/naics/2021</Namespace>
|
|
762
|
-
<Prefix>naics</Prefix>
|
|
763
|
-
</Loc>
|
|
764
|
-
<Loc>
|
|
765
|
-
<Family>IFRS</Family>
|
|
766
|
-
<Version>2021</Version>
|
|
767
|
-
<Href>https://xbrl.sec.gov/exch/2021/exch-2021.xsd</Href>
|
|
768
|
-
<AttType>SCH</AttType>
|
|
769
|
-
<FileTypeName>Schema</FileTypeName>
|
|
770
|
-
<Elements>1</Elements>
|
|
771
|
-
<Namespace>http://xbrl.sec.gov/exch/2021</Namespace>
|
|
772
|
-
<Prefix>exch</Prefix>
|
|
773
|
-
</Loc>
|
|
774
|
-
<Loc>
|
|
775
|
-
<Family>IFRS</Family>
|
|
776
|
-
<Version>2021</Version>
|
|
777
|
-
<Href>https://xbrl.sec.gov/currency/2021/currency-2021.xsd</Href>
|
|
778
|
-
<AttType>SCH</AttType>
|
|
779
|
-
<FileTypeName>Schema</FileTypeName>
|
|
780
|
-
<Elements>1</Elements>
|
|
781
|
-
<Namespace>http://xbrl.sec.gov/currency/2021</Namespace>
|
|
782
|
-
<Prefix>currency</Prefix>
|
|
783
|
-
</Loc>
|
|
784
|
-
<Loc>
|
|
785
|
-
<Family>IFRS</Family>
|
|
786
|
-
<Version>2021</Version>
|
|
787
|
-
<Href>https://xbrl.sec.gov/country/2021/country-2021.xsd</Href>
|
|
788
|
-
<AttType>SCH</AttType>
|
|
789
|
-
<FileTypeName>Schema</FileTypeName>
|
|
790
|
-
<Elements>1</Elements>
|
|
791
|
-
<Namespace>http://xbrl.sec.gov/country/2021</Namespace>
|
|
792
|
-
<Prefix>country</Prefix>
|
|
793
|
-
</Loc>
|
|
794
|
-
<Loc>
|
|
795
|
-
<Family>IFRS</Family>
|
|
796
|
-
<Version>2021</Version>
|
|
797
|
-
<Href>http://xbrl.ifrs.org/taxonomy/2021-03-24/full_ifrs/full_ifrs-cor_2021-03-24.xsd</Href>
|
|
798
|
-
<AttType>SCH</AttType>
|
|
799
|
-
<FileTypeName>Schema</FileTypeName>
|
|
800
|
-
<Elements>1</Elements>
|
|
801
|
-
<Namespace>http://xbrl.ifrs.org/taxonomy/2021-03-24/ifrs-full</Namespace>
|
|
802
|
-
<Prefix>ifrs-full</Prefix>
|
|
803
|
-
</Loc>
|
|
804
|
-
<Loc>
|
|
805
|
-
<Family>IFRS</Family>
|
|
806
|
-
<Version>2021</Version>
|
|
807
|
-
<Href>https://xbrl.fasb.org/us-gaap/2021/elts/us-gaap-2021-01-31.xsd</Href>
|
|
808
|
-
<AttType>SCH</AttType>
|
|
809
|
-
<FileTypeName>Schema</FileTypeName>
|
|
810
|
-
<Elements>1</Elements>
|
|
811
|
-
<Namespace>http://fasb.org/us-gaap/2021-01-31</Namespace>
|
|
812
|
-
<Prefix>us-gaap</Prefix>
|
|
813
|
-
</Loc>
|
|
814
|
-
<Loc>
|
|
815
|
-
<Family>IFRS</Family>
|
|
816
|
-
<Version>2021</Version>
|
|
817
|
-
<Href>https://xbrl.fasb.org/srt/2021/elts/srt-2021-01-31.xsd</Href>
|
|
818
|
-
<AttType>SCH</AttType>
|
|
819
|
-
<FileTypeName>Schema</FileTypeName>
|
|
820
|
-
<Elements>1</Elements>
|
|
821
|
-
<Namespace>http://fasb.org/srt/2021-01-31</Namespace>
|
|
822
|
-
<Prefix>srt</Prefix>
|
|
823
|
-
</Loc>
|
|
824
|
-
<Loc>
|
|
825
|
-
<Family>IFRS</Family>
|
|
826
|
-
<Version>2021</Version>
|
|
827
|
-
<Href>https://xbrl.sec.gov/dei/2021/dei-2021.xsd</Href>
|
|
828
|
-
<AttType>SCH</AttType>
|
|
829
|
-
<FileTypeName>Schema</FileTypeName>
|
|
830
|
-
<Elements>1</Elements>
|
|
831
|
-
<Namespace>http://xbrl.sec.gov/dei/2021</Namespace>
|
|
832
|
-
<Prefix>dei</Prefix>
|
|
833
|
-
</Loc>
|
|
834
|
-
<Loc>
|
|
835
|
-
<Family>IFRS</Family>
|
|
836
|
-
<Version>2021</Version>
|
|
837
|
-
<Href>https://xbrl.sec.gov/dei/2021/dei-2021_lab.xsd</Href>
|
|
838
|
-
<AttType>SCH</AttType>
|
|
839
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
840
|
-
<Elements>0</Elements>
|
|
841
|
-
<Namespace>http://xbrl.sec.gov/dei-lab/2021</Namespace>
|
|
842
|
-
</Loc>
|
|
843
|
-
<Loc>
|
|
844
|
-
<Family>IFRS</Family>
|
|
845
|
-
<Version>2021</Version>
|
|
846
|
-
<Href>https://xbrl.sec.gov/dei/2021/dei-2021_pre.xsd</Href>
|
|
847
|
-
<AttType>SCH</AttType>
|
|
848
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
849
|
-
<Elements>0</Elements>
|
|
850
|
-
<Namespace>http://xbrl.sec.gov/dei-pre/2021</Namespace>
|
|
851
|
-
</Loc>
|
|
852
|
-
<Loc>
|
|
853
|
-
<Family>IFRS</Family>
|
|
854
|
-
<Version>2021</Version>
|
|
855
|
-
<Href>https://xbrl.sec.gov/dei/2021/dei-2021_def.xsd</Href>
|
|
856
|
-
<AttType>SCH</AttType>
|
|
857
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
858
|
-
<Elements>0</Elements>
|
|
859
|
-
<Namespace>http://xbrl.sec.gov/dei-def/2021</Namespace>
|
|
860
|
-
</Loc>
|
|
861
|
-
<Loc>
|
|
862
|
-
<Family>IFRS</Family>
|
|
863
|
-
<Version>2021</Version>
|
|
864
|
-
<Href>https://xbrl.sec.gov/dei/2021q4/dei-2021q4.xsd</Href>
|
|
865
|
-
<AttType>SCH</AttType>
|
|
866
|
-
<FileTypeName>Schema</FileTypeName>
|
|
867
|
-
<Elements>1</Elements>
|
|
868
|
-
<Namespace>http://xbrl.sec.gov/dei/2021q4</Namespace>
|
|
869
|
-
<Prefix>dei</Prefix>
|
|
870
|
-
</Loc>
|
|
871
|
-
<Loc>
|
|
872
|
-
<Family>IFRS</Family>
|
|
873
|
-
<Version>2021</Version>
|
|
874
|
-
<Href>https://xbrl.sec.gov/dei/2021q4/dei-2021q4_lab.xsd</Href>
|
|
875
|
-
<AttType>SCH</AttType>
|
|
876
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
877
|
-
<Elements>0</Elements>
|
|
878
|
-
<Namespace>http://xbrl.sec.gov/dei-lab/2021q4</Namespace>
|
|
879
|
-
</Loc>
|
|
880
|
-
<Loc>
|
|
881
|
-
<Family>IFRS</Family>
|
|
882
|
-
<Version>2021</Version>
|
|
883
|
-
<Href>https://xbrl.sec.gov/dei/2021q4/dei-2021q4_pre.xsd</Href>
|
|
884
|
-
<AttType>SCH</AttType>
|
|
885
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
886
|
-
<Elements>0</Elements>
|
|
887
|
-
<Namespace>http://xbrl.sec.gov/dei-pre/2021q4</Namespace>
|
|
888
|
-
</Loc>
|
|
889
|
-
<Loc>
|
|
890
|
-
<Family>IFRS</Family>
|
|
891
|
-
<Version>2021</Version>
|
|
892
|
-
<Href>https://xbrl.sec.gov/dei/2021q4/dei-2021q4_def.xsd</Href>
|
|
893
|
-
<AttType>SCH</AttType>
|
|
894
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
895
|
-
<Elements>0</Elements>
|
|
896
|
-
<Namespace>http://xbrl.sec.gov/dei-def/2021q4</Namespace>
|
|
897
|
-
</Loc>
|
|
898
|
-
<Loc>
|
|
899
|
-
<Family>IFRS</Family>
|
|
900
|
-
<Version>2021</Version>
|
|
901
|
-
<Href>https://xbrl.sec.gov/dei/2021q4/dei-sub-2021q4.xsd</Href>
|
|
902
|
-
<AttType>SCH</AttType>
|
|
903
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
904
|
-
<Elements>0</Elements>
|
|
905
|
-
<Namespace>http://xbrl.sec.gov/dei-sub/2021q4</Namespace>
|
|
906
|
-
</Loc>
|
|
907
|
-
<Loc>
|
|
908
|
-
<Family>IFRS</Family>
|
|
909
|
-
<Version>2021</Version>
|
|
910
|
-
<Href>http://www.xbrl.org/lrr/arcrole/esma-arcrole-2018-11-21.xsd</Href>
|
|
911
|
-
<AttType>SCH</AttType>
|
|
912
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
913
|
-
<Elements>0</Elements>
|
|
914
|
-
<Namespace>http://www.esma.europa.eu/xbrl/esef/arcrole/wider-narrower</Namespace>
|
|
915
|
-
</Loc>
|
|
916
|
-
<Loc>
|
|
917
|
-
<Family>US GAAP</Family>
|
|
918
|
-
<Version>2021</Version>
|
|
919
|
-
<Href>https://xbrl.sec.gov/dei/2021/dei-2021.xsd</Href>
|
|
920
|
-
<AttType>SCH</AttType>
|
|
921
|
-
<FileTypeName>Schema</FileTypeName>
|
|
922
|
-
<Elements>1</Elements>
|
|
923
|
-
<Namespace>http://xbrl.sec.gov/dei/2021</Namespace>
|
|
924
|
-
<Prefix>dei</Prefix>
|
|
925
|
-
</Loc>
|
|
926
|
-
<Loc>
|
|
927
|
-
<Family>US GAAP</Family>
|
|
928
|
-
<Version>2021</Version>
|
|
929
|
-
<Href>https://xbrl.sec.gov/dei/2021/dei-2021_lab.xsd</Href>
|
|
930
|
-
<AttType>SCH</AttType>
|
|
931
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
932
|
-
<Elements>0</Elements>
|
|
933
|
-
<Namespace>http://xbrl.sec.gov/dei-lab/2021</Namespace>
|
|
934
|
-
</Loc>
|
|
935
|
-
<Loc>
|
|
936
|
-
<Family>US GAAP</Family>
|
|
937
|
-
<Version>2021</Version>
|
|
938
|
-
<Href>https://xbrl.sec.gov/dei/2021/dei-2021_pre.xsd</Href>
|
|
939
|
-
<AttType>SCH</AttType>
|
|
940
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
941
|
-
<Elements>0</Elements>
|
|
942
|
-
<Namespace>http://xbrl.sec.gov/dei-pre/2021</Namespace>
|
|
943
|
-
</Loc>
|
|
944
|
-
<Loc>
|
|
945
|
-
<Family>US GAAP</Family>
|
|
946
|
-
<Version>2021</Version>
|
|
947
|
-
<Href>https://xbrl.sec.gov/dei/2021/dei-2021_def.xsd</Href>
|
|
948
|
-
<AttType>SCH</AttType>
|
|
949
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
950
|
-
<Elements>0</Elements>
|
|
951
|
-
<Namespace>http://xbrl.sec.gov/dei-def/2021</Namespace>
|
|
952
|
-
</Loc>
|
|
953
|
-
<Loc>
|
|
954
|
-
<Family>US GAAP</Family>
|
|
955
|
-
<Version>2021</Version>
|
|
956
|
-
<Href>https://xbrl.sec.gov/dei/2021q4/dei-2021q4.xsd</Href>
|
|
957
|
-
<AttType>SCH</AttType>
|
|
958
|
-
<FileTypeName>Schema</FileTypeName>
|
|
959
|
-
<Elements>1</Elements>
|
|
960
|
-
<Namespace>http://xbrl.sec.gov/dei/2021q4</Namespace>
|
|
961
|
-
<Prefix>dei</Prefix>
|
|
962
|
-
</Loc>
|
|
963
|
-
<Loc>
|
|
964
|
-
<Family>US GAAP</Family>
|
|
965
|
-
<Version>2021</Version>
|
|
966
|
-
<Href>https://xbrl.sec.gov/dei/2021q4/dei-2021q4_lab.xsd</Href>
|
|
967
|
-
<AttType>SCH</AttType>
|
|
968
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
969
|
-
<Elements>0</Elements>
|
|
970
|
-
<Namespace>http://xbrl.sec.gov/dei-lab/2021q4</Namespace>
|
|
971
|
-
</Loc>
|
|
972
|
-
<Loc>
|
|
973
|
-
<Family>US GAAP</Family>
|
|
974
|
-
<Version>2021</Version>
|
|
975
|
-
<Href>https://xbrl.sec.gov/dei/2021q4/dei-2021q4_pre.xsd</Href>
|
|
976
|
-
<AttType>SCH</AttType>
|
|
977
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
978
|
-
<Elements>0</Elements>
|
|
979
|
-
<Namespace>http://xbrl.sec.gov/dei-pre/2021q4</Namespace>
|
|
980
|
-
</Loc>
|
|
981
|
-
<Loc>
|
|
982
|
-
<Family>US GAAP</Family>
|
|
983
|
-
<Version>2021</Version>
|
|
984
|
-
<Href>https://xbrl.sec.gov/dei/2021q4/dei-2021q4_def.xsd</Href>
|
|
985
|
-
<AttType>SCH</AttType>
|
|
986
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
987
|
-
<Elements>0</Elements>
|
|
988
|
-
<Namespace>http://xbrl.sec.gov/dei-def/2021q4</Namespace>
|
|
989
|
-
</Loc>
|
|
990
|
-
<Loc>
|
|
991
|
-
<Family>US GAAP</Family>
|
|
992
|
-
<Version>2021</Version>
|
|
993
|
-
<Href>https://xbrl.sec.gov/dei/2021q4/dei-sub-2021q4.xsd</Href>
|
|
994
|
-
<AttType>SCH</AttType>
|
|
995
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
996
|
-
<Elements>0</Elements>
|
|
997
|
-
<Namespace>http://xbrl.sec.gov/dei-sub/2021q4</Namespace>
|
|
998
|
-
</Loc>
|
|
999
|
-
<Loc>
|
|
1000
|
-
<Family>US GAAP</Family>
|
|
1001
|
-
<Version>2021</Version>
|
|
1002
|
-
<Href>https://xbrl.sec.gov/country/2021/country-2021.xsd</Href>
|
|
1003
|
-
<AttType>SCH</AttType>
|
|
1004
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1005
|
-
<Elements>1</Elements>
|
|
1006
|
-
<Namespace>http://xbrl.sec.gov/country/2021</Namespace>
|
|
1007
|
-
<Prefix>country</Prefix>
|
|
1008
|
-
</Loc>
|
|
1009
|
-
<Loc>
|
|
1010
|
-
<Family>US GAAP</Family>
|
|
1011
|
-
<Version>2021</Version>
|
|
1012
|
-
<Href>https://xbrl.sec.gov/currency/2021/currency-2021.xsd</Href>
|
|
1013
|
-
<AttType>SCH</AttType>
|
|
1014
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1015
|
-
<Elements>1</Elements>
|
|
1016
|
-
<Namespace>http://xbrl.sec.gov/currency/2021</Namespace>
|
|
1017
|
-
<Prefix>currency</Prefix>
|
|
1018
|
-
</Loc>
|
|
1019
|
-
<Loc>
|
|
1020
|
-
<Family>US GAAP</Family>
|
|
1021
|
-
<Version>2021</Version>
|
|
1022
|
-
<Href>https://xbrl.sec.gov/exch/2021/exch-2021.xsd</Href>
|
|
1023
|
-
<AttType>SCH</AttType>
|
|
1024
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1025
|
-
<Elements>1</Elements>
|
|
1026
|
-
<Namespace>http://xbrl.sec.gov/exch/2021</Namespace>
|
|
1027
|
-
<Prefix>exch</Prefix>
|
|
1028
|
-
</Loc>
|
|
1029
|
-
<Loc>
|
|
1030
|
-
<Family>US GAAP</Family>
|
|
1031
|
-
<Version>2021</Version>
|
|
1032
|
-
<Href>https://xbrl.sec.gov/sic/2021/sic-2021.xsd</Href>
|
|
1033
|
-
<AttType>SCH</AttType>
|
|
1034
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1035
|
-
<Elements>1</Elements>
|
|
1036
|
-
<Namespace>http://xbrl.sec.gov/sic/2021</Namespace>
|
|
1037
|
-
<Prefix>sic</Prefix>
|
|
1038
|
-
</Loc>
|
|
1039
|
-
<Loc>
|
|
1040
|
-
<Family>US GAAP</Family>
|
|
1041
|
-
<Version>2021</Version>
|
|
1042
|
-
<Href>https://xbrl.sec.gov/stpr/2021/stpr-2021.xsd</Href>
|
|
1043
|
-
<AttType>SCH</AttType>
|
|
1044
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1045
|
-
<Elements>1</Elements>
|
|
1046
|
-
<Namespace>http://xbrl.sec.gov/stpr/2021</Namespace>
|
|
1047
|
-
<Prefix>stpr</Prefix>
|
|
1048
|
-
</Loc>
|
|
1049
|
-
<Loc>
|
|
1050
|
-
<Family>US GAAP</Family>
|
|
1051
|
-
<Version>2021</Version>
|
|
1052
|
-
<Href>https://xbrl.sec.gov/naics/2021/naics-2021.xsd</Href>
|
|
1053
|
-
<AttType>SCH</AttType>
|
|
1054
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1055
|
-
<Elements>1</Elements>
|
|
1056
|
-
<Namespace>http://xbrl.sec.gov/naics/2021</Namespace>
|
|
1057
|
-
<Prefix>naics</Prefix>
|
|
1058
|
-
</Loc>
|
|
1059
|
-
<Loc>
|
|
1060
|
-
<Family>US GAAP</Family>
|
|
1061
|
-
<Version>2021</Version>
|
|
1062
|
-
<Href>https://xbrl.fasb.org/us-gaap/2021/elts/us-gaap-2021-01-31.xsd</Href>
|
|
1063
|
-
<AttType>SCH</AttType>
|
|
1064
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1065
|
-
<Elements>1</Elements>
|
|
1066
|
-
<Namespace>http://fasb.org/us-gaap/2021-01-31</Namespace>
|
|
1067
|
-
<Prefix>us-gaap</Prefix>
|
|
1068
|
-
</Loc>
|
|
1069
|
-
<Loc>
|
|
1070
|
-
<Family>US GAAP</Family>
|
|
1071
|
-
<Version>2021</Version>
|
|
1072
|
-
<Href>https://xbrl.fasb.org/srt/2021/elts/srt-2021-01-31.xsd</Href>
|
|
1073
|
-
<AttType>SCH</AttType>
|
|
1074
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1075
|
-
<Elements>1</Elements>
|
|
1076
|
-
<Namespace>http://fasb.org/srt/2021-01-31</Namespace>
|
|
1077
|
-
<Prefix>srt</Prefix>
|
|
1078
|
-
</Loc>
|
|
1079
|
-
<Loc>
|
|
1080
|
-
<Family>US GAAP</Family>
|
|
1081
|
-
<Version>2021</Version>
|
|
1082
|
-
<Href>https://xbrl.fasb.org/us-gaap/2021/elts/us-types-2021-01-31.xsd</Href>
|
|
1083
|
-
<AttType>SCH</AttType>
|
|
1084
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1085
|
-
<Elements>0</Elements>
|
|
1086
|
-
<Namespace>http://fasb.org/us-types/2021-01-31</Namespace>
|
|
1087
|
-
<Prefix>us-types</Prefix>
|
|
1088
|
-
</Loc>
|
|
1089
|
-
<Loc>
|
|
1090
|
-
<Family>US GAAP</Family>
|
|
1091
|
-
<Version>2021</Version>
|
|
1092
|
-
<Href>https://xbrl.fasb.org/us-gaap/2021/elts/us-roles-2021-01-31.xsd</Href>
|
|
1093
|
-
<AttType>SCH</AttType>
|
|
1094
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1095
|
-
<Elements>0</Elements>
|
|
1096
|
-
<Namespace>http://fasb.org/us-roles/2021-01-31</Namespace>
|
|
1097
|
-
</Loc>
|
|
1098
|
-
<Loc>
|
|
1099
|
-
<Family>US GAAP</Family>
|
|
1100
|
-
<Version>2021</Version>
|
|
1101
|
-
<Href>https://xbrl.fasb.org/srt/2021/elts/srt-types-2021-01-31.xsd</Href>
|
|
1102
|
-
<AttType>SCH</AttType>
|
|
1103
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1104
|
-
<Elements>0</Elements>
|
|
1105
|
-
<Namespace>http://fasb.org/srt-types/2021-01-31</Namespace>
|
|
1106
|
-
<Prefix>srt-types</Prefix>
|
|
1107
|
-
</Loc>
|
|
1108
|
-
<Loc>
|
|
1109
|
-
<Family>US GAAP</Family>
|
|
1110
|
-
<Version>2021</Version>
|
|
1111
|
-
<Href>https://xbrl.fasb.org/srt/2021/elts/srt-roles-2021-01-31.xsd</Href>
|
|
1112
|
-
<AttType>SCH</AttType>
|
|
1113
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1114
|
-
<Elements>0</Elements>
|
|
1115
|
-
<Namespace>http://fasb.org/srt-roles/2021-01-31</Namespace>
|
|
1116
|
-
</Loc>
|
|
1117
|
-
<Loc>
|
|
1118
|
-
<Family>US GAAP</Family>
|
|
1119
|
-
<Version>2021</Version>
|
|
1120
|
-
<Href>http://www.xbrl.org/lrr/role/net-2009-12-16.xsd</Href>
|
|
1121
|
-
<AttType>SCH</AttType>
|
|
1122
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1123
|
-
<Elements>0</Elements>
|
|
1124
|
-
<Namespace>http://www.xbrl.org/2009/role/net</Namespace>
|
|
1125
|
-
</Loc>
|
|
1126
|
-
<Loc>
|
|
1127
|
-
<Family>US GAAP</Family>
|
|
1128
|
-
<Version>2021</Version>
|
|
1129
|
-
<Href>https://www.xbrl.org/dtr/type/2020-01-21/types.xsd</Href>
|
|
1130
|
-
<AttType>SCH</AttType>
|
|
1131
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1132
|
-
<Elements>0</Elements>
|
|
1133
|
-
<Namespace>http://www.xbrl.org/dtr/type/2020-01-21</Namespace>
|
|
1134
|
-
</Loc>
|
|
1135
|
-
<Loc>
|
|
1136
|
-
<Family>US GAAP</Family>
|
|
1137
|
-
<Version>2021</Version>
|
|
1138
|
-
<Href>http://www.xbrl.org/lrr/role/negated-2009-12-16.xsd</Href>
|
|
1139
|
-
<AttType>SCH</AttType>
|
|
1140
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1141
|
-
<Elements>0</Elements>
|
|
1142
|
-
<Namespace>http://www.xbrl.org/2009/role/negated</Namespace>
|
|
1143
|
-
</Loc>
|
|
1144
|
-
<Loc>
|
|
1145
|
-
<Family>US GAAP</Family>
|
|
1146
|
-
<Version>2021</Version>
|
|
1147
|
-
<Href>http://www.xbrl.org/lrr/arcrole/factExplanatory-2009-12-16.xsd</Href>
|
|
1148
|
-
<AttType>SCH</AttType>
|
|
1149
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1150
|
-
<Elements>0</Elements>
|
|
1151
|
-
<Namespace>http://www.xbrl.org/2009/arcrole/fact-explanatoryFact</Namespace>
|
|
1152
|
-
</Loc>
|
|
1153
|
-
<Loc>
|
|
1154
|
-
<Family>US GAAP</Family>
|
|
1155
|
-
<Version>2021</Version>
|
|
1156
|
-
<Href>http://www.xbrl.org/lrr/arcrole/esma-arcrole-2018-11-21.xsd</Href>
|
|
1157
|
-
<AttType>SCH</AttType>
|
|
1158
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1159
|
-
<Elements>0</Elements>
|
|
1160
|
-
<Namespace>http://www.esma.europa.eu/xbrl/esef/arcrole/wider-narrower</Namespace>
|
|
1161
|
-
</Loc>
|
|
1162
|
-
<Loc>
|
|
1163
|
-
<Family>US GAAP</Family>
|
|
1164
|
-
<Version>2021</Version>
|
|
1165
|
-
<Href>https://www.xbrl.org/2020/extensible-enumerations-2.0.xsd</Href>
|
|
1166
|
-
<AttType>SCH</AttType>
|
|
1167
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1168
|
-
<Elements>0</Elements>
|
|
1169
|
-
<Namespace>http://xbrl.org/2020/extensible-enumerations-2.0</Namespace>
|
|
1170
|
-
<Prefix>enum2</Prefix>
|
|
1171
|
-
</Loc>
|
|
1172
|
-
<Loc>
|
|
1173
|
-
<Family>RR</Family>
|
|
1174
|
-
<Version>2021</Version>
|
|
1175
|
-
<Href>https://xbrl.sec.gov/rr/2021/rr-2021.xsd</Href>
|
|
1176
|
-
<AttType>SCH</AttType>
|
|
1177
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1178
|
-
<Elements>1</Elements>
|
|
1179
|
-
<Namespace>http://xbrl.sec.gov/rr/2021</Namespace>
|
|
1180
|
-
<Prefix>rr</Prefix>
|
|
1181
|
-
</Loc>
|
|
1182
|
-
<Loc>
|
|
1183
|
-
<Family>RR</Family>
|
|
1184
|
-
<Version>2021</Version>
|
|
1185
|
-
<Href>https://xbrl.sec.gov/rr/2021/rr-2021_lab.xsd</Href>
|
|
1186
|
-
<AttType>SCH</AttType>
|
|
1187
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
1188
|
-
<Elements>0</Elements>
|
|
1189
|
-
<Namespace>http://xbrl.sec.gov/rr-lab/2021</Namespace>
|
|
1190
|
-
</Loc>
|
|
1191
|
-
<Loc>
|
|
1192
|
-
<Family>RR</Family>
|
|
1193
|
-
<Version>2021</Version>
|
|
1194
|
-
<Href>https://xbrl.sec.gov/rr/2021/rr-2021_pre.xsd</Href>
|
|
1195
|
-
<AttType>SCH</AttType>
|
|
1196
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
1197
|
-
<Elements>0</Elements>
|
|
1198
|
-
<Namespace>http://xbrl.sec.gov/rr-pre/2021</Namespace>
|
|
1199
|
-
</Loc>
|
|
1200
|
-
<Loc>
|
|
1201
|
-
<Family>RR</Family>
|
|
1202
|
-
<Version>2021</Version>
|
|
1203
|
-
<Href>https://xbrl.sec.gov/rr/2021/rr-2021_def.xsd</Href>
|
|
1204
|
-
<AttType>SCH</AttType>
|
|
1205
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
1206
|
-
<Elements>0</Elements>
|
|
1207
|
-
<Namespace>http://xbrl.sec.gov/rr-def/2021</Namespace>
|
|
1208
|
-
</Loc>
|
|
1209
|
-
<Loc>
|
|
1210
|
-
<Family>RR</Family>
|
|
1211
|
-
<Version>2021</Version>
|
|
1212
|
-
<Href>https://www.xbrl.org/dtr/type/2020-01-21/types.xsd</Href>
|
|
1213
|
-
<AttType>SCH</AttType>
|
|
1214
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1215
|
-
<Elements>0</Elements>
|
|
1216
|
-
<Namespace>http://www.xbrl.org/dtr/type/2020-01-21</Namespace>
|
|
1217
|
-
</Loc>
|
|
1218
|
-
<Loc>
|
|
1219
|
-
<Family>RR</Family>
|
|
1220
|
-
<Version>2021</Version>
|
|
1221
|
-
<Href>https://xbrl.sec.gov/dei/2021/dei-2021.xsd</Href>
|
|
1222
|
-
<AttType>SCH</AttType>
|
|
1223
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1224
|
-
<Elements>1</Elements>
|
|
1225
|
-
<Namespace>http://xbrl.sec.gov/dei/2021</Namespace>
|
|
1226
|
-
<Prefix>dei</Prefix>
|
|
1227
|
-
</Loc>
|
|
1228
|
-
<Loc>
|
|
1229
|
-
<Family>RR</Family>
|
|
1230
|
-
<Version>2021</Version>
|
|
1231
|
-
<Href>https://xbrl.sec.gov/dei/2021/dei-2021_pre.xsd</Href>
|
|
1232
|
-
<AttType>SCH</AttType>
|
|
1233
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
1234
|
-
<Elements>0</Elements>
|
|
1235
|
-
<Namespace>http://xbrl.sec.gov/dei-pre/2021</Namespace>
|
|
1236
|
-
</Loc>
|
|
1237
|
-
<Loc>
|
|
1238
|
-
<Family>RR</Family>
|
|
1239
|
-
<Version>2021</Version>
|
|
1240
|
-
<Href>https://xbrl.sec.gov/dei/2021/dei-2021_lab.xsd</Href>
|
|
1241
|
-
<AttType>SCH</AttType>
|
|
1242
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
1243
|
-
<Elements>0</Elements>
|
|
1244
|
-
<Namespace>http://xbrl.sec.gov/dei-lab/2021</Namespace>
|
|
1245
|
-
</Loc>
|
|
1246
|
-
<Loc>
|
|
1247
|
-
<Family>RR</Family>
|
|
1248
|
-
<Version>2021</Version>
|
|
1249
|
-
<Href>https://xbrl.sec.gov/dei/2021/dei-2021_def.xsd</Href>
|
|
1250
|
-
<AttType>SCH</AttType>
|
|
1251
|
-
<FileTypeName>Entry Point</FileTypeName>
|
|
1252
|
-
<Elements>0</Elements>
|
|
1253
|
-
<Namespace>http://xbrl.sec.gov/dei-def/2021</Namespace>
|
|
1254
|
-
</Loc>
|
|
1255
|
-
<Loc>
|
|
1256
|
-
<Family>RR</Family>
|
|
1257
|
-
<Version>2021</Version>
|
|
1258
|
-
<Href>https://xbrl.sec.gov/currency/2021/currency-2021.xsd</Href>
|
|
1259
|
-
<AttType>SCH</AttType>
|
|
1260
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1261
|
-
<Elements>1</Elements>
|
|
1262
|
-
<Namespace>http://xbrl.sec.gov/currency/2021</Namespace>
|
|
1263
|
-
<Prefix>currency</Prefix>
|
|
1264
|
-
</Loc>
|
|
1265
|
-
<Loc>
|
|
1266
|
-
<Family>RR</Family>
|
|
1267
|
-
<Version>2021</Version>
|
|
1268
|
-
<Href>https://xbrl.sec.gov/country/2021/country-2021.xsd</Href>
|
|
1269
|
-
<AttType>SCH</AttType>
|
|
1270
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1271
|
-
<Elements>1</Elements>
|
|
1272
|
-
<Namespace>http://xbrl.sec.gov/country/2021</Namespace>
|
|
1273
|
-
<Prefix>country</Prefix>
|
|
1274
|
-
</Loc>
|
|
1275
|
-
<Loc>
|
|
1276
|
-
<Family>RR</Family>
|
|
1277
|
-
<Version>2021</Version>
|
|
1278
|
-
<Href>http://www.xbrl.org/lrr/role/negated-2009-12-16.xsd</Href>
|
|
1279
|
-
<AttType>SCH</AttType>
|
|
1280
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1281
|
-
<Elements>0</Elements>
|
|
1282
|
-
<Namespace>http://www.xbrl.org/2009/role/negated</Namespace>
|
|
1283
|
-
</Loc>
|
|
1284
|
-
<Loc>
|
|
1285
|
-
<Family>BASE</Family>
|
|
1286
|
-
<Version>2010</Version>
|
|
1287
|
-
<Href>http://www.xbrl.org/2006/xbrldi-2006.xsd</Href>
|
|
1288
|
-
<AttType>SCH</AttType>
|
|
1289
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1290
|
-
<Elements>1</Elements>
|
|
1291
|
-
<Namespace>http://xbrl.org/2006/xbrldi</Namespace>
|
|
1292
|
-
<Prefix>xbrldi</Prefix>
|
|
1293
|
-
</Loc>
|
|
1294
|
-
<Loc>
|
|
1295
|
-
<Family>BASE</Family>
|
|
1296
|
-
<Version>2010</Version>
|
|
1297
|
-
<Href>http://www.xbrl.org/2005/xbrldt-2005.xsd</Href>
|
|
1298
|
-
<AttType>SCH</AttType>
|
|
1299
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1300
|
-
<Elements>1</Elements>
|
|
1301
|
-
<Namespace>http://xbrl.org/2005/xbrldt</Namespace>
|
|
1302
|
-
<Prefix>xbrldt</Prefix>
|
|
1303
|
-
</Loc>
|
|
1304
|
-
<Loc>
|
|
1305
|
-
<Family>BASE</Family>
|
|
1306
|
-
<Version>2010</Version>
|
|
1307
|
-
<Href>http://www.xbrl.org/lrr/role/net-2009-12-16.xsd</Href>
|
|
1308
|
-
<AttType>SCH</AttType>
|
|
1309
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1310
|
-
<Elements>0</Elements>
|
|
1311
|
-
<Namespace>http://www.xbrl.org/2009/role/net</Namespace>
|
|
1312
|
-
</Loc>
|
|
1313
|
-
<Loc>
|
|
1314
|
-
<Family>BASE</Family>
|
|
1315
|
-
<Version>2010</Version>
|
|
1316
|
-
<Href>http://www.xbrl.org/lrr/role/negated-2009-12-16.xsd</Href>
|
|
1317
|
-
<AttType>SCH</AttType>
|
|
1318
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1319
|
-
<Elements>0</Elements>
|
|
1320
|
-
<Namespace>http://www.xbrl.org/2009/role/negated</Namespace>
|
|
1321
|
-
</Loc>
|
|
1322
|
-
<Loc>
|
|
1323
|
-
<Family>BASE</Family>
|
|
1324
|
-
<Version>2010</Version>
|
|
1325
|
-
<Href>http://www.xbrl.org/lrr/role/deprecated-2009-12-16.xsd</Href>
|
|
1326
|
-
<AttType>SCH</AttType>
|
|
1327
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1328
|
-
<Elements>0</Elements>
|
|
1329
|
-
<Namespace>http://www.xbrl.org/2009/role/deprecated</Namespace>
|
|
1330
|
-
</Loc>
|
|
1331
|
-
<Loc>
|
|
1332
|
-
<Family>BASE</Family>
|
|
1333
|
-
<Version>2010</Version>
|
|
1334
|
-
<Href>http://www.xbrl.org/lrr/arcrole/factExplanatory-2009-12-16.xsd</Href>
|
|
1335
|
-
<AttType>SCH</AttType>
|
|
1336
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1337
|
-
<Elements>0</Elements>
|
|
1338
|
-
<Namespace>http://www.xbrl.org/2009/arcrole/fact-explanatoryFact</Namespace>
|
|
1339
|
-
</Loc>
|
|
1340
|
-
<Loc>
|
|
1341
|
-
<Family>BASE</Family>
|
|
1342
|
-
<Version>2010</Version>
|
|
1343
|
-
<Href>http://www.xbrl.org/lrr/arcrole/deprecated-2009-12-16.xsd</Href>
|
|
1344
|
-
<AttType>SCH</AttType>
|
|
1345
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
1346
|
-
<Elements>0</Elements>
|
|
1347
|
-
<Namespace>http://www.xbrl.org/2009/arcrole/deprecated</Namespace>
|
|
1348
|
-
</Loc>
|
|
1349
|
-
<Loc>
|
|
1350
|
-
<Family>BASE</Family>
|
|
1351
|
-
<Version>2010</Version>
|
|
1352
|
-
<Href>http://www.xbrl.org/dtr/type/numeric-2009-12-16.xsd</Href>
|
|
1353
|
-
<AttType>SCH</AttType>
|
|
1354
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1355
|
-
<Elements>0</Elements>
|
|
1356
|
-
<Namespace>http://www.xbrl.org/dtr/type/numeric</Namespace>
|
|
1357
|
-
<Prefix>num</Prefix>
|
|
1358
|
-
</Loc>
|
|
1359
|
-
<Loc>
|
|
1360
|
-
<Family>BASE</Family>
|
|
1361
|
-
<Version>2010</Version>
|
|
1362
|
-
<Href>http://www.xbrl.org/dtr/type/nonNumeric-2009-12-16.xsd</Href>
|
|
1363
|
-
<AttType>SCH</AttType>
|
|
1364
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1365
|
-
<Elements>0</Elements>
|
|
1366
|
-
<Namespace>http://www.xbrl.org/dtr/type/non-numeric</Namespace>
|
|
1367
|
-
<Prefix>nonnum</Prefix>
|
|
1368
|
-
</Loc>
|
|
1369
|
-
<Loc>
|
|
1370
|
-
<Family>BASE</Family>
|
|
1371
|
-
<Version>2010</Version>
|
|
1372
|
-
<Href>http://www.xbrl.org/2006/ref-2006-02-27.xsd</Href>
|
|
1373
|
-
<AttType>SCH</AttType>
|
|
1374
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1375
|
-
<Elements>0</Elements>
|
|
1376
|
-
<Namespace>http://www.xbrl.org/2006/ref</Namespace>
|
|
1377
|
-
<Prefix>ref</Prefix>
|
|
1378
|
-
</Loc>
|
|
1379
|
-
<Loc>
|
|
1380
|
-
<Family>BASE</Family>
|
|
1381
|
-
<Version>2010</Version>
|
|
1382
|
-
<Href>http://www.xbrl.org/2004/ref-2004-08-10.xsd</Href>
|
|
1383
|
-
<AttType>SCH</AttType>
|
|
1384
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1385
|
-
<Elements>0</Elements>
|
|
1386
|
-
<Namespace>http://www.xbrl.org/2004/ref</Namespace>
|
|
1387
|
-
<Prefix>ref</Prefix>
|
|
1388
|
-
</Loc>
|
|
1389
|
-
<Loc>
|
|
1390
|
-
<Family>BASE</Family>
|
|
1391
|
-
<Version>2010</Version>
|
|
1392
|
-
<Href>http://www.xbrl.org/2003/xlink-2003-12-31.xsd</Href>
|
|
1393
|
-
<AttType>SCH</AttType>
|
|
1394
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1395
|
-
<Elements>0</Elements>
|
|
1396
|
-
<Namespace>http://www.w3.org/1999/xlink</Namespace>
|
|
1397
|
-
<Prefix>xlink</Prefix>
|
|
1398
|
-
</Loc>
|
|
1399
|
-
<Loc>
|
|
1400
|
-
<Family>BASE</Family>
|
|
1401
|
-
<Version>2010</Version>
|
|
1402
|
-
<Href>http://www.xbrl.org/2003/xl-2003-12-31.xsd</Href>
|
|
1403
|
-
<AttType>SCH</AttType>
|
|
1404
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1405
|
-
<Elements>0</Elements>
|
|
1406
|
-
<Namespace>http://www.xbrl.org/2003/XLink</Namespace>
|
|
1407
|
-
<Prefix>xl</Prefix>
|
|
1408
|
-
</Loc>
|
|
1409
|
-
<Loc>
|
|
1410
|
-
<Family>BASE</Family>
|
|
1411
|
-
<Version>2010</Version>
|
|
1412
|
-
<Href>http://www.xbrl.org/2003/xbrl-linkbase-2003-12-31.xsd</Href>
|
|
1413
|
-
<AttType>SCH</AttType>
|
|
1414
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1415
|
-
<Elements>0</Elements>
|
|
1416
|
-
<Namespace>http://www.xbrl.org/2003/linkbase</Namespace>
|
|
1417
|
-
<Prefix>link</Prefix>
|
|
1418
|
-
</Loc>
|
|
1419
|
-
<Loc>
|
|
1420
|
-
<Family>BASE</Family>
|
|
1421
|
-
<Version>2010</Version>
|
|
1422
|
-
<Href>http://www.xbrl.org/2003/xbrl-instance-2003-12-31.xsd</Href>
|
|
1423
|
-
<AttType>SCH</AttType>
|
|
1424
|
-
<FileTypeName>Schema</FileTypeName>
|
|
1425
|
-
<Elements>0</Elements>
|
|
1426
|
-
<Namespace>http://www.xbrl.org/2003/instance</Namespace>
|
|
1427
|
-
<Prefix>xbrli</Prefix>
|
|
1428
|
-
</Loc>
|
|
1429
|
-
</Erxl>
|