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
|
@@ -0,0 +1,697 @@
|
|
|
1
|
+
arelle/Aspect.py,sha256=Pn9I91D1os1RTVj6htuxTfRzVMhmVDtrbKvV_zy9xMI,5470
|
|
2
|
+
arelle/BetaFeatures.py,sha256=T_tPac-FiozHyYLCemt0RoHJ1JahUE71L-0tHmIRKpE,858
|
|
3
|
+
arelle/Cntlr.py,sha256=GvHkm1ev2hf6rWPA4g3a62YEJOWxz5lZOa2Dq1X1lnM,31721
|
|
4
|
+
arelle/CntlrCmdLine.py,sha256=OF1FhC9aYwhfMUcaAFOnaNAo5jkHpiI3c51n765sNWM,89073
|
|
5
|
+
arelle/CntlrComServer.py,sha256=h1KPf31uMbErpxTZn_iklDqUMGFgQnjZkFkFjd8gtLQ,1888
|
|
6
|
+
arelle/CntlrProfiler.py,sha256=2VQJudiUhxryVypxjODx2ccP1-n60icTiWs5lSEokhQ,972
|
|
7
|
+
arelle/CntlrQuickBooks.py,sha256=BMqd5nkNQOZyNFPefkTeWUUDCYNS6BQavaG8k1Lepu4,31543
|
|
8
|
+
arelle/CntlrWebMain.py,sha256=_jhosP0Pg-erutBRzTVsL0cmWVgbc6z0WIIlNO-z1N4,50712
|
|
9
|
+
arelle/CntlrWinMain.py,sha256=sqHolDdlcPxfOEHWU_sIy8i89RsZvdYA5LbK7GG_HX4,98440
|
|
10
|
+
arelle/CntlrWinTooltip.py,sha256=6MzoAIfkYnNu_bl_je8n0adhwmKxAIcymkg9Tij9Z4M,7951
|
|
11
|
+
arelle/DialogAbout.py,sha256=XXzMV0fO4BQ3-l1Puirzmn7EZEdmgJg7JNYdJm1FueM,1987
|
|
12
|
+
arelle/DialogArcroleGroup.py,sha256=r81OT3LFmMkoROpFenk97oVEyQhibKZ1QgDHvMsyCl0,7547
|
|
13
|
+
arelle/DialogFind.py,sha256=285X5TDP4O75fBBK-NLOJPCSnEd8E_x8np1nOH0NJOo,19420
|
|
14
|
+
arelle/DialogFormulaParameters.py,sha256=Z2k_HgRJ9mscVmKu-NZA0di5UQHJooZKVby3QH9FZvU,8630
|
|
15
|
+
arelle/DialogLanguage.py,sha256=HEBd21CfcJwGAGEu2gMyYHM0cXa0VVGAh-kxlZo8H9Q,7228
|
|
16
|
+
arelle/DialogNewFactItem.py,sha256=blcE420dyMs6GEJW-YbtPj0lwc-YTUwyyEJh_Zvq9yE,8281
|
|
17
|
+
arelle/DialogOpenArchive.py,sha256=8io1L6JhBVM8dLf23k2q7LsHCO6rpuOvknDmA3H5GSk,24004
|
|
18
|
+
arelle/DialogPackageManager.py,sha256=YyWhHNFZT-ioM5jVbTJyHoQQK6_rB83j3DzMMswQGZk,30540
|
|
19
|
+
arelle/DialogPluginManager.py,sha256=0Uiy2Dei_49K7jbNnEUTchqcjANPIKNYNIt29iQoV1g,33035
|
|
20
|
+
arelle/DialogRssWatch.py,sha256=mjc4pqyFDISY4tQtME0uSRQ3NlcWnNsOsMu9Zj8tTd0,13789
|
|
21
|
+
arelle/DialogURL.py,sha256=JH88OPFf588E8RW90uMaieok7A_4kOAURQ8kHWVhnao,4354
|
|
22
|
+
arelle/DialogUserPassword.py,sha256=kWPlCCihhwvsykDjanME9qBDtv6cxZlsrJyoMqiRep4,13769
|
|
23
|
+
arelle/DisclosureSystem.py,sha256=TA41D_rJGsmHytV2ya4Po2O9pcUnxiLc90qo5CoNaKM,25279
|
|
24
|
+
arelle/ErrorManager.py,sha256=5BrpD9Ej8b-2JFR-GgWL32Oc2qItYnLbZApaToDKt0o,16972
|
|
25
|
+
arelle/FileSource.py,sha256=IOFocG11MIRMUy6xrRzW-YWfC1ladpLM5kAeRBdRm9c,48401
|
|
26
|
+
arelle/FunctionCustom.py,sha256=d1FsBG14eykvpLpgaXpN8IdxnlG54dfGcsXPYfdpA9Q,5880
|
|
27
|
+
arelle/FunctionFn.py,sha256=BcZKah1rpfquSVPwjvknM1pgFXOnK4Hr1e_ArG_mcJY,38058
|
|
28
|
+
arelle/FunctionIxt.py,sha256=H-eoJPnbUagaMhJH_IasGKZII2x9pINwnPg3Uxx87ns,80157
|
|
29
|
+
arelle/FunctionUtil.py,sha256=GqZrTo79BSNclLHlhGCYLjGb3Dsy949VoBkvyTuull0,4058
|
|
30
|
+
arelle/FunctionXfi.py,sha256=fyhRUPUStZB5hZdX785K0bwOMkCPPGR2aU-GdlieKN4,74245
|
|
31
|
+
arelle/FunctionXs.py,sha256=q0SA0e5wLRxH6kbNUOnChktcGVxaB7A6CE_O3nceysA,13163
|
|
32
|
+
arelle/HashUtil.py,sha256=dS11q9UUUFzP7MgiuNdxFfvF3IpeyZUiOFxVFArEEWE,2963
|
|
33
|
+
arelle/HtmlUtil.py,sha256=icR75XxiDmlDfSExK6NGbUgeOPtZDql_VsD3aJOVk40,797
|
|
34
|
+
arelle/InstanceAspectsEvaluator.py,sha256=TePNIs_m0vCIbN5N4PXEyJm529T2WBFi2zmv-72r3Zk,1805
|
|
35
|
+
arelle/LeiUtil.py,sha256=yWbyU1Qnd81iYHLcyDi0I13GZkjaxCL04YVNQ6jqaP8,4698
|
|
36
|
+
arelle/LinkbaseType.py,sha256=BwRQl4XZFFCopufC2FEMLhYENNTk2JUWVQvnIUsaqtI,3108
|
|
37
|
+
arelle/LocalViewer.py,sha256=WVrfek_bLeFFxgWITi1EQb6xCQN8O9Ks-ZL16vRncSk,3080
|
|
38
|
+
arelle/Locale.py,sha256=07IDxv8nIfvhyRRllFdEAKRI3yo1D2v781cTrjb_RoQ,33193
|
|
39
|
+
arelle/ModelDocument.py,sha256=R4uVfqks2XRDziRPAp_AUFebrAQBf4FgG97nb5h7fAs,130651
|
|
40
|
+
arelle/ModelDtsObject.py,sha256=VUDsq8Ua0a-Hrhu-vFMaajwZLKjjr7xC4e-LAJSz-k0,88968
|
|
41
|
+
arelle/ModelFormulaObject.py,sha256=-eb0lBYciEeAvvGduIs3AHGNGrxge9_0g1cVT6UUgvc,122560
|
|
42
|
+
arelle/ModelInstanceObject.py,sha256=77rkxl1FK8OyJhTXkrNv6B_4oEK6IZm9eRQdFDxslGk,74278
|
|
43
|
+
arelle/ModelManager.py,sha256=QUNcD2LC_YyyGFU8bFTSuzIGI1qpOK55KBlQ697Ep1I,11075
|
|
44
|
+
arelle/ModelObject.py,sha256=Rttkhv-PtfneZyDYsG5FDh98BzT97ameTmwNdqFaOv0,18657
|
|
45
|
+
arelle/ModelObjectFactory.py,sha256=0yEtkmyOmSjhUK1I4b3eINxtYKsysakntoWn4VAqLeg,9172
|
|
46
|
+
arelle/ModelRelationshipSet.py,sha256=0ykYbdAxl-MxDOZlJ6f6yGzGQ6vqKFIimHrw0khxtjw,24811
|
|
47
|
+
arelle/ModelRenderingObject.py,sha256=iPhSUlSBG-FLzAfIdUW06UZDgTCaZJ4K2mxvAtSe2BU,76021
|
|
48
|
+
arelle/ModelRssItem.py,sha256=GzFkmluOlFsVcrxn9HAyOAcuE7rcHUOGkp4Q6F2IlT8,7713
|
|
49
|
+
arelle/ModelRssObject.py,sha256=xjuwyJ8pU5sQmNPJFQakDEEnujZg2bMCTaj3zVezHL8,992
|
|
50
|
+
arelle/ModelTestcaseObject.py,sha256=2hFrl1tdDAxPZpZCEJdYUzti-HFLGgDgCNp6lEBPvqs,22616
|
|
51
|
+
arelle/ModelValue.py,sha256=0sr7njFjGI2W3Bct2dxf2LoG_fLerHQouQtM0v0ZY2E,39573
|
|
52
|
+
arelle/ModelVersObject.py,sha256=cPD1IzhkCfuV1eMgVFWes88DH_6WkUj5kj7sgGF2M0I,26062
|
|
53
|
+
arelle/ModelVersReport.py,sha256=bXEA9K3qkH57aABn5l-m3CTY0FAcF1yX6O4fo-URjl8,73326
|
|
54
|
+
arelle/ModelXbrl.py,sha256=oEEP-whMGZjG45BXeXabXcD_IzBp7yA-21gW6zlGe2U,61120
|
|
55
|
+
arelle/PackageManager.py,sha256=BvPExMcxh8rHMxogOag-PGbX6vXdhCiXAHcDLA6Ypsc,32592
|
|
56
|
+
arelle/PluginManager.py,sha256=axNOsdpUvhths9ePeTAF3hurwrOooXA-7cGnG43z99k,42676
|
|
57
|
+
arelle/PluginUtils.py,sha256=0vFQ29wVVpU0cTY3YOBL6FhNQhhCTwShBH4qTJGLnvc,2426
|
|
58
|
+
arelle/PrototypeDtsObject.py,sha256=0lf60VcXR_isx57hBPrc7vEMkFpYkVuK4JVBSmopzkQ,7989
|
|
59
|
+
arelle/PrototypeInstanceObject.py,sha256=CXUoDllhDqpMvSQjqIYi1Ywp-J8fLhQRV9wVD2YXgVo,13204
|
|
60
|
+
arelle/PythonUtil.py,sha256=pkh3-XixCOiVHhGlrt8l0va-iWCtkyO5ZMjEvNAadRA,12524
|
|
61
|
+
arelle/RuntimeOptions.py,sha256=XjTxA2tcdc_P2v7xZGTx_-imjOqtcl48ch3S-Q-q-7Y,8462
|
|
62
|
+
arelle/SocketUtils.py,sha256=1wa2sA_QhM8F1klHFq90V1AgO1-hY9pJm0554FiF7Lc,677
|
|
63
|
+
arelle/SystemInfo.py,sha256=6330pNedRkAPlEKl-ZdaZHiGuucEGZMI-Jrdy7B1rrU,2454
|
|
64
|
+
arelle/TableStructure.py,sha256=PABOHJiTa56cHyF9qRLD7TohmCHyDTrGEltW8toP_rk,29409
|
|
65
|
+
arelle/TkTableWrapper.py,sha256=Bdm-WmLdwIiudqfaVGZElip_92eeSKQdd7hCjlILm1A,33612
|
|
66
|
+
arelle/UITkTable.py,sha256=N83cXi5c0lLZLsDbwSKcPrlYoUoGsNavGN5YRx6d9XY,39810
|
|
67
|
+
arelle/UiUtil.py,sha256=3G0xPclZI8xW_XQDbiFrmylB7Nd5muqi5n2x2oMkMZU,34218
|
|
68
|
+
arelle/Updater.py,sha256=IZ8cq44Rq88WbQcB1VOpMA6bxdfZxfYQ8rgu9Ehpbes,7448
|
|
69
|
+
arelle/UrlUtil.py,sha256=EmjVfZ6-Ax5cvjVsbdYMb3VHzISVecGDE2gLRHzHmfQ,32489
|
|
70
|
+
arelle/Validate.py,sha256=v9_Z9hGMMJnKlHsbQVM_eLqFQM5dO1vVCE9KSdKKleI,58780
|
|
71
|
+
arelle/ValidateDuplicateFacts.py,sha256=LEIbdEvm_fD4Nr5PMpVSy05e7FuyTw-VJMTVSSNX7Ac,21819
|
|
72
|
+
arelle/ValidateFileSource.py,sha256=3a7KzecNI3_iiMExmmYTXrowR2Vn6GYT4zKhTPBRIto,1379
|
|
73
|
+
arelle/ValidateFilingText.py,sha256=ppPC8Uje1cxaVXQnRSpgNtLO2BlHWM9316IxPj7bfpA,54024
|
|
74
|
+
arelle/ValidateInfoset.py,sha256=Rz_XBi5Ha43KpxXYhjLolURcWVx5qmqyjLxw48Yt9Dg,20396
|
|
75
|
+
arelle/ValidateUtr.py,sha256=oxOPrOa1XEzBay4miXvx6eRLTnVFYUIJC9ueWUk4EkI,13633
|
|
76
|
+
arelle/ValidateVersReport.py,sha256=RMe7GlcyZV0HoVFHL0qOGrKm4et-6yPq5dmikkhnvoU,43196
|
|
77
|
+
arelle/ValidateXbrl.py,sha256=RSB-rLI3Y0udLVdo6eqN9mxpsS2rrIGr6EvwHt1K-LI,78220
|
|
78
|
+
arelle/ValidateXbrlCalcs.py,sha256=6OMjIef6ixJGkxH-hgIRbMRJ46e52KEo-8vDyM97krc,44028
|
|
79
|
+
arelle/ValidateXbrlDTS.py,sha256=souKOWM_i52g0mNu9TMhqqdEwXm1tDO7R2n396r_7gs,103992
|
|
80
|
+
arelle/ValidateXbrlDimensions.py,sha256=Qv7_CI65SiUcpgsnEc86XuMjKz81-170wE5dmZqnvHc,38373
|
|
81
|
+
arelle/Version.py,sha256=RjbPSSiH57VzZFhhUmEmvLsL8uSb5VwEIj2zq-krhsY,934
|
|
82
|
+
arelle/ViewFile.py,sha256=e68U1PnD10dw0PSKvqZkJ6ueLLZBPPGOa75xMfGifUA,19325
|
|
83
|
+
arelle/ViewFileConcepts.py,sha256=ecIGNPhFelkpHSPzbV19w7ts8RZZsD657oYLQHtAzhk,4370
|
|
84
|
+
arelle/ViewFileDTS.py,sha256=IlbBTKFT8grC4N4cWdam8UsUaVFeiy7MfL5PdyEefvA,2029
|
|
85
|
+
arelle/ViewFileFactList.py,sha256=AVYoDJnhUoIkX7fT2D-bOrKP5g1JAwVnmSr4FYhT4iI,7194
|
|
86
|
+
arelle/ViewFileFactTable.py,sha256=vgUFnImoEQTztO4m6B6mCLN1LWfGct24qSQKl36ZlXM,17069
|
|
87
|
+
arelle/ViewFileFormulae.py,sha256=753p3pAZsoxx6-3b_xR_CDFReeMBgBZOCV_TIO0FuJE,4740
|
|
88
|
+
arelle/ViewFileRelationshipSet.py,sha256=beQ6vGHJgpVwB3upofuPG0Rys2yt7GxsO4BcT96_nL8,16814
|
|
89
|
+
arelle/ViewFileRenderedGrid.py,sha256=I0Q6tyhbu1vcZvWiigAGrPK2bHv_ixsZvLr3merYPJo,14112
|
|
90
|
+
arelle/ViewFileRenderedLayout.py,sha256=aCTpOMBUIKYE4Xu1OFPoo_NTqp1NqefpXze6qWcDKw8,12170
|
|
91
|
+
arelle/ViewFileRenderedStructure.py,sha256=VemGa9HlVHvazPD3-yOrtDWTggNBkHkNtzXHtLUqngA,6192
|
|
92
|
+
arelle/ViewFileRoleTypes.py,sha256=4rk7D0sd5TP6o_WNm2wkBxB2OeltUrk6InfJHPLwLDQ,2024
|
|
93
|
+
arelle/ViewFileRssFeed.py,sha256=7ATWTC42QrCPTZxTK8-MH0-mDOGg0GUms7AWdzJfPKc,2726
|
|
94
|
+
arelle/ViewFileTests.py,sha256=l5phDVBWYNd7xECgJOy9Tsjpjo0mzwP6AlmGbq8ufOU,7798
|
|
95
|
+
arelle/ViewUtil.py,sha256=A8SEWiQB9tyCPTMaxrQNMF8AI7Y2CxP5I9RuYeVkytU,2279
|
|
96
|
+
arelle/ViewUtilFormulae.py,sha256=AQ9sQ3e1giqI54YgNNiR7RAxeoXPvunUraqEoAitYak,1837
|
|
97
|
+
arelle/ViewWinConcepts.py,sha256=FVKJ607_aZrwjPMUdVEfPlA6s7oGqg3Vtf_MxlEEZts,6812
|
|
98
|
+
arelle/ViewWinDTS.py,sha256=L2q-Pyn-g61RN7SQxTamqDmgKJIIy5UE4vNb8A4lZfg,1913
|
|
99
|
+
arelle/ViewWinDiffs.py,sha256=Q8Yd-L3zKhgOab4UK01CPHyXyMd3G37DIaDQ00DAolA,4856
|
|
100
|
+
arelle/ViewWinFactGrid.py,sha256=tQk9MQ9aiTzJ2SsX8Y16V7qccf-Jl1FcBPEP4_Cxc0E,14349
|
|
101
|
+
arelle/ViewWinFactList.py,sha256=eoSzG-Kt90kb7Ok4HCIn6NqGe8fp8WoN03f8Wn3H5LI,8858
|
|
102
|
+
arelle/ViewWinFactTable.py,sha256=aRhYmxrGk8P14MqzQvfLpf89M0wltUKiOvIk6bQ_8K8,15192
|
|
103
|
+
arelle/ViewWinFormulae.py,sha256=TAtBWTKQoupkuRKx0Y-IJM91I84lYfyNPz3BuG7eRio,6567
|
|
104
|
+
arelle/ViewWinGrid.py,sha256=v9Fog-NC5XGdiZchgNQa-bM7BPrBS4Hs8MUlF0PYLi0,2731
|
|
105
|
+
arelle/ViewWinList.py,sha256=dz7qip9DpvVi96j71MZQoQpaVguO4FRka-_TOnsJtaE,4318
|
|
106
|
+
arelle/ViewWinPane.py,sha256=ZTz1fL3-QXZLAIMjqAjGoe9IEMVG7s9AzFYamV2PTco,2783
|
|
107
|
+
arelle/ViewWinProperties.py,sha256=FutWixP6g-_riNsnCxef6dej_kNqH_E2F3anse60aV4,2403
|
|
108
|
+
arelle/ViewWinRelationshipSet.py,sha256=rllE_pru2GRpAPQJrXMF_Kxw1vRel2UCqW-kHrNn6hU,25583
|
|
109
|
+
arelle/ViewWinRenderedGrid.py,sha256=OFFypVdoPke6FVa0fPC0TaFAC2nBOIsJOFF62xNsTnQ,84625
|
|
110
|
+
arelle/ViewWinRoleTypes.py,sha256=hc1pM5Q_LYOxDxMJTvG1O4_pQ0Uni9kpZ6hPuxKNs9w,4794
|
|
111
|
+
arelle/ViewWinRssFeed.py,sha256=htgZKAxA3ivuE6p-jvtU2HIx78LAtfAkO2Q-KtGYHIk,6057
|
|
112
|
+
arelle/ViewWinTests.py,sha256=1RNerlovLzyvemNPFjraEVmpVWcWiw_DQ5LxVZm0R4M,9414
|
|
113
|
+
arelle/ViewWinTkTable.py,sha256=wtqy-ismBlGlcdfq9RoGbqU9dbwWgdTlO0tKYZRF0sw,1149
|
|
114
|
+
arelle/ViewWinTree.py,sha256=mfOH7SnxUmADPw9cjB354IiFzZdDrztdOnQIfSoVp00,20005
|
|
115
|
+
arelle/ViewWinTupleGrid.py,sha256=Li21jmMSZP3xIkpg8eY8Sq7KTIuAgM57wHu7i7Nu3P0,8921
|
|
116
|
+
arelle/ViewWinVersReport.py,sha256=aYfsOgynVZpMzl6f2EzQCBLzdihYGycwb5SiTghkgMQ,9344
|
|
117
|
+
arelle/ViewWinXml.py,sha256=4ZGKtjaoCwU9etKYm9ZAS7jSmUxba1rqNEdv0OIyjTY,1250
|
|
118
|
+
arelle/WatchRss.py,sha256=5Ih4igH2MM4hpOuAXy9eO0QAyZ7jZR3S5bPzo2sdFpw,14097
|
|
119
|
+
arelle/WebCache.py,sha256=SLk-S5StYUIucm5bd2BqT-o8ZA0NdYw2Xl4O9vIt7O8,45257
|
|
120
|
+
arelle/XbrlConst.py,sha256=_uQviD2eNHyinlNifKGH2c-FdKW5m9016TJ2xgTRrFg,59198
|
|
121
|
+
arelle/XbrlUtil.py,sha256=s2Vmrh-sZI5TeuqsziKignOc3ao-uUgnCNoelP4dDj0,9212
|
|
122
|
+
arelle/XhtmlValidate.py,sha256=0gtm7N-kXK0RB5o3c1AQXjfFuRp1w2fKZZAeyruNANw,5727
|
|
123
|
+
arelle/XmlUtil.py,sha256=1VToOOylF8kbEorEdZLThmq35j9bmuF_DS2q9NthnHU,58774
|
|
124
|
+
arelle/XmlValidate.py,sha256=0unn-jUQ8yXGURwFdIYa4O3nX49yZsA_jhROCrqAZDk,45796
|
|
125
|
+
arelle/XmlValidateConst.py,sha256=U_wN0Q-nWKwf6dKJtcu_83FXPn9c6P8JjzGA5b0w7P0,338
|
|
126
|
+
arelle/XmlValidateParticles.py,sha256=Mn6vhFl0ZKC_vag1mBwn1rH_x2jmlusJYqOOuxFPO2k,9231
|
|
127
|
+
arelle/XmlValidateSchema.py,sha256=6frtZOc1Yrx_5yYF6V6oHbScnglWrVbWr6xW4EHtLQI,7428
|
|
128
|
+
arelle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
|
+
arelle/_version.py,sha256=XU5YqU4Yu6IlFYkt0vnaXoz4qV98LcqGslaVzytogJ0,708
|
|
130
|
+
arelle/typing.py,sha256=PRe-Fxwr2SBqYYUVPCJ3E7ddDX0_oOISNdT5Q97EbRM,1246
|
|
131
|
+
arelle/api/Session.py,sha256=a71ML4FOkWxeqxQBRu6WUqkUoI4C5R6znzAQcbGR5jg,7902
|
|
132
|
+
arelle/config/creationSoftwareNames.json,sha256=5MK7XUjfDJ9OpRCCHXeOErJ1SlTBZji4WEcEOdOacx0,3128
|
|
133
|
+
arelle/config/disclosuresystems.xml,sha256=8lBSGCOuVsVxttmpqkPlURBzaiGpPm8b8aYtxKRsKnk,16617
|
|
134
|
+
arelle/config/disclosuresystems.xsd,sha256=FiwGkxlkRMgGg45V9b_P1-GiI7b1YVatZd5d50s08pI,4335
|
|
135
|
+
arelle/config/edbody.dtd,sha256=ZGfnEvKbROUpV-aCWeAV3VBuY0QquDIiNzOU-ehgsGk,15557
|
|
136
|
+
arelle/config/empty-instance.xml,sha256=1wRlhlSErE_ro3noF30-WTM0WVOpyKUI9L9POrbt368,390
|
|
137
|
+
arelle/config/erxl.xsd,sha256=27GMbkisl6dA6ZOXZiOtBEwBQPb1fBUc4KOYNVsRo0o,2167
|
|
138
|
+
arelle/config/mappings.xml,sha256=gqqwWEe-rWbG9XdesUH3oi-xpruxX4lWN73juNxAy84,3227
|
|
139
|
+
arelle/config/mappings.xsd,sha256=Z5PTg2akjzNVfO2ys4MPZVUtjTAiFb2M8MMpCinKTk0,1077
|
|
140
|
+
arelle/config/sbr-text-formatting.xsd,sha256=gDB9bKpa4TNaPd8wn1jVBfRFquYhgIcIgW8doxB9T7g,21797
|
|
141
|
+
arelle/config/xbrlschemafiles.xml,sha256=c8wNhe8Gwex45WnsCBj3eSLtr_xBlwAdcE6Gi7jHN3I,3283
|
|
142
|
+
arelle/config/xhtml-lat1.ent,sha256=PaHarQj5O4r_ejLVRH-UhT1RdWHZx9DHvD7lwALRKjg,11775
|
|
143
|
+
arelle/config/xhtml-special.ent,sha256=f5UYAmxZzO5HoC7XTkP4lG2SIH1Din9UCg88KPBfon4,4131
|
|
144
|
+
arelle/config/xhtml-symbol.ent,sha256=ps0PnFnkiLjI4t6AwxxoEfMWo5Gc2aByW1OQqPx4XWE,13848
|
|
145
|
+
arelle/config/xhtml1-strict-ix.dtd,sha256=aFKr6XExPXXqT7aTjcVClLVZEQy4V6kPcOPR6L83djc,26880
|
|
146
|
+
arelle/config/xhtml1_1-strict-ix.dtd,sha256=qcZAFkndssIBRDlu3DzoKODBi6WzPb82XAev40czZlQ,27449
|
|
147
|
+
arelle/conformance/CSVTestcaseLoader.py,sha256=nWlRWcpFdPNfwiXpAzPX3w_zCPf8SCcEcy-wV-m7kF0,3493
|
|
148
|
+
arelle/doc/messagesCatalog.xml,sha256=7j66ZzmbPh_W6-t3aAvWYq5oUk6Xj2BtCyBL4o_qssM,335579
|
|
149
|
+
arelle/doc/messagesCatalog.xsd,sha256=bBILAsbw7x7ulIeycgLMFMrCpCXkyjA3Ny1qxuMAIls,1151
|
|
150
|
+
arelle/formula/FactAspectsCache.py,sha256=YKEVZSIfP0NRB7Vxweg3ylyxKIDSZMdaTrASjgeYrpw,2706
|
|
151
|
+
arelle/formula/FormulaConsisAsser.py,sha256=hO4GZwozM5cGl1xTU6OwoF3LlaMxAEB5Oy0rJh7uyG0,7567
|
|
152
|
+
arelle/formula/FormulaEvaluator.py,sha256=WKNyJz1Os9gsKedJXLNC9y9u11Ea4_JQ-RAI7gSFmPU,82600
|
|
153
|
+
arelle/formula/ValidateFormula.py,sha256=b_stG7h8RhaSsPt07_x-GRBHOl2uy-JNSMd6v-jkg_w,95942
|
|
154
|
+
arelle/formula/XPathContext.py,sha256=7UsUZqHYaz60SgSoEIQxIyK2wbwRMj3iFFqGbpye-ao,49849
|
|
155
|
+
arelle/formula/XPathParser.py,sha256=__I7KwHjCk7MdvrJFHkHW0eLKgw_sQ5S7B1bt17_YqQ,50410
|
|
156
|
+
arelle/formula/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
|
+
arelle/images/arelle-full-word.ico,sha256=jsAzyAJZTtVPafxhgFQtdWJj7r_r0YhX_iWvWnZ4QKg,2430
|
|
158
|
+
arelle/images/arelle-mac-icon-4.gif,sha256=jTXc1dBEgZuXuZVd1XOuLuXfpjNW_pusn0mPhHhkOtk,2619
|
|
159
|
+
arelle/images/arelle-rtd.png,sha256=5pbI8WOtWNVOpfsTXFW4xyzCZV7ubfwd5hFpyTBE8Zs,9915
|
|
160
|
+
arelle/images/arelle-word-only.ico,sha256=AaYqIzixpQaN5MsbgVdCrTccvUgSENt44VoLvIxkMiQ,1150
|
|
161
|
+
arelle/images/arelle.gif,sha256=HBnxLCCUMPJzVJtyzTsR06NSdlEmNTJSrwpHx693wbg,1458
|
|
162
|
+
arelle/images/arelle.icns,sha256=R1pLwcaf6Ucl5TTQY9gaurgObx27KW64T7jZLYU9izI,212911
|
|
163
|
+
arelle/images/arelle.icns.zip,sha256=2ad340N53EdCcLk9nDE31wFX29YC4H65QsqYJk_6TLw,392859
|
|
164
|
+
arelle/images/arelle.ico,sha256=3bwTcBmhcPyP6WQaSB3bgrcSK1ptCHlB7ptTuKDe1LQ,1406
|
|
165
|
+
arelle/images/arelle.xbm,sha256=xKFRPY2kM2qogzamsA8__KGq-7qfuBzvmDta3uEJEKA,282
|
|
166
|
+
arelle/images/arelle128.psd,sha256=UFmJcL3Gg2RdxdqV80jI6-OIYwZIXuHmC5SLB-EQ2UE,269858
|
|
167
|
+
arelle/images/arelle16.psd,sha256=sQif-8cnNVB7M4RA1C7-PnHJjHfu1OV6oBN4jCxiMT0,24028
|
|
168
|
+
arelle/images/arelle16x16and32x32.ico,sha256=k-at1gVauw58DDe0UX9FcS_bZSpRWwTxp53Gao1nE_k,3638
|
|
169
|
+
arelle/images/arelle32.gif,sha256=-5yday2UZas3Gn-VSPrhaEIGKaOKH2jThL4BPwPkQhU,1207
|
|
170
|
+
arelle/images/columnSortDown.gif,sha256=3K1Zh1MNt5lisYCHBQW07KqL4ewR8Joh6w04wZA9ZpE,60
|
|
171
|
+
arelle/images/columnSortUp.gif,sha256=L98YYxLHVtm_-Nt0mRt77Xi03t96ZO-2O8v7R4gaEOQ,60
|
|
172
|
+
arelle/images/dmg_background.png,sha256=lFqCqkxcu4azzjK24XEXwmwaiYohIwOfn9_mruiLq58,11799
|
|
173
|
+
arelle/images/favicon.ico,sha256=1MOpaHPdk-6O7c9Ou9Cl5AVpqM32C9N40bX4_kgOHe8,15406
|
|
174
|
+
arelle/images/octocat.png,sha256=RF_AjuWj9yOWEzEeduD-CUFQDRShYWheg56CcgruTgA,9613
|
|
175
|
+
arelle/images/python-clear.png,sha256=rzgSxw3MHIAEayNYoQm9c35Y_pfi7qd2iCTn0u2cZxg,23863
|
|
176
|
+
arelle/images/python-icon-pack-crystalxp.net-842.zip,sha256=EEAJvr0bkBsv1NqK2B_ZyWjaKjJQ0mGAAncvu_KB6M4,696358
|
|
177
|
+
arelle/images/toolbarClose.gif,sha256=xme66h1Aho7k4e9y73G7IpJYN2kaejiSRNwpgEIB2A0,1007
|
|
178
|
+
arelle/images/toolbarCompare.gif,sha256=nCcfwa5cjokO9UdmnG4BpiI6lRjZDC7ywfVuuP0HjMQ,977
|
|
179
|
+
arelle/images/toolbarDelete.gif,sha256=ORxH3XVm7W43_lY0IoBh8lR8i6LzRoNLV9tY4z9OQK0,195
|
|
180
|
+
arelle/images/toolbarFindMenu.gif,sha256=IwvDjBHfjCfsrsDUKY3dMQ6iMnI3piQ5OhJTtepRml4,951
|
|
181
|
+
arelle/images/toolbarLogClear - 1-piece-top.gif,sha256=dGmbqia0j9coYRgdyKivdJT1ZYMW09Jj-KfwwqdiPsU,1013
|
|
182
|
+
arelle/images/toolbarLogClear-orig.gif,sha256=xdamfoISNU_X53EKfHZysYKUnNkLBc5WBMaqyyEWd4g,920
|
|
183
|
+
arelle/images/toolbarLogClear.gif,sha256=tPa5uqbwXtgqfNLcPUJER2R23FjJeAE2c19vSUvFUTo,1012
|
|
184
|
+
arelle/images/toolbarNewFile.gif,sha256=Fr8XuQVkRBNw3Wu9VNbR2tXsrMTPz0FY_LEFRcqFPpU,587
|
|
185
|
+
arelle/images/toolbarOpenDatabase.gif,sha256=ie8suYLkA-csWyv2NLIvQNtsmh1yDgqzPePy5M6-jB4,146
|
|
186
|
+
arelle/images/toolbarOpenFile.gif,sha256=rjuyMP_T6K4XV3zEbu8lHaboeIcehQPiD89xM5YsUxc,1018
|
|
187
|
+
arelle/images/toolbarOpenWeb.gif,sha256=yLgzsL2lWzk_7OQacL6S4ABxA1WWeQAN47Hu17aPNPQ,1037
|
|
188
|
+
arelle/images/toolbarProperties.gif,sha256=qiHP6kJQtaEBqJtod2mj738wCG2pm9js_MCIBcX61jU,127
|
|
189
|
+
arelle/images/toolbarQuit.gif,sha256=Uk0kmYMDRtXNGldrYtXamIEfkNHV55fikOxDjfwvb8E,64
|
|
190
|
+
arelle/images/toolbarReopen.gif,sha256=KwfFqLLIi_AlbIN47PoIMDhm3gQ4z_M2EpMo0uk63MU,529
|
|
191
|
+
arelle/images/toolbarSaveFile.gif,sha256=K4BCqwAVhoF8aRauZPZiT63W1CiZUynkneSCPypmyl8,621
|
|
192
|
+
arelle/images/toolbarValidate.gif,sha256=L39C1XbiODOx5Jv-uzVsHe5HXw6DaoGF-CJEMYCxLKo,986
|
|
193
|
+
arelle/images/xbrl.gif,sha256=wb1K8SeKyYV63EUVYG0j7W6veY0moD8L8YrjAhnyRdI,927
|
|
194
|
+
arelle/images/xbrl.psd,sha256=S2OAOrDcDGWj4Q5Gycjg4TS5MFD3WrIkhnjIU8Xbr_0,201686
|
|
195
|
+
arelle/images/xbrl128-2.gif,sha256=njhkmIQyZY_vIhqsC_ZLtaVGW1ZRKUQVZWUVj19J_OQ,1598
|
|
196
|
+
arelle/images/xbrl128.gif,sha256=wb1K8SeKyYV63EUVYG0j7W6veY0moD8L8YrjAhnyRdI,927
|
|
197
|
+
arelle/images/xbrl16.ico,sha256=n4GcRLd-_sTpT0PML7rPSUd8lHCGNWYftrJ7WhhcMaQ,1150
|
|
198
|
+
arelle/images/xbrl32.ico,sha256=ubVPZKTkX7lsJhHz1vEKsIbWY7g0k1asxvwgT8Nbzxw,4286
|
|
199
|
+
arelle/locale/messages.mo,sha256=1fb0KAYAzYLGV0tuFvfzDHMj_fYtNYEpqS2rUkZSf3Y,398
|
|
200
|
+
arelle/locale/messages.pot,sha256=rSm-zzgA-4oDOrMELAQwrFAJpwV2yGP-81Ij6Uoc-uw,249718
|
|
201
|
+
arelle/locale/ar_EG/LC_MESSAGES/ar_EG.po,sha256=UboUT0k6DtALtn_Lsu5Ts8wCxiyaotYjA4OoSkfooBQ,341833
|
|
202
|
+
arelle/locale/ar_EG/LC_MESSAGES/arelle.mo,sha256=J_v2J5ED3FDhIpk4WxnWXo2THNTqfgAwd2NOa8erB8I,185904
|
|
203
|
+
arelle/locale/es/LC_MESSAGES/arelle.mo,sha256=iB8uYP_vhdqll3c8O08KBsaZ3hlf4YHwZFxc3-nC3k8,149331
|
|
204
|
+
arelle/locale/fr/LC_MESSAGES/arelle.mo,sha256=HsXvnKEsnhqJqH6H9SlGBy451fnQTaizbZCyCN_Qbwg,118897
|
|
205
|
+
arelle/locale/fr/LC_MESSAGES/fr.po,sha256=D2WHLI9NktcxgmGx91fRLNLoVjvO3Z0jjS9AJlroOCE,168077
|
|
206
|
+
arelle/locale/ru/LC_MESSAGES/arelle.mo,sha256=i004xdiJMpXus5DnSz2y708H5vPt78Pu5ApkrdC9Fqw,375378
|
|
207
|
+
arelle/locale/ru/LC_MESSAGES/ru.po,sha256=aOQv5MfenTHo_y_RbkRen2SvgBQDTnmxOkKOZsUE3LQ,449575
|
|
208
|
+
arelle/logging/formatters/LogFormatter.py,sha256=emXkUWLRZ65-qu9K-BcYrT2ueR8R-YchA8bwPY3yA60,1968
|
|
209
|
+
arelle/logging/handlers/LogHandlerWithXml.py,sha256=xj-m6aNh4gksxP9AjN0xkECxVdx9m7ElCC0lXkhFcUQ,4318
|
|
210
|
+
arelle/logging/handlers/LogToBufferHandler.py,sha256=tTzHRw9tn1Osrpc5rcKxk2iTEE3uIq5wb792z5RVYAs,612
|
|
211
|
+
arelle/logging/handlers/LogToPrintHandler.py,sha256=iT5eTZx5MXJRhI-vZjlenNOSDRgiNXSQhh398Njbje0,1299
|
|
212
|
+
arelle/logging/handlers/LogToXmlHandler.py,sha256=eQGI_AQ6XrfIN_wl4TKnbLw_5D1bZz1UaWvegV2qpQA,10489
|
|
213
|
+
arelle/logging/handlers/StructuredMessageLogHandler.py,sha256=iqHRH9QGvAlaD7AKvzLq2lq4IpAMdycPNYwzcqonNts,2244
|
|
214
|
+
arelle/model/CommentBase.py,sha256=NtC2lFd9Mt1y7kzWwrpvexwqBdfSe1nvGFiIJeio3rU,177
|
|
215
|
+
arelle/model/ElementBase.py,sha256=pZX836d4-s-OvzPMUusvEDezI9D_6YKO7_j6iDcUXm4,404
|
|
216
|
+
arelle/model/PIBase.py,sha256=easZ3pKXJ5wq3NFB2pDtBeXNDcjwMAXylpXz6mnumOg,257
|
|
217
|
+
arelle/model/__init__.py,sha256=RLmC1rTus3T_2Vvnu3yHtdw1r0wrZCHZoqxe8BLg_wE,595
|
|
218
|
+
arelle/oim/Load.py,sha256=jLDidnntV78Pwzw0MvOLWSHXC8QxDkHO41TrdmsQuOQ,182874
|
|
219
|
+
arelle/oim/Validate.py,sha256=IaBClr2KYMiVC_GKYy4_A9gF7hcnm-lxXpQrDCqIWGs,9012
|
|
220
|
+
arelle/oim/xml/Save.py,sha256=MdaJiGcEo4nbQCX9sRgWfVIoxp6fd2N-wuLiDAS9D-I,607
|
|
221
|
+
arelle/packages/PackageConst.py,sha256=iIIF-Ic8zlMPiiCq3PcV57aWci6ispBtilSG4W7ZW4U,121
|
|
222
|
+
arelle/packages/PackageType.py,sha256=2s29OWZ-XpKW1bPJ1kVBcpKMDBr9gzLe25Cukg-YTEI,203
|
|
223
|
+
arelle/packages/PackageUtils.py,sha256=uraFfkyYQVlY8YdK4j-HgxhkIAOsEaU5Mk4To0ymKxE,575
|
|
224
|
+
arelle/packages/PackageValidation.py,sha256=y0J6EAR5O8fF51vIrj-2Ur42TObIMvHVFtPXTR-GGOc,7408
|
|
225
|
+
arelle/packages/report/DetectReportPackage.py,sha256=AemOF0eDbnCR3n6cNTWDb93FttQ18s3jsNQuA-37zM4,305
|
|
226
|
+
arelle/packages/report/ReportPackage.py,sha256=zsA-0gu1bfu4LeknQFC0dZpRT1R6vn-M1fAfXZ5BTnI,10114
|
|
227
|
+
arelle/packages/report/ReportPackageConst.py,sha256=rTs-fV0BztXo_NleIIyN2Y8mpmC_r3eSzUxeZbvSiB8,2612
|
|
228
|
+
arelle/packages/report/ReportPackageValidator.py,sha256=3Ur_CXUtCPtXzUgDi9t3VI3vcew0I9pq2B-cn_rIkX4,10322
|
|
229
|
+
arelle/plugin/CacheBuilder.py,sha256=-aDFD3rx83glOprQYO-8gsaIEXcdwB6PFfIq7jy20lo,4489
|
|
230
|
+
arelle/plugin/EdgarRendererAllReports.py,sha256=V3AeDj29U1XbnFGUO30kAvZtWzDH5G-teyzoJE0HDU0,5031
|
|
231
|
+
arelle/plugin/SECCorrespondenceLoader.py,sha256=dX3k4uI5SOKR-8zpv1Xk4X34eDQMPaWFS8R2wf8WTNs,9561
|
|
232
|
+
arelle/plugin/TDnetLoader.py,sha256=iuvp5HsSbqJHoy3XBV2Zf1m2bow2ZR47obGw3QyH67Q,9208
|
|
233
|
+
arelle/plugin/UKCompaniesHouseLoader.py,sha256=XDqt5KM_uv2gZVn8d0Kw18wbzhZEkagKirnDz1fSBGg,4682
|
|
234
|
+
arelle/plugin/formulaLoader.py,sha256=_pPZQPAZeNjGj85rvH7QRl4gEjYD7Yhxl1JhuV9wOoE,101795
|
|
235
|
+
arelle/plugin/formulaSaver.py,sha256=STlKyDA-pVUxZoEW57MSu74RdpyHVTxaHvOZyOt0cyg,31385
|
|
236
|
+
arelle/plugin/formulaXPathChecker.py,sha256=sEEeLHx17XSj8eOgFdzYLBp9ZFk2UUYLOEKtaF_pq34,18795
|
|
237
|
+
arelle/plugin/functionsMath.py,sha256=Z8N7ok3w1aOusCQA9QvqYwQ8W1j80bb-_4lVclBnNQM,9037
|
|
238
|
+
arelle/plugin/inlineXbrlDocumentSet.py,sha256=mG7BVPblkm6A81sAKR8NxjlNDTqlpKoErJTHn7lw1tk,55712
|
|
239
|
+
arelle/plugin/loadFromExcel.py,sha256=galvvaj9jTKMMRUasCSh1SQnCCBzoN_HEpYWv0fmUdM,124407
|
|
240
|
+
arelle/plugin/loadFromOIM.py,sha256=dJHnX56bmuY40f6vRMsQ7pJmIWcB5N_3jmYWGGnZSdM,903
|
|
241
|
+
arelle/plugin/profileCmdLine.py,sha256=uLL0fGshpiwtzyLKAtW0WuXAvcRtZgxQG6swM0e4BHA,2370
|
|
242
|
+
arelle/plugin/profileFormula.py,sha256=PK273bQpYO-87QMFpBVQmnqGKfjDElIXPhAwc8Nyp04,5548
|
|
243
|
+
arelle/plugin/saveCHComponentFile.py,sha256=phW-n96P0BWONLqX3wBcuNcDa_IQ8QVfFWKL9NRrh7k,7242
|
|
244
|
+
arelle/plugin/saveDTS.py,sha256=D8hfFiM9Gc9LE7ZV0-pDvOHeU7Y5ebOzZx_nXzoZrl8,3216
|
|
245
|
+
arelle/plugin/saveHtmlEBAtables.py,sha256=OITN4ftI_atUO5NvrDJDKUc0CAk67GY68Jl16xDBXiI,10961
|
|
246
|
+
arelle/plugin/saveLoadableExcel.py,sha256=ZPYB6injFabav0dRzgS7adCFzfHkwtftjl3PfBjijuU,20539
|
|
247
|
+
arelle/plugin/saveLoadableOIM.py,sha256=lJ2qZ6ZMxCCAkz9wY0cucOhk8wTZulNlSlXH3qCKy2Q,40633
|
|
248
|
+
arelle/plugin/saveOIMTaxonomy.py,sha256=QatA_UTM6U3e72EGi8fETFIbhwfScS2WDzEeHHsas_4,15073
|
|
249
|
+
arelle/plugin/saveSKOS.py,sha256=7Z1Qedf83zMo9EbigKkxNpiMjzkTYQvLEnwWMObLc1Y,12465
|
|
250
|
+
arelle/plugin/saveSampleInstance.py,sha256=w66Nd4He8yIK4Il_M9qnelpeUJ_6cBBe5q01DanOxEA,23823
|
|
251
|
+
arelle/plugin/streamingExtensions.py,sha256=9W4iQ1u8LFn7-ZEfbqBtuwKiZj-aq8FUXNmj5VawRXQ,47619
|
|
252
|
+
arelle/plugin/systemInfo.py,sha256=Rv_9HmDwkswwBmhxrkz8uAL65J332r-QItTYMSz2Zbc,1641
|
|
253
|
+
arelle/plugin/unpackSecEisFile.py,sha256=TVdYUKhgAZ0145anRi6kBesOxPJEvC5YROO1j-hcuwU,2631
|
|
254
|
+
arelle/plugin/xuleSaver.py,sha256=3eNZAxziFos0YrC5NWezFPsIxN7Ex8jb-CaOVTd8Gw4,30073
|
|
255
|
+
arelle/plugin/OimTaxonomy/ModelValueMore.py,sha256=tjISOQby294o_N-PMv-GcuKSo-lc2o-hWuRZW6tDegU,637
|
|
256
|
+
arelle/plugin/OimTaxonomy/ValidateDTS.py,sha256=LTI_pTeyK7FLNi560vmZPkPGT8HmGhcalnKiO5T8ccI,32081
|
|
257
|
+
arelle/plugin/OimTaxonomy/ViewXbrlTxmyObj.py,sha256=zIe7dXf5bkY_wdzkS_lWrx31cDjklNiQBBQ44T8_SQo,11147
|
|
258
|
+
arelle/plugin/OimTaxonomy/XbrlAbstract.py,sha256=KCh7IpmjDRA9Qx-XA7DEfL2f-GYLSAzjxpCCZ7YuqwM,781
|
|
259
|
+
arelle/plugin/OimTaxonomy/XbrlConcept.py,sha256=2hPAueqEKUxk9gWY-b2iVjGDg_PEpgk50qGEjLsLIyo,5412
|
|
260
|
+
arelle/plugin/OimTaxonomy/XbrlConst.py,sha256=3w4UHM0IPYBO9xsaO_ULnVUYxqyaGUqzlhkVO6GVlEA,7376
|
|
261
|
+
arelle/plugin/OimTaxonomy/XbrlCube.py,sha256=ddvSiv-zbDOjUIdYrh1xLwDJzq9UJNmAgIN8jVDFklA,10434
|
|
262
|
+
arelle/plugin/OimTaxonomy/XbrlDimension.py,sha256=lUMY7x3ERACmgekwW5grHYMyIE7s0XzBhgfbSJFsPeM,4804
|
|
263
|
+
arelle/plugin/OimTaxonomy/XbrlDts.py,sha256=lz8buLWemPW6jz5m_B-cKh2XvmNoPQRsHBw6qxRjYYg,7581
|
|
264
|
+
arelle/plugin/OimTaxonomy/XbrlEntity.py,sha256=UZRWqIvj1JkixbwN_H5W1cy02r6st-s6y_X2MENl2pg,796
|
|
265
|
+
arelle/plugin/OimTaxonomy/XbrlGroup.py,sha256=hxPUXNN5kY-O3siVInfIp1KPT1v5oRiERi4vOT_tfs0,1420
|
|
266
|
+
arelle/plugin/OimTaxonomy/XbrlImportedTaxonomy.py,sha256=CO3nN3W3NC_0mAgq-wsoZCagz-sfbdM--YIRe_w-bvY,2456
|
|
267
|
+
arelle/plugin/OimTaxonomy/XbrlLabel.py,sha256=5hqxnXf1d12HrPwQ2ppDJzRIJYq6WOtT7Upe4N6ihNo,1876
|
|
268
|
+
arelle/plugin/OimTaxonomy/XbrlNetwork.py,sha256=vDuRaDJc0fJaiolDY4NjcmxeUBdDbVaO3V_tr2QKqsw,7509
|
|
269
|
+
arelle/plugin/OimTaxonomy/XbrlProperty.py,sha256=MBAIg0gIwGSGXQr980mX7_yDYrv0RdaWjvDqD1w-HXY,2013
|
|
270
|
+
arelle/plugin/OimTaxonomy/XbrlReference.py,sha256=X6MduupPkeIXyge_boUs2o9dMQ3NT7cj0VCfAS5z7s4,2395
|
|
271
|
+
arelle/plugin/OimTaxonomy/XbrlReport.py,sha256=QAJlHShRTCfGcc0chgbEFCQfIwfok2xKRK2WixtKUMY,1398
|
|
272
|
+
arelle/plugin/OimTaxonomy/XbrlTableTemplate.py,sha256=cCIMStv-F6pkliBIBaKFfUsQMdW4B-CEphMVRK68Flk,3085
|
|
273
|
+
arelle/plugin/OimTaxonomy/XbrlTaxonomy.py,sha256=JxucxkZbl7VKhWXvQV7B9mkbXbc-GSvZs_qBnK_xt9M,6846
|
|
274
|
+
arelle/plugin/OimTaxonomy/XbrlTaxonomyObject.py,sha256=UojOSnsIL3XUVEcngm-dvzYl6uXPLXUoJwgXY_HjRzo,7267
|
|
275
|
+
arelle/plugin/OimTaxonomy/XbrlTransform.py,sha256=MrLWk77u3Gn1GUkwj3i3S3exTFWE0Ls3z0tfCM6sTIA,726
|
|
276
|
+
arelle/plugin/OimTaxonomy/XbrlTypes.py,sha256=RIY0Ox2E2Md8RxNizdVwQl5f27iTWSh7m_ExUTdoRA4,820
|
|
277
|
+
arelle/plugin/OimTaxonomy/XbrlUnit.py,sha256=z9HvsdKohrBOacHdNscVWqHRuB67qG722wsIYa7TKTk,1157
|
|
278
|
+
arelle/plugin/OimTaxonomy/__init__.py,sha256=8R3Civ-_vJYSMU9rep8LtIvuJvSANsbiMTNyYIYjJH0,62156
|
|
279
|
+
arelle/plugin/OimTaxonomy/resources/iso4217.json,sha256=3a0VvUqH8EtsLImxIzZU6Ta-VXbXyuhCp1Hdpja6UD4,149911
|
|
280
|
+
arelle/plugin/OimTaxonomy/resources/oim-taxonomy-schema.json,sha256=8-OIssr1XEEecJAnDLvtFQy8dcCAHfyuJ_8eBktwBDQ,42637
|
|
281
|
+
arelle/plugin/OimTaxonomy/resources/ref.json,sha256=uSqnsW-YZTJSejg9XGxwoU1Wwt5UMljVDUi7hCDO_mw,11791
|
|
282
|
+
arelle/plugin/OimTaxonomy/resources/transform-types.json,sha256=3Ox03W2GbFviV74Q0xZLpYlWh5qsnBiHZAOZDjzzBA4,122515
|
|
283
|
+
arelle/plugin/OimTaxonomy/resources/types.json,sha256=mb1ufG9iWGnp3vA3Z-s_7M6GzfhiD7rwWnm6OnIsAx0,33269
|
|
284
|
+
arelle/plugin/OimTaxonomy/resources/utr.json,sha256=Q02MTZQcA3C4F_iNPVPY2XrwcCKUk4d9301KPTJINqs,104411
|
|
285
|
+
arelle/plugin/OimTaxonomy/resources/xbrlSpec.json,sha256=MaCnpjXtz3zhWE7SoHo-3NHDL1xnHLqO5dA_Jn8Nzow,48207
|
|
286
|
+
arelle/plugin/internet/proxyNTLM/HTTPNtlmAuthHandler.py,sha256=0CaCyvsLvCn21asDzq86XvLcr-nIMDQGRJtSuDzClVg,6684
|
|
287
|
+
arelle/plugin/internet/proxyNTLM/U32.py,sha256=ZxylUZkjUsY9JYD3cRoxOQE272lHd5AnIxQ5OOjSjdo,2920
|
|
288
|
+
arelle/plugin/internet/proxyNTLM/__init__.py,sha256=qaSHM1-RiitF-wbzbcFC83oWRhWt8b4KT9JmVZzTVts,1404
|
|
289
|
+
arelle/plugin/internet/proxyNTLM/des.py,sha256=PwroRH2KY_JYkM2W9sXBLcYxwPFj1DM121afYzLehZw,3177
|
|
290
|
+
arelle/plugin/internet/proxyNTLM/des_c.py,sha256=aOUXGPAFKAZuZaSlC_P0lMoUASB3mkqBVlhkSLAWiOg,9312
|
|
291
|
+
arelle/plugin/internet/proxyNTLM/des_data.py,sha256=WQcgMwwBQoT5U2TTTVV4JeOPe420yCgJFfC6dV0Vz2E,18676
|
|
292
|
+
arelle/plugin/internet/proxyNTLM/lgpl-3.0-standalone.html,sha256=_Mg2XLG4-VlhZSPZVYe8CjveJWcQ5R4HHFMg4JdgmD8,8640
|
|
293
|
+
arelle/plugin/internet/proxyNTLM/ntlm.py,sha256=cBQBPu7ljnhp8yyz_hl78HdvbjAAl_T991NQ5OW4v0M,22226
|
|
294
|
+
arelle/plugin/logging/dpmSignature.py,sha256=-mwceLsdMgXYcVvaQsITn8bshtZzNP4k2ERX5tpPiU0,2036
|
|
295
|
+
arelle/plugin/logging/dqcParameters.py,sha256=KSn3r7gGp02d7uRM_3GivTYZrRFEMtGDiVqWILY5McI,11292
|
|
296
|
+
arelle/plugin/logging/saveMessages.py,sha256=h6XNFJZq3q1WLn_Y3_DI-l8Qn_-IZa2JBk-efrHKycA,8255
|
|
297
|
+
arelle/plugin/security/cryptAES_CBC.py,sha256=S94AdMqu4jdLrprl0FLT2w7tG6IgxTGxRfRuYR9x43w,6078
|
|
298
|
+
arelle/plugin/security/cryptAES_EAX.py,sha256=TAL_kpu_2WMMpHOWrxA8Y7UuTAcbbTY6DK0VYQZGWF0,5952
|
|
299
|
+
arelle/plugin/transforms/tester.py,sha256=57relfBci8FttRSxHtdUaxlaQPrBhJglssImDecQPow,12501
|
|
300
|
+
arelle/plugin/validate/CIPC/Const.py,sha256=GSiODyiK8V9P-pV0_DPEKYAhe2wqgcYJP2Qt6xaIyA4,11425
|
|
301
|
+
arelle/plugin/validate/CIPC/__init__.py,sha256=R6KVETICUpfW--TvVkFNDo-67Kq_KpWz3my2ECkiKxM,14699
|
|
302
|
+
arelle/plugin/validate/CIPC/config.xml,sha256=4pyn40JAvQQeoRC8I046gZ4ZcmUnekX3TNfYpC5yonI,667
|
|
303
|
+
arelle/plugin/validate/DBA/DisclosureSystems.py,sha256=Dp_r-Pa3tahtCfDha2Zc97N0iyrY4Zagb8w2D9ErILg,294
|
|
304
|
+
arelle/plugin/validate/DBA/PluginValidationDataExtension.py,sha256=F_fKc811Dq7l7hH2zoC67iI3wOmZKqtEBgufoYKyhyc,7210
|
|
305
|
+
arelle/plugin/validate/DBA/ValidationPluginExtension.py,sha256=UygF7oELnPJcP6Ta0ncy3dy5fnJq-Mz6N2-gEaVhigo,48690
|
|
306
|
+
arelle/plugin/validate/DBA/__init__.py,sha256=KhmlUkqgsRtEXpu5DZBXFzv43nUTvi-0sdDNRfw5Up4,1564
|
|
307
|
+
arelle/plugin/validate/DBA/resources/config.xml,sha256=KHfo7SrjzmjHbfwIJBmESvOOjdIv4Av26BCcZxfn3Pg,875
|
|
308
|
+
arelle/plugin/validate/DBA/rules/__init__.py,sha256=FdmlqdX7RE5nnN19PU23zLKzDibEm24UU2xurlfFmrw,10404
|
|
309
|
+
arelle/plugin/validate/DBA/rules/fr.py,sha256=IAegA_Fc-Zkjj8qlzFuo_52gNVHW-lAddBFCQw8W8P4,71318
|
|
310
|
+
arelle/plugin/validate/DBA/rules/tc.py,sha256=CXPOGHpab9Y-iV84wDXrsE-rPe_d6Uhw4HjEyTBEzq4,1572
|
|
311
|
+
arelle/plugin/validate/DBA/rules/th.py,sha256=mDrjescz6106jBGjdH6bipqx48BnxcjHSkNL1qQf0QE,6227
|
|
312
|
+
arelle/plugin/validate/DBA/rules/tm.py,sha256=ui9oKBqlAForwkQ9kk9KBiUogTJE5pv1RbIejKASprY,11797
|
|
313
|
+
arelle/plugin/validate/DBA/rules/tr.py,sha256=4TootFjl0HXsKZk1XNBCyj-vnjRs4lg35hfiz_b_4wU,14684
|
|
314
|
+
arelle/plugin/validate/EBA/__init__.py,sha256=x3zXNcdSDJ3kHfL7kMs0Ve0Vs9oWbzNFVf1TK4Avmy8,45924
|
|
315
|
+
arelle/plugin/validate/EBA/config.xml,sha256=37wMVUAObK-XEqakqD8zPNog20emYt4a_yfL1AKubF8,2022
|
|
316
|
+
arelle/plugin/validate/EDINET/Constants.py,sha256=HY3hqaoY_J9q_-letYp-M-dgpDJBJlkxE0_epnaT9h4,10135
|
|
317
|
+
arelle/plugin/validate/EDINET/ContextRequirement.py,sha256=BejN3uz6TCSzR1qfQm-PZMbkhJlgUH9NVrY2Ux-Ph78,5217
|
|
318
|
+
arelle/plugin/validate/EDINET/ControllerPluginData.py,sha256=SGvkou9-lNEdMrlQurCX7zmXDT0yMqjkDvzDPldNFro,12284
|
|
319
|
+
arelle/plugin/validate/EDINET/CoverItemRequirements.py,sha256=1YdzlSgc5MlUGyw81Ipv37CLxsdpSw8CO90snjgqLzw,1852
|
|
320
|
+
arelle/plugin/validate/EDINET/DeiRequirements.py,sha256=ncK5ew66Y1rAsNHAMTHhX4jTrE_XOFGHV5okPB0vEYA,4316
|
|
321
|
+
arelle/plugin/validate/EDINET/DisclosureSystems.py,sha256=3rKG42Eg-17Xx_KXU_V5yHW6I3LTwQunvf4a44C9k_4,36
|
|
322
|
+
arelle/plugin/validate/EDINET/FilingFormat.py,sha256=jGZBn_HYiaYGcakQfATblH3SmALynx7ZBtfX5hLFGKQ,18716
|
|
323
|
+
arelle/plugin/validate/EDINET/FormType.py,sha256=pjTo1_akcMeZldntS81W1hJypehEDjgWPsa2e_4s2xg,4211
|
|
324
|
+
arelle/plugin/validate/EDINET/ManifestInstance.py,sha256=jJKa0gCidGFRxHtRIpiYZ9GR3Yo2wW7moqRYs4dpLg8,10052
|
|
325
|
+
arelle/plugin/validate/EDINET/PluginValidationDataExtension.py,sha256=p_j3KwagHvYVeS6-I2IszHsU7aCgFlaF4VWSHBT-S78,29397
|
|
326
|
+
arelle/plugin/validate/EDINET/ReportFolderType.py,sha256=syolCGoicSsOXWxwpETdCiYx0iWt-PNeHQ5udJRSJs0,4604
|
|
327
|
+
arelle/plugin/validate/EDINET/Statement.py,sha256=twW0Grv4IM_zjCo425YYcdKpPPZqn9t-ROEK2y3AoQ8,9320
|
|
328
|
+
arelle/plugin/validate/EDINET/TableOfContentsBuilder.py,sha256=-TsPfIdtgOCdvUh-H8EZo3B5A63ti7rIDXHCUnt_us8,21760
|
|
329
|
+
arelle/plugin/validate/EDINET/UploadContents.py,sha256=o29mDoX48M3S2jQqrJO4ZaulltAPt4vD-qdsWTMCUPc,1196
|
|
330
|
+
arelle/plugin/validate/EDINET/ValidationPluginExtension.py,sha256=8LNqvXzNaWP54dShEjet5ely4BnM8ByCSyimKpUx3_s,2577
|
|
331
|
+
arelle/plugin/validate/EDINET/__init__.py,sha256=HbRZlsUlH_nIcEWdODPib6yeUpJAAzvMemwi6UzDBoU,3781
|
|
332
|
+
arelle/plugin/validate/EDINET/resources/config.xml,sha256=Occs0dAABndvTbyjWK2sM-qeVMAgLuHhM-EFq-T2jTg,1147
|
|
333
|
+
arelle/plugin/validate/EDINET/resources/cover-item-requirements.json,sha256=K5j2HBF-1y0kazWS4EZWs1KCROaCF9ls3MBzXi7Iex0,46970
|
|
334
|
+
arelle/plugin/validate/EDINET/resources/dei-requirements.csv,sha256=8ILKNn8bXbcgG9V0lc8mxorKDKEjJQWLdBQRMvbqtkI,6518
|
|
335
|
+
arelle/plugin/validate/EDINET/resources/edinet-taxonomies.xml,sha256=YXaPu-60CI2s0S-vXcLDEXCrrukEAAHyCEk0QRhrYR8,16772
|
|
336
|
+
arelle/plugin/validate/EDINET/rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
|
+
arelle/plugin/validate/EDINET/rules/contexts.py,sha256=1Svq1xkKMVa7rGc6qTj8-uThSFJ7wOINRgI9R4pGfGc,24288
|
|
338
|
+
arelle/plugin/validate/EDINET/rules/edinet.py,sha256=FvrhA_cAgweAkAffXDKGyCbjMcNxiPNsKUY3LGh_z0o,97805
|
|
339
|
+
arelle/plugin/validate/EDINET/rules/frta.py,sha256=wpX5zK0IfVVYZR9ELy2g_Z_F1Jzhwd9gh_KZC5ALkLg,12756
|
|
340
|
+
arelle/plugin/validate/EDINET/rules/gfm.py,sha256=SWiw4olHnrPTjLp733uwhRVF-vpksOpQAy7_xgLbrC4,95880
|
|
341
|
+
arelle/plugin/validate/EDINET/rules/manifests.py,sha256=MoT9R_a4BzuYdQVbF7RC5wz134Ve68svSdJ3NlpO_AU,4026
|
|
342
|
+
arelle/plugin/validate/EDINET/rules/upload.py,sha256=3eA6FfQiGl0K6lVq0dhI1rsRFPf1MXJ9yrb7M9JarNo,54763
|
|
343
|
+
arelle/plugin/validate/ESEF/Const.py,sha256=DdoTZkUBlBpwXd_sWle7NlbivRDHz9rCfWKVfUcy4u4,22748
|
|
344
|
+
arelle/plugin/validate/ESEF/Dimensions.py,sha256=MOJM7vwNPEmV5cu-ZzPrhx3347ZvxgD6643OB2HRnIk,10597
|
|
345
|
+
arelle/plugin/validate/ESEF/Util.py,sha256=QH3btcGqBpr42M7WSKZLSdNXygZaZLfEiEjlxoG21jE,7950
|
|
346
|
+
arelle/plugin/validate/ESEF/__init__.py,sha256=yy6X7Z1lxbnsxuB3Z4XQUtdkkRZMUU3TEAMAKSrVdfA,21005
|
|
347
|
+
arelle/plugin/validate/ESEF/ESEF_2021/DTS.py,sha256=0uVPVysjgJK4yplRUvHO2kZ6M7FC-egIjImN3791koY,26761
|
|
348
|
+
arelle/plugin/validate/ESEF/ESEF_2021/Image.py,sha256=UDGpb2qFjt6J8MTeevlbDQX8D79Hzv3cZoxvkmDtEvE,4857
|
|
349
|
+
arelle/plugin/validate/ESEF/ESEF_2021/ValidateXbrlFinally.py,sha256=xj53y7ScD3Z2H_QD3k7uPSy7frph5SXQkcvsONT6TMI,64004
|
|
350
|
+
arelle/plugin/validate/ESEF/ESEF_2021/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
|
+
arelle/plugin/validate/ESEF/ESEF_Current/DTS.py,sha256=t8eadnO1paPzHcCaEEs67hg17dSPDlGlDbVpHwJF6UA,29818
|
|
352
|
+
arelle/plugin/validate/ESEF/ESEF_Current/ValidateXbrlFinally.py,sha256=Xo00DqQzVL0g5iJFpYQ8QPCjunUFdRg8WdiJfexfGF8,79513
|
|
353
|
+
arelle/plugin/validate/ESEF/ESEF_Current/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
354
|
+
arelle/plugin/validate/ESEF/resources/authority-validations.json,sha256=8Gk5hXL-ya2AdhWYk5LarTxmlqtSzay1prJ_n3_IWnw,19009
|
|
355
|
+
arelle/plugin/validate/ESEF/resources/config.xml,sha256=gcaHhXRHbbxXPAsqwPpZOgyJ6NNbNYsKii_VQV4YAdY,4800
|
|
356
|
+
arelle/plugin/validate/FERC/__init__.py,sha256=rC1OYNBWnoXowEohiR9yagHtAi_NPAlmaahRSQhSdS4,11325
|
|
357
|
+
arelle/plugin/validate/FERC/config.xml,sha256=bn9b8eCqJA1J62rYq1Nz85wJrMGAahVmmnIUQZyerjo,1919
|
|
358
|
+
arelle/plugin/validate/FERC/resources/ferc-utr.xml,sha256=OCRj9IUpdXATCBXKbB71apYx9kxcNtZW-Hq4s-avsRY,2663
|
|
359
|
+
arelle/plugin/validate/NL/DisclosureSystems.py,sha256=urRmYJ8RnGPlTgSVKW7zGN4_4CtL3OVKlcI3LwTpBz4,561
|
|
360
|
+
arelle/plugin/validate/NL/PluginValidationDataExtension.py,sha256=2seCaRKdOxFcfCcigk6njUmSkaWGg8haV4b54AL1hKY,33553
|
|
361
|
+
arelle/plugin/validate/NL/ValidationPluginExtension.py,sha256=oeiHGtCvpF9oCELWV-7Go5Md1UuR8Ogw_GQuySpOcv8,17846
|
|
362
|
+
arelle/plugin/validate/NL/__init__.py,sha256=W-SHohiAWM7Yi77gAbt-D3vvZNAB5s1j16mHCTFta6w,3158
|
|
363
|
+
arelle/plugin/validate/NL/resources/config.xml,sha256=qBE6zywFSmemBSWonuTII5iuOCUlNb1nvkpMbsZb5PM,1853
|
|
364
|
+
arelle/plugin/validate/NL/rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
|
+
arelle/plugin/validate/NL/rules/br_kvk.py,sha256=O_8TlrK5SItLUgLw2qx9LSXh_bPNSPHZ_PJY8Q11MOk,15779
|
|
366
|
+
arelle/plugin/validate/NL/rules/fg_nl.py,sha256=OJF2EYx4KDTdNggHiw5Trq5S5g7WGpbb7YvO6_IrrGU,10704
|
|
367
|
+
arelle/plugin/validate/NL/rules/fr_kvk.py,sha256=kYqXt45S6eM32Yg9ii7pUhOMfJaHurgYqQ73FyQALs8,8171
|
|
368
|
+
arelle/plugin/validate/NL/rules/fr_nl.py,sha256=ZoyiRsTyqTNZB_VgcdabmeNi6v7DY6jMxzaP6ppLtIU,31387
|
|
369
|
+
arelle/plugin/validate/NL/rules/nl_kvk.py,sha256=hysgvKFIOeTHJedadAITp4Ju8GgU93OXp1yqr9TA9wg,90032
|
|
370
|
+
arelle/plugin/validate/ROS/DisclosureSystems.py,sha256=rJ81mwQDYTi6JecFZ_zhqjjz3VNQRgjHNSh0wcQWAQE,18
|
|
371
|
+
arelle/plugin/validate/ROS/PluginValidationDataExtension.py,sha256=9_dxO20B3TRVElv0jZ_YW7tZbG3HihzRowg7W-397is,4379
|
|
372
|
+
arelle/plugin/validate/ROS/ValidationPluginExtension.py,sha256=U5EtwSW3eGvvvgVk9JgcUueJn604a4J6C2Fsk_CHQy0,874
|
|
373
|
+
arelle/plugin/validate/ROS/__init__.py,sha256=KuWg1MHVzA2S6eaHFptvP3Vu_5gQWf3OUYC97clB7zI,2075
|
|
374
|
+
arelle/plugin/validate/ROS/config.xml,sha256=ZCpCFgr1ZAjoUuhb1eRpDnmKrae-sXA9yl6SOWnrfm8,654
|
|
375
|
+
arelle/plugin/validate/ROS/resources/config.xml,sha256=HXWume5HlrAqOx5AtiWWqgADbRatA8YSfm_JvZGwdgQ,657
|
|
376
|
+
arelle/plugin/validate/ROS/rules/__init__.py,sha256=wW7BUAIb7sRkOxC1Amc_ZKrz03FM-Qh1TyZe6wxYaAU,1567
|
|
377
|
+
arelle/plugin/validate/ROS/rules/ros.py,sha256=CRZkZfsKe4y1B-PDkazQ_cD5LRZBk1GJjTscCZXXYUI,21173
|
|
378
|
+
arelle/plugin/validate/UK/ValidateUK.py,sha256=UwNR3mhFzWNn6RKLSiC7j3LlMlConOx-9gWGovKamHA,61035
|
|
379
|
+
arelle/plugin/validate/UK/__init__.py,sha256=tKAcsYzwopWbhY863sZE7kmOEaQbAGSABcAouhzTPcc,26589
|
|
380
|
+
arelle/plugin/validate/UK/config.xml,sha256=mUFhWDfBzGTn7v0ZSmf4HaweQTMJh_4ZcJmD9mzCHrA,1547
|
|
381
|
+
arelle/plugin/validate/UK/consistencyChecksByName.json,sha256=BgB9YAWzmcsX-_rU74RBkABwEsS75vrMlwBHsYCz2R0,25247
|
|
382
|
+
arelle/plugin/validate/UK/hmrc-taxonomies.xml,sha256=3lR-wb2sooAddQkVqqRzG_VqLuHq_MQ8kIaXAQs1KVk,9623
|
|
383
|
+
arelle/plugin/xbrlDB/DialogRssWatchExtender.py,sha256=Y8IjFSPdzH9NckJSSK74b477K35MGtuIyVyhqLVZbMY,1894
|
|
384
|
+
arelle/plugin/xbrlDB/SqlDb.py,sha256=w9fcRLmry8QpOiixX7-MiswJqrh2KPyIHLX45uK1L60,56461
|
|
385
|
+
arelle/plugin/xbrlDB/XbrlDpmSqlDB.py,sha256=jtU-Bnm8n6x45L37w71pRHp7S_whWNObrtQNrhTXM54,78262
|
|
386
|
+
arelle/plugin/xbrlDB/XbrlOpenSqlDB.py,sha256=K8wLuaSx27BpxOZtLo6ZBkAFf43ZgR1Tlk4QKn00VPg,78281
|
|
387
|
+
arelle/plugin/xbrlDB/XbrlPublicPostgresDB.py,sha256=iFec4qVrEztJ9H_CAYd-NmK-WBeyDCfWY_w6IBnpaaM,36202
|
|
388
|
+
arelle/plugin/xbrlDB/XbrlSemanticGraphDB.py,sha256=pRH0Mw2wtx90Q3dY9-RpB1uET1LA0MnnLDy8KHlaUG4,64539
|
|
389
|
+
arelle/plugin/xbrlDB/XbrlSemanticJsonDB.py,sha256=Yxbhmwp_JTXv_fh3nN7DaiYpZ_BNo-_t58qqmLnKGVg,48568
|
|
390
|
+
arelle/plugin/xbrlDB/XbrlSemanticRdfDB.py,sha256=3EofoGtR6S6nBGOfU-vMZIebgvplD4YMjMBsfchfTWM,55074
|
|
391
|
+
arelle/plugin/xbrlDB/XbrlSemanticSqlDB.py,sha256=uMb36tMkL2UnFeFEX_Yp1AWgGzAMgRvo7SfAS5BQgfg,67782
|
|
392
|
+
arelle/plugin/xbrlDB/__init__.py,sha256=N7frVIz5c71uID3wRmg7cesTNXjTEmin-41fo9ISY4c,17117
|
|
393
|
+
arelle/plugin/xbrlDB/entityInformation.py,sha256=TFHHpCdSokQk37eLnmak8ju7YfoaArtCI3-Rtem8OM8,7853
|
|
394
|
+
arelle/plugin/xbrlDB/primaryDocumentFacts.py,sha256=eoUBCjhVdM5HFH9R8uKrx51mg0VbHV_09X25idnD8l8,8208
|
|
395
|
+
arelle/plugin/xbrlDB/tableFacts.py,sha256=i0t3ngBfGudc8QWbCOIad17lxi-fohPT1Mim6OzyK5o,2756
|
|
396
|
+
arelle/plugin/xbrlDB/ext/china.py,sha256=uiCicQZPKKXcQREb_daAUDdekXjEcO4tufLu2EsJrzk,4216
|
|
397
|
+
arelle/plugin/xbrlDB/ext/edgar.py,sha256=Pwcp5Jwor3JN2vIiC1EMxjCSgCTbO8FKsa2aX3wGfhM,12193
|
|
398
|
+
arelle/plugin/xbrlDB/ext/xdc.py,sha256=0qYWRf1rwk6WtNzQModl9MHRtBeRDrzsjmW8BRhnqSc,7482
|
|
399
|
+
arelle/plugin/xbrlDB/sql/open/xbrlOpenPostgresDB.ddl,sha256=cm15rXZwLyV9v5DCpV-njuH9Mcw5WVcj7Pe6EhOgo_E,15891
|
|
400
|
+
arelle/plugin/xbrlDB/sql/open/ext/chinaPostgresDB.ddl,sha256=5e4T2iH1bxFJfw7USWQY9lN4zVzhrVHjLzYMXrFUiIE,943
|
|
401
|
+
arelle/plugin/xbrlDB/sql/open/ext/edgarPostgresDB.ddl,sha256=76KomipBhHpKLYQSTRJMnaXli5GFbg1Kze2gi7A7TsA,714004
|
|
402
|
+
arelle/plugin/xbrlDB/sql/open/ext/xdcPostgresDB.ddl,sha256=V7GBAq08GhGSa4W64ek473A7TTlq6BlSKHBH6gdmjBo,7320
|
|
403
|
+
arelle/plugin/xbrlDB/sql/open2/xbrlOpen2PostgresDB.ddl,sha256=-kv-XIgtK3S9rxfRAOCFaJTFYfoNFp_dgJUp-wSt6sk,728541
|
|
404
|
+
arelle/plugin/xbrlDB/sql/public/xbrlPublicPostgresDB.ddl,sha256=mMFlpBNP2HLjAWmK9_ZSC2yrqU--Cm9flcJEJxKCGPk,963416
|
|
405
|
+
arelle/plugin/xbrlDB/sql/semantic/secDatabaseModelViews.sql,sha256=9wcug13VqVGm0XlzWFW2puQezydmdDEfQqJ-DSOeEMU,4209
|
|
406
|
+
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticColumnComments.ddl,sha256=BOXxBFOdwFiqKW01r64GbcOptO_QlJRuYOSIYLu1Arw,21988
|
|
407
|
+
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticMSSqlDB.sql,sha256=9ZqL6qjg3H0_W-zBQwrYkyTADB3mZK6fTYveSfCliF8,728214
|
|
408
|
+
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticMySqlDB.ddl,sha256=i4Nwv9-hc5ePDTH7bR41r_A38DeW48f9c_Ftc4rEAJg,729124
|
|
409
|
+
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticOracleDB.sql,sha256=4dtR-23PvsOHCCSuZknmQLLx1ld0MTk3ydxqtzRs09I,1056221
|
|
410
|
+
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticPostgresDB.ddl,sha256=DYBE4m2gSp-2ktziN__TIj_UtJVeLy1NxteYzotxxT4,727913
|
|
411
|
+
arelle/plugin/xbrlDB/sql/semantic/xbrlSemanticSQLiteDB.ddl,sha256=TRb4zLoXUGKkBU1ZR5KCpMLBpujtNiL_WDdnv4DfBL0,726301
|
|
412
|
+
arelle/rendering/RenderingEvaluator.py,sha256=suQhQsx5KD1QJMGxIiPXGbUOKQMTwg1oSSJlgl8J8kk,17781
|
|
413
|
+
arelle/rendering/RenderingLayout.py,sha256=XSrKiHOBZL-z4qvChpepjh3loxz8G84MCBRXozPxGrE,31082
|
|
414
|
+
arelle/rendering/RenderingResolution.py,sha256=dKz6pxjnGeMHIeX2gcAJHlMjuVp5Vu4P1AHQizg_dKA,54437
|
|
415
|
+
arelle/resources/cache/http/www.eurofiling.info/eu/fr/xbrl/ext/filing-indicators.xsd,sha256=BfDzYGRz5zofzjnvVP_ZdTVtddxKdsrYfjZ3dK_hJIQ,1243
|
|
416
|
+
arelle/resources/cache/http/www.w3.org/2001/XMLSchema.xsd,sha256=52ehWcF5vW5NwrrCpjpi9Qy9An7BnWtcyescLzPgyy4,87677
|
|
417
|
+
arelle/resources/cache/http/www.w3.org/2001/xml.xsd,sha256=YZYPsxMeOAIsqtU2Di8zozgleKs8gM1YvXQyDt5hsgw,8836
|
|
418
|
+
arelle/resources/cache/http/www.w3.org/2001/03/xml.xsd,sha256=DtlNtEQCUm56aDQk0L1LZeW8UOZdm5p2KxGzC64G0Mg,4726
|
|
419
|
+
arelle/resources/cache/http/www.xbrl.org/2003/xbrl-instance-2003-12-31.xsd,sha256=XbrZTOz0KRi5dkSajhy4ANV-lkQqnQ9cAMp35NqDGCc,23637
|
|
420
|
+
arelle/resources/cache/http/www.xbrl.org/2003/xbrl-linkbase-2003-12-31.xsd,sha256=-QbNMLxHqBvRyX4kRH9JF7Ies9iotPxSASnOJTSsW8o,16088
|
|
421
|
+
arelle/resources/cache/http/www.xbrl.org/2003/xl-2003-12-31.xsd,sha256=4osJZdNPSHmDO0M6YtDR6G6LHyLmt2Qrq4YZg_W7WBg,8734
|
|
422
|
+
arelle/resources/cache/http/www.xbrl.org/2003/xlink-2003-12-31.xsd,sha256=X_qMt0fM0R4NZCDPVmi2Djt6ZOIJFdDhd05VWdM0OXE,3350
|
|
423
|
+
arelle/resources/cache/http/www.xbrl.org/2004/ref-2004-08-10.xsd,sha256=7IkBQO58m2ZN1maA2s5VNfYddivHQCImp1iQBmM5gWY,6752
|
|
424
|
+
arelle/resources/cache/http/www.xbrl.org/2005/xbrldt-2005.xsd,sha256=yvhQ8I10wIfHlG5uptn7XA6fjt9jv2Ocy5FD534zkMc,3929
|
|
425
|
+
arelle/resources/cache/http/www.xbrl.org/2006/ref-2006-02-27.xsd,sha256=-uAUSkHt90HDt0yGaYj2TSRxTbpMqCIljeqLSQt5BLc,6544
|
|
426
|
+
arelle/resources/cache/http/www.xbrl.org/2006/xbrldi-2006.xsd,sha256=A7uwqN92ybbDCZkceomP9nrlNW0Sx0yoJPXC3ck_EEU,1767
|
|
427
|
+
arelle/resources/cache/http/www.xbrl.org/2008/boolean-filter.xsd,sha256=YMfLarorpuPVYFTroCAEn43055De8_7xLrvCYHVslVM,2242
|
|
428
|
+
arelle/resources/cache/http/www.xbrl.org/2008/concept-filter.xsd,sha256=v9qEZINS-Iduef6equzYcEZQwC9WBJJNkU7A9WliZ1k,4901
|
|
429
|
+
arelle/resources/cache/http/www.xbrl.org/2008/conformance.xsd,sha256=Oh-wc6r0Fn-Fej5JXL6hriWjvBWYkrL6kznFfzDsndI,5256
|
|
430
|
+
arelle/resources/cache/http/www.xbrl.org/2008/conformanceFunction.xsd,sha256=bNC9Q7m0-tbwZkYrbAmFU_7poiHzQgRNUc9lI4m1gP8,2386
|
|
431
|
+
arelle/resources/cache/http/www.xbrl.org/2008/consistency-assertion.xsd,sha256=70oaLPMbrkAe25Y9K1QHrxnv9em-QIiij-KEI7W2fT8,3131
|
|
432
|
+
arelle/resources/cache/http/www.xbrl.org/2008/dimension-filter.xsd,sha256=SCiYVFvvIt1v6k1R0PARBaZ0qlZTfgGuP9g22ftpf8g,3596
|
|
433
|
+
arelle/resources/cache/http/www.xbrl.org/2008/entity-filter.xsd,sha256=JJxWnR5xXttyDCOaw6WKx28xtMBRpiRpcT2esBUqUQ8,3669
|
|
434
|
+
arelle/resources/cache/http/www.xbrl.org/2008/existence-assertion.xsd,sha256=zudYjwF9Uee7rRnaeOjf7nPBCLDmF4lMR27wzKXo-LA,2156
|
|
435
|
+
arelle/resources/cache/http/www.xbrl.org/2008/formula.xsd,sha256=64jiYnKcChKLDyGLq9sJeLxZoRzXfTO5NsRFzu_JWKg,9069
|
|
436
|
+
arelle/resources/cache/http/www.xbrl.org/2008/function.xsd,sha256=43OwVLMTX3RS4_aWkkBGrSNdImZU8Wn4m1QiYg8eRyQ,4582
|
|
437
|
+
arelle/resources/cache/http/www.xbrl.org/2008/general-filter.xsd,sha256=cok1w2Gmdv5I91HKYWgFRvJGYPH8PXzY3sMfBEsjxMA,1929
|
|
438
|
+
arelle/resources/cache/http/www.xbrl.org/2008/generic-label.xsd,sha256=o-MG38po72fpK96gSbfWj3zUPGPntrHg7U48Ihbpuso,3242
|
|
439
|
+
arelle/resources/cache/http/www.xbrl.org/2008/generic-link.xsd,sha256=_g1lNCuJt2C7YrPL6mqMEfjnOBlw4Yei2ImE6jMgiT0,3039
|
|
440
|
+
arelle/resources/cache/http/www.xbrl.org/2008/generic-reference.xsd,sha256=vlGbQDfLyPLyG7bDzRuPYpei5nh2K9YMgfA_b5deZ10,2658
|
|
441
|
+
arelle/resources/cache/http/www.xbrl.org/2008/match-filter.xsd,sha256=Z9eDcW-H2inuVnHLmn9YOTN3yZivKXSW1fdmWSW0FB4,3549
|
|
442
|
+
arelle/resources/cache/http/www.xbrl.org/2008/period-filter.xsd,sha256=Ye8EsH6B0YeBUASLq3SccZxT4J2gh3D5JT76qBehwnU,3447
|
|
443
|
+
arelle/resources/cache/http/www.xbrl.org/2008/registry.xsd,sha256=4d2VHPMJnUg03cK9rmJqy2gIEDBM2V6xaxnji24g8QQ,5897
|
|
444
|
+
arelle/resources/cache/http/www.xbrl.org/2008/relative-filter.xsd,sha256=XVbUP4cVk0C0Y2rZ-2T2_9YyNgUMyOAGy4CKNeD107o,1940
|
|
445
|
+
arelle/resources/cache/http/www.xbrl.org/2008/segment-scenario-filter.xsd,sha256=bkuqXwmLebfyi60BoeKXPzYna0SXDuSi2rFf7FvwZgc,2094
|
|
446
|
+
arelle/resources/cache/http/www.xbrl.org/2008/tuple-filter.xsd,sha256=WmM1ZucS1_CTDyYsCqvwGO0SJQpO9dog3XWoE-itdgk,3354
|
|
447
|
+
arelle/resources/cache/http/www.xbrl.org/2008/unit-filter.xsd,sha256=uLv3Jx303OqxDVHkj3txZCf3ZmBvfgZpyDAayZ_c1e0,2530
|
|
448
|
+
arelle/resources/cache/http/www.xbrl.org/2008/validation.xsd,sha256=7Lka4Ayw9Y57L3Gc0J-rZwn9qyM9ddCkFxwx_Xe5E-M,3199
|
|
449
|
+
arelle/resources/cache/http/www.xbrl.org/2008/value-assertion.xsd,sha256=pS0MBnu1xft69rf1ZX_RE6MDpyJBQ-aXsUjz4oL5oFs,2123
|
|
450
|
+
arelle/resources/cache/http/www.xbrl.org/2008/value-filter.xsd,sha256=Ac3LNqvUHr3p1M1DnjfLN4w3niTSlXqntTth3YZRnW4,2049
|
|
451
|
+
arelle/resources/cache/http/www.xbrl.org/2008/variable.xsd,sha256=9uILdQTebr9IjuQGnPvIMKDr5ARUuOYy0pakY8cz5F4,9123
|
|
452
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-definitions.xsd,sha256=lyDJ4H6bYP5wJJl-CUsOklHibduqNVjAWWUIc3593Yc,9733
|
|
453
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-model.xsd,sha256=DKwy7F7aEBXuP-4D9U48Fx3NumRFKKqlqjiGjtlvrjA,20673
|
|
454
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0-modules.xsd,sha256=3sAy23xb4YjEMej82LIbeg_aZqlJmxoTTPLV2Nxm77o,19996
|
|
455
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml-inlinexbrl-1_0.xsd,sha256=nLXL1I_XH2Kvqskf7IIL6C-6gkuwGv-ovXosfZkfASE,1331
|
|
456
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xbrl-instance-2003-12-31-ixmod.xsd,sha256=_n2o9qGEOVjJxuftFTF4QN1OrGDfcS0WiRmcrwpHXuM,23219
|
|
457
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xbrl-linkbase-2003-12-31-ixmod.xsd,sha256=U76p0zjz1zWOp1RjJ2pkOYuxC6gRgKqyx4H73wTDD5s,15818
|
|
458
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xl-2003-12-31.xsd,sha256=ruMHMAYKPTP_OyTNABj7QDTvx19LNibSf20qnKYoDlE,8449
|
|
459
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xbrl/xlink-2003-12-31.xsd,sha256=QgVVQdkl-iGw4QxvaNXEDQa3SQskQVtZ0Nx97QLmj4g,3217
|
|
460
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xframes-1.xsd,sha256=fQG4qelKr77tgFzEaLDSRUWDMEcq6k36MKtHUZkeyDs,5256
|
|
461
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-applet-1.xsd,sha256=Ps5LTCzjuKMv_0GzZQWXOQyLY25D2c_SiePx5lRGNeo,2373
|
|
462
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-attribs-1.xsd,sha256=NzV1euzz7MyMS5jOQp1VS9ZTVTycbPstZ8lcLLDPV4c,3090
|
|
463
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-base-1.xsd,sha256=aDqmImqB1oMGeYyg-8KjllfeOA2gvfE6icluXLKrb1U,1370
|
|
464
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic-form-1.xsd,sha256=7CF5d2UorEtf3ZVDVX9SKigw400WD4PxqpW2qEacSKQ,6932
|
|
465
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic-table-1.xsd,sha256=LFCs2C9FDohNP9K4JINyuOljfT7uFCLn2ViIAh00EG4,5890
|
|
466
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-model-1.xsd,sha256=6UjM0BMoHrDeHeLSrqK466W-jTh_Q7sx3opcoqpXVCA,9616
|
|
467
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-module-redefines-1.xsd,sha256=oSrthEE1MayHof1Zc6_Ew1sRC1dwyfSgIrjrAfwi3iY,2271
|
|
468
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10-modules-1.xsd,sha256=o8hPSvOmQf1iWDlL7KXN_h1eWgtVU6YUZevAXSFNSkI,7974
|
|
469
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-basic10.xsd,sha256=HIRsGzp0OVWcHXKs-ka3cWuKODIB12liVdIYCZaNDlE,3318
|
|
470
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-bdo-1.xsd,sha256=SdEup6slAeDmZzJZtH03WbGrnU7ru4u72szSpo0X7-M,3122
|
|
471
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkphras-1.xsd,sha256=MjK6c-i5IfEuqBf7ldnc9RiO6BROqR_XBIfb0Z0ms8U,6548
|
|
472
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkpres-1.xsd,sha256=bVKHGfyzGxA3GsxSnt_dK6pjbkaEY7F81POOqR_2MjU,1383
|
|
473
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-blkstruct-1.xsd,sha256=xBOjhAy2joBQ6xhckwHrSXkNsU5sjg97SoiPtwJSx0s,1783
|
|
474
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-charent-1.xsd,sha256=HodGyoosMqVmfivCE1nB1Rdqhoxxg82iEui_RsSLe-c,1495
|
|
475
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-copyright-1.xsd,sha256=QjClgNlxpihZgXXBtOyafrcY5Ji8jeWBIkZR1IsqR48,1244
|
|
476
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-csismap-1.xsd,sha256=FgpeDprhuHAW33sxPOcN_OJoRWDD27NX_4nRzHiSGTM,4005
|
|
477
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-datatypes-1.xsd,sha256=10gnQeozgIB5HlOSxVQ4wV9SIf6nRABj7Re_7i52Bk0,4878
|
|
478
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-edit-1.xsd,sha256=gJOwvZeJteVRxlLVVP5_UHhM4wH7uBA81V9daM4DGHw,1544
|
|
479
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-events-1.xsd,sha256=kymVkkplKZFlOoDtvFHtul8uzfB1SlBKrMCsNR4HQ6I,5372
|
|
480
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-form-1.xsd,sha256=KWYgHKospLHcHVO-FM39LwmMCSL2fmTwBWjhC2cFn70,13733
|
|
481
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-frames-1.xsd,sha256=AyJrzX9NPNM5TDHw588b3lUy5Lt6wC1sFdyp1fw7z2Q,3574
|
|
482
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-framework-1.xsd,sha256=9TSrtCwWfjSGoyLMMW11MbkigjF9P5dTBOXtMSKE-BI,2557
|
|
483
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-hypertext-1.xsd,sha256=skvoj-a75nD6AmxNvOFSssK2qn8JvJqymvjunXNOEyI,2011
|
|
484
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-iframe-1.xsd,sha256=3HaoJpupGIBWV2Xxw_BSsVHzsctHtzM8S2A5hs5XljE,2374
|
|
485
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-image-1.xsd,sha256=ipUya0G0FAWAzrd4pj99eHncVrAo7aY-ezohj-v-e8E,1778
|
|
486
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlphras-1.xsd,sha256=5AmamKI-hm2t8DYxWxXUaDxk_JjX0hqQp1gZhf8gXKU,6623
|
|
487
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlpres-1.xsd,sha256=9P1kN1DdUeT04EUsvZq7dHRDZU7pdNEziW-2SsyWrfM,1562
|
|
488
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlstruct-1.xsd,sha256=NsIqJjKAbxj0H4NgQGh7GJzNORjXtGSOoehKWs3bdK0,1929
|
|
489
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-inlstyle-1.xsd,sha256=0XPbHoVaNpVwmUpX8t3eb1mFMz2L-flQtzQrp94RLm8,1036
|
|
490
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-legacy-1.xsd,sha256=CT4CltpYyJKMNIaQkKjbCZkdYE7WCiCVY6twA2O-NfA,3327
|
|
491
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-link-1.xsd,sha256=5uhgDp0fuOX7i6w0sGRCQ047xsr-RDoLGoUvRRn6_gk,1826
|
|
492
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-list-1.xsd,sha256=O_Y9AK36M2jFI4oaqrRLvRr1qbsyZPIXB0BogO-qb-Y,3860
|
|
493
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-meta-1.xsd,sha256=HPRw3rZFu3WXDDspmb3-bknrXHpTejUFYKoCFB5XOzI,1611
|
|
494
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-misc-1.xsd,sha256=PI8lUtceziojZiubE5hv1wQyBik2dfKg5_2hnGFpLeM,14595
|
|
495
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-nameident-1.xsd,sha256=mNJVRlUgSOQqP_tm_lLo5QB0ffLFOiV3Xazaq2NJulA,2198
|
|
496
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-notations-1.xsd,sha256=K5kDrcKJGGY3UA5_rULL2DMMrqKfae6swg95UCjFwQY,4002
|
|
497
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-object-1.xsd,sha256=TK7OthdvBsvuMEhdUHBAm2r0iS92hYwVMtUTWtLrWW4,2743
|
|
498
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-param-1.xsd,sha256=y4s0GUH6dS6CBGKVB-TmV7SgjgwMAdfTmo34383Ll3M,2114
|
|
499
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-pres-1.xsd,sha256=chLceBcbXmqaQ5tbV4bN1Jm8XrIhVgXRWNw1sxy6KJM,1630
|
|
500
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ruby-1.xsd,sha256=oNUSvAsBxO3rICAki-Unz8xm1bh4NXLs5K3MNbSOcZM,4993
|
|
501
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ruby-basic-1.xsd,sha256=oeRqTqyjL_8F60dHHou2neekJznZYpcLWBjEM_NMcw0,3389
|
|
502
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-script-1.xsd,sha256=vHLnAlxTY-OmTd0SRLBrxS7l7rgxzLdSImqHEMkUbUI,2803
|
|
503
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-ssismap-1.xsd,sha256=GQ2AX_8dMecc82B1EoJgeTZ0ZheO6sO1_pF_1bf7zYo,1666
|
|
504
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-struct-1.xsd,sha256=JdfkSR9_VziDqtxC7clqOAY8ykO_wdWfLBesmFz8VcA,3408
|
|
505
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-style-1.xsd,sha256=U8Q5PxxyZZ1feevaQApKmC2tmlSM3bJc27egRXZae1Y,2052
|
|
506
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-table-1.xsd,sha256=CuLHZZUOScuEbG5M7EeP9-YwhxcZcNrMPUYEWYXWMno,12031
|
|
507
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-target-1.xsd,sha256=_KLUu3T07KCPmaeVUx2GFVZnpagJlPHEBUCaRaInyl4,1714
|
|
508
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml-text-1.xsd,sha256=4CK34kttBMJPDI34GxhVPH2AHiE6EWdWUuqlczfpD8o,2111
|
|
509
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-model-1.xsd,sha256=UcbLW6CcMLxdp6tAwfyXnqaPKtiwaJKjl4En5yqnLy4,20857
|
|
510
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-module-redefines-1.xsd,sha256=jNzBmuoYgnbx7lxH_cJ7sEIcEhUTSrpgYVQdgOvaNAo,11693
|
|
511
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11-modules-1.xsd,sha256=P6ZAY4Fz-9InFYc8D4_OjcBbkXZxd9aJChaCHNzdYNo,19672
|
|
512
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml11.xsd,sha256=hcK4__DpB1Phw5JLPfcxW5bWWS893ShyNIapgYBKOME,3705
|
|
513
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xhtml2.xsd,sha256=asBNkMBgyFd-3frVlcCOjKPVa2FCm-aCQyl5RQMq0vU,619
|
|
514
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-1.xsd,sha256=6FXo0OY09ZfDhXbbRzOSFfXi3OGvM0l585rzH0CfCEI,2527
|
|
515
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-2.xsd,sha256=Z8-8AUdq6jg8lUwBUtfbF1atmpt97asa8Mw5Tr7RV5o,2593
|
|
516
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-attribs-1.xsd,sha256=26FXaaWaA4UnlT82uHJ0-YApmJ4t8JI7sN7_8Zl7Qgw,2465
|
|
517
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-attribs-2.xsd,sha256=9J5LaiR1KvaH7MbRH1NTK1I11KKodk8ddfnoKlmwedI,2568
|
|
518
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-copyright-1.xsd,sha256=ngpIkLd8IK3AKTTCrR4hv9QwoxuTuHNW93NEjc0KTnA,1271
|
|
519
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-events-copyright-2.xsd,sha256=02y60tlfalfpaSZfkBWYVWtdqp3taKbSkaOBjtBHkGI,1271
|
|
520
|
+
arelle/resources/cache/http/www.xbrl.org/2008/inlinexbrl/xhtml/xml-handlers-2.xsd,sha256=0rutgPCyVonjjamLdJqv9kRT7Fvzo1Jiq-ADIUea0wY,3343
|
|
521
|
+
arelle/resources/cache/http/www.xbrl.org/2010/aspect-cover-filter.xsd,sha256=ZHqLmzLJfdUqk5plEXckNvqEDKUqwePd9syo9931xHM,3191
|
|
522
|
+
arelle/resources/cache/http/www.xbrl.org/2010/concept-relation-filter.xsd,sha256=juRexBq9HC7mm3peinpa067VeboUJQDjSFSnJhlhnuI,4924
|
|
523
|
+
arelle/resources/cache/http/www.xbrl.org/2010/custom-function-implementation.xsd,sha256=kk0wqckahItpzUwNHFSndL4MPkE7HsHWnROVHwEDiMs,3158
|
|
524
|
+
arelle/resources/cache/http/www.xbrl.org/2010/generic-message.xsd,sha256=7_Y8ODP6ddseT7ciYR_4xu_w_8o9hNDjMkhzChwR7rQ,2945
|
|
525
|
+
arelle/resources/cache/http/www.xbrl.org/2010/validation-message.xsd,sha256=FoldVNBYxHRhQFMPK4wV4jf427OqILca-YKqQxlosWA,2521
|
|
526
|
+
arelle/resources/cache/http/www.xbrl.org/2013/match-filter.xsd,sha256=Z9eDcW-H2inuVnHLmn9YOTN3yZivKXSW1fdmWSW0FB4,3549
|
|
527
|
+
arelle/resources/cache/http/www.xbrl.org/2013/preferred-label.xsd,sha256=JSTF0J86D4k42eXnvTxhhQX-R6ltBHSdk7xi6vaGBF8,950
|
|
528
|
+
arelle/resources/cache/http/www.xbrl.org/2013/versioning-base.xsd,sha256=B31pBOltcEXb5sJ2Qw5XBL9A4269a1-KaV4vDVh9g6Q,5861
|
|
529
|
+
arelle/resources/cache/http/www.xbrl.org/2013/versioning-concept-details.xsd,sha256=CXVytp5Ef9ZtE8grZKkuM9L-8r2KNYGqV_O4iFHBSMc,7841
|
|
530
|
+
arelle/resources/cache/http/www.xbrl.org/2013/versioning-concept-use.xsd,sha256=3aoU3YHk_SULHkglZ9gozMkI10r8XvlwfL0CixSdvxE,2494
|
|
531
|
+
arelle/resources/cache/http/www.xbrl.org/2013/versioning-dimensions.xsd,sha256=-KSRIlXxtzT7zy1OxmPGhusmWgEC4Q50o78ZtlQzDdg,7255
|
|
532
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-definitions.xsd,sha256=9NQdOrGuD4INJLKjpQ4LnJ3FQCEcZuArT55gkJsUhoQ,10365
|
|
533
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-model.xsd,sha256=l5jmBt0vEYo-DKPcvycgbRx2F6SyGJs_0gMfqUP4y18,20673
|
|
534
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1-modules.xsd,sha256=0lBIP__XlzlxfNzTTAdhRVwiy1avId_RVLci6bmVhfw,19996
|
|
535
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml-inlinexbrl-1_1.xsd,sha256=yjt2l-mfkrfz0is2--V8m7T_5yUOrwZKQRHQcTEHeIQ,1331
|
|
536
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xbrl-instance-2003-12-31-ixmod.xsd,sha256=qU83CIYOqD_Q_DpE5lxIJBqSUep_i-0-AQDb2ZLVNtU,24007
|
|
537
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xbrl-linkbase-2003-12-31-ixmod.xsd,sha256=U76p0zjz1zWOp1RjJ2pkOYuxC6gRgKqyx4H73wTDD5s,15818
|
|
538
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xl-2003-12-31.xsd,sha256=ruMHMAYKPTP_OyTNABj7QDTvx19LNibSf20qnKYoDlE,8449
|
|
539
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xbrl/xlink-2003-12-31.xsd,sha256=QgVVQdkl-iGw4QxvaNXEDQa3SQskQVtZ0Nx97QLmj4g,3217
|
|
540
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xframes-1.xsd,sha256=fQG4qelKr77tgFzEaLDSRUWDMEcq6k36MKtHUZkeyDs,5256
|
|
541
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-applet-1.xsd,sha256=Ps5LTCzjuKMv_0GzZQWXOQyLY25D2c_SiePx5lRGNeo,2373
|
|
542
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-attribs-1.xsd,sha256=NzV1euzz7MyMS5jOQp1VS9ZTVTycbPstZ8lcLLDPV4c,3090
|
|
543
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-base-1.xsd,sha256=aDqmImqB1oMGeYyg-8KjllfeOA2gvfE6icluXLKrb1U,1370
|
|
544
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic-form-1.xsd,sha256=7CF5d2UorEtf3ZVDVX9SKigw400WD4PxqpW2qEacSKQ,6932
|
|
545
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic-table-1.xsd,sha256=LFCs2C9FDohNP9K4JINyuOljfT7uFCLn2ViIAh00EG4,5890
|
|
546
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-model-1.xsd,sha256=6UjM0BMoHrDeHeLSrqK466W-jTh_Q7sx3opcoqpXVCA,9616
|
|
547
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-module-redefines-1.xsd,sha256=oSrthEE1MayHof1Zc6_Ew1sRC1dwyfSgIrjrAfwi3iY,2271
|
|
548
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10-modules-1.xsd,sha256=o8hPSvOmQf1iWDlL7KXN_h1eWgtVU6YUZevAXSFNSkI,7974
|
|
549
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-basic10.xsd,sha256=HIRsGzp0OVWcHXKs-ka3cWuKODIB12liVdIYCZaNDlE,3318
|
|
550
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-bdo-1.xsd,sha256=SdEup6slAeDmZzJZtH03WbGrnU7ru4u72szSpo0X7-M,3122
|
|
551
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkphras-1.xsd,sha256=MjK6c-i5IfEuqBf7ldnc9RiO6BROqR_XBIfb0Z0ms8U,6548
|
|
552
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkpres-1.xsd,sha256=bVKHGfyzGxA3GsxSnt_dK6pjbkaEY7F81POOqR_2MjU,1383
|
|
553
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-blkstruct-1.xsd,sha256=xBOjhAy2joBQ6xhckwHrSXkNsU5sjg97SoiPtwJSx0s,1783
|
|
554
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-charent-1.xsd,sha256=HodGyoosMqVmfivCE1nB1Rdqhoxxg82iEui_RsSLe-c,1495
|
|
555
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-copyright-1.xsd,sha256=QjClgNlxpihZgXXBtOyafrcY5Ji8jeWBIkZR1IsqR48,1244
|
|
556
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-csismap-1.xsd,sha256=FgpeDprhuHAW33sxPOcN_OJoRWDD27NX_4nRzHiSGTM,4005
|
|
557
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-datatypes-1.xsd,sha256=10gnQeozgIB5HlOSxVQ4wV9SIf6nRABj7Re_7i52Bk0,4878
|
|
558
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-edit-1.xsd,sha256=gJOwvZeJteVRxlLVVP5_UHhM4wH7uBA81V9daM4DGHw,1544
|
|
559
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-events-1.xsd,sha256=kymVkkplKZFlOoDtvFHtul8uzfB1SlBKrMCsNR4HQ6I,5372
|
|
560
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-form-1.xsd,sha256=KWYgHKospLHcHVO-FM39LwmMCSL2fmTwBWjhC2cFn70,13733
|
|
561
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-frames-1.xsd,sha256=AyJrzX9NPNM5TDHw588b3lUy5Lt6wC1sFdyp1fw7z2Q,3574
|
|
562
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-framework-1.xsd,sha256=9TSrtCwWfjSGoyLMMW11MbkigjF9P5dTBOXtMSKE-BI,2557
|
|
563
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-hypertext-1.xsd,sha256=skvoj-a75nD6AmxNvOFSssK2qn8JvJqymvjunXNOEyI,2011
|
|
564
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-iframe-1.xsd,sha256=3HaoJpupGIBWV2Xxw_BSsVHzsctHtzM8S2A5hs5XljE,2374
|
|
565
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-image-1.xsd,sha256=ipUya0G0FAWAzrd4pj99eHncVrAo7aY-ezohj-v-e8E,1778
|
|
566
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlphras-1.xsd,sha256=5AmamKI-hm2t8DYxWxXUaDxk_JjX0hqQp1gZhf8gXKU,6623
|
|
567
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlpres-1.xsd,sha256=9P1kN1DdUeT04EUsvZq7dHRDZU7pdNEziW-2SsyWrfM,1562
|
|
568
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlstruct-1.xsd,sha256=NsIqJjKAbxj0H4NgQGh7GJzNORjXtGSOoehKWs3bdK0,1929
|
|
569
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-inlstyle-1.xsd,sha256=0XPbHoVaNpVwmUpX8t3eb1mFMz2L-flQtzQrp94RLm8,1036
|
|
570
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-legacy-1.xsd,sha256=CT4CltpYyJKMNIaQkKjbCZkdYE7WCiCVY6twA2O-NfA,3327
|
|
571
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-link-1.xsd,sha256=5uhgDp0fuOX7i6w0sGRCQ047xsr-RDoLGoUvRRn6_gk,1826
|
|
572
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-list-1.xsd,sha256=O_Y9AK36M2jFI4oaqrRLvRr1qbsyZPIXB0BogO-qb-Y,3860
|
|
573
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-meta-1.xsd,sha256=HPRw3rZFu3WXDDspmb3-bknrXHpTejUFYKoCFB5XOzI,1611
|
|
574
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-misc-1.xsd,sha256=PI8lUtceziojZiubE5hv1wQyBik2dfKg5_2hnGFpLeM,14595
|
|
575
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-nameident-1.xsd,sha256=mNJVRlUgSOQqP_tm_lLo5QB0ffLFOiV3Xazaq2NJulA,2198
|
|
576
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-notations-1.xsd,sha256=K5kDrcKJGGY3UA5_rULL2DMMrqKfae6swg95UCjFwQY,4002
|
|
577
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-object-1.xsd,sha256=TK7OthdvBsvuMEhdUHBAm2r0iS92hYwVMtUTWtLrWW4,2743
|
|
578
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-param-1.xsd,sha256=y4s0GUH6dS6CBGKVB-TmV7SgjgwMAdfTmo34383Ll3M,2114
|
|
579
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-pres-1.xsd,sha256=chLceBcbXmqaQ5tbV4bN1Jm8XrIhVgXRWNw1sxy6KJM,1630
|
|
580
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ruby-1.xsd,sha256=oNUSvAsBxO3rICAki-Unz8xm1bh4NXLs5K3MNbSOcZM,4993
|
|
581
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ruby-basic-1.xsd,sha256=oeRqTqyjL_8F60dHHou2neekJznZYpcLWBjEM_NMcw0,3389
|
|
582
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-script-1.xsd,sha256=vHLnAlxTY-OmTd0SRLBrxS7l7rgxzLdSImqHEMkUbUI,2803
|
|
583
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-ssismap-1.xsd,sha256=GQ2AX_8dMecc82B1EoJgeTZ0ZheO6sO1_pF_1bf7zYo,1666
|
|
584
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-struct-1.xsd,sha256=JdfkSR9_VziDqtxC7clqOAY8ykO_wdWfLBesmFz8VcA,3408
|
|
585
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-style-1.xsd,sha256=U8Q5PxxyZZ1feevaQApKmC2tmlSM3bJc27egRXZae1Y,2052
|
|
586
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-table-1.xsd,sha256=CuLHZZUOScuEbG5M7EeP9-YwhxcZcNrMPUYEWYXWMno,12031
|
|
587
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-target-1.xsd,sha256=_KLUu3T07KCPmaeVUx2GFVZnpagJlPHEBUCaRaInyl4,1714
|
|
588
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml-text-1.xsd,sha256=4CK34kttBMJPDI34GxhVPH2AHiE6EWdWUuqlczfpD8o,2111
|
|
589
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-model-1.xsd,sha256=UcbLW6CcMLxdp6tAwfyXnqaPKtiwaJKjl4En5yqnLy4,20857
|
|
590
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-module-redefines-1.xsd,sha256=jNzBmuoYgnbx7lxH_cJ7sEIcEhUTSrpgYVQdgOvaNAo,11693
|
|
591
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11-modules-1.xsd,sha256=P6ZAY4Fz-9InFYc8D4_OjcBbkXZxd9aJChaCHNzdYNo,19672
|
|
592
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml11.xsd,sha256=hcK4__DpB1Phw5JLPfcxW5bWWS893ShyNIapgYBKOME,3705
|
|
593
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xhtml2.xsd,sha256=asBNkMBgyFd-3frVlcCOjKPVa2FCm-aCQyl5RQMq0vU,619
|
|
594
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-1.xsd,sha256=6FXo0OY09ZfDhXbbRzOSFfXi3OGvM0l585rzH0CfCEI,2527
|
|
595
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-2.xsd,sha256=Z8-8AUdq6jg8lUwBUtfbF1atmpt97asa8Mw5Tr7RV5o,2593
|
|
596
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-attribs-1.xsd,sha256=26FXaaWaA4UnlT82uHJ0-YApmJ4t8JI7sN7_8Zl7Qgw,2465
|
|
597
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-attribs-2.xsd,sha256=9J5LaiR1KvaH7MbRH1NTK1I11KKodk8ddfnoKlmwedI,2568
|
|
598
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-copyright-1.xsd,sha256=ngpIkLd8IK3AKTTCrR4hv9QwoxuTuHNW93NEjc0KTnA,1271
|
|
599
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-events-copyright-2.xsd,sha256=02y60tlfalfpaSZfkBWYVWtdqp3taKbSkaOBjtBHkGI,1271
|
|
600
|
+
arelle/resources/cache/http/www.xbrl.org/2013/inlineXBRL/xhtml/xml-handlers-2.xsd,sha256=0rutgPCyVonjjamLdJqv9kRT7Fvzo1Jiq-ADIUea0wY,3343
|
|
601
|
+
arelle/resources/cache/http/www.xbrl.org/2014/extensible-enumerations.xsd,sha256=NknGXKrI8KGH2Epv49QNDYvpME7Cyfa1kJGXyXjWYlI,1204
|
|
602
|
+
arelle/resources/cache/http/www.xbrl.org/2014/table.xsd,sha256=HCdP8ou7L9BHs-drKpks6LAbrA4OgDp-7yigq98nziY,16390
|
|
603
|
+
arelle/resources/cache/http/www.xbrl.org/2014/tablemodel.xsd,sha256=msY_au4hk08sAFqDNkE-wtYmk6Ca4WDpvhM1-CcAyKA,6053
|
|
604
|
+
arelle/resources/cache/http/www.xbrl.org/2016/assertion-severity.xsd,sha256=RbNJDQwiJUr10hPVEhZKDGcVp8gRra46Ynkxfgf8C0U,1191
|
|
605
|
+
arelle/resources/cache/http/www.xbrl.org/2016/severities.xml,sha256=mQsPz5LCt8cDycDCJoP5sNWF6yLFEN1NkoQuOA-4Y1Y,1138
|
|
606
|
+
arelle/resources/cache/http/www.xbrl.org/2016/taxonomy-package-catalog.xsd,sha256=xrDYEYtJqSYNviU-OQEUDxoVbzP8rWtpOGnS0asHbw4,1383
|
|
607
|
+
arelle/resources/cache/http/www.xbrl.org/2016/taxonomy-package.xsd,sha256=8dIfZR9Orr0ReS231821hjCVlDN5_X75GOY85DfNxHw,6909
|
|
608
|
+
arelle/resources/cache/http/www.xbrl.org/2022/assertion-severity.xsd,sha256=DtUlg-bazv_YdwJ6XHxdajecD4cwfgOdekCx0Hn6pio,1728
|
|
609
|
+
arelle/resources/cache/http/www.xbrl.org/2022/severities.xml,sha256=AGD9MLNPtcDpFlnZPhprpiprmozrBHv4MKILIa866aA,1138
|
|
610
|
+
arelle/resources/cache/http/www.xbrl.org/dtr/type/nonNumeric-2009-12-16.xsd,sha256=jZMuE0o0tpLZF5GbG_OMMQbPVLPwhfAoUKUeuNuPNHs,4024
|
|
611
|
+
arelle/resources/cache/http/www.xbrl.org/dtr/type/numeric-2009-12-16.xsd,sha256=XVqVE1Y5bKXN7a443vOnwkOsSTlLd2cOa3bgCjqblm4,3462
|
|
612
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/accounting-arcrole-2023-01-04.xsd,sha256=JPcjFHEIRpLb1PapjNrAPdsDo8AeSKaTiuKSJ6kjXqM,8364
|
|
613
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/deprecated-2009-12-16.xsd,sha256=22sautXZYzQFsWd8w27mAkJFwEQblf9dPV0xoIZMT1s,2438
|
|
614
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/esma-arcrole-2018-11-21.xsd,sha256=UmQLHTVo9v1JfpA3q8FzRhKjADfhw4-olEeoh4YyrOs,1023
|
|
615
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/factExplanatory-2009-12-16.xsd,sha256=c91J93s_1L_bZYYGTMPu3wM3J8AXQWweSOifC6tgzvM,1001
|
|
616
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/jpfr-arcrole-2007-11-07.xsd,sha256=yj0HaAVEzis70JqY4kBPpQq1PedZ6KdYkHHM9DnKUMQ,2140
|
|
617
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/arcrole/parent-child-2013-09-19.xsd,sha256=taxpZH6V0irrYQSkXGAoCd0v_KtAesJC4KGzF4YR0eI,799
|
|
618
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/role/deprecated-2009-12-16.xsd,sha256=iEG14uDZVUpGax3r6IbEoXlggnpTqIJ44hVUbMwWjVM,1150
|
|
619
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/role/jpfr-role-2007-11-07.xsd,sha256=Q53NlcTCDp-dTqL03itpc3RFtaZV77_jWkhsPx6b6Jk,3770
|
|
620
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/role/negated-2008-03-31.xsd,sha256=asl7AAW8xzq4eftVwJ9x6K7AbrSvVB5932nzPIBIIRc,1488
|
|
621
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/role/negated-2009-12-16.xsd,sha256=trP907uT2tFX8TWGtbnxSZi0lAh1x4rz8p0oEWzACSo,2108
|
|
622
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/role/negative-2009-12-16.xsd,sha256=kpShG_Mj09qqWagxE1d5pU03p5OQ_Hy8zNxKwHTM3pE,1728
|
|
623
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/role/net-2009-12-16.xsd,sha256=3n24jCmYPatWaN1Df99ln5tmwSNeHgJAt5VzMFmCpEY,864
|
|
624
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/role/positive-2009-12-16.xsd,sha256=TxGWXbLHeA50DQPuqVM43jaZ68sO-71dju5nRxN_q7A,1728
|
|
625
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/role/property-2022-09-28.xsd,sha256=2zlPDJkLLV8uqvYrkQZ66daES9WKN2ZLD1yFTUipIhk,1299
|
|
626
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/role/reference-2009-12-16.xsd,sha256=0JGcYXGAwvkDsOW03G4zUiDzoyz7d2gg-E3mC-qVvFQ,1432
|
|
627
|
+
arelle/resources/cache/http/www.xbrl.org/lrr/role/restated-2006-02-21.xsd,sha256=3dWvvt5eS6EyuaKjbowEWEPNXmd_g6w1FN00eqd4S9g,1370
|
|
628
|
+
arelle/resources/cache/http/www.xbrl.org/utr/utr.xml,sha256=W2aVt_n4Q3HpYqRtzYJU88fAXlI0lPtGZDxbG2kEhpA,228342
|
|
629
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2012-01-30/utr.xml,sha256=V9mvzmd9B2rR2UFvrVDjgTbCHtKPFvhrkXElyI2rHH0,156800
|
|
630
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2012-10-31/utr.xml,sha256=Wpo2E4pLePFPXhCO7lJblNOtyKAaRyNOWRN47bdt2oM,156277
|
|
631
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2012-11-30/utr.xml,sha256=jjiQ9R8XziNzOcevgUGrn85zTlmveVjrRI048zZnfAg,158796
|
|
632
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2013-02-28/utr.xml,sha256=jzEbrggIzcTT0lPX70OKsmmvl21NM-RPCugXI2limwA,176953
|
|
633
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2013-05-17/utr.xml,sha256=bDqWwtE1FFB0AbfnwG77aCtL_nfbhYtx7AFofdGxD90,181688
|
|
634
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2016-08-10/utr.xml,sha256=Q-herebZStAj3pNXdS9RfuaaxW9hY0eDD0gjjZ4P65c,182366
|
|
635
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2017-07-12/utr.xml,sha256=lacqa7cQimt4esgID0E0FF4L7BfOvlq9ADhiQgbRHcA,208668
|
|
636
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2021-02-16/utr.xml,sha256=6ikdWSr6gsASPIt7a40jtYaFFpL-ReQwSCQzbdEWCEc,215889
|
|
637
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2021-12-08/utr.xml,sha256=kxE0WolL4xTF3IgWAFO_ejHBIvXKUPOLc3Oeki3IBbQ,220474
|
|
638
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2022-02-16/utr.xml,sha256=dZYdgBcNB9sdc507N9ORtTmZHgWKiakgAh3q-p5jO5U,222470
|
|
639
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2022-07-20/utr.xml,sha256=t_QXLlyq7RXvz3qteEwbqL5rvXbJ5gfILm1NCQb1w3c,225664
|
|
640
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2023-12-20/utr.xml,sha256=Q-defplfA73BVvFAClq4v0Qxv_fc98uLk9EaOM3UbXE,227828
|
|
641
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2024-01-31/utr.xml,sha256=znbmw3aKJx7AFAmAh-hz9wM0qNyz91vluT3mCd-KRkQ,227831
|
|
642
|
+
arelle/resources/cache/http/www.xbrl.org/utr/2024-10-22/utr.xml,sha256=W2aVt_n4Q3HpYqRtzYJU88fAXlI0lPtGZDxbG2kEhpA,228342
|
|
643
|
+
arelle/resources/cache/https/www.xbrl.org/2005/conformance.xsd,sha256=BvKHZTLYHHdAVJbqha3joXfh2tg06ZNJHv2CsiDhoU8,3765
|
|
644
|
+
arelle/resources/cache/https/www.xbrl.org/2020/extensible-enumerations-2.0.xsd,sha256=F6Ah4-P9XKL_DN4FmIx48SpsrdcQdzR-CuQ3ani1hug,2198
|
|
645
|
+
arelle/resources/cache/https/www.xbrl.org/2023/calculation-1.1.xsd,sha256=pBVXzb8NBfi3JuvgeGUEJpauWQR3v7gPtP-snCLTz-g,1343
|
|
646
|
+
arelle/resources/cache/https/www.xbrl.org/dtr/type/2020-01-21/types.xsd,sha256=pi8fNjW8a2zd0UIqssm6AOu-c878NQDiB_oOnBLuApM,43431
|
|
647
|
+
arelle/resources/cache/https/www.xbrl.org/dtr/type/2022-03-31/types.xsd,sha256=5-sb72pohFzA3V03DRjO2pKXjdVKaAmiIobU5q-Hyks,45291
|
|
648
|
+
arelle/resources/cache/https/www.xbrl.org/dtr/type/2024-01-31/types.xsd,sha256=H9_9uGKcjeIOM9R6D_H73YSr6kT56MNuV6PJ4TLJyjU,48107
|
|
649
|
+
arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators-def.xml,sha256=p3bZm579fKgVofoIUfrUfRJMdEHsSJi2216414Tt0bU,2267
|
|
650
|
+
arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators-label.xml,sha256=Hys3UGlfuV20f4N6hzdAgFDljrIkpMkW_n9woTfLKzo,3420
|
|
651
|
+
arelle/resources/cache/https/www.xbrl.org/taxonomy/int/filing-indicators/REC/2021-02-03/filing-indicators.xsd,sha256=qP-2THYtCT0GOw845s80bWwwby1jIevYG11UiLnLc8I,2747
|
|
652
|
+
arelle/resources/libs/Tktable2.11/linux-x86_64/README.txt,sha256=YtI0VbNWuXoStd8EkfBIBZwsipP4o9ZpEGNoZ5ylmmA,5048
|
|
653
|
+
arelle/resources/libs/Tktable2.11/linux-x86_64/libTktable2.11.so,sha256=NVt3YUrr59kMxbtCXDmsNdRTCno7wYjHsVB1EELcGc4,161976
|
|
654
|
+
arelle/resources/libs/Tktable2.11/linux-x86_64/license.txt,sha256=P47Z8SmtAGpFpmLqxahtEf5ZwiRFJqtN2SkVWbb6O2s,2731
|
|
655
|
+
arelle/resources/libs/Tktable2.11/linux-x86_64/pkgIndex.tcl,sha256=udmF1ZFpp8aYWD0cV1OB5oBEZ_14fwywMNk4uTOb-sg,137
|
|
656
|
+
arelle/resources/libs/Tktable2.11/linux-x86_64/tkTable.tcl,sha256=JrSZRngZFHtw8Svpzl68AVoffCuzzqG0zs3Zxe8UUoM,24094
|
|
657
|
+
arelle/resources/libs/Tktable2.11/linux-x86_64/tktable.py,sha256=H90uCQqKaUzKivKB0u4jS4lvx7C_2MvnAqp3TFSbqrc,24896
|
|
658
|
+
arelle/resources/libs/Tktable2.11/linux-x86_64/html/tkTable.html,sha256=ycs11OSPWP_VPEtrJpBZGb-3PciliGiuIpPPPDTEXEk,66891
|
|
659
|
+
arelle/resources/libs/Tktable2.11/macos-arm64/README.txt,sha256=YtI0VbNWuXoStd8EkfBIBZwsipP4o9ZpEGNoZ5ylmmA,5048
|
|
660
|
+
arelle/resources/libs/Tktable2.11/macos-arm64/libTktable2.11.dylib,sha256=0NwNQmift6BZRnpp4Dh5gn53vuctWM_6pUxkUbsKwso,156209
|
|
661
|
+
arelle/resources/libs/Tktable2.11/macos-arm64/license.txt,sha256=P47Z8SmtAGpFpmLqxahtEf5ZwiRFJqtN2SkVWbb6O2s,2731
|
|
662
|
+
arelle/resources/libs/Tktable2.11/macos-arm64/pkgIndex.tcl,sha256=Bvi1byV1RQ4rf0VOGvgAbPnuCR4o2dsdGBAkQfPdPFI,138
|
|
663
|
+
arelle/resources/libs/Tktable2.11/macos-arm64/tkTable.tcl,sha256=JrSZRngZFHtw8Svpzl68AVoffCuzzqG0zs3Zxe8UUoM,24094
|
|
664
|
+
arelle/resources/libs/Tktable2.11/macos-arm64/tktable.py,sha256=H90uCQqKaUzKivKB0u4jS4lvx7C_2MvnAqp3TFSbqrc,24896
|
|
665
|
+
arelle/resources/libs/Tktable2.11/macos-arm64/html/tkTable.html,sha256=ycs11OSPWP_VPEtrJpBZGb-3PciliGiuIpPPPDTEXEk,66891
|
|
666
|
+
arelle/resources/libs/Tktable2.11/macos-x86_64/README.txt,sha256=YtI0VbNWuXoStd8EkfBIBZwsipP4o9ZpEGNoZ5ylmmA,5048
|
|
667
|
+
arelle/resources/libs/Tktable2.11/macos-x86_64/libTktable2.11.dylib,sha256=iDIbQdM4JL4hq0ZR30ur1syolbNbMdge887kcRrOfj8,130952
|
|
668
|
+
arelle/resources/libs/Tktable2.11/macos-x86_64/license.txt,sha256=P47Z8SmtAGpFpmLqxahtEf5ZwiRFJqtN2SkVWbb6O2s,2731
|
|
669
|
+
arelle/resources/libs/Tktable2.11/macos-x86_64/pkgIndex.tcl,sha256=Bvi1byV1RQ4rf0VOGvgAbPnuCR4o2dsdGBAkQfPdPFI,138
|
|
670
|
+
arelle/resources/libs/Tktable2.11/macos-x86_64/tkTable.tcl,sha256=JrSZRngZFHtw8Svpzl68AVoffCuzzqG0zs3Zxe8UUoM,24094
|
|
671
|
+
arelle/resources/libs/Tktable2.11/macos-x86_64/tktable.py,sha256=H90uCQqKaUzKivKB0u4jS4lvx7C_2MvnAqp3TFSbqrc,24896
|
|
672
|
+
arelle/resources/libs/Tktable2.11/macos-x86_64/html/tkTable.html,sha256=ycs11OSPWP_VPEtrJpBZGb-3PciliGiuIpPPPDTEXEk,66891
|
|
673
|
+
arelle/resources/libs/Tktable2.11/win-x86_64/Tktable.dll,sha256=R-Xf_J9tYjTe4pZEN6FaOEy9mQ73lMjRzrOdBk-n3C4,197120
|
|
674
|
+
arelle/resources/libs/Tktable2.11/win-x86_64/pkgIndex.tcl,sha256=tmkATyDWsKAA3NgvlNGhOOdTWdBD91X1BgAHmybd_lY,151
|
|
675
|
+
arelle/resources/libs/Tktable2.11/win-x86_64/tkTable.tcl,sha256=JrSZRngZFHtw8Svpzl68AVoffCuzzqG0zs3Zxe8UUoM,24094
|
|
676
|
+
arelle/utils/Contexts.py,sha256=j9uSBAXGkunlJGC9SscCbb1cj3oU_J3b_yjdhj2B4a4,1714
|
|
677
|
+
arelle/utils/EntryPointDetection.py,sha256=TciYbi49dv7fs5inFQR-G6rKCB2XfX_TLgDJ_3FcRK0,7680
|
|
678
|
+
arelle/utils/Equivalence.py,sha256=Ac6sENvh-WHJlBJneV_-6n_MF2C1filHETkUEiucLJg,525
|
|
679
|
+
arelle/utils/PluginData.py,sha256=GUnuZaApm1J4Xm9ZA1U2M1aask-AaNGviLtc0fgXbFg,265
|
|
680
|
+
arelle/utils/PluginHooks.py,sha256=vF3lSJIhF2SwvcQLOvX9wYMiTV7-1TGdrMghc00DNIE,35970
|
|
681
|
+
arelle/utils/Units.py,sha256=c9bwnu9Xnm00gC9Q6qQ1ogsEeTEXGRH7rahlEbrEWnQ,1201
|
|
682
|
+
arelle/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
683
|
+
arelle/utils/validate/Decorator.py,sha256=8LGmA171HZgKrALtsMKyHqMNM-XCdwJOv6KpZz4pC2c,3161
|
|
684
|
+
arelle/utils/validate/DetectScriptsInXhtml.py,sha256=RFBh_Z24OjR69s71qQzSzbxdU-WCTWuvYlONN-BgpZ0,2098
|
|
685
|
+
arelle/utils/validate/ESEFImage.py,sha256=R3_iWmLYBbIAnPuNpuRi8bqa3MAPXc8MDumfizkAz_8,15485
|
|
686
|
+
arelle/utils/validate/Validation.py,sha256=D6Z01ekvazCXuRQZxbQGdYebg-gVmhgf8sRT8Kr0sCM,1078
|
|
687
|
+
arelle/utils/validate/ValidationPlugin.py,sha256=KuHXHthAwE8vfEC8bd5oJrCfnbPrSfrO2KHB973CWvs,14474
|
|
688
|
+
arelle/utils/validate/ValidationUtil.py,sha256=E4R5Qp9yfCxFiF27eickmA7g0UgkkjND510DIpI-kVc,1840
|
|
689
|
+
arelle/utils/validate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
690
|
+
arelle/webserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
691
|
+
arelle/webserver/bottle.py,sha256=P-JECd9MCTNcxCnKoDUvGcoi03ezYVOgoWgv2_uH-6M,362
|
|
692
|
+
arelle_release-2.37.71.dist-info/licenses/LICENSE.md,sha256=Q0tn6q0VUbr-NM8916513NCIG8MNzo24Ev-sxMUBRZc,3959
|
|
693
|
+
arelle_release-2.37.71.dist-info/METADATA,sha256=qyJL1TtIL6_-f1m4G8-l7prlen3XbpSUUGCkg2qqf5w,9355
|
|
694
|
+
arelle_release-2.37.71.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
695
|
+
arelle_release-2.37.71.dist-info/entry_points.txt,sha256=Uj5niwfwVsx3vaQ3fYj8hrZ1xpfCJyTUA09tYKWbzpo,111
|
|
696
|
+
arelle_release-2.37.71.dist-info/top_level.txt,sha256=fwU7SYawL4_r-sUMRg7r1nYVGjFMSDvRWx8VGAXEw7w,7
|
|
697
|
+
arelle_release-2.37.71.dist-info/RECORD,,
|