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,2884 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"copyright": [
|
|
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
|
-
"description": [
|
|
8
|
-
"DEI validations for Cover and supplemental instances except EX-107 (Fee Tagging).",
|
|
9
|
-
"",
|
|
10
|
-
"The format is as follows:",
|
|
11
|
-
"",
|
|
12
|
-
"A JSON object with objects named sub-types, validations and messages",
|
|
13
|
-
"",
|
|
14
|
-
"The sub-type-classes object contains sub-types arrayed for convenience of specifying validations",
|
|
15
|
-
"A sub-type beginning with @ is a reference to the sub-type-class following @ character.",
|
|
16
|
-
"A sub-type-class and resolved references behave as a set (de-duplicating arrayed sub-types).",
|
|
17
|
-
"Where !not! appears in a set then validation applies if the argument is not in the set.",
|
|
18
|
-
"",
|
|
19
|
-
"The validations object contains an ordered array of validation objects.",
|
|
20
|
-
"whose keys name the preferred axes prefixed name (e.g., 'srt:CurrencyAxis'), ",
|
|
21
|
-
"and values are a regular expression pattern. ",
|
|
22
|
-
"",
|
|
23
|
-
"Each validation object contains the following entries:",
|
|
24
|
-
" sub-types: arrayed submissionType or submissionType references or single submissionType or submissionType reference,",
|
|
25
|
-
" where specific to a form type, section-sign § separates sub and form types, e.g. 'POS EX§N-2' ",
|
|
26
|
-
" sub-types-pattern: a regex to match submissionTypes instead of the sub-types array of submissionType values",
|
|
27
|
-
" xbrl-names, elo-names, and severities may be array (plural) or individual",
|
|
28
|
-
" xbrl-names: arrayed dei local names or prefixed non-dei nmes of XBRL elements,",
|
|
29
|
-
" elo-names: optional corresponding arrayed ELO schema names of XML elements,",
|
|
30
|
-
" xbrl-name: single local name of XBRL element,",
|
|
31
|
-
" elo-name: optional single ELO schema name of XML element,",
|
|
32
|
-
" store-db-name: optional ELO db name if elo value to be stored in EDGAR db",
|
|
33
|
-
" store-db-object: optional ELO object for DB parameter passing, e.g., eloValuesFromFacts or submissionFacts",
|
|
34
|
-
" efm: section in EFM, e.g., 6.5.21,",
|
|
35
|
-
" validation: cell reference per FRD (replace below), required except for store-db-name entries",
|
|
36
|
-
" axis: optional, when an element has an axis specification",
|
|
37
|
-
" value: optional, when an element must have a certain value",
|
|
38
|
-
" check-after: optional date, when provided the validation is skipped unless it is earlier than periodOfReport if provided, else DocumentPeriodEndDate if provided, else required context end date",
|
|
39
|
-
" value-for-reference-check: optional, when this fact must have a value for referenced fact condition check (default non-nil non-empty)",
|
|
40
|
-
" reference: optional, reference to another xbrl-name for dependent or co-dependent validations,",
|
|
41
|
-
" reference-value: optional, when a referenced fact must have a certain value",
|
|
42
|
-
" source: inline or both",
|
|
43
|
-
" dei/cover: cover - warning if inline and not visible, COVER - error if inline and not visible, dei - no visibility requirement for inline",
|
|
44
|
-
" elo-match-message: optional, overrides elo match message, default is dq-0540-{tag}-Value",
|
|
45
|
-
" comment: optional, comment string",
|
|
46
|
-
"",
|
|
47
|
-
"The messages object contains messages which may be referenced by validations",
|
|
48
|
-
"",
|
|
49
|
-
"The validation-legend object describes the codes in the validation object @validation value",
|
|
50
|
-
"",
|
|
51
|
-
"The extraction-cover-tags array lists local names of facts to be added to exported JSON facts."
|
|
52
|
-
],
|
|
53
|
-
"sub-type-classes": {
|
|
54
|
-
"comment1": "FAST act sub-type classes",
|
|
55
|
-
"8-K": ["8-K", "8-K/A", "8-K12B", "8-K12B/A", "8-K12G3", "8-K12G3/A", "8-K15D5", "8-K15D5/A"],
|
|
56
|
-
"10-K": ["10-K", "10-K/A"],
|
|
57
|
-
"10-KT": ["10-KT", "10-KT/A"],
|
|
58
|
-
"10-K+KT": ["@10-K", "@10-KT"],
|
|
59
|
-
"10-Q": ["10-Q", "10-Q/A"],
|
|
60
|
-
"10-QT": ["10-QT", "10-QT/A"],
|
|
61
|
-
"10-Q+QT": ["@10-Q", "@10-QT"],
|
|
62
|
-
"10-K+Q": ["@10-K+KT", "@10-Q+QT"],
|
|
63
|
-
"20-F": ["20-F", "20-F/A"],
|
|
64
|
-
"40-F": ["40-F", "40-F/A"],
|
|
65
|
-
"20+40-F": ["@20-F", "@40-F"],
|
|
66
|
-
|
|
67
|
-
"comment2": "sub-types not subject to FAST act",
|
|
68
|
-
"6-K": ["6-K", "6-K/A"],
|
|
69
|
-
"10-12B": ["10-12B", "10-12B/A"],
|
|
70
|
-
"10-12G": ["10-12G", "10-12G/A"],
|
|
71
|
-
"10-12": ["@10-12B", "@10-12G"],
|
|
72
|
-
"20FR": ["20FR12B", "20FR12B/A", "20FR12G", "20FR12G/A"],
|
|
73
|
-
"40FR": ["40FR12B", "40FR12B/A", "40FR12G", "40FR12G/A"],
|
|
74
|
-
"20+40FR": ["@20FR", "@40FR"],
|
|
75
|
-
"10-12+20+40-FR": ["@10-12", "@20+40FR"],
|
|
76
|
-
"F-n": ["F-1", "F-1/A", "F-3", "F-3/A", "F-4", "F-4/A"],
|
|
77
|
-
"F-nX": ["F-1MEF", "F-3ASR", "F-3D", "F-3DPOS", "F-3MEF", "F-4 POS", "F-4EF", "F-4MEF", "F-10", "F-10/A", "F-10EF", "F-10POS"],
|
|
78
|
-
"F-SR": ["F-SR", "F-SR/A"],
|
|
79
|
-
"N": ["N-Q", "N-Q/A", "N-CSRS", "N-CSRS/A", "NCSR", "NCSR/A", "N-CSR", "N-CSR/A"],
|
|
80
|
-
"N-1A": ["485POS§N-1A", "485APOS§N-1A", "485BPOS§N-1A", "485BXT§N-1A", "497§N-1A"],
|
|
81
|
-
"N-2": ["N-2§N-2", "@N-2-a"],
|
|
82
|
-
"N-2-a": ["N-2/A§N-2", "N-2ASR§N-2", "N-2 POSASR§N-2", "N-2MEF§N-2",
|
|
83
|
-
"N-2/A§N-2/A", "N-2ASR§N-2ASR", "N-2 POSASR§N-2 POSASR", "N-2MEF§N-2MEF",
|
|
84
|
-
"486APOS§N-2", "486BPOS§N-2", "POS 8C§N-2", "POS AMI§N-2", "POS EX§N-2", "POS462B§N-2", "POS462C§N-2", "486BXT§N-2"],
|
|
85
|
-
"N-2-any-form": ["N-2", "N-2/A", "N-2ASR", "N-2 POSASR", "N-2MEF", "486APOS", "486BPOS", "POS 8C", "POS AMI", "POS EX", "POS462B", "POS462C", "486BXT"],
|
|
86
|
-
"N-3": ["N-3", "N-3/A", "485POS§N-3", "485APOS§N-3", "485BPOS§N-3", "485BXT§N-3", "497§N-3"],
|
|
87
|
-
"N-4": ["N-4", "N-4/A", "485POS§N-4", "485APOS§N-4", "485BPOS§N-4", "485BXT§N-4", "497§N-4"],
|
|
88
|
-
"N-6": ["N-6", "N-6/A", "485POS§N-6", "485APOS§N-6", "485BPOS§N-6", "485BXT§N-6", "497§N-6"],
|
|
89
|
-
"N-346": ["@N-3", "@N-4", "@N-6"],
|
|
90
|
-
"N-CSR": ["N-CSR", "N-CSR/A", "N-CSRS", "N-CSRS/A"],
|
|
91
|
-
"POS": ["POS AM", "POS EX"],
|
|
92
|
-
"PvP": ["DEF 14A", "DEF 14C", "PRE 14A", "PRE 14C", "PREM14A", "PREM14C"],
|
|
93
|
-
"RR": ["485APOS", "485BPOS", "485BXT", "497", "N-1A", "N-1A/A"],
|
|
94
|
-
"SP 15D2": ["SP 15D2", "SP 15D2/A"],
|
|
95
|
-
"S-n": ["S-1", "S-1/A", "S-3", "S-3/A", "S-4", "S-4/A", "S-11", "S-11/A"],
|
|
96
|
-
"S-nX": ["S-1MEF", "S-3D", "S-3DPOS", "S-3MEF", "S-4EF", "S-4MEF", "S-4 POS", "S-11MEF"],
|
|
97
|
-
|
|
98
|
-
"comment3": "for SDR include both submission types (SDR, SDR/A, ...) and sub-type types (K SDR, L SDR) because in previewing desktop mode only sub-type type is provided",
|
|
99
|
-
"SD": ["SD", "SD/A", "2.01 SD"], "wch-comment": "following the SDR pattern for SD.",
|
|
100
|
-
"SDR": ["SDR", "SDR/A", "SDR-A", "SDR/W", "K SDR", "L SDR"],
|
|
101
|
-
"all-FAST": ["@10-K+Q", "@8-K", "@20+40-F"],
|
|
102
|
-
"all-non-FAST": ["!not!", "@all-FAST"],
|
|
103
|
-
"all-FAST-not-8K": ["@10-K+Q", "@20+40-F"],
|
|
104
|
-
"all": ["*"],
|
|
105
|
-
|
|
106
|
-
"comment4": "CEF compatibility checks",
|
|
107
|
-
"CEF-cover": ["497"],
|
|
108
|
-
"CEF-non-cover": ["N-CSR", "N-CSR/A", "N-CSRS", "N-CSRS/A",
|
|
109
|
-
"424A", "424B1", "424B2", "424B3", "424B4", "424B5", "424B7", "424B8",
|
|
110
|
-
"SC 13E3", "SC 13E3/A",
|
|
111
|
-
"DEF 14A", "DEF 14C", "DEFA14A", "DEFA14C", "DEFC14A", "DEFM14A", "DEFM14C", "DEFN14A", "DEFR14A", "DEFR14C"],
|
|
112
|
-
"CEF-all-sub-types": ["@8-K", "@10-K+Q", "@CEF-cover", "@CEF-non-cover", "@N-2"]
|
|
113
|
-
},
|
|
114
|
-
"sub-type-element-validations": [
|
|
115
|
-
{"sub-types": ["10-12B"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["10-12B"], "source": "both", "dei/cover": "dei"},
|
|
116
|
-
{"sub-types": ["10-12B/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["10-12B/A"], "source": "both", "dei/cover": "dei"},
|
|
117
|
-
{"sub-types": ["10-12G"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["10-12G"], "source": "both", "dei/cover": "dei"},
|
|
118
|
-
{"sub-types": ["10-12G/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["10-12G/A"], "source": "both", "dei/cover": "dei"},
|
|
119
|
-
{"sub-types": ["10-K"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["10-K"], "source": "both", "dei/cover": "cover"},
|
|
120
|
-
{"sub-types": ["10-K/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["10-K/A"], "source": "both", "dei/cover": "cover"},
|
|
121
|
-
{"sub-types": ["10-KT"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["10-KT"], "source": "both", "dei/cover": "cover"},
|
|
122
|
-
{"sub-types": ["10-KT/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["10-KT/A"], "source": "both", "dei/cover": "cover"},
|
|
123
|
-
{"sub-types": ["10-Q"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["10-Q"], "source": "both", "dei/cover": "cover"},
|
|
124
|
-
{"sub-types": ["10-Q/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["10-Q/A"], "source": "both", "dei/cover": "cover"},
|
|
125
|
-
{"sub-types": ["10-QT"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["10-QT"], "source": "both", "dei/cover": "cover"},
|
|
126
|
-
{"sub-types": ["10-QT/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["10-QT/A"], "source": "both", "dei/cover": "cover"},
|
|
127
|
-
{"sub-types": ["20-F"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["20-F"], "source": "both", "dei/cover": "cover"},
|
|
128
|
-
{"sub-types": ["20-F/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["20-F/A"], "source": "both", "dei/cover": "cover"},
|
|
129
|
-
{"sub-types": ["20FR12B"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["20FR12B"], "source": "both", "dei/cover": "dei"},
|
|
130
|
-
{"sub-types": ["20FR12B/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["20FR12B/A"], "source": "both", "dei/cover": "dei"},
|
|
131
|
-
{"sub-types": ["20FR12G"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["20FR12G"], "source": "both", "dei/cover": "dei"},
|
|
132
|
-
{"sub-types": ["20FR12G/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["20FR12G/A"], "source": "both", "dei/cover": "dei"},
|
|
133
|
-
{"sub-types": ["40-F"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["40-F"], "source": "both", "dei/cover": "cover"},
|
|
134
|
-
{"sub-types": ["40-F/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["40-F/A"], "source": "both", "dei/cover": "cover"},
|
|
135
|
-
{"sub-types": ["40FR12B"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["40FR12B"], "source": "both", "dei/cover": "dei"},
|
|
136
|
-
{"sub-types": ["40FR12B/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["40FR12B/A"], "source": "both", "dei/cover": "dei"},
|
|
137
|
-
{"sub-types": ["40FR12G"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["40FR12G"], "source": "both", "dei/cover": "dei"},
|
|
138
|
-
{"sub-types": ["40FR12G/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["40FR12G/A"], "source": "both", "dei/cover": "dei"},
|
|
139
|
-
{"sub-types": ["424A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["424A"], "source": "both", "dei/cover": "dei"},
|
|
140
|
-
{"sub-types": ["424B1"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["424B1"], "source": "both", "dei/cover": "dei"},
|
|
141
|
-
{"sub-types": ["424B2"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["424B2"], "source": "both", "dei/cover": "dei"},
|
|
142
|
-
{"sub-types": ["424B3"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["424B3"], "source": "both", "dei/cover": "dei"},
|
|
143
|
-
{"sub-types": ["424B4"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["424B4"], "source": "both", "dei/cover": "dei"},
|
|
144
|
-
{"sub-types": ["424B5"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["424B5"], "source": "both", "dei/cover": "dei"},
|
|
145
|
-
{"sub-types": ["424B6"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["424B6"], "source": "both", "dei/cover": "dei"},
|
|
146
|
-
{"sub-types": ["424B7"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["424B7"], "source": "both", "dei/cover": "dei"},
|
|
147
|
-
{"sub-types": ["424B8"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["424B8"], "source": "both", "dei/cover": "dei"},
|
|
148
|
-
{"sub-types": ["485POS"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["485POS", "N-3", "N-4", "N-6", "N-1A"], "source": "both", "dei/cover": "dei"},
|
|
149
|
-
{"sub-types": ["485APOS"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["485APOS", "N-3", "N-4", "N-6", "N-1A"], "source": "both", "dei/cover": "dei"},
|
|
150
|
-
{"sub-types": ["485BPOS"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["485BPOS", "N-3", "N-4", "N-6", "N-1A"], "source": "both", "dei/cover": "dei"},
|
|
151
|
-
{"sub-types": ["485BXT"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["485BXT", "N-3", "N-4", "N-6", "N-1A"], "source": "both", "dei/cover": "dei"},
|
|
152
|
-
{"sub-types": ["486APOS"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-2"], "source": "both", "dei/cover": "dei"},
|
|
153
|
-
{"sub-types": ["486BPOS"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-2"], "source": "both", "dei/cover": "dei"},
|
|
154
|
-
{"sub-types": ["486BXT"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-2"], "source": "both", "dei/cover": "dei"},
|
|
155
|
-
{"sub-types": ["497"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["497", "N-3", "N-4", "N-6", "N-1A"], "source": "both", "dei/cover": "dei"},
|
|
156
|
-
{"sub-types": ["6-K"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["6-K"], "source": "both", "dei/cover": "dei"},
|
|
157
|
-
{"sub-types": ["6-K/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["6-K/A"], "source": "both", "dei/cover": "dei"},
|
|
158
|
-
{"sub-types": ["8-K"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["8-K"], "source": "both", "dei/cover": "cover"},
|
|
159
|
-
{"sub-types": ["8-K/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["8-K/A"], "source": "both", "dei/cover": "cover"},
|
|
160
|
-
{"sub-types": ["8-K12B"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["8-K12B"], "source": "both", "dei/cover": "cover"},
|
|
161
|
-
{"sub-types": ["8-K12B/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["8-K12B/A"], "source": "both", "dei/cover": "cover"},
|
|
162
|
-
{"sub-types": ["8-K12G3"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["8-K12G3"], "source": "both", "dei/cover": "cover"},
|
|
163
|
-
{"sub-types": ["8-K12G3/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["8-K12G3/A"], "source": "both", "dei/cover": "cover"},
|
|
164
|
-
{"sub-types": ["8-K15D5"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["8-K15D5"], "source": "both", "dei/cover": "cover"},
|
|
165
|
-
{"sub-types": ["8-K15D5/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["8-K15D5/A"], "source": "both", "dei/cover": "cover"},
|
|
166
|
-
{"sub-types": ["DEF 14A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["DEF 14A"], "source": "both", "dei/cover": "dei"},
|
|
167
|
-
{"sub-types": ["DEF 14C"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["DEF 14C"], "source": "both", "dei/cover": "dei"},
|
|
168
|
-
{"sub-types": ["DEFA14A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["DEFA14A"], "source": "both", "dei/cover": "dei"},
|
|
169
|
-
{"sub-types": ["DEFA14C"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["DEFA14C"], "source": "both", "dei/cover": "dei"},
|
|
170
|
-
{"sub-types": ["DEFC14A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["DEFC14A"], "source": "both", "dei/cover": "dei"},
|
|
171
|
-
{"sub-types": ["DEFM14A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["DEFM14A"], "source": "both", "dei/cover": "dei"},
|
|
172
|
-
{"sub-types": ["DEFM14C"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["DEFM14C"], "source": "both", "dei/cover": "dei"},
|
|
173
|
-
{"sub-types": ["DEFN14A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["DEFN14A"], "source": "both", "dei/cover": "dei"},
|
|
174
|
-
{"sub-types": ["DEFR14A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["DEFR14A"], "source": "both", "dei/cover": "dei"},
|
|
175
|
-
{"sub-types": ["DEFR14C"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["DEFR14C"], "source": "both", "dei/cover": "dei"},
|
|
176
|
-
{"sub-types": ["F-1"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-1"], "source": "both", "dei/cover": "dei"},
|
|
177
|
-
{"sub-types": ["F-1/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-1/A"], "source": "both", "dei/cover": "dei"},
|
|
178
|
-
{"sub-types": ["F-1MEF"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-1MEF"], "source": "both", "dei/cover": "dei"},
|
|
179
|
-
{"sub-types": ["F-3"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-3"], "source": "both", "dei/cover": "dei"},
|
|
180
|
-
{"sub-types": ["F-3/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-3/A"], "source": "both", "dei/cover": "dei"},
|
|
181
|
-
{"sub-types": ["F-3ASR"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-3ASR"], "source": "both", "dei/cover": "dei"},
|
|
182
|
-
{"sub-types": ["F-3D"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-3D"], "source": "both", "dei/cover": "dei"},
|
|
183
|
-
{"sub-types": ["F-3DPOS"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-3DPOS"], "source": "both", "dei/cover": "dei"},
|
|
184
|
-
{"sub-types": ["F-3MEF"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-3MEF"], "source": "both", "dei/cover": "dei"},
|
|
185
|
-
{"sub-types": ["F-4"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-4"], "source": "both", "dei/cover": "dei"},
|
|
186
|
-
{"sub-types": ["F-4 POS"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-4 POS"], "source": "both", "dei/cover": "dei"},
|
|
187
|
-
{"sub-types": ["F-4/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-4/A"], "source": "both", "dei/cover": "dei"},
|
|
188
|
-
{"sub-types": ["F-4EF"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-4EF"], "source": "both", "dei/cover": "dei"},
|
|
189
|
-
{"sub-types": ["F-4MEF"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-4MEF"], "source": "both", "dei/cover": "dei"},
|
|
190
|
-
{"sub-types": ["F-9"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-9"], "source": "both", "dei/cover": "dei"},
|
|
191
|
-
{"sub-types": ["F-9 POS"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-9 POS"], "source": "both", "dei/cover": "dei"},
|
|
192
|
-
{"sub-types": ["F-9/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-9/A"], "source": "both", "dei/cover": "dei"},
|
|
193
|
-
{"sub-types": ["F-9EF"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-9EF"], "source": "both", "dei/cover": "dei"},
|
|
194
|
-
{"sub-types": ["F-10"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-10"], "source": "both", "dei/cover": "dei"},
|
|
195
|
-
{"sub-types": ["F-10/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-10/A"], "source": "both", "dei/cover": "dei"},
|
|
196
|
-
{"sub-types": ["F-10EF"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-10EF"], "source": "both", "dei/cover": "dei"},
|
|
197
|
-
{"sub-types": ["F-10POS"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-10POS"], "source": "both", "dei/cover": "dei"},
|
|
198
|
-
{"sub-types": ["F-SR"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-SR"], "source": "inline", "dei/cover": "dei"},
|
|
199
|
-
{"sub-types": ["F-SR/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-SR", "F-SR/A"], "source": "inline", "dei/cover": "dei"},
|
|
200
|
-
{"sub-types": ["N-1A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-1A"], "source": "both", "dei/cover": "dei"},
|
|
201
|
-
{"sub-types": ["N-1A/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-1A/A"], "source": "both", "dei/cover": "dei"},
|
|
202
|
-
{"sub-types": ["N-2"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-2"], "source": "both", "dei/cover": "dei"},
|
|
203
|
-
{"sub-types": ["N-2/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-2/A", "N-2"], "source": "both", "dei/cover": "dei"},
|
|
204
|
-
{"sub-types": ["N-2MEF"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-2MEF", "N-2"], "source": "both", "dei/cover": "dei"},
|
|
205
|
-
{"sub-types": ["N-2ASR"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-2ASR", "N-2"], "source": "both", "dei/cover": "dei"},
|
|
206
|
-
{"sub-types": ["N-2 POSASR"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-2 POSASR", "N-2"], "source": "both", "dei/cover": "dei"},
|
|
207
|
-
{"sub-types": ["N-3"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-3"], "source": "both", "dei/cover": "dei"},
|
|
208
|
-
{"sub-types": ["N-3/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-3/A"], "source": "both", "dei/cover": "dei"},
|
|
209
|
-
{"sub-types": ["N-4"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-4"], "source": "both", "dei/cover": "dei"},
|
|
210
|
-
{"sub-types": ["N-4/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-4/A"], "source": "both", "dei/cover": "dei"},
|
|
211
|
-
{"sub-types": ["N-6"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-6"], "source": "both", "dei/cover": "dei"},
|
|
212
|
-
{"sub-types": ["N-6/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-6/A"], "source": "both", "dei/cover": "dei"},
|
|
213
|
-
{"sub-types": ["N-ASR"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-ASR"], "source": "both", "dei/cover": "dei"},
|
|
214
|
-
{"sub-types": ["N-CSR"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-CSR"], "source": "both", "dei/cover": "dei"},
|
|
215
|
-
{"sub-types": ["N-CSR/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-CSR", "N-CSR/A"], "source": "both", "dei/cover": "dei"},
|
|
216
|
-
{"sub-types": ["N-CSRS"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-CSR", "N-CSRS"], "source": "both", "dei/cover": "dei"},
|
|
217
|
-
{"sub-types": ["N-CSRS/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-CSR", "N-CSRS/A"], "source": "both", "dei/cover": "dei"},
|
|
218
|
-
{"comment": "obsolete, replaced by N-PORT/P", "sub-types": ["N-Q"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-Q"], "source": "both", "dei/cover": "dei"},
|
|
219
|
-
{"comment": "obsolete, replaced by N-PORT/P", "sub-types": ["N-Q/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-Q/A"], "source": "both", "dei/cover": "dei"},
|
|
220
|
-
{"sub-types": ["POS 8C"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-2"], "source": "both", "dei/cover": "dei"},
|
|
221
|
-
{"sub-types": ["POS AM"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-1", "F-3", "F-4", "F-6", "POS AM", "S-1", "S-11", "S-3", "S-4", "N-2"], "source": "both", "dei/cover": "dei"},
|
|
222
|
-
{"sub-types": ["POS AMI"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["POS AMI", "N-2"], "source": "both", "dei/cover": "dei"},
|
|
223
|
-
{"sub-types": ["POS EX"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-3", "F-4", "N-2", "POS EX", "S-1", "S-3", "S-4"], "source": "both", "dei/cover": "dei"},
|
|
224
|
-
{"sub-types": ["POSASR"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["F-3", "POSASR", "S-3"], "source": "both", "dei/cover": "dei"},
|
|
225
|
-
{"sub-types": ["POS462B"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-2"], "source": "both", "dei/cover": "dei"},
|
|
226
|
-
{"sub-types": ["POS462C"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["N-2"], "source": "both", "dei/cover": "dei"},
|
|
227
|
-
{"sub-types": ["PRE 14A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["PRE 14A"], "source": "both", "dei/cover": "dei"},
|
|
228
|
-
{"sub-types": ["PREM14A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["PREM14A"], "source": "both", "dei/cover": "dei"},
|
|
229
|
-
{"sub-types": ["PREC14A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["PREC14A"], "source": "both", "dei/cover": "dei"},
|
|
230
|
-
{"sub-types": ["PRER14A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["PRER14A"], "source": "both", "dei/cover": "dei"},
|
|
231
|
-
{"sub-types": ["PRE 14C"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["PRE 14C"], "source": "both", "dei/cover": "dei"},
|
|
232
|
-
{"sub-types": ["PREM14C"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["PREM14C"], "source": "both", "dei/cover": "dei"},
|
|
233
|
-
{"sub-types": ["PREC14C"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["PREC14C"], "source": "both", "dei/cover": "dei"},
|
|
234
|
-
{"sub-types": ["PRER14C"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["PRER14C"], "source": "both", "dei/cover": "dei"},
|
|
235
|
-
{"sub-types": ["S-1"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-1"], "source": "both", "dei/cover": "dei"},
|
|
236
|
-
{"sub-types": ["S-1/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-1/A"], "source": "both", "dei/cover": "dei"},
|
|
237
|
-
{"sub-types": ["S-11"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-11"], "source": "both", "dei/cover": "dei"},
|
|
238
|
-
{"sub-types": ["S-11/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-11/A"], "source": "both", "dei/cover": "dei"},
|
|
239
|
-
{"sub-types": ["S-11MEF"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-11MEF"], "source": "both", "dei/cover": "dei"},
|
|
240
|
-
{"sub-types": ["S-1MEF"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-1MEF"], "source": "both", "dei/cover": "dei"},
|
|
241
|
-
{"sub-types": ["S-3"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-3"], "source": "both", "dei/cover": "dei"},
|
|
242
|
-
{"sub-types": ["S-3/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-3/A"], "source": "both", "dei/cover": "dei"},
|
|
243
|
-
{"sub-types": ["S-3ASR"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-3ASR"], "source": "both", "dei/cover": "dei"},
|
|
244
|
-
{"sub-types": ["S-3D"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-3D"], "source": "both", "dei/cover": "dei"},
|
|
245
|
-
{"sub-types": ["S-3DPOS"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-3DPOS"], "source": "both", "dei/cover": "dei"},
|
|
246
|
-
{"sub-types": ["S-3MEF"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-3MEF"], "source": "both", "dei/cover": "dei"},
|
|
247
|
-
{"sub-types": ["S-4"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-4"], "source": "both", "dei/cover": "dei"},
|
|
248
|
-
{"sub-types": ["S-4 POS"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-4 POS"], "source": "both", "dei/cover": "dei"},
|
|
249
|
-
{"sub-types": ["S-4/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-4/A"], "source": "both", "dei/cover": "dei"},
|
|
250
|
-
{"sub-types": ["S-4EF"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-4EF"], "source": "both", "dei/cover": "dei"},
|
|
251
|
-
{"sub-types": ["S-4MEF"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["S-4MEF"], "source": "both", "dei/cover": "dei"},
|
|
252
|
-
{"sub-types": ["SC 13E3"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["SC 13E3"], "source": "both", "dei/cover": "dei"},
|
|
253
|
-
{"sub-types": ["SC 13E3/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["SC 13E3/A"], "source": "both", "dei/cover": "dei"},
|
|
254
|
-
{"sub-types": ["SD"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["2.01 SD"], "source": "both", "dei/cover": "dei"},
|
|
255
|
-
{"sub-types": ["SD/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["2.01 SD"], "source": "both", "dei/cover": "dei"},
|
|
256
|
-
{"sub-types": ["SP 15D2"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["SP 15D2"], "source": "both", "dei/cover": "dei"},
|
|
257
|
-
{"sub-types": ["SP 15D2/A"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["SP 15D2/A"], "source": "both", "dei/cover": "dei"},
|
|
258
|
-
{"sub-types": ["@SDR"], "xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv", "value": ["K SDR", "L SDR"], "source": "both", "dei/cover": "dei"},
|
|
259
|
-
{"sub-types": ["!not!", "10-12B", "10-12B/A", "10-12G", "10-12G/A", "10-K", "10-K/A", "10-KT",
|
|
260
|
-
"10-KT/A", "10-Q", "10-Q/A", "10-QT", "10-QT/A", "20-F", "20-F/A", "20FR12B",
|
|
261
|
-
"20FR12B/A", "20FR12G", "20FR12G/A", "40-F", "40-F/A", "40FR12B", "40FR12B/A",
|
|
262
|
-
"40FR12G", "40FR12G/A", "485APOS", "485BPOS", "485BXT",
|
|
263
|
-
"486APOS", "486BPOS", "486BXT", "497", "6-K", "6-K/A",
|
|
264
|
-
"8-K", "8-K/A", "8-K12B", "8-K12B/A", "8-K12G3", "8-K12G3/A", "8-K15D5", "8-K15D5/A",
|
|
265
|
-
"F-1", "F-1/A", "F-10", "F-10/A", "F-10EF", "F-10POS", "F-1MEF", "F-3", "F-3/A", "F-3ASR",
|
|
266
|
-
"F-3D", "F-3DPOS", "F-3MEF", "F-4", "F-4 POS", "F-4/A", "F-4EF", "F-4MEF", "F-9", "F-9 POS",
|
|
267
|
-
"F-9/A", "F-9EF", "N-1A", "N-1A/A", "N-CSR", "N-CSR/A", "N-CSRS", "N-CSRS/A", "N-Q", "N-Q/A",
|
|
268
|
-
"POS AM", "POS EX", "POSASR", "S-1", "S-1/A", "S-11", "S-11/A", "S-11MEF", "S-1MEF", "S-3",
|
|
269
|
-
"N-2§N-2", "N-2/A§N-2", "N-2ASR§N-2", "N-2 POSASR§N-2", "N-2MEF§N-2",
|
|
270
|
-
"N-2/A§N-2/A", "N-2ASR§N-2ASR", "N-2 POSASR§N-2 POSASR", "N-2MEF§N-2MEF",
|
|
271
|
-
"486APOS§N-2", "486BPOS§N-2", "POS 8C§N-2", "POS AMI§N-2", "POS EX§N-2", "POS462B§N-2", "POS462C§N-2", "486BXT§N-2",
|
|
272
|
-
"S-3/A", "S-3ASR", "S-3D", "S-3DPOS", "S-3MEF", "S-4", "S-4 POS", "S-4/A", "S-4EF", "S-4MEF",
|
|
273
|
-
"SP 15D2", "SP 15D2/A", "@SD", "@SDR"],
|
|
274
|
-
"xbrl-names": "DocumentType", "efm": "6.5.20", "validation": "xv",
|
|
275
|
-
"value": ["!not!", "10-12B", "10-12B/A", "10-12G", "10-12G/A", "10-K", "10-K/A", "10-KT", "10-KT/A",
|
|
276
|
-
"10-Q", "10-Q/A", "10-QT", "10-QT/A", "20-F", "20-F/A", "20FR12B", "20FR12B/A", "20FR12G",
|
|
277
|
-
"20FR12G/A", "40-F", "40-F/A", "40FR12B", "40FR12B/A", "40FR12G", "40FR12G/A", "485APOS",
|
|
278
|
-
"485BPOS", "485BXT", "486APOS", "486BPOS", "486BXT",
|
|
279
|
-
"497", "6-K", "6-K/A", "8-K", "8-K/A", "8-K12B", "8-K12B/A", "8-K12G3",
|
|
280
|
-
"8-K12G3/A", "8-K15D5", "8-K15D5/A", "F-1", "F-1/A", "F-10", "F-10/A", "F-10EF", "F-10POS",
|
|
281
|
-
"F-1MEF", "F-3", "F-3/A", "F-3ASR", "F-3D", "F-3DPOS", "F-3MEF", "F-4", "F-4 POS", "F-4/A",
|
|
282
|
-
"F-4EF", "F-4MEF", "F-6", "F-9", "F-9 POS", "F-9/A", "F-9EF", "K SDR", "L SDR", "N-1A",
|
|
283
|
-
"N-1A/A", "N-CSR", "N-CSR/A", "N-CSRS", "N-CSRS/A", "N-Q", "N-Q/A", "POS AM",
|
|
284
|
-
"N-2/A", "N-2ASR", "N-2 POSASR", "N-2MEF",
|
|
285
|
-
"486APOS", "486BPOS", "POS 8C", "POS AMI", "POS EX", "POS462B", "POS462C", "486BXT",
|
|
286
|
-
"POS EX", "POSASR", "S-1", "S-1/A", "S-11", "S-11/A", "S-11MEF", "S-1MEF", "S-3", "S-3/A",
|
|
287
|
-
"S-3ASR", "S-3D", "S-3DPOS", "S-3MEF", "S-4", "S-4 POS", "S-4/A", "S-4EF", "S-4MEF", "SD",
|
|
288
|
-
"SD/A", "SP 15D2", "SP 15D2/A"],
|
|
289
|
-
"source": "both", "dei/cover": "dei",
|
|
290
|
-
"comment": "catch any submission type not explicitly above with any sub-type type not covered by the above, excluding Other"
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"sub-types": ["@all"],
|
|
294
|
-
"xbrl-names": "AmendmentFlag",
|
|
295
|
-
"efm": "6.5.20",
|
|
296
|
-
"validation": "r",
|
|
297
|
-
"source": "both",
|
|
298
|
-
"dei/cover": "dei",
|
|
299
|
-
"comment": "when this is true a non-empty AmendmentDescription is required"
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
"sub-types": ["@all"],
|
|
303
|
-
"xbrl-names": "AmendmentDescription",
|
|
304
|
-
"efm": "6.5.20",
|
|
305
|
-
"validation": "a",
|
|
306
|
-
"references": "AmendmentFlag",
|
|
307
|
-
"reference-value": true,
|
|
308
|
-
"source": "both",
|
|
309
|
-
"dei/cover": "dei",
|
|
310
|
-
"comment": "if and only if non-empty, AmendmentFlag must be true"
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
"sub-types": ["@all-FAST", "@N-CSR"],
|
|
314
|
-
"xbrl-names": "DocumentPeriodEndDate",
|
|
315
|
-
"elo-name": "periodOfReport",
|
|
316
|
-
"efm": "6.5.20",
|
|
317
|
-
"validation": "r",
|
|
318
|
-
"source": "both",
|
|
319
|
-
"dei/cover": "cover"
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
"sub-types": ["@POS", "@PvP"],
|
|
323
|
-
"xbrl-names": "DocumentPeriodEndDate",
|
|
324
|
-
"elo-name": "periodOfReport",
|
|
325
|
-
"efm": "6.5.20",
|
|
326
|
-
"validation": "o",
|
|
327
|
-
"source": "both",
|
|
328
|
-
"dei/cover": "dei"
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"sub-types": ["@6-K", "@SP 15D2", "@RR", "@N-346", "@SDR", "@SD"],
|
|
332
|
-
"xbrl-names": "DocumentPeriodEndDate",
|
|
333
|
-
"elo-name": "periodOfReport",
|
|
334
|
-
"efm": "6.5.20",
|
|
335
|
-
"validation": "r",
|
|
336
|
-
"source": "both",
|
|
337
|
-
"dei/cover": "dei"
|
|
338
|
-
},
|
|
339
|
-
{
|
|
340
|
-
"sub-types": ["@F-SR"],
|
|
341
|
-
"xbrl-names": "DocumentPeriodEndDate",
|
|
342
|
-
"elo-name": "periodOfReport",
|
|
343
|
-
"efm": "6.5.20",
|
|
344
|
-
"validation": "r",
|
|
345
|
-
"source": "inline",
|
|
346
|
-
"dei/cover": "dei"
|
|
347
|
-
},
|
|
348
|
-
{
|
|
349
|
-
"sub-types": ["@SD"],
|
|
350
|
-
"xbrl-names": "DocumentPeriodEndDate",
|
|
351
|
-
"store-db-name": "periodOfReport",
|
|
352
|
-
"store-db-object": "eloValuesFromFacts",
|
|
353
|
-
"source": "non-inline"
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
"sub-types": ["@all-FAST-not-8K"],
|
|
357
|
-
"xbrl-names": "DocumentPeriodEndDate",
|
|
358
|
-
"efm": "6.5.20",
|
|
359
|
-
"validation": "de",
|
|
360
|
-
"source": "inline",
|
|
361
|
-
"dei/cover": "dei"
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
"sub-types": ["@8-K"],
|
|
365
|
-
"xbrl-names": "DocumentPeriodEndDate",
|
|
366
|
-
"efm": "6.5.20",
|
|
367
|
-
"validation": "de5pm",
|
|
368
|
-
"source": "inline",
|
|
369
|
-
"dei/cover": "dei"
|
|
370
|
-
},
|
|
371
|
-
{
|
|
372
|
-
"sub-types": [
|
|
373
|
-
"@all-FAST",
|
|
374
|
-
"@POS", "N-CSR", "N-CSR/A", "N-CSRS", "N-CSRS/A",
|
|
375
|
-
"@6-K", "@SP 15D2", "@RR", "@N-346", "@SDR",
|
|
376
|
-
"@N", "N-3", "N-4", "N-6", "@PvP", "@F-SR"
|
|
377
|
-
],
|
|
378
|
-
"xbrl-names": "DocumentPeriodEndDate",
|
|
379
|
-
"store-db-name": "periodOfReport",
|
|
380
|
-
"store-db-object": "eloValuesFromFacts",
|
|
381
|
-
"source": "inline",
|
|
382
|
-
"comment": "always store to DB when present in XBRL"
|
|
383
|
-
},
|
|
384
|
-
{
|
|
385
|
-
"sub-types": ["@10-K+Q", "@20+40-F"],
|
|
386
|
-
"xbrl-names": [
|
|
387
|
-
"DocumentFiscalYearFocus",
|
|
388
|
-
"DocumentFiscalPeriodFocus"
|
|
389
|
-
],
|
|
390
|
-
"efm": "6.5.20",
|
|
391
|
-
"validation": "r",
|
|
392
|
-
"source": "both",
|
|
393
|
-
"dei/cover": "dei"
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
"sub-types": ["@10-12", "@8-K", "@20+40FR", "@6-K", "@S-n", "@POS", "@F-n", "@N", "@SDR"],
|
|
397
|
-
"xbrl-names": [
|
|
398
|
-
"DocumentFiscalYearFocus",
|
|
399
|
-
"DocumentFiscalPeriodFocus"
|
|
400
|
-
],
|
|
401
|
-
"efm": "6.5.20",
|
|
402
|
-
"validation": "op",
|
|
403
|
-
"source": "both",
|
|
404
|
-
"dei/cover": "dei"
|
|
405
|
-
},
|
|
406
|
-
{
|
|
407
|
-
"sub-types": ["@all-FAST", "@N-3", "@N-4", "@N-6"],
|
|
408
|
-
"xbrl-names": "EntityRegistrantName",
|
|
409
|
-
"efm": "6.5.21",
|
|
410
|
-
"validation": "x",
|
|
411
|
-
"source": "both",
|
|
412
|
-
"dei/cover": "cover",
|
|
413
|
-
"lang": "en.*",
|
|
414
|
-
"comment": "must be english"
|
|
415
|
-
},
|
|
416
|
-
{
|
|
417
|
-
"sub-types": ["@all-non-FAST"],
|
|
418
|
-
"xbrl-names": "EntityRegistrantName",
|
|
419
|
-
"efm": "6.5.21",
|
|
420
|
-
"validation": "x",
|
|
421
|
-
"source": "both",
|
|
422
|
-
"dei/cover": "dei",
|
|
423
|
-
"lang": "en.*",
|
|
424
|
-
"comment": "must be english"
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
"sub-types": ["@all-FAST", "@N-2-any-form", "@N-3", "@N-4", "@N-6"],
|
|
428
|
-
"xbrl-names": "EntityRegistrantName",
|
|
429
|
-
"efm": "6.5.21",
|
|
430
|
-
"validation": "o",
|
|
431
|
-
"source": "both",
|
|
432
|
-
"dei/cover": "cover",
|
|
433
|
-
"lang": "(?!en).*",
|
|
434
|
-
"comment": "non-english name allowed"
|
|
435
|
-
},
|
|
436
|
-
{
|
|
437
|
-
"sub-types": [],
|
|
438
|
-
"xbrl-names": "EntityRegistrantName",
|
|
439
|
-
"efm": "6.5.21",
|
|
440
|
-
"validation": "o",
|
|
441
|
-
"source": "both",
|
|
442
|
-
"dei/cover": "dei",
|
|
443
|
-
"lang": "(?!en).*",
|
|
444
|
-
"comment": "non-english name allowed"
|
|
445
|
-
},
|
|
446
|
-
{
|
|
447
|
-
"sub-types": ["@all"],
|
|
448
|
-
"xbrl-names": "EntityCentralIndexKey",
|
|
449
|
-
"efm": "6.5.21",
|
|
450
|
-
"validation": "x",
|
|
451
|
-
"source": "both",
|
|
452
|
-
"dei/cover": "dei"
|
|
453
|
-
},
|
|
454
|
-
{
|
|
455
|
-
"sub-types": ["@all"],
|
|
456
|
-
"xbrl-names": [],
|
|
457
|
-
"elo-name": "entityRegistration.fyEnd",
|
|
458
|
-
"efm": "6.5.21",
|
|
459
|
-
"validation": "o",
|
|
460
|
-
"source": "both",
|
|
461
|
-
"dei/cover": "dei",
|
|
462
|
-
"comment": "cik registration entityRegistration.fyEnd never raises dq-0540-{headerTag}-Unexpected, but is compared for submissions where CurrentFiscalYearEndDate is reported"
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
"sub-types": ["@10-K+KT", "@20+40-F"],
|
|
466
|
-
"xbrl-names": "CurrentFiscalYearEndDate",
|
|
467
|
-
"elo-name": "entityRegistration.fyEnd",
|
|
468
|
-
"efm": "6.5.21",
|
|
469
|
-
"validation": "r",
|
|
470
|
-
"source": "both",
|
|
471
|
-
"dei/cover": "cover",
|
|
472
|
-
"elo-match-message" : "dq-0540-CurrentFiscalYearEndDate-Registrant-Value"
|
|
473
|
-
},
|
|
474
|
-
{
|
|
475
|
-
"sub-types": ["@10-Q+QT", "@6-K", "@SDR"],
|
|
476
|
-
"xbrl-names": "CurrentFiscalYearEndDate",
|
|
477
|
-
"elo-name": "entityRegistration.fyEnd",
|
|
478
|
-
"efm": "6.5.21",
|
|
479
|
-
"validation": "r",
|
|
480
|
-
"source": "both",
|
|
481
|
-
"dei/cover": "dei",
|
|
482
|
-
"elo-match-message" : "dq-0540-CurrentFiscalYearEndDate-Registrant-Value"
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
"sub-types": ["@20+40FR", "@8-K", "@N-CSR", "@SD", "@F-SR"],
|
|
486
|
-
"xbrl-names": "CurrentFiscalYearEndDate",
|
|
487
|
-
"elo-name": "entityRegistration.fyEnd",
|
|
488
|
-
"efm": "6.5.21",
|
|
489
|
-
"validation": "o",
|
|
490
|
-
"source": "both",
|
|
491
|
-
"dei/cover": "dei",
|
|
492
|
-
"elo-match-message" : "dq-0540-CurrentFiscalYearEndDate-Registrant-Value",
|
|
493
|
-
"comment": "warning about entityRegistration.fyEnd on 8-K may be superfluous, for future consideration"
|
|
494
|
-
},
|
|
495
|
-
{
|
|
496
|
-
"sub-types": ["@8-K"],
|
|
497
|
-
"xbrl-names": "CurrentFiscalYearEndDate",
|
|
498
|
-
"efm": "6.5.21",
|
|
499
|
-
"validation": "e503",
|
|
500
|
-
"source": "inline",
|
|
501
|
-
"dei/cover": "dei"
|
|
502
|
-
},
|
|
503
|
-
{
|
|
504
|
-
"sub-types": ["@8-K"],
|
|
505
|
-
"xbrl-names": "CurrentFiscalYearEndDate",
|
|
506
|
-
"efm": "6.5.21",
|
|
507
|
-
"validation": "503-header-field",
|
|
508
|
-
"elo-name": "submissionHeader.fyEnd",
|
|
509
|
-
"source": "both",
|
|
510
|
-
"dei/cover": "dei",
|
|
511
|
-
"elo-match-message" : "dq-0540-CurrentFiscalYearEndDate-Submission-Value",
|
|
512
|
-
"comment": "compare CurrentFiscalYearEndDate to submissionHeader.fyEnd (only with item 5.03)"
|
|
513
|
-
},
|
|
514
|
-
{
|
|
515
|
-
"sub-types": ["@all"],
|
|
516
|
-
"xbrl-names": "CurrentFiscalYearEndDate",
|
|
517
|
-
"store-db-name": "fiscalYear",
|
|
518
|
-
"store-db-object": "eloValuesFromFacts",
|
|
519
|
-
"source": "inline",
|
|
520
|
-
"comment": "all sub-types store to DB when present in inline XBRL"
|
|
521
|
-
},
|
|
522
|
-
{
|
|
523
|
-
"sub-types": ["@10-K+Q"],
|
|
524
|
-
"xbrl-names": "EntitySmallBusiness",
|
|
525
|
-
"elo-name": "smallBusinessFlag",
|
|
526
|
-
"efm": "6.5.40",
|
|
527
|
-
"validation": "r",
|
|
528
|
-
"source": "both",
|
|
529
|
-
"dei/cover": "cover"
|
|
530
|
-
},
|
|
531
|
-
{
|
|
532
|
-
"sub-types": ["@10-12", "@S-n", "@S-nX"],
|
|
533
|
-
"xbrl-names": "EntitySmallBusiness",
|
|
534
|
-
"elo-name": "smallBusinessFlag",
|
|
535
|
-
"efm": "6.5.40",
|
|
536
|
-
"validation": "r",
|
|
537
|
-
"source": "both",
|
|
538
|
-
"dei/cover": "dei"
|
|
539
|
-
},
|
|
540
|
-
{
|
|
541
|
-
"sub-types": ["@POS"],
|
|
542
|
-
"xbrl-names": "EntitySmallBusiness",
|
|
543
|
-
"elo-name": "smallBusinessFlag",
|
|
544
|
-
"efm": "6.5.40",
|
|
545
|
-
"validation": "o",
|
|
546
|
-
"source": "both",
|
|
547
|
-
"dei/cover": "dei"
|
|
548
|
-
},
|
|
549
|
-
{
|
|
550
|
-
"sub-types": ["@10-K+Q", "@10-12", "@S-n", "@S-nX"],
|
|
551
|
-
"xbrl-names": "EntitySmallBusiness",
|
|
552
|
-
"efm": "6.5.40",
|
|
553
|
-
"validation": "sb",
|
|
554
|
-
"source": "inline",
|
|
555
|
-
"dei/cover": "dei"
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
"sub-types": ["@all"],
|
|
559
|
-
"xbrl-names": "EntitySmallBusiness",
|
|
560
|
-
"store-db-name": "smallBusinessFlag",
|
|
561
|
-
"store-db-object": "eloValuesFromFacts",
|
|
562
|
-
"source": "inline",
|
|
563
|
-
"comment": "all sub-types store to DB when present in inline XBRL"
|
|
564
|
-
},
|
|
565
|
-
{
|
|
566
|
-
"sub-types": ["@10-K+Q", "@20-F"],
|
|
567
|
-
"xbrl-names": "EntityShellCompany",
|
|
568
|
-
"elo-name": "shellCompanyFlag",
|
|
569
|
-
"efm": "6.5.40",
|
|
570
|
-
"validation": "r",
|
|
571
|
-
"source": "both",
|
|
572
|
-
"dei/cover": "cover"
|
|
573
|
-
},
|
|
574
|
-
{
|
|
575
|
-
"sub-types": ["@all"],
|
|
576
|
-
"xbrl-names": "EntityShellCompany",
|
|
577
|
-
"store-db-name": "shellCompanyFlag",
|
|
578
|
-
"store-db-object": "eloValuesFromFacts",
|
|
579
|
-
"source": "inline",
|
|
580
|
-
"comment": "all sub-types store to DB when present in inline XBRL"
|
|
581
|
-
},
|
|
582
|
-
{
|
|
583
|
-
"sub-types": ["@10-K+KT", "@20-F"],
|
|
584
|
-
"xbrl-names": "EntityVoluntaryFilers",
|
|
585
|
-
"elo-name": "voluntaryFilerFlag",
|
|
586
|
-
"efm": "6.5.21",
|
|
587
|
-
"validation": "r",
|
|
588
|
-
"source": "both",
|
|
589
|
-
"dei/cover": "cover"
|
|
590
|
-
},
|
|
591
|
-
{
|
|
592
|
-
"sub-types": ["@all"],
|
|
593
|
-
"xbrl-names": "EntityVoluntaryFilers",
|
|
594
|
-
"store-db-name": "voluntaryFilerFlag",
|
|
595
|
-
"store-db-object": "eloValuesFromFacts",
|
|
596
|
-
"source": "inline",
|
|
597
|
-
"comment": "all sub-types store to DB when present in inline XBRL"
|
|
598
|
-
},
|
|
599
|
-
{
|
|
600
|
-
"sub-types": ["@10-K+KT", "@20-F", "@N-2-any-form"],
|
|
601
|
-
"xbrl-names": "EntityWellKnownSeasonedIssuer",
|
|
602
|
-
"elo-name": "wellKnownSeasonedIssuerFlag",
|
|
603
|
-
"efm": "6.5.21",
|
|
604
|
-
"validation": "r",
|
|
605
|
-
"source": "both",
|
|
606
|
-
"dei/cover": "cover"
|
|
607
|
-
},
|
|
608
|
-
{
|
|
609
|
-
"sub-types": ["@10-K+KT", "@20-F"],
|
|
610
|
-
"xbrl-names": [
|
|
611
|
-
"EntityWellKnownSeasonedIssuer",
|
|
612
|
-
"EntityVoluntaryFilers"
|
|
613
|
-
],
|
|
614
|
-
"efm": "6.5.21",
|
|
615
|
-
"validation": "wv",
|
|
616
|
-
"value": ["Yes"],
|
|
617
|
-
"source": "inline",
|
|
618
|
-
"dei/cover": "dei"
|
|
619
|
-
},
|
|
620
|
-
{
|
|
621
|
-
"sub-types": ["@10-K+KT", "@20-F"],
|
|
622
|
-
"xbrl-names": [
|
|
623
|
-
"EntityWellKnownSeasonedIssuer",
|
|
624
|
-
"EntityShellCompany"
|
|
625
|
-
],
|
|
626
|
-
"efm": "6.5.21",
|
|
627
|
-
"validation": "ws",
|
|
628
|
-
"value": ["Yes", true],
|
|
629
|
-
"source": "inline",
|
|
630
|
-
"dei/cover": "dei"
|
|
631
|
-
},
|
|
632
|
-
{
|
|
633
|
-
"sub-types": ["@all"],
|
|
634
|
-
"xbrl-names": "EntityWellKnownSeasonedIssuer",
|
|
635
|
-
"store-db-name": "wellKnownSeasonedIssuerFlag",
|
|
636
|
-
"store-db-object": "eloValuesFromFacts",
|
|
637
|
-
"source": "inline",
|
|
638
|
-
"comment": "all sub-types store to DB when present in inline XBRL"
|
|
639
|
-
},
|
|
640
|
-
{
|
|
641
|
-
"sub-types": ["@10-K+Q", "@20-F"],
|
|
642
|
-
"xbrl-names": "EntityFilerCategory",
|
|
643
|
-
"elo-name": "acceleratedFilerStatus",
|
|
644
|
-
"efm": "6.5.21",
|
|
645
|
-
"validation": "r",
|
|
646
|
-
"source": "both",
|
|
647
|
-
"dei/cover": "cover"
|
|
648
|
-
},
|
|
649
|
-
{
|
|
650
|
-
"sub-types": ["@10-12", "@S-n"],
|
|
651
|
-
"xbrl-names": "EntityFilerCategory",
|
|
652
|
-
"elo-name": "acceleratedFilerStatus",
|
|
653
|
-
"efm": "6.5.21",
|
|
654
|
-
"validation": "r",
|
|
655
|
-
"source": "both",
|
|
656
|
-
"dei/cover": "dei"
|
|
657
|
-
},
|
|
658
|
-
{
|
|
659
|
-
"sub-types": ["@POS"],
|
|
660
|
-
"xbrl-names": "EntityFilerCategory",
|
|
661
|
-
"elo-name": "acceleratedFilerStatus",
|
|
662
|
-
"efm": "6.5.21",
|
|
663
|
-
"validation": "o",
|
|
664
|
-
"source": "both",
|
|
665
|
-
"dei/cover": "dei"
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"sub-types": ["@all"],
|
|
669
|
-
"xbrl-names": "EntityFilerCategory",
|
|
670
|
-
"store-db-name": "acceleratedFilerStatus",
|
|
671
|
-
"store-db-object": "eloValuesFromFacts",
|
|
672
|
-
"source": "inline",
|
|
673
|
-
"comment": "all sub-types store to DB when present in inline XBRL"
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F", "@N-2"],
|
|
677
|
-
"xbrl-names": "EntityEmergingGrowthCompany",
|
|
678
|
-
"elo-name": "emergingGrowthCompanyFlag",
|
|
679
|
-
"efm": "6.5.40",
|
|
680
|
-
"validation": "r",
|
|
681
|
-
"source": "both",
|
|
682
|
-
"dei/cover": "cover"
|
|
683
|
-
},
|
|
684
|
-
{
|
|
685
|
-
"sub-types": ["@10-12", "@20+40FR", "@S-n", "@F-n"],
|
|
686
|
-
"xbrl-names": "EntityEmergingGrowthCompany",
|
|
687
|
-
"elo-name": "emergingGrowthCompanyFlag",
|
|
688
|
-
"efm": "6.5.40",
|
|
689
|
-
"validation": "r",
|
|
690
|
-
"source": "both",
|
|
691
|
-
"dei/cover": "dei"
|
|
692
|
-
},
|
|
693
|
-
{
|
|
694
|
-
"sub-types": ["@POS"],
|
|
695
|
-
"xbrl-names": "EntityEmergingGrowthCompany",
|
|
696
|
-
"elo-name": "emergingGrowthCompanyFlag",
|
|
697
|
-
"efm": "6.5.40",
|
|
698
|
-
"validation": "o",
|
|
699
|
-
"source": "both",
|
|
700
|
-
"dei/cover": "dei"
|
|
701
|
-
},
|
|
702
|
-
{
|
|
703
|
-
"sub-types": ["@all"],
|
|
704
|
-
"xbrl-names": "EntityEmergingGrowthCompany",
|
|
705
|
-
"store-db-name": "emergingGrowthCompanyFlag",
|
|
706
|
-
"store-db-object": "eloValuesFromFacts",
|
|
707
|
-
"source": "inline",
|
|
708
|
-
"comment": "all sub-types store to DB when present in inline XBRL"
|
|
709
|
-
},
|
|
710
|
-
{
|
|
711
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F", "@N-2"],
|
|
712
|
-
"xbrl-names": "EntityExTransitionPeriod",
|
|
713
|
-
"efm": "6.5.40",
|
|
714
|
-
"validation": "et1",
|
|
715
|
-
"references": "EntityEmergingGrowthCompany",
|
|
716
|
-
"reference-value": true,
|
|
717
|
-
"source": "both",
|
|
718
|
-
"dei/cover": "cover",
|
|
719
|
-
"comment": "don't do ELO match here because it would come out as error"
|
|
720
|
-
},
|
|
721
|
-
{
|
|
722
|
-
"sub-types": ["@10-12", "@20+40FR", "@S-n", "@POS", "@F-n"],
|
|
723
|
-
"xbrl-names": "EntityExTransitionPeriod",
|
|
724
|
-
"efm": "6.5.40",
|
|
725
|
-
"validation": "et1",
|
|
726
|
-
"references": "EntityEmergingGrowthCompany",
|
|
727
|
-
"reference-value": true,
|
|
728
|
-
"source": "both",
|
|
729
|
-
"dei/cover": "dei",
|
|
730
|
-
"comment": "don't do ELO match here because it would come out as error"
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F", "@10-12", "@20+40FR", "@S-n", "@POS", "@F-n"],
|
|
734
|
-
"xbrl-names": "EntityExTransitionPeriod",
|
|
735
|
-
"elo-name": "exTransitionPeriodFlag",
|
|
736
|
-
"efm": "6.5.40",
|
|
737
|
-
"validation": "o",
|
|
738
|
-
"source": "both",
|
|
739
|
-
"dei/cover": "dei",
|
|
740
|
-
"comment": "persub-type elo match separately as o so it's a warning"
|
|
741
|
-
},
|
|
742
|
-
{
|
|
743
|
-
"sub-types": ["@all"],
|
|
744
|
-
"xbrl-names": "EntityExTransitionPeriod",
|
|
745
|
-
"store-db-name": "exTransitionPeriodFlag",
|
|
746
|
-
"store-db-object": "eloValuesFromFacts",
|
|
747
|
-
"source": "inline",
|
|
748
|
-
"comment": "all sub-types store to DB when present in inline XBRL"
|
|
749
|
-
},
|
|
750
|
-
{
|
|
751
|
-
"sub-types": ["@10-K+Q", "@20+40-F"],
|
|
752
|
-
"xbrl-names": "EntityInteractiveDataCurrent",
|
|
753
|
-
"efm": "6.5.21",
|
|
754
|
-
"validation": "r",
|
|
755
|
-
"source": "both",
|
|
756
|
-
"dei/cover": "cover"
|
|
757
|
-
},
|
|
758
|
-
{
|
|
759
|
-
"sub-types": ["@20+40FR"],
|
|
760
|
-
"xbrl-names": "EntityInteractiveDataCurrent",
|
|
761
|
-
"efm": "6.5.21",
|
|
762
|
-
"validation": "o",
|
|
763
|
-
"source": "both",
|
|
764
|
-
"dei/cover": "dei"
|
|
765
|
-
},
|
|
766
|
-
{
|
|
767
|
-
|
|
768
|
-
"sub-types": ["@10-K+Q", "@20+40-F"],
|
|
769
|
-
"xbrl-names": "EntityCurrentReportingStatus",
|
|
770
|
-
"efm": "6.5.21",
|
|
771
|
-
"validation": "r",
|
|
772
|
-
"source": "inline",
|
|
773
|
-
"dei/cover": "cover"
|
|
774
|
-
},
|
|
775
|
-
{
|
|
776
|
-
"sub-types": ["@10-K+Q", "@20+40-F"],
|
|
777
|
-
"xbrl-names": "EntityCurrentReportingStatus",
|
|
778
|
-
"efm": "6.5.21",
|
|
779
|
-
"validation": "o",
|
|
780
|
-
"source": "non-inline",
|
|
781
|
-
"dei/cover": "dei"
|
|
782
|
-
},
|
|
783
|
-
{
|
|
784
|
-
"sub-types": ["@20+40FR"],
|
|
785
|
-
"xbrl-names": "EntityCurrentReportingStatus",
|
|
786
|
-
"efm": "6.5.21",
|
|
787
|
-
"validation": "o",
|
|
788
|
-
"source": "both",
|
|
789
|
-
"dei/cover": "dei"
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
"sub-types": ["@10-K+KT"],
|
|
793
|
-
"xbrl-names": "EntityPublicFloat",
|
|
794
|
-
"efm": "6.5.21",
|
|
795
|
-
"validation": "r",
|
|
796
|
-
"source": "both",
|
|
797
|
-
"dei/cover": "cover"
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
"sub-types": ["@10-K+Q", "@20-F"],
|
|
801
|
-
"xbrl-names": "EntityCommonStockSharesOutstanding",
|
|
802
|
-
"efm": "6.5.26",
|
|
803
|
-
"validation": "r",
|
|
804
|
-
"axis": "c-or-required-context",
|
|
805
|
-
"source": "both",
|
|
806
|
-
"dei/cover": "cover"
|
|
807
|
-
},
|
|
808
|
-
{
|
|
809
|
-
"sub-types": ["@40-F"],
|
|
810
|
-
"xbrl-names": "EntityCommonStockSharesOutstanding",
|
|
811
|
-
"efm": "6.5.26",
|
|
812
|
-
"validation": "o",
|
|
813
|
-
"axis": "c-or-required-context",
|
|
814
|
-
"source": "both",
|
|
815
|
-
"dei/cover": "cover"
|
|
816
|
-
},
|
|
817
|
-
{
|
|
818
|
-
"sub-types": ["@20+40FR"],
|
|
819
|
-
"xbrl-names": "EntityCommonStockSharesOutstanding",
|
|
820
|
-
"efm": "6.5.26",
|
|
821
|
-
"validation": "o",
|
|
822
|
-
"axis": "c-or-required-context",
|
|
823
|
-
"source": "both",
|
|
824
|
-
"dei/cover": "dei"
|
|
825
|
-
},
|
|
826
|
-
{
|
|
827
|
-
"sub-types": ["@10-K+Q", "@20+40-F", "@20+40FR"],
|
|
828
|
-
"xbrl-names": "EntityCommonStockSharesOutstanding",
|
|
829
|
-
"efm": "6.5.26",
|
|
830
|
-
"validation": "security-axis",
|
|
831
|
-
"axis": "c-or-required-context",
|
|
832
|
-
"source": "both",
|
|
833
|
-
"dei/cover": "dei"
|
|
834
|
-
},
|
|
835
|
-
{
|
|
836
|
-
"sub-types": ["@RR", "N-2", "N-2/A", "N-3", "N-3/A", "N-4", "N-4/A", "N-6", "N-6/A"],
|
|
837
|
-
"xbrl-names": "EntityInvCompanyType",
|
|
838
|
-
"elo-name": "invCompanyType",
|
|
839
|
-
"efm": "6.5.40",
|
|
840
|
-
"validation": "r",
|
|
841
|
-
"source": "both",
|
|
842
|
-
"dei/cover": "dei"
|
|
843
|
-
},
|
|
844
|
-
{
|
|
845
|
-
"sub-types-pattern": "^(N-.*|(485(A|B)(POS|BXT))|486.*|497.*|POS(ASR|462[BC]| 8C| AMI))$",
|
|
846
|
-
"xbrl-names": "EntityInvCompanyType",
|
|
847
|
-
"elo-name": "invCompanyType",
|
|
848
|
-
"efm": "6.5.40",
|
|
849
|
-
"validation": "o",
|
|
850
|
-
"source": "both",
|
|
851
|
-
"dei/cover": "dei"
|
|
852
|
-
},
|
|
853
|
-
{
|
|
854
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F"],
|
|
855
|
-
"xbrl-names": ["Security12bTitle", "Security12gTitle"],
|
|
856
|
-
"efm": "6.5.46",
|
|
857
|
-
"validation": "ot1",
|
|
858
|
-
"axis": "c-or-required-context",
|
|
859
|
-
"source": "both",
|
|
860
|
-
"dei/cover": "cover"
|
|
861
|
-
},
|
|
862
|
-
{
|
|
863
|
-
"sub-types": ["@10-12", "@20+40FR"],
|
|
864
|
-
"xbrl-names": ["Security12bTitle", "Security12gTitle"],
|
|
865
|
-
"efm": "6.5.46",
|
|
866
|
-
"validation": "ot1",
|
|
867
|
-
"axis": "c-or-required-context",
|
|
868
|
-
"source": "both",
|
|
869
|
-
"dei/cover": "dei"
|
|
870
|
-
},
|
|
871
|
-
{
|
|
872
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F"],
|
|
873
|
-
"xbrl-names": "SecurityExchangeName",
|
|
874
|
-
"efm": "6.5.46",
|
|
875
|
-
"validation": "te",
|
|
876
|
-
"references": ["TradingSymbol", "NoTradingSymbolFlag"],
|
|
877
|
-
"axis": "c-or-required-context",
|
|
878
|
-
"source": "both",
|
|
879
|
-
"dei/cover": "cover"
|
|
880
|
-
},
|
|
881
|
-
{
|
|
882
|
-
"sub-types": ["@10-12", "@20+40FR"],
|
|
883
|
-
"xbrl-names": "SecurityExchangeName",
|
|
884
|
-
"efm": "6.5.46",
|
|
885
|
-
"validation": "te",
|
|
886
|
-
"references": ["TradingSymbol", "NoTradingSymbolFlag"],
|
|
887
|
-
"axis": "c-or-required-context",
|
|
888
|
-
"source": "both",
|
|
889
|
-
"dei/cover": "dei"
|
|
890
|
-
},
|
|
891
|
-
{
|
|
892
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F"],
|
|
893
|
-
"xbrl-names": [
|
|
894
|
-
"TradingSymbol",
|
|
895
|
-
"NoTradingSymbolFlag"
|
|
896
|
-
],
|
|
897
|
-
"efm": "6.5.46",
|
|
898
|
-
"validation": "t1",
|
|
899
|
-
"axis": "c-or-required-context",
|
|
900
|
-
"references": ["Security12bTitle", "Security12gTitle"],
|
|
901
|
-
"source": "both",
|
|
902
|
-
"dei/cover": "dei",
|
|
903
|
-
"comment": "dei here because cover checked in following only for trading sym, not no-sym"
|
|
904
|
-
},
|
|
905
|
-
{
|
|
906
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F"],
|
|
907
|
-
"xbrl-names": "TradingSymbol",
|
|
908
|
-
"efm": "6.5.46",
|
|
909
|
-
"validation": "o",
|
|
910
|
-
"axis": "c-or-required-context",
|
|
911
|
-
"source": "inline",
|
|
912
|
-
"dei/cover": "cover",
|
|
913
|
-
"comment": "cover here only checks trading symbol, if OTC may have no exchange"
|
|
914
|
-
},
|
|
915
|
-
{
|
|
916
|
-
"sub-types": ["@10-12", "@20+40FR"],
|
|
917
|
-
"xbrl-names": [
|
|
918
|
-
"TradingSymbol",
|
|
919
|
-
"NoTradingSymbolFlag"
|
|
920
|
-
],
|
|
921
|
-
"efm": "6.5.46",
|
|
922
|
-
"validation": "t1",
|
|
923
|
-
"axis": "c-or-required-context",
|
|
924
|
-
"references": ["Security12bTitle", "Security12gTitle"],
|
|
925
|
-
"source": "both",
|
|
926
|
-
"dei/cover": "dei"
|
|
927
|
-
},
|
|
928
|
-
{
|
|
929
|
-
"sub-types": ["@10-12", "@20+40FR"],
|
|
930
|
-
"xbrl-names": "TradingSymbol",
|
|
931
|
-
"efm": "6.5.46",
|
|
932
|
-
"validation": "o",
|
|
933
|
-
"axis": "c-or-required-context",
|
|
934
|
-
"source": "inline",
|
|
935
|
-
"dei/cover": "cover",
|
|
936
|
-
"comment": "cover here only checks trading symbol, if OTC may have no exchange"
|
|
937
|
-
},
|
|
938
|
-
{
|
|
939
|
-
"sub-types": ["@RR", "N-2", "N-2/A", "N-3", "N-3/A", "N-4", "N-4/A", "N-6", "N-6/A"],
|
|
940
|
-
"xbrl-names": "TradingSymbol",
|
|
941
|
-
"efm": "6.5.46",
|
|
942
|
-
"validation": "o",
|
|
943
|
-
"axis": "c-or-required-context",
|
|
944
|
-
"source": "both",
|
|
945
|
-
"dei/cover": "dei"
|
|
946
|
-
},
|
|
947
|
-
{
|
|
948
|
-
"sub-types": ["@20+40-F"],
|
|
949
|
-
"xbrl-names": "SecurityReportingObligation",
|
|
950
|
-
"efm": "6.5.46",
|
|
951
|
-
"validation": "o",
|
|
952
|
-
"axis": "c-or-required-context",
|
|
953
|
-
"source": "both",
|
|
954
|
-
"dei/cover": "cover",
|
|
955
|
-
"comment": "ot in table 6-1 behaves same as o here with c-axis doing context check"
|
|
956
|
-
},
|
|
957
|
-
{
|
|
958
|
-
"sub-types": ["@20+40FR"],
|
|
959
|
-
"xbrl-names": "SecurityReportingObligation",
|
|
960
|
-
"efm": "6.5.46",
|
|
961
|
-
"validation": "o",
|
|
962
|
-
"axis": "c-or-required-context",
|
|
963
|
-
"source": "both",
|
|
964
|
-
"dei/cover": "dei"
|
|
965
|
-
},
|
|
966
|
-
{
|
|
967
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F", "@10-12", "@20+40FR"],
|
|
968
|
-
"xbrl-names": [
|
|
969
|
-
"Security12bTitle",
|
|
970
|
-
"Security12gTitle"
|
|
971
|
-
],
|
|
972
|
-
"efm": "6.5.46",
|
|
973
|
-
"validation": "security-axis",
|
|
974
|
-
"axis": "c-or-required-context",
|
|
975
|
-
"source": "both",
|
|
976
|
-
"dei/cover": "dei"
|
|
977
|
-
},
|
|
978
|
-
{
|
|
979
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F"],
|
|
980
|
-
"xbrl-names": [
|
|
981
|
-
"EntityFileNumber",
|
|
982
|
-
"EntityIncorporationStateCountryCode"
|
|
983
|
-
],
|
|
984
|
-
"efm": "6.5.47",
|
|
985
|
-
"validation": "r",
|
|
986
|
-
"source": "inline",
|
|
987
|
-
"dei/cover": "cover"
|
|
988
|
-
},
|
|
989
|
-
{
|
|
990
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F"],
|
|
991
|
-
"xbrl-names": [
|
|
992
|
-
"EntityFileNumber",
|
|
993
|
-
"EntityIncorporationStateCountryCode"
|
|
994
|
-
],
|
|
995
|
-
"efm": "6.5.47",
|
|
996
|
-
"validation": "o",
|
|
997
|
-
"source": "non-inline",
|
|
998
|
-
"dei/cover": "dei"
|
|
999
|
-
},
|
|
1000
|
-
{
|
|
1001
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F", "@N-2"],
|
|
1002
|
-
"xbrl-names": [
|
|
1003
|
-
"EntityAddressAddressLine1",
|
|
1004
|
-
"EntityAddressCityOrTown",
|
|
1005
|
-
"EntityAddressPostalZipCode"
|
|
1006
|
-
],
|
|
1007
|
-
"efm": "6.5.48",
|
|
1008
|
-
"validation": "r",
|
|
1009
|
-
"source": "inline",
|
|
1010
|
-
"dei/cover": "cover"
|
|
1011
|
-
},
|
|
1012
|
-
{
|
|
1013
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F", "@N-2"],
|
|
1014
|
-
"xbrl-names": [
|
|
1015
|
-
"EntityAddressAddressLine1",
|
|
1016
|
-
"EntityAddressCityOrTown",
|
|
1017
|
-
"EntityAddressPostalZipCode"
|
|
1018
|
-
],
|
|
1019
|
-
"efm": "6.5.48",
|
|
1020
|
-
"validation": "o",
|
|
1021
|
-
"source": "non-inline",
|
|
1022
|
-
"dei/cover": "dei"
|
|
1023
|
-
},
|
|
1024
|
-
{
|
|
1025
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F", "@N-2"],
|
|
1026
|
-
"xbrl-names": "EntityAddressAddressLine2",
|
|
1027
|
-
"efm": "6.5.48",
|
|
1028
|
-
"validation": "ol1",
|
|
1029
|
-
"references": "EntityAddressAddressLine1",
|
|
1030
|
-
"source": "both",
|
|
1031
|
-
"dei/cover": "cover"
|
|
1032
|
-
},
|
|
1033
|
-
{
|
|
1034
|
-
"sub-types": ["@10-K+Q", "@8-K", "@20+40-F", "@N-2"],
|
|
1035
|
-
"xbrl-names": "EntityAddressAddressLine3",
|
|
1036
|
-
"efm": "6.5.48",
|
|
1037
|
-
"validation": "ol2",
|
|
1038
|
-
"references": "EntityAddressAddressLine2",
|
|
1039
|
-
"source": "both",
|
|
1040
|
-
"dei/cover": "cover"
|
|
1041
|
-
},
|
|
1042
|
-
{
|
|
1043
|
-
"sub-types": ["@10-K+Q", "@8-K", "@40-F", "@N-2"],
|
|
1044
|
-
"xbrl-names": [
|
|
1045
|
-
"EntityAddressStateOrProvince",
|
|
1046
|
-
"EntityAddressCountry"
|
|
1047
|
-
],
|
|
1048
|
-
"efm": "6.5.48",
|
|
1049
|
-
"validation": "o2",
|
|
1050
|
-
"references": "EntityAddressAddressLine1",
|
|
1051
|
-
"source": "both",
|
|
1052
|
-
"dei/cover": "cover"
|
|
1053
|
-
},
|
|
1054
|
-
{
|
|
1055
|
-
"sub-types": ["@10-K+Q", "@8-K"],
|
|
1056
|
-
"xbrl-names": "EntityTaxIdentificationNumber",
|
|
1057
|
-
"efm": "6.5.47",
|
|
1058
|
-
"validation": "r",
|
|
1059
|
-
"source": "inline",
|
|
1060
|
-
"dei/cover": "cover"
|
|
1061
|
-
},
|
|
1062
|
-
{
|
|
1063
|
-
"sub-types": ["@10-K+Q", "@8-K"],
|
|
1064
|
-
"xbrl-names": "EntityTaxIdentificationNumber",
|
|
1065
|
-
"efm": "6.5.47",
|
|
1066
|
-
"validation": "o",
|
|
1067
|
-
"source": "non-inline",
|
|
1068
|
-
"dei/cover": "dei"
|
|
1069
|
-
},
|
|
1070
|
-
{
|
|
1071
|
-
"sub-types": ["@40-F"],
|
|
1072
|
-
"xbrl-names": "EntityTaxIdentificationNumber",
|
|
1073
|
-
"efm": "6.5.47",
|
|
1074
|
-
"validation": "o",
|
|
1075
|
-
"source": "both",
|
|
1076
|
-
"dei/cover": "cover"
|
|
1077
|
-
},
|
|
1078
|
-
{
|
|
1079
|
-
"sub-types": ["@40-F"],
|
|
1080
|
-
"xbrl-names": "EntityPrimarySicNumber",
|
|
1081
|
-
"efm": "6.5.47",
|
|
1082
|
-
"validation": "o",
|
|
1083
|
-
"source": "both",
|
|
1084
|
-
"dei/cover": "cover"
|
|
1085
|
-
},
|
|
1086
|
-
{
|
|
1087
|
-
"sub-types": ["@20-F"],
|
|
1088
|
-
"xbrl-names": "EntityAddressStateOrProvince",
|
|
1089
|
-
"efm": "6.5.48",
|
|
1090
|
-
"validation": "o",
|
|
1091
|
-
"source": "both",
|
|
1092
|
-
"dei/cover": "cover"
|
|
1093
|
-
},
|
|
1094
|
-
{
|
|
1095
|
-
"sub-types": ["@20-F"],
|
|
1096
|
-
"xbrl-names": "EntityAddressCountry",
|
|
1097
|
-
"efm": "6.5.47",
|
|
1098
|
-
"validation": "r",
|
|
1099
|
-
"source": "inline",
|
|
1100
|
-
"dei/cover": "cover"
|
|
1101
|
-
},
|
|
1102
|
-
{
|
|
1103
|
-
"sub-types": ["@20-F"],
|
|
1104
|
-
"xbrl-names": "EntityAddressCountry",
|
|
1105
|
-
"efm": "6.5.47",
|
|
1106
|
-
"validation": "o",
|
|
1107
|
-
"source": "non-inline",
|
|
1108
|
-
"dei/cover": "dei"
|
|
1109
|
-
},
|
|
1110
|
-
{
|
|
1111
|
-
"sub-types": ["@10-K+Q", "@8-K", "@40-F", "@N-2"],
|
|
1112
|
-
"xbrl-names": [
|
|
1113
|
-
"CityAreaCode",
|
|
1114
|
-
"LocalPhoneNumber"
|
|
1115
|
-
],
|
|
1116
|
-
"efm": "6.5.48",
|
|
1117
|
-
"validation": "r",
|
|
1118
|
-
"source": "inline",
|
|
1119
|
-
"dei/cover": "cover"
|
|
1120
|
-
},
|
|
1121
|
-
{
|
|
1122
|
-
"sub-types": ["@10-K+Q", "@8-K", "@40-F", "@N-2"],
|
|
1123
|
-
"xbrl-names": [
|
|
1124
|
-
"CityAreaCode",
|
|
1125
|
-
"LocalPhoneNumber"
|
|
1126
|
-
],
|
|
1127
|
-
"efm": "6.5.48",
|
|
1128
|
-
"validation": "o",
|
|
1129
|
-
"source": "non-inline",
|
|
1130
|
-
"dei/cover": "dei"
|
|
1131
|
-
},
|
|
1132
|
-
{
|
|
1133
|
-
"sub-types": ["@40-F"],
|
|
1134
|
-
"xbrl-names": [
|
|
1135
|
-
"AnnualInformationForm",
|
|
1136
|
-
"AuditedAnnualFinancialStatements"
|
|
1137
|
-
],
|
|
1138
|
-
"efm": "6.5.49",
|
|
1139
|
-
"validation": "r",
|
|
1140
|
-
"source": "inline",
|
|
1141
|
-
"dei/cover": "cover"
|
|
1142
|
-
},
|
|
1143
|
-
{
|
|
1144
|
-
"sub-types": ["@40-F"],
|
|
1145
|
-
"xbrl-names": [
|
|
1146
|
-
"AnnualInformationForm",
|
|
1147
|
-
"AuditedAnnualFinancialStatements"
|
|
1148
|
-
],
|
|
1149
|
-
"efm": "6.5.49",
|
|
1150
|
-
"validation": "o",
|
|
1151
|
-
"source": "non-inline",
|
|
1152
|
-
"dei/cover": "dei"
|
|
1153
|
-
},
|
|
1154
|
-
{
|
|
1155
|
-
"sub-types": ["@20+40FR", "@6-K"],
|
|
1156
|
-
"xbrl-names": "EntityFileNumber",
|
|
1157
|
-
"efm": "6.5.47",
|
|
1158
|
-
"validation": "o",
|
|
1159
|
-
"source": "both",
|
|
1160
|
-
"dei/cover": "dei"
|
|
1161
|
-
},
|
|
1162
|
-
{
|
|
1163
|
-
"sub-types": ["@10-12", "@20+40FR", "@S-n", "@POS", "@F-n", "@F-nX"],
|
|
1164
|
-
"xbrl-names": "EntityIncorporationStateCountryCode",
|
|
1165
|
-
"efm": "6.5.47",
|
|
1166
|
-
"validation": "o",
|
|
1167
|
-
"source": "both",
|
|
1168
|
-
"dei/cover": "dei"
|
|
1169
|
-
},
|
|
1170
|
-
{
|
|
1171
|
-
"sub-types": ["@10-12", "@40FR", "@S-n", "@POS", "@F-n", "@F-nX"],
|
|
1172
|
-
"xbrl-names": "EntityTaxIdentificationNumber",
|
|
1173
|
-
"efm": "6.5.47",
|
|
1174
|
-
"validation": "o",
|
|
1175
|
-
"source": "both",
|
|
1176
|
-
"dei/cover": "dei"
|
|
1177
|
-
},
|
|
1178
|
-
{
|
|
1179
|
-
"sub-types": ["@40FR", "@S-n", "@POS", "@F-n", "@F-nX"],
|
|
1180
|
-
"xbrl-names": "EntityPrimarySicNumber",
|
|
1181
|
-
"efm": "6.5.47",
|
|
1182
|
-
"validation": "o",
|
|
1183
|
-
"source": "both",
|
|
1184
|
-
"dei/cover": "dei"
|
|
1185
|
-
},
|
|
1186
|
-
{
|
|
1187
|
-
"sub-types": ["@10-12", "@20+40FR", "@6-K", "@S-n", "@POS", "@F-n", "@F-nX"],
|
|
1188
|
-
"xbrl-names": [
|
|
1189
|
-
"EntityAddressAddressLine1",
|
|
1190
|
-
"EntityAddressCityOrTown",
|
|
1191
|
-
"EntityAddressStateOrProvince",
|
|
1192
|
-
"EntityAddressPostalZipCode"
|
|
1193
|
-
],
|
|
1194
|
-
"efm": "6.5.48",
|
|
1195
|
-
"validation": "o",
|
|
1196
|
-
"source": "both",
|
|
1197
|
-
"dei/cover": "dei"
|
|
1198
|
-
},
|
|
1199
|
-
{
|
|
1200
|
-
"sub-types": ["@10-12", "@20+40FR", "@6-K", "@S-n", "@POS", "@F-n", "@F-nX"],
|
|
1201
|
-
"xbrl-names": "EntityAddressAddressLine2",
|
|
1202
|
-
"efm": "6.5.48",
|
|
1203
|
-
"validation": "ol1",
|
|
1204
|
-
"references": "EntityAddressAddressLine1",
|
|
1205
|
-
"source": "both",
|
|
1206
|
-
"dei/cover": "dei"
|
|
1207
|
-
},
|
|
1208
|
-
{
|
|
1209
|
-
"sub-types": ["@10-12", "@20+40FR", "@6-K", "@S-n", "@POS", "@F-n", "@F-nX"],
|
|
1210
|
-
"xbrl-names": "EntityAddressAddressLine3",
|
|
1211
|
-
"efm": "6.5.48",
|
|
1212
|
-
"validation": "ol2",
|
|
1213
|
-
"references": "EntityAddressAddressLine2",
|
|
1214
|
-
"source": "both",
|
|
1215
|
-
"dei/cover": "dei"
|
|
1216
|
-
},
|
|
1217
|
-
{
|
|
1218
|
-
"sub-types": ["@10-12", "@20FR", "@6-K", "@F-n", "@F-nX"],
|
|
1219
|
-
"xbrl-names": "EntityAddressCountry",
|
|
1220
|
-
"efm": "6.5.48",
|
|
1221
|
-
"validation": "o",
|
|
1222
|
-
"source": "both",
|
|
1223
|
-
"dei/cover": "dei"
|
|
1224
|
-
},
|
|
1225
|
-
{
|
|
1226
|
-
"sub-types": ["@10-12", "@40FR", "@S-n", "@POS", "@F-n", "@F-nX"],
|
|
1227
|
-
"xbrl-names": "CityAreaCode",
|
|
1228
|
-
"efm": "6.5.48",
|
|
1229
|
-
"validation": "oph",
|
|
1230
|
-
"references": "LocalPhoneNumber",
|
|
1231
|
-
"source": "both",
|
|
1232
|
-
"dei/cover": "dei"
|
|
1233
|
-
},
|
|
1234
|
-
{
|
|
1235
|
-
"sub-types": ["@10-12", "@40FR", "@S-n", "@POS", "@F-n", "@F-nX"],
|
|
1236
|
-
"xbrl-names": "LocalPhoneNumber",
|
|
1237
|
-
"efm": "6.5.48",
|
|
1238
|
-
"validation": "o",
|
|
1239
|
-
"source": "both",
|
|
1240
|
-
"dei/cover": "dei"
|
|
1241
|
-
},
|
|
1242
|
-
{
|
|
1243
|
-
"sub-types": ["@10-K", "@40-F"],
|
|
1244
|
-
"xbrl-names": "DocumentAnnualReport",
|
|
1245
|
-
"efm": "6.5.49",
|
|
1246
|
-
"validation": "y",
|
|
1247
|
-
"value": true,
|
|
1248
|
-
"source": "inline",
|
|
1249
|
-
"dei/cover": "cover"
|
|
1250
|
-
},
|
|
1251
|
-
{
|
|
1252
|
-
"sub-types": ["@10-K", "@40-F"],
|
|
1253
|
-
"xbrl-names": "DocumentAnnualReport",
|
|
1254
|
-
"efm": "6.5.49",
|
|
1255
|
-
"validation": "ov",
|
|
1256
|
-
"value": true,
|
|
1257
|
-
"source": "non-inline",
|
|
1258
|
-
"dei/cover": "dei"
|
|
1259
|
-
},
|
|
1260
|
-
{
|
|
1261
|
-
"sub-types": ["@10-KT"],
|
|
1262
|
-
"xbrl-names": "DocumentAnnualReport",
|
|
1263
|
-
"efm": "6.5.49",
|
|
1264
|
-
"validation": "n",
|
|
1265
|
-
"value": false,
|
|
1266
|
-
"source": "inline",
|
|
1267
|
-
"dei/cover": "cover"
|
|
1268
|
-
},
|
|
1269
|
-
{
|
|
1270
|
-
"sub-types": ["@10-K", "@10-KT", "@20-F", "@40-F"],
|
|
1271
|
-
"xbrl-names": [
|
|
1272
|
-
"DocumentFinStmtErrorCorrectionFlag",
|
|
1273
|
-
"DocumentFinStmtRestatementRecoveryAnalysisFlag"
|
|
1274
|
-
],
|
|
1275
|
-
"efm": "6.5.49",
|
|
1276
|
-
"validation": "taxonomy-version-required",
|
|
1277
|
-
"value": 2,
|
|
1278
|
-
"earliest-taxonomy": "dei/2022q4",
|
|
1279
|
-
"check-after": "2024-01-27",
|
|
1280
|
-
"source": "inline",
|
|
1281
|
-
"dei/cover": "cover",
|
|
1282
|
-
"comment": "value is number of name elements required in taxonomy"
|
|
1283
|
-
},
|
|
1284
|
-
{
|
|
1285
|
-
"sub-types": ["@10-K", "@10-KT", "@20-F", "@40-F"],
|
|
1286
|
-
"xbrl-names": "DocumentFinStmtErrorCorrectionFlag",
|
|
1287
|
-
"efm": "6.5.49",
|
|
1288
|
-
"validation": "r",
|
|
1289
|
-
"source": "inline",
|
|
1290
|
-
"dei/cover": "cover"
|
|
1291
|
-
},
|
|
1292
|
-
{
|
|
1293
|
-
"sub-types": ["@10-K", "@10-KT", "@20-F", "@40-F"],
|
|
1294
|
-
"xbrl-names": "DocumentFinStmtRestatementRecoveryAnalysisFlag",
|
|
1295
|
-
"efm": "6.5.49",
|
|
1296
|
-
"validation": "rt",
|
|
1297
|
-
"references": "DocumentFinStmtErrorCorrectionFlag",
|
|
1298
|
-
"reference-value": true,
|
|
1299
|
-
"source": "inline",
|
|
1300
|
-
"dei/cover": "cover"
|
|
1301
|
-
},
|
|
1302
|
-
{
|
|
1303
|
-
"sub-types": ["@10-KT"],
|
|
1304
|
-
"xbrl-names": "DocumentAnnualReport",
|
|
1305
|
-
"efm": "6.5.49",
|
|
1306
|
-
"validation": "ov",
|
|
1307
|
-
"value": false,
|
|
1308
|
-
"source": "non-inline",
|
|
1309
|
-
"dei/cover": "dei"
|
|
1310
|
-
},
|
|
1311
|
-
{
|
|
1312
|
-
"sub-types": ["@20+40FR"],
|
|
1313
|
-
"xbrl-names": "DocumentAnnualReport",
|
|
1314
|
-
"efm": "6.5.49",
|
|
1315
|
-
"validation": "ov",
|
|
1316
|
-
"value": false,
|
|
1317
|
-
"source": "both",
|
|
1318
|
-
"dei/cover": "dei"
|
|
1319
|
-
},
|
|
1320
|
-
{
|
|
1321
|
-
"sub-types": ["@20-F"],
|
|
1322
|
-
"xbrl-names": [
|
|
1323
|
-
"DocumentAnnualReport",
|
|
1324
|
-
"DocumentTransitionReport",
|
|
1325
|
-
"DocumentShellCompanyReport"
|
|
1326
|
-
],
|
|
1327
|
-
"efm": "6.5.49",
|
|
1328
|
-
"validation": "tf3",
|
|
1329
|
-
"value": [true, false],
|
|
1330
|
-
"source": "both",
|
|
1331
|
-
"dei/cover": "cover",
|
|
1332
|
-
"comment": "exclusive fact has first value, others have second (to n'th) value"
|
|
1333
|
-
},
|
|
1334
|
-
{
|
|
1335
|
-
"sub-types": ["@10-Q"],
|
|
1336
|
-
"xbrl-names": "DocumentQuarterlyReport",
|
|
1337
|
-
"efm": "6.5.49",
|
|
1338
|
-
"validation": "y",
|
|
1339
|
-
"value": true,
|
|
1340
|
-
"source": "inline",
|
|
1341
|
-
"dei/cover": "cover"
|
|
1342
|
-
},
|
|
1343
|
-
{
|
|
1344
|
-
"sub-types": ["@10-Q"],
|
|
1345
|
-
"xbrl-names": "DocumentQuarterlyReport",
|
|
1346
|
-
"efm": "6.5.49",
|
|
1347
|
-
"validation": "ov",
|
|
1348
|
-
"value": true,
|
|
1349
|
-
"source": "non-inline",
|
|
1350
|
-
"dei/cover": "dei"
|
|
1351
|
-
},
|
|
1352
|
-
{
|
|
1353
|
-
"sub-types": ["@10-QT"],
|
|
1354
|
-
"xbrl-names": "DocumentQuarterlyReport",
|
|
1355
|
-
"efm": "6.5.49",
|
|
1356
|
-
"validation": "n",
|
|
1357
|
-
"value": false,
|
|
1358
|
-
"source": "inline",
|
|
1359
|
-
"dei/cover": "cover"
|
|
1360
|
-
},
|
|
1361
|
-
{
|
|
1362
|
-
"sub-types": ["@10-QT"],
|
|
1363
|
-
"xbrl-names": "DocumentQuarterlyReport",
|
|
1364
|
-
"efm": "6.5.49",
|
|
1365
|
-
"validation": "ov",
|
|
1366
|
-
"value": false,
|
|
1367
|
-
"source": "non-inline",
|
|
1368
|
-
"dei/cover": "dei"
|
|
1369
|
-
},
|
|
1370
|
-
{
|
|
1371
|
-
"sub-types": ["@10-K", "@10-Q"],
|
|
1372
|
-
"xbrl-names": "DocumentTransitionReport",
|
|
1373
|
-
"efm": "6.5.49",
|
|
1374
|
-
"validation": "n",
|
|
1375
|
-
"value": false,
|
|
1376
|
-
"source": "inline",
|
|
1377
|
-
"dei/cover": "cover"
|
|
1378
|
-
},
|
|
1379
|
-
{
|
|
1380
|
-
"sub-types": ["@10-K", "@10-Q"],
|
|
1381
|
-
"xbrl-names": "DocumentTransitionReport",
|
|
1382
|
-
"efm": "6.5.49",
|
|
1383
|
-
"validation": "ov",
|
|
1384
|
-
"value": false,
|
|
1385
|
-
"source": "non-inline",
|
|
1386
|
-
"dei/cover": "dei"
|
|
1387
|
-
},
|
|
1388
|
-
{
|
|
1389
|
-
"sub-types": ["@10-KT", "@10-QT"],
|
|
1390
|
-
"xbrl-names": "DocumentTransitionReport",
|
|
1391
|
-
"efm": "6.5.49",
|
|
1392
|
-
"validation": "y",
|
|
1393
|
-
"value": true,
|
|
1394
|
-
"source": "inline",
|
|
1395
|
-
"dei/cover": "cover"
|
|
1396
|
-
},
|
|
1397
|
-
{
|
|
1398
|
-
"sub-types": ["@10-KT", "@10-QT"],
|
|
1399
|
-
"xbrl-names": "DocumentTransitionReport",
|
|
1400
|
-
"efm": "6.5.49",
|
|
1401
|
-
"validation": "ov",
|
|
1402
|
-
"value": true,
|
|
1403
|
-
"source": "non-inline",
|
|
1404
|
-
"dei/cover": "dei"
|
|
1405
|
-
},
|
|
1406
|
-
{
|
|
1407
|
-
"sub-types": ["@20FR"],
|
|
1408
|
-
"xbrl-names": [
|
|
1409
|
-
"DocumentTransitionReport",
|
|
1410
|
-
"DocumentShellCompanyReport"
|
|
1411
|
-
],
|
|
1412
|
-
"efm": "6.5.49",
|
|
1413
|
-
"validation": "ov",
|
|
1414
|
-
"value": false,
|
|
1415
|
-
"source": "both",
|
|
1416
|
-
"dei/cover": "dei"
|
|
1417
|
-
},
|
|
1418
|
-
{
|
|
1419
|
-
"sub-types": ["@10-KT", "@10-QT"],
|
|
1420
|
-
"xbrl-names": "DocumentPeriodStartDate",
|
|
1421
|
-
"efm": "6.5.49",
|
|
1422
|
-
"validation": "r",
|
|
1423
|
-
"source": "inline",
|
|
1424
|
-
"dei/cover": "cover"
|
|
1425
|
-
},
|
|
1426
|
-
{
|
|
1427
|
-
"sub-types": ["@10-KT", "@10-QT"],
|
|
1428
|
-
"xbrl-names": "DocumentPeriodStartDate",
|
|
1429
|
-
"efm": "6.5.49",
|
|
1430
|
-
"validation": "o",
|
|
1431
|
-
"source": "non-inline",
|
|
1432
|
-
"dei/cover": "dei"
|
|
1433
|
-
},
|
|
1434
|
-
{
|
|
1435
|
-
"sub-types": ["@20-F"],
|
|
1436
|
-
"xbrl-names": "DocumentPeriodStartDate",
|
|
1437
|
-
"efm": "6.5.49",
|
|
1438
|
-
"validation": "tr",
|
|
1439
|
-
"references": "DocumentTransitionReport",
|
|
1440
|
-
"reference-value": true,
|
|
1441
|
-
"source": "inline",
|
|
1442
|
-
"dei/cover": "cover"
|
|
1443
|
-
},
|
|
1444
|
-
{
|
|
1445
|
-
"sub-types": ["@20-F"],
|
|
1446
|
-
"xbrl-names": "DocumentPeriodStartDate",
|
|
1447
|
-
"efm": "6.5.49",
|
|
1448
|
-
"validation": "o",
|
|
1449
|
-
"references": "DocumentTransitionReport",
|
|
1450
|
-
"reference-value": true,
|
|
1451
|
-
"source": "non-inline",
|
|
1452
|
-
"dei/cover": "dei"
|
|
1453
|
-
},
|
|
1454
|
-
{
|
|
1455
|
-
"sub-types": ["@20-F"],
|
|
1456
|
-
"xbrl-names": "DocumentShellCompanyEventDate",
|
|
1457
|
-
"efm": "6.5.49",
|
|
1458
|
-
"validation": "sr",
|
|
1459
|
-
"references": "DocumentShellCompanyReport",
|
|
1460
|
-
"reference-value": true,
|
|
1461
|
-
"source": "inline",
|
|
1462
|
-
"dei/cover": "cover"
|
|
1463
|
-
},
|
|
1464
|
-
{
|
|
1465
|
-
"sub-types": ["@20-F"],
|
|
1466
|
-
"xbrl-names": "DocumentShellCompanyEventDate",
|
|
1467
|
-
"efm": "6.5.49",
|
|
1468
|
-
"validation": "o",
|
|
1469
|
-
"references": "DocumentShellCompanyReport",
|
|
1470
|
-
"reference-value": true,
|
|
1471
|
-
"source": "non-inline",
|
|
1472
|
-
"dei/cover": "dei"
|
|
1473
|
-
},
|
|
1474
|
-
{
|
|
1475
|
-
"sub-types": ["@20+40-F"],
|
|
1476
|
-
"xbrl-names": "DocumentRegistrationStatement",
|
|
1477
|
-
"efm": "6.5.49",
|
|
1478
|
-
"validation": "n",
|
|
1479
|
-
"value": false,
|
|
1480
|
-
"source": "inline",
|
|
1481
|
-
"dei/cover": "cover"
|
|
1482
|
-
},
|
|
1483
|
-
{
|
|
1484
|
-
"sub-types": ["@20+40-F"],
|
|
1485
|
-
"xbrl-names": "DocumentRegistrationStatement",
|
|
1486
|
-
"efm": "6.5.55",
|
|
1487
|
-
"validation": "ov",
|
|
1488
|
-
"value": false,
|
|
1489
|
-
"source": "non-inline",
|
|
1490
|
-
"dei/cover": "dei"
|
|
1491
|
-
},
|
|
1492
|
-
{
|
|
1493
|
-
"sub-types": ["@20+40FR"],
|
|
1494
|
-
"xbrl-names": "DocumentRegistrationStatement",
|
|
1495
|
-
"efm": "6.5.49",
|
|
1496
|
-
"validation": "ov",
|
|
1497
|
-
"value": true,
|
|
1498
|
-
"source": "both",
|
|
1499
|
-
"dei/cover": "dei"
|
|
1500
|
-
},
|
|
1501
|
-
{
|
|
1502
|
-
"sub-types": ["@10-K+Q", "@20-F"],
|
|
1503
|
-
"xbrl-names": "EntityBankruptcyProceedingsReportingCurrent",
|
|
1504
|
-
"efm": "6.5.49",
|
|
1505
|
-
"validation": "o",
|
|
1506
|
-
"source": "both",
|
|
1507
|
-
"dei/cover": "cover"
|
|
1508
|
-
},
|
|
1509
|
-
{
|
|
1510
|
-
"sub-types": ["@20FR"],
|
|
1511
|
-
"xbrl-names": "EntityBankruptcyProceedingsReportingCurrent",
|
|
1512
|
-
"efm": "6.5.49",
|
|
1513
|
-
"validation": "o",
|
|
1514
|
-
"source": "both",
|
|
1515
|
-
"dei/cover": "dei"
|
|
1516
|
-
},
|
|
1517
|
-
{
|
|
1518
|
-
"sub-types": ["@10-K+KT"],
|
|
1519
|
-
"xbrl-names": "DocumentsIncorporatedByReferenceTextBlock",
|
|
1520
|
-
"efm": "6.5.49",
|
|
1521
|
-
"validation": "o",
|
|
1522
|
-
"source": "both",
|
|
1523
|
-
"dei/cover": "cover"
|
|
1524
|
-
},
|
|
1525
|
-
{
|
|
1526
|
-
"sub-types": ["@20-F"],
|
|
1527
|
-
"xbrl-names": "DocumentAccountingStandard",
|
|
1528
|
-
"efm": "6.5.50",
|
|
1529
|
-
"validation": "r",
|
|
1530
|
-
"source": "inline",
|
|
1531
|
-
"dei/cover": "cover"
|
|
1532
|
-
},
|
|
1533
|
-
{
|
|
1534
|
-
"sub-types": ["@20-F"],
|
|
1535
|
-
"xbrl-names": "DocumentAccountingStandard",
|
|
1536
|
-
"efm": "6.5.50",
|
|
1537
|
-
"validation": "o",
|
|
1538
|
-
"source": "non-inline",
|
|
1539
|
-
"dei/cover": "dei"
|
|
1540
|
-
},
|
|
1541
|
-
{
|
|
1542
|
-
"sub-types": ["@20FR"],
|
|
1543
|
-
"xbrl-names": "DocumentAccountingStandard",
|
|
1544
|
-
"efm": "6.5.50",
|
|
1545
|
-
"validation": "o",
|
|
1546
|
-
"source": "both",
|
|
1547
|
-
"dei/cover": "dei"
|
|
1548
|
-
},
|
|
1549
|
-
{
|
|
1550
|
-
"sub-types": ["@20-F"],
|
|
1551
|
-
"xbrl-names": "OtherReportingStandardItemNumber",
|
|
1552
|
-
"efm": "6.5.50",
|
|
1553
|
-
"validation": "oth",
|
|
1554
|
-
"references": "DocumentAccountingStandard",
|
|
1555
|
-
"reference-value": "Other",
|
|
1556
|
-
"source": "both",
|
|
1557
|
-
"dei/cover": "cover"
|
|
1558
|
-
},
|
|
1559
|
-
{
|
|
1560
|
-
"sub-types": ["@20FR"],
|
|
1561
|
-
"xbrl-names": "OtherReportingStandardItemNumber",
|
|
1562
|
-
"efm": "6.5.50",
|
|
1563
|
-
"validation": "oth",
|
|
1564
|
-
"references": "DocumentAccountingStandard",
|
|
1565
|
-
"reference-value": "Other",
|
|
1566
|
-
"source": "both",
|
|
1567
|
-
"dei/cover": "dei"
|
|
1568
|
-
},
|
|
1569
|
-
{
|
|
1570
|
-
"sub-types": ["@20+40-F", "@N-2"],
|
|
1571
|
-
"xbrl-names": [
|
|
1572
|
-
"ContactPersonnelName",
|
|
1573
|
-
"EntityAddressAddressLine1",
|
|
1574
|
-
"EntityAddressCityOrTown",
|
|
1575
|
-
"EntityAddressPostalZipCode"
|
|
1576
|
-
],
|
|
1577
|
-
"efm": "6.5.51",
|
|
1578
|
-
"validation": "r",
|
|
1579
|
-
"axis": "a",
|
|
1580
|
-
"source": "inline",
|
|
1581
|
-
"dei/cover": "cover"
|
|
1582
|
-
},
|
|
1583
|
-
{
|
|
1584
|
-
"sub-types": ["@20+40-F", "@N-2"],
|
|
1585
|
-
"xbrl-names": [
|
|
1586
|
-
"ContactPersonnelName",
|
|
1587
|
-
"EntityAddressAddressLine1",
|
|
1588
|
-
"EntityAddressCityOrTown",
|
|
1589
|
-
"EntityAddressPostalZipCode"
|
|
1590
|
-
],
|
|
1591
|
-
"efm": "6.5.51",
|
|
1592
|
-
"validation": "o",
|
|
1593
|
-
"axis": "a",
|
|
1594
|
-
"source": "non-inline",
|
|
1595
|
-
"dei/cover": "dei"
|
|
1596
|
-
},
|
|
1597
|
-
{
|
|
1598
|
-
"sub-types": ["@20+40-F", "@N-2"],
|
|
1599
|
-
"xbrl-names": "EntityAddressAddressLine2",
|
|
1600
|
-
"efm": "6.5.51",
|
|
1601
|
-
"validation": "ol1",
|
|
1602
|
-
"axis": "a",
|
|
1603
|
-
"references": "EntityAddressAddressLine1",
|
|
1604
|
-
"source": "both",
|
|
1605
|
-
"dei/cover": "cover"
|
|
1606
|
-
},
|
|
1607
|
-
{
|
|
1608
|
-
"sub-types": ["@20+40-F", "@N-2"],
|
|
1609
|
-
"xbrl-names": "EntityAddressAddressLine3",
|
|
1610
|
-
"efm": "6.5.51",
|
|
1611
|
-
"validation": "ol2",
|
|
1612
|
-
"axis": "a",
|
|
1613
|
-
"references": "EntityAddressAddressLine2",
|
|
1614
|
-
"source": "both",
|
|
1615
|
-
"dei/cover": "cover"
|
|
1616
|
-
},
|
|
1617
|
-
{
|
|
1618
|
-
"sub-types": ["@20-F", "@N-2"],
|
|
1619
|
-
"xbrl-names": [
|
|
1620
|
-
"EntityAddressStateOrProvince",
|
|
1621
|
-
"EntityAddressCountry"
|
|
1622
|
-
],
|
|
1623
|
-
"efm": "6.5.51",
|
|
1624
|
-
"validation": "o2",
|
|
1625
|
-
"axis": "a",
|
|
1626
|
-
"references": "EntityAddressAddressLine1",
|
|
1627
|
-
"source": "inline",
|
|
1628
|
-
"dei/cover": "cover"
|
|
1629
|
-
},
|
|
1630
|
-
{
|
|
1631
|
-
"sub-types": ["@20-F", "@N-2"],
|
|
1632
|
-
"xbrl-names": [
|
|
1633
|
-
"EntityAddressStateOrProvince",
|
|
1634
|
-
"EntityAddressCountry"
|
|
1635
|
-
],
|
|
1636
|
-
"efm": "6.5.51",
|
|
1637
|
-
"validation": "o",
|
|
1638
|
-
"axis": "a",
|
|
1639
|
-
"source": "non-inline",
|
|
1640
|
-
"dei/cover": "dei"
|
|
1641
|
-
},
|
|
1642
|
-
{
|
|
1643
|
-
"sub-types": ["@20-F"],
|
|
1644
|
-
"xbrl-names": [
|
|
1645
|
-
"LocalPhoneNumber",
|
|
1646
|
-
"ContactPersonnelFaxNumber",
|
|
1647
|
-
"ContactPersonnelEmailAddress"
|
|
1648
|
-
],
|
|
1649
|
-
"efm": "6.5.51",
|
|
1650
|
-
"validation": "o3",
|
|
1651
|
-
"axis": "a",
|
|
1652
|
-
"source": "inline",
|
|
1653
|
-
"dei/cover": "cover"
|
|
1654
|
-
},
|
|
1655
|
-
{
|
|
1656
|
-
"sub-types": ["@20-F"],
|
|
1657
|
-
"xbrl-names": [
|
|
1658
|
-
"LocalPhoneNumber",
|
|
1659
|
-
"ContactPersonnelFaxNumber",
|
|
1660
|
-
"ContactPersonnelEmailAddress"
|
|
1661
|
-
],
|
|
1662
|
-
"efm": "6.5.51",
|
|
1663
|
-
"validation": "o",
|
|
1664
|
-
"axis": "a",
|
|
1665
|
-
"source": "non-inline",
|
|
1666
|
-
"dei/cover": "dei"
|
|
1667
|
-
},
|
|
1668
|
-
{
|
|
1669
|
-
"sub-types": ["@N-2"],
|
|
1670
|
-
"xbrl-names": "LocalPhoneNumber",
|
|
1671
|
-
"efm": "6.5.51",
|
|
1672
|
-
"validation": "o",
|
|
1673
|
-
"axis": "a",
|
|
1674
|
-
"source": "non-inline",
|
|
1675
|
-
"dei/cover": "dei"
|
|
1676
|
-
},
|
|
1677
|
-
{
|
|
1678
|
-
"sub-types": ["@20-F", "@N-2"],
|
|
1679
|
-
"xbrl-names": "CityAreaCode",
|
|
1680
|
-
"efm": "6.5.51",
|
|
1681
|
-
"validation": "oph",
|
|
1682
|
-
"axis": "a",
|
|
1683
|
-
"references": "LocalPhoneNumber",
|
|
1684
|
-
"source": "both",
|
|
1685
|
-
"dei/cover": "cover"
|
|
1686
|
-
},
|
|
1687
|
-
{
|
|
1688
|
-
"sub-types": ["@40-F"],
|
|
1689
|
-
"xbrl-names": "LocalPhoneNumber",
|
|
1690
|
-
"efm": "6.5.51",
|
|
1691
|
-
"validation": "r",
|
|
1692
|
-
"axis": "a",
|
|
1693
|
-
"source": "inline",
|
|
1694
|
-
"dei/cover": "cover"
|
|
1695
|
-
},
|
|
1696
|
-
{
|
|
1697
|
-
"sub-types": ["@40-F"],
|
|
1698
|
-
"xbrl-names": "LocalPhoneNumber",
|
|
1699
|
-
"efm": "6.5.51",
|
|
1700
|
-
"validation": "o",
|
|
1701
|
-
"axis": "a",
|
|
1702
|
-
"source": "non-inline",
|
|
1703
|
-
"dei/cover": "dei"
|
|
1704
|
-
},
|
|
1705
|
-
{
|
|
1706
|
-
"sub-types": ["@40-F"],
|
|
1707
|
-
"xbrl-names": "EntityAddressStateOrProvince",
|
|
1708
|
-
"efm": "6.5.51",
|
|
1709
|
-
"validation": "ru",
|
|
1710
|
-
"value": [
|
|
1711
|
-
"AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "DC", "FL", "GA", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MD", "MA", "MI", "MN", "MS", "MO",
|
|
1712
|
-
"MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "X1", "UT", "VT", "VA", "WA", "WV", "WI", "WY"],
|
|
1713
|
-
"axis": "a",
|
|
1714
|
-
"source": "inline",
|
|
1715
|
-
"dei/cover": "cover"
|
|
1716
|
-
},
|
|
1717
|
-
{
|
|
1718
|
-
"sub-types": ["@40-F"],
|
|
1719
|
-
"xbrl-names": "EntityAddressStateOrProvince",
|
|
1720
|
-
"efm": "6.5.51",
|
|
1721
|
-
"validation": "ov",
|
|
1722
|
-
"value": [
|
|
1723
|
-
"AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "DC", "FL", "GA", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MD", "MA", "MI", "MN", "MS", "MO",
|
|
1724
|
-
"MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "X1", "UT", "VT", "VA", "WA", "WV", "WI", "WY"],
|
|
1725
|
-
"axis": "a",
|
|
1726
|
-
"source": "non-inline",
|
|
1727
|
-
"dei/cover": "dei"
|
|
1728
|
-
},
|
|
1729
|
-
{
|
|
1730
|
-
"sub-types": ["@40-F"],
|
|
1731
|
-
"xbrl-names": [
|
|
1732
|
-
"CityAreaCode",
|
|
1733
|
-
"LocalPhoneNumber"
|
|
1734
|
-
],
|
|
1735
|
-
"efm": "6.5.51",
|
|
1736
|
-
"validation": "r",
|
|
1737
|
-
"axis": "a",
|
|
1738
|
-
"source": "inline",
|
|
1739
|
-
"dei/cover": "cover"
|
|
1740
|
-
},
|
|
1741
|
-
{
|
|
1742
|
-
"sub-types": ["@40-F"],
|
|
1743
|
-
"xbrl-names": [
|
|
1744
|
-
"CityAreaCode",
|
|
1745
|
-
"LocalPhoneNumber"
|
|
1746
|
-
],
|
|
1747
|
-
"efm": "6.5.51",
|
|
1748
|
-
"validation": "o",
|
|
1749
|
-
"axis": "a",
|
|
1750
|
-
"source": "non-inline",
|
|
1751
|
-
"dei/cover": "dei"
|
|
1752
|
-
},
|
|
1753
|
-
{
|
|
1754
|
-
"sub-types": ["@20+40FR", "@S-n", "@POS", "@F-n", "@F-nX", "@N-2"],
|
|
1755
|
-
"xbrl-names": [
|
|
1756
|
-
"ContactPersonnelName",
|
|
1757
|
-
"EntityAddressAddressLine1",
|
|
1758
|
-
"EntityAddressCityOrTown",
|
|
1759
|
-
"EntityAddressCountry",
|
|
1760
|
-
"EntityAddressPostalZipCode"
|
|
1761
|
-
],
|
|
1762
|
-
"efm": "6.5.51",
|
|
1763
|
-
"validation": "o",
|
|
1764
|
-
"axis": "a",
|
|
1765
|
-
"source": "both",
|
|
1766
|
-
"dei/cover": "cover"
|
|
1767
|
-
},
|
|
1768
|
-
{
|
|
1769
|
-
"sub-types": ["@20+40FR", "@S-n", "@POS", "@F-n", "@F-nX"],
|
|
1770
|
-
"xbrl-names": "LocalPhoneNumber",
|
|
1771
|
-
"efm": "6.5.51",
|
|
1772
|
-
"validation": "o",
|
|
1773
|
-
"axis": "a",
|
|
1774
|
-
"source": "both",
|
|
1775
|
-
"dei/cover": "cover"
|
|
1776
|
-
},
|
|
1777
|
-
{
|
|
1778
|
-
"sub-types": ["@20+40FR", "@S-n", "@POS", "@F-n", "@F-nX", "@N-2"],
|
|
1779
|
-
"xbrl-names": "EntityAddressAddressLine2",
|
|
1780
|
-
"efm": "6.5.51",
|
|
1781
|
-
"validation": "ol1",
|
|
1782
|
-
"axis": "a",
|
|
1783
|
-
"references": "EntityAddressAddressLine1",
|
|
1784
|
-
"source": "both",
|
|
1785
|
-
"dei/cover": "dei"
|
|
1786
|
-
},
|
|
1787
|
-
{
|
|
1788
|
-
"sub-types": ["@20+40FR", "@S-n", "@POS", "@F-n", "@F-nX", "@N-2"],
|
|
1789
|
-
"xbrl-names": "EntityAddressAddressLine3",
|
|
1790
|
-
"efm": "6.5.51",
|
|
1791
|
-
"validation": "ol2",
|
|
1792
|
-
"axis": "a",
|
|
1793
|
-
"references": "EntityAddressAddressLine2",
|
|
1794
|
-
"source": "both",
|
|
1795
|
-
"dei/cover": "dei"
|
|
1796
|
-
},
|
|
1797
|
-
{
|
|
1798
|
-
"sub-types": ["@20FR", "@S-n", "@POS", "@F-n", "@F-nX", "@N-2"],
|
|
1799
|
-
"xbrl-names": "EntityAddressStateOrProvince",
|
|
1800
|
-
"efm": "6.5.51",
|
|
1801
|
-
"validation": "o",
|
|
1802
|
-
"axis": "a",
|
|
1803
|
-
"source": "both",
|
|
1804
|
-
"dei/cover": "dei"
|
|
1805
|
-
},
|
|
1806
|
-
{
|
|
1807
|
-
"sub-types": ["@40FR"],
|
|
1808
|
-
"xbrl-names": "EntityAddressStateOrProvince",
|
|
1809
|
-
"efm": "6.5.51",
|
|
1810
|
-
"validation": "ou",
|
|
1811
|
-
"value": [
|
|
1812
|
-
"AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "DC", "FL", "GA", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MD", "MA", "MI", "MN", "MS", "MO",
|
|
1813
|
-
"MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "X1", "UT", "VT", "VA", "WA", "WV", "WI", "WY"],
|
|
1814
|
-
"axis": "a",
|
|
1815
|
-
"source": "both",
|
|
1816
|
-
"dei/cover": "dei"
|
|
1817
|
-
},
|
|
1818
|
-
{
|
|
1819
|
-
"sub-types": ["@20+40FR", "@S-n", "@POS", "@F-n", "@F-nX"],
|
|
1820
|
-
"xbrl-names": "CityAreaCode",
|
|
1821
|
-
"efm": "6.5.51",
|
|
1822
|
-
"validation": "oph",
|
|
1823
|
-
"axis": "a",
|
|
1824
|
-
"references": "LocalPhoneNumber",
|
|
1825
|
-
"source": "both",
|
|
1826
|
-
"dei/cover": "dei"
|
|
1827
|
-
},
|
|
1828
|
-
{
|
|
1829
|
-
"sub-types": ["@20+40FR"],
|
|
1830
|
-
"xbrl-names": [
|
|
1831
|
-
"ContactPersonnelFaxNumber",
|
|
1832
|
-
"ContactPersonnelEmailAddress"
|
|
1833
|
-
],
|
|
1834
|
-
"efm": "6.5.51",
|
|
1835
|
-
"validation": "o",
|
|
1836
|
-
"axis": "a",
|
|
1837
|
-
"source": "both",
|
|
1838
|
-
"dei/cover": "dei"
|
|
1839
|
-
},
|
|
1840
|
-
{
|
|
1841
|
-
"sub-types": ["@8-K"],
|
|
1842
|
-
"xbrl-names": [
|
|
1843
|
-
"WrittenCommunications",
|
|
1844
|
-
"SolicitingMaterial",
|
|
1845
|
-
"PreCommencementTenderOffer",
|
|
1846
|
-
"PreCommencementIssuerTenderOffer"
|
|
1847
|
-
],
|
|
1848
|
-
"efm": "6.5.52",
|
|
1849
|
-
"validation": "r",
|
|
1850
|
-
"source": "inline",
|
|
1851
|
-
"dei/cover": "dei"
|
|
1852
|
-
},
|
|
1853
|
-
{
|
|
1854
|
-
"sub-types": ["@8-K"],
|
|
1855
|
-
"xbrl-names": [
|
|
1856
|
-
"WrittenCommunications",
|
|
1857
|
-
"SolicitingMaterial",
|
|
1858
|
-
"PreCommencementTenderOffer",
|
|
1859
|
-
"PreCommencementIssuerTenderOffer"
|
|
1860
|
-
],
|
|
1861
|
-
"efm": "6.5.52",
|
|
1862
|
-
"validation": "o",
|
|
1863
|
-
"source": "non-inline",
|
|
1864
|
-
"dei/cover": "dei"
|
|
1865
|
-
},
|
|
1866
|
-
{
|
|
1867
|
-
"sub-types": ["@10-Q+QT", "@8-K"],
|
|
1868
|
-
"xbrl-names": "EntityInformationFormerLegalOrRegisteredName",
|
|
1869
|
-
"efm": "6.5.52",
|
|
1870
|
-
"validation": "o",
|
|
1871
|
-
"source": "both",
|
|
1872
|
-
"dei/cover": "cover"
|
|
1873
|
-
},
|
|
1874
|
-
{
|
|
1875
|
-
"sub-types": ["@10-Q+QT", "@8-K"],
|
|
1876
|
-
"xbrl-names": "EntityAddressAddressLine1",
|
|
1877
|
-
"efm": "6.5.53",
|
|
1878
|
-
"validation": "o",
|
|
1879
|
-
"axis": "f",
|
|
1880
|
-
"source": "both",
|
|
1881
|
-
"dei/cover": "cover"
|
|
1882
|
-
},
|
|
1883
|
-
{
|
|
1884
|
-
"sub-types": ["@10-Q+QT", "@8-K"],
|
|
1885
|
-
"xbrl-names": [
|
|
1886
|
-
"EntityAddressAddressLine2",
|
|
1887
|
-
"EntityAddressCityOrTown",
|
|
1888
|
-
"EntityAddressPostalZipCode"
|
|
1889
|
-
],
|
|
1890
|
-
"efm": "6.5.53",
|
|
1891
|
-
"validation": "ol1",
|
|
1892
|
-
"axis": "f",
|
|
1893
|
-
"references": "EntityAddressAddressLine1",
|
|
1894
|
-
"source": "both",
|
|
1895
|
-
"dei/cover": "cover"
|
|
1896
|
-
},
|
|
1897
|
-
{
|
|
1898
|
-
"sub-types": ["@10-Q+QT", "@8-K"],
|
|
1899
|
-
"xbrl-names": "EntityAddressAddressLine3",
|
|
1900
|
-
"efm": "6.5.53",
|
|
1901
|
-
"validation": "ol2",
|
|
1902
|
-
"axis": "f",
|
|
1903
|
-
"references": "EntityAddressAddressLine2",
|
|
1904
|
-
"source": "both",
|
|
1905
|
-
"dei/cover": "cover"
|
|
1906
|
-
},
|
|
1907
|
-
{
|
|
1908
|
-
"sub-types": ["@8-K"],
|
|
1909
|
-
"xbrl-names": [
|
|
1910
|
-
"EntityAddressStateOrProvince",
|
|
1911
|
-
"EntityAddressCountry"
|
|
1912
|
-
],
|
|
1913
|
-
"efm": "6.5.53",
|
|
1914
|
-
"validation": "ol1",
|
|
1915
|
-
"axis": "f",
|
|
1916
|
-
"references": "EntityAddressAddressLine1",
|
|
1917
|
-
"source": "both",
|
|
1918
|
-
"dei/cover": "cover"
|
|
1919
|
-
},
|
|
1920
|
-
{
|
|
1921
|
-
"sub-types": ["@10-Q+QT"],
|
|
1922
|
-
"xbrl-names": [
|
|
1923
|
-
"EntityAddressStateOrProvince",
|
|
1924
|
-
"EntityAddressCountry"
|
|
1925
|
-
],
|
|
1926
|
-
"efm": "6.5.53",
|
|
1927
|
-
"validation": "f2",
|
|
1928
|
-
"axis": "f",
|
|
1929
|
-
"references": "EntityAddressAddressLine1",
|
|
1930
|
-
"source": "both",
|
|
1931
|
-
"dei/cover": "cover"
|
|
1932
|
-
},
|
|
1933
|
-
{
|
|
1934
|
-
"sub-types": ["@10-K+KT", "@20-F"],
|
|
1935
|
-
"xbrl-names": "IcfrAuditorAttestationFlag",
|
|
1936
|
-
"efm": "6.5.21",
|
|
1937
|
-
"validation": "ra",
|
|
1938
|
-
"references": "EntityFilerCategory",
|
|
1939
|
-
"reference-value": ["Large Accelerated Filer", "Accelerated Filer"],
|
|
1940
|
-
"source": "both",
|
|
1941
|
-
"dei/cover": "cover"
|
|
1942
|
-
},
|
|
1943
|
-
{
|
|
1944
|
-
"comment": "ICFR Auditor Attestation"
|
|
1945
|
-
},
|
|
1946
|
-
{
|
|
1947
|
-
"sub-types": ["@40-F"],
|
|
1948
|
-
"xbrl-names": "IcfrAuditorAttestationFlag",
|
|
1949
|
-
"efm": "6.5.21",
|
|
1950
|
-
"validation": "o",
|
|
1951
|
-
"source": "both",
|
|
1952
|
-
"dei/cover": "cover"
|
|
1953
|
-
},
|
|
1954
|
-
{
|
|
1955
|
-
"sub-types": ["@10-K+KT", "@20+40-F"],
|
|
1956
|
-
"xbrl-names": "IcfrAuditorAttestationFlag",
|
|
1957
|
-
"store-db-name": "icfrAuditorAttestationFlag",
|
|
1958
|
-
"store-db-object": "submissionFacts",
|
|
1959
|
-
"source": "inline",
|
|
1960
|
-
"comment": "store for indicated document types"
|
|
1961
|
-
},
|
|
1962
|
-
{
|
|
1963
|
-
"comment": "HFCA Auditor"
|
|
1964
|
-
},
|
|
1965
|
-
{
|
|
1966
|
-
"sub-types": ["@10-K+KT", "@20+40-F"],
|
|
1967
|
-
"xbrl-names": [
|
|
1968
|
-
"AuditorName",
|
|
1969
|
-
"AuditorLocation",
|
|
1970
|
-
"AuditorFirmId"
|
|
1971
|
-
],
|
|
1972
|
-
"efm": "6.5.54",
|
|
1973
|
-
"validation": "x",
|
|
1974
|
-
"check-after": "2021-12-15",
|
|
1975
|
-
"source": "both",
|
|
1976
|
-
"dei/cover": "COVER"
|
|
1977
|
-
},
|
|
1978
|
-
{
|
|
1979
|
-
"sub-types": ["@10-K+KT", "@20+40-F"],
|
|
1980
|
-
"xbrl-names": [
|
|
1981
|
-
"AuditorName",
|
|
1982
|
-
"AuditorLocation",
|
|
1983
|
-
"AuditorFirmId"
|
|
1984
|
-
],
|
|
1985
|
-
"efm": "6.5.54",
|
|
1986
|
-
"validation": "not-in-future",
|
|
1987
|
-
"check-after": "2021-12-15",
|
|
1988
|
-
"source": "both",
|
|
1989
|
-
"dei/cover": "COVER"
|
|
1990
|
-
},
|
|
1991
|
-
{
|
|
1992
|
-
"sub-types": ["@10-K+KT", "@20+40-F"],
|
|
1993
|
-
"xbrl-names": [
|
|
1994
|
-
"AuditorName",
|
|
1995
|
-
"AuditorLocation",
|
|
1996
|
-
"AuditorFirmId"
|
|
1997
|
-
],
|
|
1998
|
-
"efm": "6.5.54",
|
|
1999
|
-
"validation": "md",
|
|
2000
|
-
"check-after": "2021-12-15",
|
|
2001
|
-
"axis": "auditor-axes",
|
|
2002
|
-
"source": "both",
|
|
2003
|
-
"dei/cover": "COVER"
|
|
2004
|
-
},
|
|
2005
|
-
{
|
|
2006
|
-
"sub-types": ["@10-K+KT", "@20+40-F"],
|
|
2007
|
-
"xbrl-names": [
|
|
2008
|
-
"AuditorName",
|
|
2009
|
-
"AuditorLocation",
|
|
2010
|
-
"AuditorFirmId"
|
|
2011
|
-
],
|
|
2012
|
-
"efm": "6.5.54",
|
|
2013
|
-
"validation": "md-unexpected",
|
|
2014
|
-
"axis": "non-auditor-axis",
|
|
2015
|
-
"source": "both",
|
|
2016
|
-
"dei/cover": "COVER"
|
|
2017
|
-
},
|
|
2018
|
-
{
|
|
2019
|
-
"sub-types": ["@10-K+KT", "@20+40-F"],
|
|
2020
|
-
"xbrl-names": [
|
|
2021
|
-
"AuditorName",
|
|
2022
|
-
"AuditorLocation",
|
|
2023
|
-
"AuditorFirmId"
|
|
2024
|
-
],
|
|
2025
|
-
"efm": "6.5.54",
|
|
2026
|
-
"validation": "taxonomy-version-required",
|
|
2027
|
-
"check-after": "2021-12-15",
|
|
2028
|
-
"value": 3,
|
|
2029
|
-
"earliest-taxonomy": "dei/2021q4",
|
|
2030
|
-
"source": "both",
|
|
2031
|
-
"dei/cover": "dei",
|
|
2032
|
-
"comment": "value is number of name elements required in taxonomy"
|
|
2033
|
-
},
|
|
2034
|
-
{
|
|
2035
|
-
"comment": "N-2 CEF"
|
|
2036
|
-
},
|
|
2037
|
-
{
|
|
2038
|
-
"sub-types": ["@N-2-a"],
|
|
2039
|
-
"xbrl-names": "EntityFileNumber",
|
|
2040
|
-
"efm": "6.5.55",
|
|
2041
|
-
"validation": "n2e",
|
|
2042
|
-
"references": "DocumentRegistrationStatement",
|
|
2043
|
-
"reference-value": true,
|
|
2044
|
-
"source": "both",
|
|
2045
|
-
"dei/cover": "COVER"
|
|
2046
|
-
},
|
|
2047
|
-
{
|
|
2048
|
-
"sub-types": ["@N-2-a"],
|
|
2049
|
-
"xbrl-names": "InvestmentCompanyActFileNumber",
|
|
2050
|
-
"efm": "6.5.55",
|
|
2051
|
-
"validation": "n2e",
|
|
2052
|
-
"references": "InvestmentCompanyActRegistration",
|
|
2053
|
-
"reference-value": true,
|
|
2054
|
-
"source": "both",
|
|
2055
|
-
"dei/cover": "COVER"
|
|
2056
|
-
},
|
|
2057
|
-
{
|
|
2058
|
-
"sub-types": ["@N-2-a"],
|
|
2059
|
-
"xbrl-names": [
|
|
2060
|
-
"InvestmentCompanyActFileNumber",
|
|
2061
|
-
"cef:BdcFileNumber"
|
|
2062
|
-
],
|
|
2063
|
-
"efm": "6.5.55",
|
|
2064
|
-
"validation": "n2bn1",
|
|
2065
|
-
"source": "both",
|
|
2066
|
-
"dei/cover": "cover"
|
|
2067
|
-
},
|
|
2068
|
-
{
|
|
2069
|
-
"sub-types": ["@N-2"],
|
|
2070
|
-
"xbrl-names": "cef:BdcFileNumber",
|
|
2071
|
-
"efm": "6.5.55",
|
|
2072
|
-
"validation": "n2bn2",
|
|
2073
|
-
"source": "both",
|
|
2074
|
-
"dei/cover": "dei"
|
|
2075
|
-
},
|
|
2076
|
-
{
|
|
2077
|
-
"sub-types": ["@N-2"],
|
|
2078
|
-
"xbrl-names": [
|
|
2079
|
-
"DocumentRegistrationStatement",
|
|
2080
|
-
"InvestmentCompanyActRegistration"
|
|
2081
|
-
],
|
|
2082
|
-
"efm": "6.5.55",
|
|
2083
|
-
"validation": "n2c",
|
|
2084
|
-
"value": true,
|
|
2085
|
-
"source": "both",
|
|
2086
|
-
"dei/cover": "COVER"
|
|
2087
|
-
},
|
|
2088
|
-
{
|
|
2089
|
-
"sub-types": ["@N-2"],
|
|
2090
|
-
"xbrl-names": [
|
|
2091
|
-
"DocumentRegistrationStatement",
|
|
2092
|
-
"InvestmentCompanyActRegistration"
|
|
2093
|
-
],
|
|
2094
|
-
"efm": "6.5.55",
|
|
2095
|
-
"validation": "o",
|
|
2096
|
-
"value": false,
|
|
2097
|
-
"source": "both",
|
|
2098
|
-
"dei/cover": "dei"
|
|
2099
|
-
},
|
|
2100
|
-
{
|
|
2101
|
-
"sub-types": ["@N-2-a"],
|
|
2102
|
-
"xbrl-names": [
|
|
2103
|
-
"PreEffectiveAmendment",
|
|
2104
|
-
"PostEffectiveAmendment"
|
|
2105
|
-
],
|
|
2106
|
-
"efm": "6.5.55",
|
|
2107
|
-
"validation": "n2d",
|
|
2108
|
-
"value": true,
|
|
2109
|
-
"source": "both",
|
|
2110
|
-
"dei/cover": "COVER"
|
|
2111
|
-
},
|
|
2112
|
-
{
|
|
2113
|
-
"sub-types": ["@N-2-a"],
|
|
2114
|
-
"xbrl-names": [
|
|
2115
|
-
"PreEffectiveAmendment",
|
|
2116
|
-
"PostEffectiveAmendment"
|
|
2117
|
-
],
|
|
2118
|
-
"efm": "6.5.55",
|
|
2119
|
-
"validation": "o",
|
|
2120
|
-
"value": false,
|
|
2121
|
-
"source": "both",
|
|
2122
|
-
"dei/cover": "dei"
|
|
2123
|
-
},
|
|
2124
|
-
{
|
|
2125
|
-
"sub-types": ["@N-2-a"],
|
|
2126
|
-
"xbrl-names": "PreEffectiveAmendmentNumber",
|
|
2127
|
-
"efm": "6.5.55",
|
|
2128
|
-
"validation": "n2e",
|
|
2129
|
-
"references": "PreEffectiveAmendment",
|
|
2130
|
-
"reference-value": true,
|
|
2131
|
-
"source": "both",
|
|
2132
|
-
"dei/cover": "COVER"
|
|
2133
|
-
},
|
|
2134
|
-
{
|
|
2135
|
-
"sub-types": ["@N-2-a"],
|
|
2136
|
-
"xbrl-names": "PostEffectiveAmendmentNumber",
|
|
2137
|
-
"efm": "6.5.55",
|
|
2138
|
-
"validation": "n2e",
|
|
2139
|
-
"references": "PostEffectiveAmendment",
|
|
2140
|
-
"reference-value": true,
|
|
2141
|
-
"source": "both",
|
|
2142
|
-
"dei/cover": "COVER"
|
|
2143
|
-
},
|
|
2144
|
-
{
|
|
2145
|
-
"sub-types": ["@N-2"],
|
|
2146
|
-
"xbrl-names": [
|
|
2147
|
-
"DividendOrInterestReinvestmentPlanOnly",
|
|
2148
|
-
"DelayedOrContinuousOffering",
|
|
2149
|
-
"cef:PrimaryShelfFlag",
|
|
2150
|
-
"EffectiveUponFiling462e",
|
|
2151
|
-
"AdditionalSecuritiesEffective413b",
|
|
2152
|
-
"EffectiveWhenDeclaredSection8c",
|
|
2153
|
-
"EffectiveUponFiling486b",
|
|
2154
|
-
"EffectiveAfter60Days486a",
|
|
2155
|
-
"NewEffectiveDateForPreviousFiling",
|
|
2156
|
-
"AdditionalSecurities462b",
|
|
2157
|
-
"AdditionalSecurities462bFileNumber",
|
|
2158
|
-
"cef:RegisteredClosedEndFundFlag",
|
|
2159
|
-
"cef:BusinessDevelopmentCompanyFlag",
|
|
2160
|
-
"cef:IntervalFundFlag",
|
|
2161
|
-
"cef:PrimaryShelfQualifiedFlag",
|
|
2162
|
-
"cef:NewCefOrBdcRegistrantFlag"
|
|
2163
|
-
],
|
|
2164
|
-
"efm": "6.5.55",
|
|
2165
|
-
"validation": "o",
|
|
2166
|
-
"value": true,
|
|
2167
|
-
"source": "both",
|
|
2168
|
-
"dei/cover": "COVER"
|
|
2169
|
-
},
|
|
2170
|
-
{
|
|
2171
|
-
"sub-types": ["@N-2"],
|
|
2172
|
-
"xbrl-names": [
|
|
2173
|
-
"DividendOrInterestReinvestmentPlanOnly",
|
|
2174
|
-
"DelayedOrContinuousOffering",
|
|
2175
|
-
"cef:PrimaryShelfFlag",
|
|
2176
|
-
"EffectiveUponFiling462e",
|
|
2177
|
-
"AdditionalSecuritiesEffective413b",
|
|
2178
|
-
"EffectiveWhenDeclaredSection8c",
|
|
2179
|
-
"EffectiveUponFiling486b",
|
|
2180
|
-
"EffectiveAfter60Days486a",
|
|
2181
|
-
"NewEffectiveDateForPreviousFiling",
|
|
2182
|
-
"AdditionalSecurities462b",
|
|
2183
|
-
"AdditionalSecurities462bFileNumber",
|
|
2184
|
-
"cef:RegisteredClosedEndFundFlag",
|
|
2185
|
-
"cef:BusinessDevelopmentCompanyFlag",
|
|
2186
|
-
"cef:IntervalFundFlag",
|
|
2187
|
-
"cef:PrimaryShelfQualifiedFlag",
|
|
2188
|
-
"cef:NewCefOrBdcRegistrantFlag" ],
|
|
2189
|
-
"efm": "6.5.55",
|
|
2190
|
-
"validation": "o",
|
|
2191
|
-
"value": false,
|
|
2192
|
-
"source": "both",
|
|
2193
|
-
"dei/cover": "dei"
|
|
2194
|
-
},
|
|
2195
|
-
{
|
|
2196
|
-
"sub-types": ["@N-2"],
|
|
2197
|
-
"xbrl-names": "cef:IntervalFundFlag",
|
|
2198
|
-
"elo-name": "eligibleFundFlag",
|
|
2199
|
-
"efm": "6.5.55",
|
|
2200
|
-
"validation": "o",
|
|
2201
|
-
"source": "both",
|
|
2202
|
-
"dei/cover": "dei"
|
|
2203
|
-
},
|
|
2204
|
-
{
|
|
2205
|
-
"sub-types": ["@N-2"],
|
|
2206
|
-
"xbrl-names": "cef:PrimaryShelfQualifiedFlag",
|
|
2207
|
-
"elo-name": "pursuantGeneralInstructionFlag",
|
|
2208
|
-
"efm": "6.5.55",
|
|
2209
|
-
"validation": "o",
|
|
2210
|
-
"source": "both",
|
|
2211
|
-
"dei/cover": "dei"
|
|
2212
|
-
},
|
|
2213
|
-
{
|
|
2214
|
-
"sub-types": ["@N-2"],
|
|
2215
|
-
"xbrl-names": "cef:NewCefOrBdcRegistrantFlag",
|
|
2216
|
-
"elo-name": "filerNewRegistrantFlag",
|
|
2217
|
-
"efm": "6.5.55",
|
|
2218
|
-
"validation": "o",
|
|
2219
|
-
"source": "both",
|
|
2220
|
-
"dei/cover": "dei"
|
|
2221
|
-
},
|
|
2222
|
-
{
|
|
2223
|
-
"sub-types": ["@N-2"],
|
|
2224
|
-
"xbrl-names": "ApproximateDateOfCommencementOfProposedSaleToThePublic",
|
|
2225
|
-
"efm": "6.5.55",
|
|
2226
|
-
"validation": "r",
|
|
2227
|
-
"source": "inline",
|
|
2228
|
-
"dei/cover": "COVER"
|
|
2229
|
-
},
|
|
2230
|
-
{
|
|
2231
|
-
"sub-types": ["@N-2"],
|
|
2232
|
-
"xbrl-names": "ApproximateDateOfCommencementOfProposedSaleToThePublic",
|
|
2233
|
-
"efm": "6.5.55",
|
|
2234
|
-
"validation": "o",
|
|
2235
|
-
"source": "non-inline",
|
|
2236
|
-
"dei/cover": "dei"
|
|
2237
|
-
},
|
|
2238
|
-
{
|
|
2239
|
-
"sub-types": ["@N-2"],
|
|
2240
|
-
"xbrl-names": "InvestmentCompanyRegistrationAmendment",
|
|
2241
|
-
"efm": "6.5.55",
|
|
2242
|
-
"validation": "n2h",
|
|
2243
|
-
"references": "InvestmentCompanyRegistration",
|
|
2244
|
-
"reference-value": true,
|
|
2245
|
-
"source": "both",
|
|
2246
|
-
"dei/cover": "COVER"
|
|
2247
|
-
},
|
|
2248
|
-
{
|
|
2249
|
-
"sub-types": ["@N-2"],
|
|
2250
|
-
"xbrl-names": "InvestmentCompanyRegistrationAmendmentNumber",
|
|
2251
|
-
"efm": "6.5.55",
|
|
2252
|
-
"validation": "n2e",
|
|
2253
|
-
"references": "InvestmentCompanyRegistrationAmendment",
|
|
2254
|
-
"reference-value": true,
|
|
2255
|
-
"source": "both",
|
|
2256
|
-
"dei/cover": "COVER"
|
|
2257
|
-
},
|
|
2258
|
-
{
|
|
2259
|
-
"sub-types": ["@N-2"],
|
|
2260
|
-
"xbrl-names": "EffectiveOnDate486b",
|
|
2261
|
-
"efm": "6.5.55",
|
|
2262
|
-
"validation": "n2e",
|
|
2263
|
-
"references": "EffectiveOnSetDate486b",
|
|
2264
|
-
"reference-value": true,
|
|
2265
|
-
"source": "both",
|
|
2266
|
-
"dei/cover": "COVER"
|
|
2267
|
-
},
|
|
2268
|
-
{
|
|
2269
|
-
"sub-types": ["@N-2"],
|
|
2270
|
-
"xbrl-names": "EffectiveOnDate486a",
|
|
2271
|
-
"efm": "6.5.55",
|
|
2272
|
-
"validation": "n2e",
|
|
2273
|
-
"references": " EffectiveOnSetDate486a",
|
|
2274
|
-
"reference-value": true,
|
|
2275
|
-
"source": "both",
|
|
2276
|
-
"dei/cover": "dei"
|
|
2277
|
-
},
|
|
2278
|
-
{
|
|
2279
|
-
"sub-types": ["@N-2"],
|
|
2280
|
-
"xbrl-names": "NoSubstantiveChanges462cFileNumber",
|
|
2281
|
-
"efm": "6.5.55",
|
|
2282
|
-
"validation": "n2e",
|
|
2283
|
-
"references": "NoSubstantiveChanges462c",
|
|
2284
|
-
"reference-value": true,
|
|
2285
|
-
"source": "both",
|
|
2286
|
-
"dei/cover": "dei"
|
|
2287
|
-
},
|
|
2288
|
-
{
|
|
2289
|
-
"sub-types": ["@N-2"],
|
|
2290
|
-
"xbrl-names": "ExhibitsOnly462dFileNumber",
|
|
2291
|
-
"efm": "6.5.55",
|
|
2292
|
-
"validation": "n2e",
|
|
2293
|
-
"references": "ExhibitsOnly462d",
|
|
2294
|
-
"reference-value": true,
|
|
2295
|
-
"source": "both",
|
|
2296
|
-
"dei/cover": "dei"
|
|
2297
|
-
},
|
|
2298
|
-
{
|
|
2299
|
-
"sub-types": ["@CEF-all-sub-types"],
|
|
2300
|
-
"xbrl-names": "cef:*",
|
|
2301
|
-
"efm": "6.5.55",
|
|
2302
|
-
"validation": "(supported-taxonomy)",
|
|
2303
|
-
"source": "both",
|
|
2304
|
-
"dei/cover": "dei"
|
|
2305
|
-
},
|
|
2306
|
-
{
|
|
2307
|
-
"comment": "N-3 VIP"
|
|
2308
|
-
},
|
|
2309
|
-
{
|
|
2310
|
-
"sub-types": ["@N-3", "@N-4", "@N-6"],
|
|
2311
|
-
"xbrl-names": "vip:*",
|
|
2312
|
-
"efm": "6.5.56",
|
|
2313
|
-
"validation": "(supported-taxonomy)",
|
|
2314
|
-
"source": "both",
|
|
2315
|
-
"dei/cover": "dei"
|
|
2316
|
-
},
|
|
2317
|
-
{
|
|
2318
|
-
"sub-types": ["@N-1A"],
|
|
2319
|
-
"xbrl-names": [],
|
|
2320
|
-
"efm": "6.5.56",
|
|
2321
|
-
"validation": "taxonomy-url-required-in-dts",
|
|
2322
|
-
"value": "https://xbrl.sec.gov/rr/*/rr-*.xsd|https://xbrl.sec.gov/oef/*/oef-rr*.xsd",
|
|
2323
|
-
"source": "both"
|
|
2324
|
-
},
|
|
2325
|
-
{
|
|
2326
|
-
"sub-types": ["@N-2"],
|
|
2327
|
-
"xbrl-names": [],
|
|
2328
|
-
"efm": "6.5.55",
|
|
2329
|
-
"validation": "taxonomy-url-required-in-dts",
|
|
2330
|
-
"earliest-taxonomy": "dei/2023",
|
|
2331
|
-
"value": "https://xbrl.sec.gov/cef/*/cef-*_pre.xsd",
|
|
2332
|
-
"source": "both",
|
|
2333
|
-
"comment": "check not applied to submissions with dei before 2023"
|
|
2334
|
-
},
|
|
2335
|
-
{
|
|
2336
|
-
"sub-types": ["@N-3"],
|
|
2337
|
-
"xbrl-names": [],
|
|
2338
|
-
"efm": "6.5.56",
|
|
2339
|
-
"validation": "taxonomy-url-required-in-dts",
|
|
2340
|
-
"value": "https://xbrl.sec.gov/vip/*/vip-n3-*.xsd",
|
|
2341
|
-
"source": "both"
|
|
2342
|
-
},
|
|
2343
|
-
{
|
|
2344
|
-
"sub-types": ["@N-4"],
|
|
2345
|
-
"xbrl-names": "vip-n4:*",
|
|
2346
|
-
"efm": "6.5.56",
|
|
2347
|
-
"validation": "taxonomy-url-required-in-dts",
|
|
2348
|
-
"value": "https://xbrl.sec.gov/vip/*/vip-n4-*.xsd",
|
|
2349
|
-
"source": "both"
|
|
2350
|
-
},
|
|
2351
|
-
{
|
|
2352
|
-
"sub-types": ["@N-6"],
|
|
2353
|
-
"xbrl-names": "vip-n6:*",
|
|
2354
|
-
"efm": "6.5.56",
|
|
2355
|
-
"validation": "taxonomy-url-required-in-dts",
|
|
2356
|
-
"value": "https://xbrl.sec.gov/vip/*/vip-n6-*.xsd",
|
|
2357
|
-
"source": "both"
|
|
2358
|
-
},
|
|
2359
|
-
{
|
|
2360
|
-
"comment": "N-CSR*"
|
|
2361
|
-
},
|
|
2362
|
-
{
|
|
2363
|
-
"sub-types": ["@N-CSR"],
|
|
2364
|
-
"xbrl-names": [
|
|
2365
|
-
"oef:ShareholderReportAnnualOrSemiAnnual",
|
|
2366
|
-
"oef:FundName",
|
|
2367
|
-
"oef:ClassName"
|
|
2368
|
-
],
|
|
2369
|
-
"efm": "6.5.57",
|
|
2370
|
-
"validation": "fw",
|
|
2371
|
-
"axis": "oef:class",
|
|
2372
|
-
"source": "both",
|
|
2373
|
-
"dei/cover": "dei"
|
|
2374
|
-
},
|
|
2375
|
-
{
|
|
2376
|
-
"sub-types": ["@N-CSR"],
|
|
2377
|
-
"xbrl-names": [
|
|
2378
|
-
"NoTradingSymbolFlag",
|
|
2379
|
-
"TradingSymbol"
|
|
2380
|
-
],
|
|
2381
|
-
"efm": "6.5.57",
|
|
2382
|
-
"validation": "of-rule",
|
|
2383
|
-
"axis": "oef:class",
|
|
2384
|
-
"period": "required-context",
|
|
2385
|
-
"source": "both",
|
|
2386
|
-
"dei/cover": "dei"
|
|
2387
|
-
},
|
|
2388
|
-
{
|
|
2389
|
-
"sub-types": ["@N-CSR"],
|
|
2390
|
-
"xbrl-names": "TradingSymbol",
|
|
2391
|
-
"efm": "6.5.57",
|
|
2392
|
-
"validation": "o",
|
|
2393
|
-
"axis": "oef:class",
|
|
2394
|
-
"source": "both",
|
|
2395
|
-
"dei/cover": "cover"
|
|
2396
|
-
},
|
|
2397
|
-
{
|
|
2398
|
-
"sub-types": ["@N-CSR"],
|
|
2399
|
-
"xbrl-names": "SecurityExchangeName",
|
|
2400
|
-
"efm": "6.5.57",
|
|
2401
|
-
"validation": "t1",
|
|
2402
|
-
"axis": "oef:class",
|
|
2403
|
-
"references": ["TradingSymbol"],
|
|
2404
|
-
"source": "both",
|
|
2405
|
-
"dei/cover": "cover"
|
|
2406
|
-
},
|
|
2407
|
-
{
|
|
2408
|
-
"sub-types": ["@N-CSR"],
|
|
2409
|
-
"xbrl-names": [
|
|
2410
|
-
"oef:ShareholderReportAnnualOrSemiAnnual",
|
|
2411
|
-
"oef:FundName",
|
|
2412
|
-
"oef:ClassName",
|
|
2413
|
-
"NoTradingSymbolFlag",
|
|
2414
|
-
"TradingSymbol",
|
|
2415
|
-
"SecurityExchangeName"
|
|
2416
|
-
],
|
|
2417
|
-
"where": {"period": ["!not!", "required-context"]},
|
|
2418
|
-
"efm": "6.5.57",
|
|
2419
|
-
"validation": "fw-unexpected",
|
|
2420
|
-
"axis": "oef:class",
|
|
2421
|
-
"source": "both",
|
|
2422
|
-
"dei/cover": "dei"
|
|
2423
|
-
},
|
|
2424
|
-
{
|
|
2425
|
-
"sub-types": ["N-CSRS", "N-CSRS/A"],
|
|
2426
|
-
"xbrl-names": "EntityCentralIndexKey",
|
|
2427
|
-
"efm": "6.5.57",
|
|
2428
|
-
"validation": "required-context-duration",
|
|
2429
|
-
"value": 6,
|
|
2430
|
-
"source": "both",
|
|
2431
|
-
"dei/cover": "dei",
|
|
2432
|
-
"comment": "checks duration length of required context"
|
|
2433
|
-
},
|
|
2434
|
-
{
|
|
2435
|
-
"sub-types": ["N-CSR", "N-CSR/A"],
|
|
2436
|
-
"xbrl-names": "EntityCentralIndexKey",
|
|
2437
|
-
"efm": "6.5.57",
|
|
2438
|
-
"validation": "required-context-duration",
|
|
2439
|
-
"value": 12,
|
|
2440
|
-
"source": "both",
|
|
2441
|
-
"dei/cover": "dei",
|
|
2442
|
-
"comment": "checks duration length of required context"
|
|
2443
|
-
},
|
|
2444
|
-
{
|
|
2445
|
-
"comment": "SD"
|
|
2446
|
-
},
|
|
2447
|
-
{
|
|
2448
|
-
"sub-types": ["@SD"],
|
|
2449
|
-
"xbrl-names": [],
|
|
2450
|
-
"efm": "6.5.58.01",
|
|
2451
|
-
"validation": "taxonomy-url-required-in-dts",
|
|
2452
|
-
"value": "https://xbrl.sec.gov/rxp/*/rxp-*.xsd|https://xbrl.sec.gov/snj/*/snj-*.xsd",
|
|
2453
|
-
"source": "both"
|
|
2454
|
-
},
|
|
2455
|
-
{
|
|
2456
|
-
"sub-types": ["@SD"],
|
|
2457
|
-
"xbrl-names": [
|
|
2458
|
-
"EntityReportingCurrencyISOCode",
|
|
2459
|
-
"rxp:TotalPayments"
|
|
2460
|
-
],
|
|
2461
|
-
"efm": "6.5.58.02",
|
|
2462
|
-
"validation": "x",
|
|
2463
|
-
"source": "both",
|
|
2464
|
-
"dei/cover": "cover"
|
|
2465
|
-
},
|
|
2466
|
-
{
|
|
2467
|
-
"comment": "SHR taxonomy elements"
|
|
2468
|
-
},
|
|
2469
|
-
{
|
|
2470
|
-
"comment": "Following validation must be last."
|
|
2471
|
-
},
|
|
2472
|
-
{
|
|
2473
|
-
"sub-types": ["@all"],
|
|
2474
|
-
"xbrl-names": [],
|
|
2475
|
-
"efm": "(obtained from blank cell's row)",
|
|
2476
|
-
"validation": "(blank-error)",
|
|
2477
|
-
"comment4": "include names below should match exclude names in (blank) validation below",
|
|
2478
|
-
"include-xbrl-names": [
|
|
2479
|
-
],
|
|
2480
|
-
"source": "both",
|
|
2481
|
-
"comment": "This validation, (blank), must be last, efm is dynamically provided based on efm for a non-(blank) of actual element",
|
|
2482
|
-
"comment2": "In 19.3 release, POS AM and POS EX were excluded from the blank tests, as of 20.1 all forms run the blank tests",
|
|
2483
|
-
"comment3": "This used to have exclude-xbrl-names list EntityEmergingGrowthCompany and EntityExTransitionPeriod, but exclusion removed 2020-01-17"
|
|
2484
|
-
},
|
|
2485
|
-
{
|
|
2486
|
-
"sub-types": ["@all"],
|
|
2487
|
-
"xbrl-names": [],
|
|
2488
|
-
"efm": "(obtained from blank cell's row)",
|
|
2489
|
-
"validation": "(blank)",
|
|
2490
|
-
"comment4": "exclude names below should match include names in (blank-error) validation above",
|
|
2491
|
-
"exclude-xbrl-names": [
|
|
2492
|
-
],
|
|
2493
|
-
"source": "both",
|
|
2494
|
-
"comment": "This validation, (blank), must be last, efm is dynamically provided based on efm for a non-(blank) of actual element",
|
|
2495
|
-
"comment2": "In 19.3 release, POS AM and POS EX were excluded from the blank tests, as of 20.1 all forms run the blank tests",
|
|
2496
|
-
"comment3": "This used to have exclude-xbrl-names list EntityEmergingGrowthCompany and EntityExTransitionPeriod, but exclusion removed 2020-01-17"
|
|
2497
|
-
},
|
|
2498
|
-
{
|
|
2499
|
-
"sub-types": ["@all"],
|
|
2500
|
-
"xbrl-names": [],
|
|
2501
|
-
"efm": "(obtained from blank cell's row)",
|
|
2502
|
-
"validation": "(elo-unexpected)",
|
|
2503
|
-
"source": "both",
|
|
2504
|
-
"comment": "This validation, (blank), must be last, efm is dynamically provided based on efm for a non-(blank) of actual element"
|
|
2505
|
-
}
|
|
2506
|
-
],
|
|
2507
|
-
"validations": {
|
|
2508
|
-
"(blank)": {
|
|
2509
|
-
"message": "dq-{efmSection}-{tag}-Unexpected",
|
|
2510
|
-
"severity": "warning",
|
|
2511
|
-
"validation": "Blank – a non-null fact should not appear."
|
|
2512
|
-
},
|
|
2513
|
-
"(blank-error)": {
|
|
2514
|
-
"message": "dq-{efmSection}-{tag}-Unexpected",
|
|
2515
|
-
"severity": "error",
|
|
2516
|
-
"validation": "Blank – a non-null fact should not appear."
|
|
2517
|
-
},
|
|
2518
|
-
"(elo-unexpected)": {
|
|
2519
|
-
"message": "dq-0540-{headerTag}-Unexpected",
|
|
2520
|
-
"severity": "warning",
|
|
2521
|
-
"validation": "Unexpected ELO header tag."
|
|
2522
|
-
},
|
|
2523
|
-
"(supported-taxonomy)": {
|
|
2524
|
-
"message": "dq-{efmSection}-{taxonomy}-Facts-Unexpected",
|
|
2525
|
-
"severity": "warning"
|
|
2526
|
-
},
|
|
2527
|
-
"taxonomy-version-required": {
|
|
2528
|
-
"message": "dq-{efmSection}-{taxonomy}-Version-Required",
|
|
2529
|
-
"severity": "error"
|
|
2530
|
-
},
|
|
2531
|
-
"taxonomy-url-required-in-dts": {
|
|
2532
|
-
"message": "dq-{efmSection}-Taxonomy-Url-Required",
|
|
2533
|
-
"severity": "error"
|
|
2534
|
-
},
|
|
2535
|
-
"taxonomy-url-unexpected-in-dts": {
|
|
2536
|
-
"message": "dq-{efmSection}-Taxonomy-Url-Unexpected",
|
|
2537
|
-
"severity": "error",
|
|
2538
|
-
"severityVerb": "must not"
|
|
2539
|
-
},
|
|
2540
|
-
"x": {
|
|
2541
|
-
"message": "dq-{efmSection}-{tag}-Missing",
|
|
2542
|
-
"severity": "error",
|
|
2543
|
-
"validation": "X - A non-null fact must appear, otherwise it is an XBRL ERROR"
|
|
2544
|
-
},
|
|
2545
|
-
"xv": {
|
|
2546
|
-
"message": "dq-{efmSection}-{tag}-Value",
|
|
2547
|
-
"severity": "error",
|
|
2548
|
-
"qualifier": "",
|
|
2549
|
-
"validation": "X - A non-null fact must appear with specified value"
|
|
2550
|
-
},
|
|
2551
|
-
"f2": {
|
|
2552
|
-
"message": "dq-{efmSection}-{tag}-{otherTags}-Missing",
|
|
2553
|
-
"severity": "warning",
|
|
2554
|
-
"validation": "F2 – One or both non-null facts should be present if EntityAddressAddressLine1 is present."
|
|
2555
|
-
},
|
|
2556
|
-
"n": {
|
|
2557
|
-
"message": "dq-{efmSection}-{tag}-{expectedValue}",
|
|
2558
|
-
"severity": "warning",
|
|
2559
|
-
"validation": "N – A fact should be present with value \"false\"."
|
|
2560
|
-
},
|
|
2561
|
-
"o": {
|
|
2562
|
-
"message": null,
|
|
2563
|
-
"severity": "warning",
|
|
2564
|
-
"validation": "O – A non-null fact may or may not appear."
|
|
2565
|
-
},
|
|
2566
|
-
"ov": {
|
|
2567
|
-
"message": "dq-{efmSection}-{tag}-{value}",
|
|
2568
|
-
"severity": "warning",
|
|
2569
|
-
"validation": "X - A non-null fact may or may not appear but if it does, with specified vcalue"
|
|
2570
|
-
},
|
|
2571
|
-
"o2": {
|
|
2572
|
-
"message": "dq-{efmSection}-{tags}-Inclusive",
|
|
2573
|
-
"severity": "warning",
|
|
2574
|
-
"validation": "O2 – One or both non-null facts should be present"
|
|
2575
|
-
},
|
|
2576
|
-
"o3": {
|
|
2577
|
-
"message": "dq-{efmSection}-{tags}-Inclusive",
|
|
2578
|
-
"severity": "warning",
|
|
2579
|
-
"validation": "O3 – One, two, or all three non-null facts should be present (they should not all be absent)."
|
|
2580
|
-
},
|
|
2581
|
-
"ol1": {
|
|
2582
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Missing",
|
|
2583
|
-
"severity": "warning",
|
|
2584
|
-
"validation": "OL1 – A non-null fact may be present only if EntityAddressAddressLine1 is present."
|
|
2585
|
-
},
|
|
2586
|
-
"ol2": {
|
|
2587
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Missing",
|
|
2588
|
-
"severity": "warning",
|
|
2589
|
-
"validation": "OL2 – A non-null fact may be present only if EntityAddressAddressLine2 is present."
|
|
2590
|
-
},
|
|
2591
|
-
"oph": {
|
|
2592
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Dependency",
|
|
2593
|
-
"severity": "warning",
|
|
2594
|
-
"validation": "Oph – A non-null fact should be present if and only if a non-null LocalPhoneNumber is present."
|
|
2595
|
-
},
|
|
2596
|
-
"oth": {
|
|
2597
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Dependent-Value",
|
|
2598
|
-
"severity": "warning",
|
|
2599
|
-
"validation": "Oth – A non-null fact should be present if and only if DocumentAccountingStandard value is \"Other\"."
|
|
2600
|
-
},
|
|
2601
|
-
"r": {
|
|
2602
|
-
"message": "dq-{efmSection}-{tag}-Missing",
|
|
2603
|
-
"severity": "warning",
|
|
2604
|
-
"validation": "R – A non-null fact should be present."
|
|
2605
|
-
},
|
|
2606
|
-
"a": {
|
|
2607
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Dependent-Value",
|
|
2608
|
-
"severity": "warning",
|
|
2609
|
-
"validation": "When this fact is non-empty, referenced fact must have reference-value (AmendmentFlag, true)."
|
|
2610
|
-
},
|
|
2611
|
-
"ru": {
|
|
2612
|
-
"message": "dq-{efmSection}-{tag}-{value}",
|
|
2613
|
-
"severity": "warning",
|
|
2614
|
-
"validation": "Ru – A fact should be present with a US state as a value."
|
|
2615
|
-
},
|
|
2616
|
-
"ou": {
|
|
2617
|
-
"message": "dq-{efmSection}-{tag}-{value}",
|
|
2618
|
-
"severity": "warning",
|
|
2619
|
-
"validation": "Ou – A fact may be present with a US state as a value."
|
|
2620
|
-
},
|
|
2621
|
-
"op": {
|
|
2622
|
-
"message": "dq-{efmSection}-{tags}-Both",
|
|
2623
|
-
"severity": "warning",
|
|
2624
|
-
"validation": "Op – Non-null facts may exist (and if 'cover', be visible) for both the fiscal year and fiscal focus, or nether."
|
|
2625
|
-
},
|
|
2626
|
-
"sr": {
|
|
2627
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Dependent-Value",
|
|
2628
|
-
"severity": "warning",
|
|
2629
|
-
"validation": "SR – For inline, a non-null fact should be present if and only if DocumentShellCompanyReport is true."
|
|
2630
|
-
},
|
|
2631
|
-
"t": {
|
|
2632
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Missing",
|
|
2633
|
-
"severity": "warning",
|
|
2634
|
-
"validation": "T – A non-null fact should be present if and only if a SecurityTitle is present."
|
|
2635
|
-
},
|
|
2636
|
-
"ot1": {
|
|
2637
|
-
"message": "dq-{efmSection}-{tags}-Exclusive",
|
|
2638
|
-
"severity": "warning",
|
|
2639
|
-
"validation": "OT1 – One non-null fact, but not both, may be present."
|
|
2640
|
-
},
|
|
2641
|
-
"t1": {
|
|
2642
|
-
"message": "dq-{efmSection}-{tags}-{otherTags}-Exclusive-Dependency",
|
|
2643
|
-
"message-ADR-no-exchange": "dq-{efmSection}-{tag}-{otherTags}-Dependency",
|
|
2644
|
-
"severity": "warning",
|
|
2645
|
-
"validation": "T1 – One non-null fact, but not both, should be present if and only if Security12bTitle is present."
|
|
2646
|
-
},
|
|
2647
|
-
"tf3": {
|
|
2648
|
-
"message": "dq-{efmSection}-{tags}-Exclusive-Values",
|
|
2649
|
-
"severity": "warning",
|
|
2650
|
-
"validation": "TF3 – Exactly one of the facts should be \"true\" and the other two \"false\"."
|
|
2651
|
-
},
|
|
2652
|
-
"tr": {
|
|
2653
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Dependent-Value",
|
|
2654
|
-
"severity": "warning",
|
|
2655
|
-
"validation": "TR – For inline, a non-null fact should be present if and only if DocumentTransitionReport is true."
|
|
2656
|
-
},
|
|
2657
|
-
"te": {
|
|
2658
|
-
"message": "dq-{efmSection}-{tag}-{otherTags}-Dependency",
|
|
2659
|
-
"message-missing-exchange": "dq-{efmSection}-{tag}-{otherTag}-Dependency",
|
|
2660
|
-
"message-ADR-no-symbol": "dq-{efmSection}-{tag}-Missing",
|
|
2661
|
-
"severity": "warning",
|
|
2662
|
-
"validation": "Tb – A non-null fact is required only if the Security12bTitle exists. If ADR a non-null trading symbol is required."
|
|
2663
|
-
},
|
|
2664
|
-
"y": {
|
|
2665
|
-
"message": "dq-{efmSection}-{tag}-{expectedValue}",
|
|
2666
|
-
"severity": "warning",
|
|
2667
|
-
"validation": "Y – A fact should be present with value \"true\"."
|
|
2668
|
-
},
|
|
2669
|
-
"security-axis": {
|
|
2670
|
-
"message": "dq-{efmSection}-{tag}-Security-Axes",
|
|
2671
|
-
"severity": "warning",
|
|
2672
|
-
"validation": "Security fact can only have single non-ADR entry in default context otherwise all in specific axis contexxts, not both."
|
|
2673
|
-
},
|
|
2674
|
-
"de": {
|
|
2675
|
-
"message": "dq-{efmSection}-{tag}-Value",
|
|
2676
|
-
"severity": "error",
|
|
2677
|
-
"qualifier": "",
|
|
2678
|
-
"validation": "Document period end date restrictions"
|
|
2679
|
-
},
|
|
2680
|
-
"de5pm": {
|
|
2681
|
-
"message": "dq-{efmSection}-{tag}-Value",
|
|
2682
|
-
"severity": "error",
|
|
2683
|
-
"qualifier": "",
|
|
2684
|
-
"validation": "Document period end date restrictions"
|
|
2685
|
-
},
|
|
2686
|
-
"e503": {
|
|
2687
|
-
"message": "dq-{efmSection}-{tag}-{headerTag}-Dependency",
|
|
2688
|
-
"severity": "error",
|
|
2689
|
-
"validation": "Exclusive dependency between fact and item 5.03"
|
|
2690
|
-
},
|
|
2691
|
-
"ws": {
|
|
2692
|
-
"message": "dq-{efmSection}-{tags}-Exclusive-Value",
|
|
2693
|
-
"severity": "error",
|
|
2694
|
-
"validation": "WS1 – Only one of the facts should be \"true\"."
|
|
2695
|
-
},
|
|
2696
|
-
"wv": {
|
|
2697
|
-
"message": "dq-{efmSection}-{tags}-Exclusive-Value",
|
|
2698
|
-
"severity": "error",
|
|
2699
|
-
"validation": "WV1 – Only one of the facts should be \"true\"."
|
|
2700
|
-
},
|
|
2701
|
-
"et1": {
|
|
2702
|
-
"message": "dq-0540-EntityExTransitionPeriod-EntityEmergingGrowthCompany-Dependency",
|
|
2703
|
-
"severity": "error",
|
|
2704
|
-
"validation": "error when EntityEmergingGrowthCompany=true otherwise warning, warning is set in code not here"
|
|
2705
|
-
},
|
|
2706
|
-
"ra": {
|
|
2707
|
-
"message": "dq-{efmSection}-{tag}-Value-{otherTag}-Missing",
|
|
2708
|
-
"severity": "warning",
|
|
2709
|
-
"validation": "When this fact is non-empty, referenced fact must have reference-value (filerCategory accelerated filer codes)."
|
|
2710
|
-
},
|
|
2711
|
-
"rt": {
|
|
2712
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Dependent-Value",
|
|
2713
|
-
"severity": "warning"
|
|
2714
|
-
},
|
|
2715
|
-
"sb": {
|
|
2716
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Dependent-Value",
|
|
2717
|
-
"severity": "warning",
|
|
2718
|
-
"validation": "SB – if EntityEmergingGrowthCompany is \"true\", then file number should not start with 811- or 814-."
|
|
2719
|
-
},
|
|
2720
|
-
"503-header-field": {
|
|
2721
|
-
"message": "",
|
|
2722
|
-
"severity": "warning",
|
|
2723
|
-
"validation": "n/a"
|
|
2724
|
-
},
|
|
2725
|
-
"md": {
|
|
2726
|
-
"message": "dq-{efmSection}-{tags}-Mutual-Dependency",
|
|
2727
|
-
"severity": "error",
|
|
2728
|
-
"validation": "Mutual dependent tags."
|
|
2729
|
-
},
|
|
2730
|
-
"md-unexpected": {
|
|
2731
|
-
"message": "dq-{efmSection}-{tag}-Unexpected",
|
|
2732
|
-
"severity": "warning",
|
|
2733
|
-
"validation": "Mutual dependent tags."
|
|
2734
|
-
},
|
|
2735
|
-
"not-in-future": {
|
|
2736
|
-
"message": "dq-{efmSection}-{tag}-Unexpected",
|
|
2737
|
-
"severity": "error",
|
|
2738
|
-
"validation": "Mutual dependent tags."
|
|
2739
|
-
},
|
|
2740
|
-
"n2bn1": {
|
|
2741
|
-
"message": "dq-{efmSection}-{tags}-Exclusive",
|
|
2742
|
-
"severity": "error",
|
|
2743
|
-
"validation": "OT1 – One non-null fact, but not both, may be present."
|
|
2744
|
-
},
|
|
2745
|
-
"n2bn2": {
|
|
2746
|
-
"message": "dq-{efmSection}-{tag}-Value",
|
|
2747
|
-
"qualifier": "",
|
|
2748
|
-
"severity": "error"
|
|
2749
|
-
},
|
|
2750
|
-
"n2c": {
|
|
2751
|
-
"message": "dq-{efmSection}-{tags}-Missing",
|
|
2752
|
-
"severity": "error"
|
|
2753
|
-
},
|
|
2754
|
-
"n2d": {
|
|
2755
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Dependency",
|
|
2756
|
-
"severity": "error"
|
|
2757
|
-
},
|
|
2758
|
-
"n2e": {
|
|
2759
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Dependent-Value",
|
|
2760
|
-
"severity": "error"
|
|
2761
|
-
},
|
|
2762
|
-
"n2h": {
|
|
2763
|
-
"message": "dq-{efmSection}-{tag}-{otherTag}-Value-Dependency",
|
|
2764
|
-
"severity": "error"
|
|
2765
|
-
},
|
|
2766
|
-
"required-context-duration": {
|
|
2767
|
-
"message": "dq-{efmSection}-{tag}-Value",
|
|
2768
|
-
"qualifier": "",
|
|
2769
|
-
"severity": "error"
|
|
2770
|
-
},
|
|
2771
|
-
"of-rule": {
|
|
2772
|
-
"message": "dq-{efmSection}-{tags}-Exclusive-Presence",
|
|
2773
|
-
"severity": "warning",
|
|
2774
|
-
"validation": "Mutual dependent tags."
|
|
2775
|
-
},
|
|
2776
|
-
"fw": {
|
|
2777
|
-
"message": "dq-{efmSection}-{tag}-Missing",
|
|
2778
|
-
"severity": "warning",
|
|
2779
|
-
"validation": "Mutual dependent tags."
|
|
2780
|
-
},
|
|
2781
|
-
"fw-unexpected": {
|
|
2782
|
-
"message": "dq-{efmSection}-{tag}-Unexpected",
|
|
2783
|
-
"severity": "warning",
|
|
2784
|
-
"validation": "Mutual dependent tags."
|
|
2785
|
-
}
|
|
2786
|
-
},
|
|
2787
|
-
"axis-validations-comment": [
|
|
2788
|
-
"axis-code: object of axes (dei prefix implied, others explicit, !std! for any standard taxonomy, *: for any taxonomy incl extension), ",
|
|
2789
|
-
" members (localnames, not prefixed), ",
|
|
2790
|
-
" cubes (array of Hypercube linkrole URIs), ",
|
|
2791
|
-
" message where applicable"
|
|
2792
|
-
],
|
|
2793
|
-
"axis-validations": {
|
|
2794
|
-
"c": {
|
|
2795
|
-
"axes": ["!std!:StatementClassOfStockAxis", "!std!:ClassesOfShareCapitalAxis"],
|
|
2796
|
-
"message": "dq-{efmSection}-{tag}-Missing"
|
|
2797
|
-
},
|
|
2798
|
-
"c-or-required-context": {
|
|
2799
|
-
"axes": ["!std!:StatementClassOfStockAxis", "!std!:ClassesOfShareCapitalAxis", null],
|
|
2800
|
-
"names": ["StatementClassOfStockAxis", "ClassesOfShareCapitalAxis", "Required Context"],
|
|
2801
|
-
"message": "dq-{efmSection}-{tag}-Missing"
|
|
2802
|
-
},
|
|
2803
|
-
"a": {
|
|
2804
|
-
"axes": ["EntityAddressesAddressTypeAxis"],
|
|
2805
|
-
"members": ["BusinessContactMember", "UsAgentContactMember"],
|
|
2806
|
-
"message": "dq-{efmSection}-{tag}-Missing"
|
|
2807
|
-
},
|
|
2808
|
-
"f": {
|
|
2809
|
-
"axes": ["EntityAddressesAddressTypeAxis"],
|
|
2810
|
-
"members": ["FormerAddressMember"],
|
|
2811
|
-
"message": "dq-{efmSection}-{tag}-Missing"
|
|
2812
|
-
},
|
|
2813
|
-
"auditor-axes": {
|
|
2814
|
-
"axes": [null, "!std!:ConsolidatedEntitiesAxis", "!std!:ScheduleOfEquityMethodInvestmentEquityMethodInvesteeNameAxis", "!std!:LegalEntityAxis", "!std!:OwnershipAxis", "srt:CounterpartyNameAxis"],
|
|
2815
|
-
"names": ["Required Context", "ConsolidatedEntitiesAxis", "ScheduleOfEquityMethodInvestmentEquityMethodInvesteeNameAxis", "LegalEntityAxis", "OwnershipAxis", "CounterpartyNameAxis"],
|
|
2816
|
-
"message": "dq-{efmSection}-{tags}-Missing"
|
|
2817
|
-
},
|
|
2818
|
-
"non-auditor-axis": {
|
|
2819
|
-
"axes": ["!not!", null, "!std!:ConsolidatedEntitiesAxis", "!std!:ScheduleOfEquityMethodInvestmentEquityMethodInvesteeNameAxis", "!std!:LegalEntityAxis", "!std!:OwnershipAxis", "srt:CounterpartyNameAxis"],
|
|
2820
|
-
"names": ["not", "Required Context", "ConsolidatedEntitiesAxis", "ScheduleOfEquityMethodInvestmentEquityMethodInvesteeNameAxis", "LegalEntityAxis", "OwnershipAxis", "CounterpartyNameAxis"],
|
|
2821
|
-
"message": "dq-{efmSection}-{tag}-Unexpected"
|
|
2822
|
-
},
|
|
2823
|
-
"oef:class": {
|
|
2824
|
-
"axes": ["!std!:ClassAxis"],
|
|
2825
|
-
"axes-operator": "all",
|
|
2826
|
-
"cubes": ["http://xbrl.sec.gov/oef/role/ClassOnly"],
|
|
2827
|
-
"required-context-period": true,
|
|
2828
|
-
"message": "dq-{efmSection}-{tags}-Missing"
|
|
2829
|
-
},
|
|
2830
|
-
"": {
|
|
2831
|
-
"axes": [],
|
|
2832
|
-
"message": "dq-{efmSection}-{tag}-Missing"
|
|
2833
|
-
}
|
|
2834
|
-
},
|
|
2835
|
-
"messages": {
|
|
2836
|
-
"dq-{efmSection}-{tag}-Missing": "Submission type {subType} {severityVerb} have a non-empty value for {tag} in the {context}.",
|
|
2837
|
-
"dq-{efmSection}-{tags}-Missing": "Submission type {subType} {severityVerb} have a non-empty value for at least one of {tags} in the {context}.",
|
|
2838
|
-
"dq-{efmSection}-{tag}-Unexpected": "Submission type {subType} {severityVerb} not have a value for {tag} in the {context}.",
|
|
2839
|
-
"dq-{efmSection}-{taxonomy}-Facts-Unexpected": "Submission type {subType} {severityVerb} not report {taxonomy} namespace facts.",
|
|
2840
|
-
"dq-{efmSection}-{taxonomy}-Version-Required": "Submission type {subType} {severityVerb} use {taxonomy} version {earliestTaxonomy} or later.",
|
|
2841
|
-
"dq-{efmSection}-Taxonomy-Url-Required": "Submission type {subType} document type {docType} {severityVerb} contain a taxonomy URL matching {taxonomyPattern} in its DTS.",
|
|
2842
|
-
"dq-{efmSection}-Taxonomy-Url-Unexpected": "Submission type {subType} document type {docType} {severityVerb} contain a taxonomy URL matching {taxonomyPattern} in its DTS.{msgCoda}",
|
|
2843
|
-
"dq-{efmSection}-{tag}-{value}": "In submission type {subType}, {tag} value {severityVerb} have {value} in the {context}.",
|
|
2844
|
-
"dq-{efmSection}-{tag}-{expectedValue}": "In submission type {subType}, {tag} value, {value}, {severityVerb} have {expectedValue} in the {context}.",
|
|
2845
|
-
"dq-{efmSection}-{tag}-Value": "In submission type {subType}, {tag} value, {value}, {severityVerb} be {qualifier}{expectedValue} in the {context}.",
|
|
2846
|
-
"dq-{efmSection}-{tag}-{otherTag}": "In submission type {subType}, {tag} value {severityVerb} have value {value} in the same context as {otherTag}, {contextID}.",
|
|
2847
|
-
"dq-{efmSection}-{tag}-{otherTag}-Missing": "In submission type {subType}, {tag} requires {otherTag} in the same context, {contextID}.",
|
|
2848
|
-
"dq-{efmSection}-{tag}-Value-{otherTag}-Missing": "In submission type {subType}, {tag} value, {value}, requires {otherTag} in the same context, {contextID}.",
|
|
2849
|
-
"dq-{efmSection}-{tag}-{otherTags}-Missing": "In submission type {subType}, {tag} requires a non-empty value for at least one of {otherTags} in the same context, {contextID}.",
|
|
2850
|
-
"dq-{efmSection}-{tag}-{otherTag}-Exclusive": "In submission type {subType}, either {tag} or {otherTag} {severityVerb} have a value, but not both, in context, {contextID}.",
|
|
2851
|
-
"dq-{efmSection}-{tags}-Exclusive": "In submission type {subType}, only one of {tags} {severityVerb} have a value, but not both, in context, {contextID}.",
|
|
2852
|
-
"dq-{efmSection}-{tags}-Exclusive-Values": "In submission type {subType}, exactly one of {tags} {severityVerb} have the value {value} and the others {severityVerb} have the value {otherValue}.",
|
|
2853
|
-
"dq-{efmSection}-{tags}-Exclusive-Value": "In submission type {subType}, only one of {tags} {severityVerb} have a value {value}.",
|
|
2854
|
-
"dq-{efmSection}-{tags}-Exclusive-Presence": "In submission type {subType}, one of {tags} {severityVerb} be present in context {contextID}.",
|
|
2855
|
-
"dq-{efmSection}-{tags}-Inclusive": "In submission type {subType}, at least one of {tags} {severityVerb} have a value.",
|
|
2856
|
-
"dq-{efmSection}-{tags}-Both": "In submission type {subType}, both or neither of {tags} {severityVerb} have a value.",
|
|
2857
|
-
"dq-{efmSection}-{tag}-{otherTag}-Dependency": "In submission type {subType}, {tag} {severityVerb} have a value if and only if {otherTag} has a value in context {contextID}.",
|
|
2858
|
-
"dq-{efmSection}-{tag}-{otherTag}-Value-Dependency": "In submission type {subType}, {tag} {severityVerb} have the value {value} if and only if {otherTag} has the value {value} in context {contextID}.",
|
|
2859
|
-
"dq-{efmSection}-{tag}-Value-{otherTag}-Dependency": "In submission type {subType}, when {tag} has the value {value} {otherTag} {severityVerb} have a value in context {contextID}.",
|
|
2860
|
-
"dq-{efmSection}-{tag}-{otherTags}-Dependency": "In submission type {subType}, {tag} {severityVerb} have a value if one of {otherTags} has a value in context {contextID}.",
|
|
2861
|
-
"dq-{efmSection}-{tag}-{otherTag}-Dependent-Value": "In submission type {subType}, {tag} {severityVerb} be provided if and only if {otherTag} has value {value} in context {contextID}.",
|
|
2862
|
-
"dq-{efmSection}-{tag}-{otherTag}-Inclusive": "In submission type {subType}, either {tag} or {otherTag} should have a value, or both.",
|
|
2863
|
-
"dq-{efmSection}-{tag}-{otherTag}-Exclusive-Dependency": "In submission type {subType}, {tag} {severityVerb} have a value if and only if {otherTag} has a value in context {contextID}.",
|
|
2864
|
-
"dq-{efmSection}-{tags}-{otherTag}-Exclusive-Dependency": "In submission type {subType}, one of {tags} {severityVerb} have a value if and only if {otherTag} has a value in context {contextID}.",
|
|
2865
|
-
"dq-{efmSection}-{tags}-{otherTags}-Exclusive-Dependency": "In submission type {subType}, one of {tags} {severityVerb} have a value if one of {otherTags} has a value in context {contextID}.",
|
|
2866
|
-
"dq-{efmSection}-{tags}-Mutual-Dependency": "In submission type {subType}, all of {tags} {severityVerb} have a value if any of them has a value in context {contextID}.",
|
|
2867
|
-
"dq-{efmSection}-{tag}-{headerTag}-Dependency": "In submission type {subType}, {tag} {severityVerb} have a value if and only if header element {headerTag} is provided.",
|
|
2868
|
-
"dq-{efmSection}-{tag}-{headerTag}-Dependent-Value": "In submission type {subType}, when {tag} has a value {value}, header element {headerTag} {severityVerb} have a value {otherValue}.",
|
|
2869
|
-
"dq-{efmSection}-{tag}-Security-Axes": "In submission type {subType}, {tag} {severityVerb} have values without axes if a single non-ADR member, otherwise in separate contexts by axis member, but not both, in contexts {contextIDs}.",
|
|
2870
|
-
"dq-0514-Hidden-Cover-Page-Fact-Not-Referenced": "Submission type {subType} has {n} cover page fact(s) in ix:hidden that were not referenced by any -sec-ix-hidden style property: (namesOfTags).",
|
|
2871
|
-
"dq-0540-{tag}-Value": "In submission type {subType}, {tag} value, {value}, is not equivalent to header element {headerTag} value, {valueOfHeaderTag}, in the {context}.",
|
|
2872
|
-
"dq-0540-CurrentFiscalYearEndDate-Registrant-Value": "In submission type {subType}, {tag} value, {value}, {severityVerb} match the Entity Registrant Fiscal Year End Date {valueOfHeaderTag} on record within EDGAR.",
|
|
2873
|
-
"dq-0540-CurrentFiscalYearEndDate-Submission-Value": "In submission type {subType}, {tag} value, {value}, does not match the Submission Header Fiscal Year End Date {valueOfHeaderTag}.",
|
|
2874
|
-
"dq-0540-EntityExTransitionPeriod-EntityEmergingGrowthCompany-Dependency": "In submission type {subType}, EntityExTransitionPeriod must have a value if EntityEmergingGrowthCompany has value \"true\" in context {contextID}, else it should not be provided.",
|
|
2875
|
-
"dq-0540-{headerTag}-Unexpected": "Header element {headerTag} value {value} is not applicable for {subType} submission type."
|
|
2876
|
-
},
|
|
2877
|
-
"extraction-cover-tags": [
|
|
2878
|
-
"TradingSymbol",
|
|
2879
|
-
"SecurityExchangeName",
|
|
2880
|
-
"Security12bTitle",
|
|
2881
|
-
"Security12gTitle"
|
|
2882
|
-
]
|
|
2883
|
-
|
|
2884
|
-
}
|