arelle-release 2.37.46__py3-none-any.whl → 2.38.0__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/BetaFeatures.py +0 -21
- arelle/Cntlr.py +15 -8
- arelle/CntlrCmdLine.py +121 -56
- arelle/CntlrWinMain.py +143 -70
- arelle/DialogFind.py +1 -1
- arelle/DialogPluginManager.py +6 -4
- arelle/DisclosureSystem.py +7 -0
- arelle/ErrorManager.py +21 -6
- arelle/FileSource.py +11 -4
- arelle/FunctionIxt.py +16 -11
- arelle/HtmlUtil.py +5 -4
- arelle/LeiUtil.py +63 -43
- arelle/ModelDocument.py +20 -15
- arelle/ModelDtsObject.py +8 -0
- arelle/ModelInstanceObject.py +1 -1
- arelle/ModelObject.py +16 -18
- arelle/ModelObjectFactory.py +35 -17
- arelle/ModelXbrl.py +28 -11
- arelle/PluginManager.py +130 -105
- arelle/RuntimeOptions.py +1 -0
- arelle/UrlUtil.py +14 -0
- arelle/Validate.py +17 -12
- arelle/ValidateDuplicateFacts.py +3 -1
- arelle/ValidateFileSource.py +38 -0
- arelle/ValidateFilingText.py +3 -3
- arelle/ValidateXbrl.py +5 -2
- arelle/ValidateXbrlCalcs.py +210 -186
- arelle/ValidateXbrlDTS.py +1 -1
- arelle/ViewFile.py +1 -0
- arelle/ViewFileFactTable.py +2 -2
- arelle/ViewWinDTS.py +4 -1
- arelle/WebCache.py +28 -24
- arelle/XbrlConst.py +22 -0
- arelle/XmlUtil.py +16 -21
- arelle/XmlValidate.py +6 -9
- arelle/_version.py +16 -3
- arelle/api/Session.py +11 -2
- arelle/config/disclosuresystems.xsd +2 -0
- arelle/config/rosettaEntitlements.plist +8 -0
- arelle/conformance/CSVTestcaseLoader.py +1 -1
- arelle/formula/XPathContext.py +3 -3
- arelle/logging/formatters/LogFormatter.py +3 -1
- arelle/packages/report/ReportPackage.py +26 -13
- arelle/packages/report/ReportPackageConst.py +0 -1
- arelle/plugin/inlineXbrlDocumentSet.py +19 -5
- arelle/plugin/validate/DBA/DisclosureSystems.py +19 -1
- arelle/plugin/validate/DBA/PluginValidationDataExtension.py +2 -4
- arelle/plugin/validate/DBA/ValidationPluginExtension.py +2 -1
- arelle/plugin/validate/DBA/resources/config.xml +5 -0
- arelle/plugin/validate/DBA/rules/__init__.py +2 -2
- arelle/plugin/validate/DBA/rules/fr.py +19 -2
- arelle/plugin/validate/DBA/rules/tc.py +2 -0
- arelle/plugin/validate/DBA/rules/th.py +6 -0
- arelle/plugin/validate/DBA/rules/tm.py +18 -5
- arelle/plugin/validate/DBA/rules/tr.py +11 -5
- arelle/plugin/validate/EDINET/Constants.py +193 -9
- arelle/plugin/validate/EDINET/ContextRequirement.py +58 -0
- arelle/plugin/validate/EDINET/ControllerPluginData.py +220 -1
- arelle/plugin/validate/EDINET/CoverItemRequirements.py +42 -0
- arelle/plugin/validate/EDINET/DeiRequirements.py +118 -0
- arelle/plugin/validate/EDINET/FilingFormat.py +275 -0
- arelle/plugin/validate/EDINET/FormType.py +134 -0
- arelle/plugin/validate/EDINET/ManifestInstance.py +72 -5
- arelle/plugin/validate/EDINET/NamespaceConfig.py +50 -0
- arelle/plugin/validate/EDINET/PluginValidationDataExtension.py +493 -132
- arelle/plugin/validate/EDINET/{InstanceType.py → ReportFolderType.py} +72 -15
- arelle/plugin/validate/EDINET/Statement.py +139 -0
- arelle/plugin/validate/EDINET/TableOfContentsBuilder.py +595 -0
- arelle/plugin/validate/EDINET/UploadContents.py +48 -0
- arelle/plugin/validate/EDINET/ValidationPluginExtension.py +20 -2
- arelle/plugin/validate/EDINET/__init__.py +31 -6
- arelle/plugin/validate/EDINET/resources/config.xml +8 -1
- 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 +2 -0
- arelle/plugin/validate/EDINET/rules/contexts.py +375 -14
- arelle/plugin/validate/EDINET/rules/edinet.py +1934 -45
- arelle/plugin/validate/EDINET/rules/frta.py +122 -3
- arelle/plugin/validate/EDINET/rules/gfm.py +1907 -11
- arelle/plugin/validate/EDINET/rules/upload.py +989 -141
- arelle/plugin/validate/ESEF/Const.py +3 -1
- arelle/plugin/validate/ESEF/ESEF_2021/DTS.py +5 -0
- arelle/plugin/validate/ESEF/ESEF_2021/Image.py +2 -2
- arelle/plugin/validate/ESEF/ESEF_2021/ValidateXbrlFinally.py +23 -20
- arelle/plugin/validate/ESEF/ESEF_Current/DTS.py +47 -14
- arelle/plugin/validate/ESEF/ESEF_Current/ValidateXbrlFinally.py +100 -25
- arelle/plugin/validate/ESEF/__init__.py +20 -6
- arelle/plugin/validate/ESEF/resources/authority-validations.json +76 -9
- arelle/plugin/validate/ESEF/resources/config.xml +20 -0
- arelle/plugin/validate/NL/DisclosureSystems.py +22 -0
- arelle/plugin/validate/NL/PluginValidationDataExtension.py +27 -9
- arelle/plugin/validate/NL/ValidationPluginExtension.py +51 -7
- arelle/plugin/validate/NL/resources/config.xml +18 -0
- arelle/plugin/validate/NL/rules/br_kvk.py +17 -61
- arelle/plugin/validate/NL/rules/fg_nl.py +7 -38
- arelle/plugin/validate/NL/rules/fr_kvk.py +7 -42
- arelle/plugin/validate/NL/rules/fr_nl.py +31 -147
- arelle/plugin/validate/NL/rules/nl_kvk.py +142 -28
- arelle/plugin/validate/ROS/PluginValidationDataExtension.py +2 -0
- arelle/plugin/validate/ROS/ValidationPluginExtension.py +4 -1
- arelle/plugin/validate/ROS/rules/ros.py +41 -9
- arelle/plugin/validate/UK/ValidateUK.py +130 -66
- arelle/plugin/validate/UK/__init__.py +89 -103
- arelle/utils/EntryPointDetection.py +79 -13
- arelle/utils/PluginHooks.py +125 -0
- arelle/utils/validate/ESEFImage.py +6 -6
- arelle/utils/validate/Validation.py +18 -0
- arelle/utils/validate/ValidationPlugin.py +76 -11
- arelle/utils/validate/ValidationUtil.py +35 -3
- {arelle_release-2.37.46.dist-info → arelle_release-2.38.0.dist-info}/METADATA +30 -20
- {arelle_release-2.37.46.dist-info → arelle_release-2.38.0.dist-info}/RECORD +115 -191
- {arelle_release-2.37.46.dist-info → arelle_release-2.38.0.dist-info}/licenses/LICENSE.md +0 -3
- arelle/archive/CustomLogger.py +0 -43
- arelle/archive/LoadEFMvalidate.py +0 -32
- arelle/archive/LoadSavePreLbCsv.py +0 -26
- arelle/archive/LoadValidate.cs +0 -31
- arelle/archive/LoadValidate.py +0 -36
- arelle/archive/LoadValidateCmdLine.java +0 -69
- arelle/archive/LoadValidatePostedZip.java +0 -57
- arelle/archive/LoadValidateWebService.java +0 -34
- arelle/archive/SaveTableToExelle.py +0 -140
- arelle/archive/TR3toTR4.py +0 -88
- arelle/archive/plugin/ESEF_2022/__init__.py +0 -47
- arelle/archive/plugin/bigInstance.py +0 -394
- arelle/archive/plugin/cmdWebServerExtension.py +0 -43
- arelle/archive/plugin/crashTest.py +0 -38
- arelle/archive/plugin/functionsXmlCreation.py +0 -106
- arelle/archive/plugin/hello_i18n.pot +0 -26
- arelle/archive/plugin/hello_i18n.py +0 -32
- arelle/archive/plugin/importTestChild1.py +0 -21
- arelle/archive/plugin/importTestChild2.py +0 -22
- arelle/archive/plugin/importTestGrandchild1.py +0 -21
- arelle/archive/plugin/importTestGrandchild2.py +0 -21
- arelle/archive/plugin/importTestImported1.py +0 -23
- arelle/archive/plugin/importTestImported11.py +0 -22
- arelle/archive/plugin/importTestParent.py +0 -48
- arelle/archive/plugin/instanceInfo.py +0 -306
- arelle/archive/plugin/loadFromOIM-2018.py +0 -1282
- arelle/archive/plugin/locale/fr/LC_MESSAGES/hello_i18n.po +0 -25
- arelle/archive/plugin/objectmaker.py +0 -285
- arelle/archive/plugin/packagedImportTest/__init__.py +0 -47
- arelle/archive/plugin/packagedImportTest/importTestChild1.py +0 -21
- arelle/archive/plugin/packagedImportTest/importTestChild2.py +0 -22
- arelle/archive/plugin/packagedImportTest/importTestGrandchild1.py +0 -21
- arelle/archive/plugin/packagedImportTest/importTestGrandchild2.py +0 -21
- arelle/archive/plugin/packagedImportTest/importTestImported1.py +0 -24
- arelle/archive/plugin/packagedImportTest/importTestImported11.py +0 -21
- arelle/archive/plugin/packagedImportTest/subdir/importTestImported111.py +0 -21
- arelle/archive/plugin/packagedImportTest/subdir/subsubdir/importTestImported1111.py +0 -21
- arelle/archive/plugin/sakaCalendar.py +0 -215
- arelle/archive/plugin/saveInstanceInfoset.py +0 -121
- arelle/archive/plugin/sphinx/FormulaGenerator.py +0 -823
- arelle/archive/plugin/sphinx/SphinxContext.py +0 -404
- arelle/archive/plugin/sphinx/SphinxEvaluator.py +0 -783
- arelle/archive/plugin/sphinx/SphinxMethods.py +0 -1287
- arelle/archive/plugin/sphinx/SphinxParser.py +0 -1093
- arelle/archive/plugin/sphinx/SphinxValidator.py +0 -163
- arelle/archive/plugin/sphinx/US-GAAP Ratios Example.xsr +0 -52
- arelle/archive/plugin/sphinx/__init__.py +0 -285
- arelle/archive/plugin/streamingExtensions.py +0 -335
- arelle/archive/plugin/updateTableLB.py +0 -242
- arelle/archive/plugin/validate/SBRnl/CustomLoader.py +0 -19
- arelle/archive/plugin/validate/SBRnl/DTS.py +0 -305
- arelle/archive/plugin/validate/SBRnl/Dimensions.py +0 -357
- arelle/archive/plugin/validate/SBRnl/Document.py +0 -799
- arelle/archive/plugin/validate/SBRnl/Filing.py +0 -467
- arelle/archive/plugin/validate/SBRnl/__init__.py +0 -75
- arelle/archive/plugin/validate/SBRnl/config.xml +0 -26
- arelle/archive/plugin/validate/SBRnl/sbr-nl-taxonomies.xml +0 -754
- arelle/archive/plugin/validate/USBestPractices.py +0 -570
- arelle/archive/plugin/validate/USCorpAction.py +0 -557
- arelle/archive/plugin/validate/USSecTagging.py +0 -337
- arelle/archive/plugin/validate/XDC/__init__.py +0 -77
- arelle/archive/plugin/validate/XDC/config.xml +0 -20
- arelle/archive/plugin/validate/XFsyntax/__init__.py +0 -64
- arelle/archive/plugin/validate/XFsyntax/xf.py +0 -2227
- arelle/archive/plugin/validate/calc2.py +0 -536
- arelle/archive/plugin/validateSchemaLxml.py +0 -156
- arelle/archive/plugin/validateTableInfoset.py +0 -52
- arelle/archive/us-gaap-dei-docType-extraction-frm.xml +0 -90
- arelle/archive/us-gaap-dei-ratio-cash-frm.xml +0 -150
- 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/multi.py +0 -58
- arelle/examples/plugin/rssSaveOim.py +0 -96
- 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/__init__.py +0 -0
- arelle/examples/plugin/validate/XYZ/rules/rules01.py +0 -110
- arelle/examples/plugin/validate/XYZ/rules/rules02.py +0 -59
- arelle/model/CommentBase.py +0 -9
- arelle/model/ElementBase.py +0 -11
- arelle/model/PIBase.py +0 -10
- arelle/model/__init__.py +0 -15
- arelle/scripts-macOS/startWebServer.command +0 -3
- arelle/scripts-unix/startWebServer.sh +0 -1
- arelle/scripts-windows/startWebServer.bat +0 -5
- {arelle_release-2.37.46.dist-info → arelle_release-2.38.0.dist-info}/WHEEL +0 -0
- {arelle_release-2.37.46.dist-info → arelle_release-2.38.0.dist-info}/entry_points.txt +0 -0
- {arelle_release-2.37.46.dist-info → arelle_release-2.38.0.dist-info}/top_level.txt +0 -0
|
@@ -1,754 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<Erxl xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../config/erxl.xsd" >
|
|
3
|
-
<!-- Exclusions for SBR validation -->
|
|
4
|
-
<!-- Core schema's -->
|
|
5
|
-
<Loc>
|
|
6
|
-
<Family>BASE</Family>
|
|
7
|
-
<Version>1998</Version>
|
|
8
|
-
<AttType>SCH</AttType>
|
|
9
|
-
<FileTypeName>Schema</FileTypeName>
|
|
10
|
-
<Elements>0</Elements>
|
|
11
|
-
<Namespace>http://www.w3.org/XML/1998/namespace</Namespace>
|
|
12
|
-
<Prefix>xml</Prefix>
|
|
13
|
-
</Loc>
|
|
14
|
-
<Loc>
|
|
15
|
-
<Family>BASE</Family>
|
|
16
|
-
<Version>2001</Version>
|
|
17
|
-
<AttType>SCH</AttType>
|
|
18
|
-
<FileTypeName>Schema</FileTypeName>
|
|
19
|
-
<Elements>0</Elements>
|
|
20
|
-
<Namespace>http://www.w3.org/2001/XMLSchema</Namespace>
|
|
21
|
-
<Prefix>xsd</Prefix>
|
|
22
|
-
</Loc>
|
|
23
|
-
<Loc>
|
|
24
|
-
<Family>BASE</Family>
|
|
25
|
-
<Version>2001</Version>
|
|
26
|
-
<AttType>SCH</AttType>
|
|
27
|
-
<FileTypeName>Schema</FileTypeName>
|
|
28
|
-
<Elements>0</Elements>
|
|
29
|
-
<Namespace>http://www.w3.org/2001/XMLSchema-instance</Namespace>
|
|
30
|
-
<Prefix>xsi</Prefix>
|
|
31
|
-
</Loc>
|
|
32
|
-
<Loc>
|
|
33
|
-
<Family>BASE</Family>
|
|
34
|
-
<Version>2010</Version>
|
|
35
|
-
<Href>http://www.xbrl.org/2003/xbrl-instance-2003-12-31.xsd</Href>
|
|
36
|
-
<AttType>SCH</AttType>
|
|
37
|
-
<FileTypeName>Schema</FileTypeName>
|
|
38
|
-
<Elements>0</Elements>
|
|
39
|
-
<Namespace>http://www.xbrl.org/2003/instance</Namespace>
|
|
40
|
-
<Prefix>xbrli</Prefix>
|
|
41
|
-
</Loc>
|
|
42
|
-
<Loc>
|
|
43
|
-
<Family>BASE</Family>
|
|
44
|
-
<Version>2010</Version>
|
|
45
|
-
<Href>http://www.xbrl.org/2003/xbrl-linkbase-2003-12-31.xsd</Href>
|
|
46
|
-
<AttType>SCH</AttType>
|
|
47
|
-
<FileTypeName>Schema</FileTypeName>
|
|
48
|
-
<Elements>0</Elements>
|
|
49
|
-
<Namespace>http://www.xbrl.org/2003/linkbase</Namespace>
|
|
50
|
-
<Prefix>link</Prefix>
|
|
51
|
-
</Loc>
|
|
52
|
-
<Loc>
|
|
53
|
-
<Family>BASE</Family>
|
|
54
|
-
<Version>2010</Version>
|
|
55
|
-
<Href>http://www.xbrl.org/2003/xl-2003-12-31.xsd</Href>
|
|
56
|
-
<AttType>SCH</AttType>
|
|
57
|
-
<FileTypeName>Schema</FileTypeName>
|
|
58
|
-
<Elements>0</Elements>
|
|
59
|
-
<Namespace>http://www.xbrl.org/2003/XLink</Namespace>
|
|
60
|
-
<Prefix>xl</Prefix>
|
|
61
|
-
</Loc>
|
|
62
|
-
<Loc>
|
|
63
|
-
<Family>BASE</Family>
|
|
64
|
-
<Version>2010</Version>
|
|
65
|
-
<Href>http://www.xbrl.org/2003/xlink-2003-12-31.xsd</Href>
|
|
66
|
-
<AttType>SCH</AttType>
|
|
67
|
-
<FileTypeName>Schema</FileTypeName>
|
|
68
|
-
<Elements>0</Elements>
|
|
69
|
-
<Namespace>http://www.w3.org/1999/xlink</Namespace>
|
|
70
|
-
<Prefix>xlink</Prefix>
|
|
71
|
-
</Loc>
|
|
72
|
-
<Loc>
|
|
73
|
-
<Family>BASE</Family>
|
|
74
|
-
<Version>2010</Version>
|
|
75
|
-
<Href>http://www.xbrl.org/2005/xbrldt-2005.xsd</Href>
|
|
76
|
-
<AttType>SCH</AttType>
|
|
77
|
-
<FileTypeName>Schema</FileTypeName>
|
|
78
|
-
<Elements>1</Elements>
|
|
79
|
-
<Namespace>http://xbrl.org/2005/xbrldt</Namespace>
|
|
80
|
-
<Prefix>xbrldt</Prefix>
|
|
81
|
-
</Loc>
|
|
82
|
-
<Loc>
|
|
83
|
-
<Family>BASE</Family>
|
|
84
|
-
<Version>2010</Version>
|
|
85
|
-
<Href>http://www.xbrl.org/2006/xbrldi-2006.xsd</Href>
|
|
86
|
-
<AttType>SCH</AttType>
|
|
87
|
-
<FileTypeName>Schema</FileTypeName>
|
|
88
|
-
<Elements>1</Elements>
|
|
89
|
-
<Namespace>http://xbrl.org/2006/xbrldi</Namespace>
|
|
90
|
-
<Prefix>xbrldi</Prefix>
|
|
91
|
-
</Loc>
|
|
92
|
-
<Loc>
|
|
93
|
-
<Family>BASE</Family>
|
|
94
|
-
<Version>2008</Version>
|
|
95
|
-
<Href>http://www.xbrl.org/2008/generic-link.xsd</Href>
|
|
96
|
-
<AttType>SCH</AttType>
|
|
97
|
-
<FileTypeName>Schema</FileTypeName>
|
|
98
|
-
<Elements>1</Elements>
|
|
99
|
-
<Namespace>http://xbrl.org/2008/generic</Namespace>
|
|
100
|
-
<Prefix>gen</Prefix>
|
|
101
|
-
</Loc>
|
|
102
|
-
<Loc>
|
|
103
|
-
<Family>BASE</Family>
|
|
104
|
-
<Version>2008</Version>
|
|
105
|
-
<Href>http://www.xbrl.org/2008/generic-label.xsd</Href>
|
|
106
|
-
<AttType>SCH</AttType>
|
|
107
|
-
<FileTypeName>Schema</FileTypeName>
|
|
108
|
-
<Elements>1</Elements>
|
|
109
|
-
<Namespace>http://xbrl.org/2008/label</Namespace>
|
|
110
|
-
<Prefix>label</Prefix>
|
|
111
|
-
</Loc>
|
|
112
|
-
<Loc>
|
|
113
|
-
<Family>BASE</Family>
|
|
114
|
-
<Version>2008</Version>
|
|
115
|
-
<Href>http://www.xbrl.org/2008/generic-reference.xsd</Href>
|
|
116
|
-
<AttType>SCH</AttType>
|
|
117
|
-
<FileTypeName>Schema</FileTypeName>
|
|
118
|
-
<Elements>1</Elements>
|
|
119
|
-
<Namespace>http://xbrl.org/2008/reference</Namespace>
|
|
120
|
-
<Prefix>reference</Prefix>
|
|
121
|
-
</Loc>
|
|
122
|
-
<Loc>
|
|
123
|
-
<Family>BASE</Family>
|
|
124
|
-
<Version>2010</Version>
|
|
125
|
-
<Href>http://www.xbrl.org/lrr/role/negated-2009-12-16.xsd</Href>
|
|
126
|
-
<AttType>SCH</AttType>
|
|
127
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
128
|
-
<Elements>0</Elements>
|
|
129
|
-
<Namespace>http://www.xbrl.org/2009/role/negated</Namespace>
|
|
130
|
-
</Loc>
|
|
131
|
-
<Loc>
|
|
132
|
-
<Family>BASE</Family>
|
|
133
|
-
<Version>2010</Version>
|
|
134
|
-
<Href>http://www.xbrl.org/dtr/type/nonNumeric-2009-12-16.xsd</Href>
|
|
135
|
-
<AttType>SCH</AttType>
|
|
136
|
-
<FileTypeName>Schema</FileTypeName>
|
|
137
|
-
<Elements>0</Elements>
|
|
138
|
-
<Namespace>http://www.xbrl.org/dtr/type/non-numeric</Namespace>
|
|
139
|
-
<Prefix>nonnum</Prefix>
|
|
140
|
-
</Loc>
|
|
141
|
-
<Loc>
|
|
142
|
-
<Family>BASE</Family>
|
|
143
|
-
<Version>2010</Version>
|
|
144
|
-
<Href>http://www.xbrl.org/dtr/type/numeric-2009-12-16.xsd</Href>
|
|
145
|
-
<AttType>SCH</AttType>
|
|
146
|
-
<FileTypeName>Schema</FileTypeName>
|
|
147
|
-
<Elements>0</Elements>
|
|
148
|
-
<Namespace>http://www.xbrl.org/dtr/type/numeric</Namespace>
|
|
149
|
-
<Prefix>num</Prefix>
|
|
150
|
-
</Loc>
|
|
151
|
-
<Loc>
|
|
152
|
-
<Family>BASE</Family>
|
|
153
|
-
<Version>2010</Version>
|
|
154
|
-
<Href>http://www.xbrl.org/2006/ref-2006-02-27.xsd</Href>
|
|
155
|
-
<AttType>SCH</AttType>
|
|
156
|
-
<FileTypeName>Schema</FileTypeName>
|
|
157
|
-
<Elements>0</Elements>
|
|
158
|
-
<Namespace>http://www.xbrl.org/2006/ref</Namespace>
|
|
159
|
-
</Loc>
|
|
160
|
-
<Loc>
|
|
161
|
-
<Family>BASE</Family>
|
|
162
|
-
<Version>2010</Version>
|
|
163
|
-
<Href>http://www.xbrl.org/2004/ref-2004-08-10.xsd</Href>
|
|
164
|
-
<AttType>SCH</AttType>
|
|
165
|
-
<FileTypeName>Schema</FileTypeName>
|
|
166
|
-
<Elements>0</Elements>
|
|
167
|
-
<Namespace>http://www.xbrl.org/2004/ref</Namespace>
|
|
168
|
-
</Loc>
|
|
169
|
-
<Loc>
|
|
170
|
-
<Family>BASE</Family>
|
|
171
|
-
<Version>2010</Version>
|
|
172
|
-
<Href>http://www.xbrl.org/lrr/role/net-2009-12-16.xsd</Href>
|
|
173
|
-
<AttType>SCH</AttType>
|
|
174
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
175
|
-
<Elements>0</Elements>
|
|
176
|
-
<Namespace>http://www.xbrl.org/2009/role/net</Namespace>
|
|
177
|
-
</Loc>
|
|
178
|
-
<Loc>
|
|
179
|
-
<Family>BASE</Family>
|
|
180
|
-
<Version>2010</Version>
|
|
181
|
-
<Href>http://www.xbrl.org/lrr/arcrole/factExplanatory-2009-12-16.xsd</Href>
|
|
182
|
-
<AttType>SCH</AttType>
|
|
183
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
184
|
-
<Elements>0</Elements>
|
|
185
|
-
<Namespace>http://www.xbrl.org/2009/arcrole/fact-explanatoryFact</Namespace>
|
|
186
|
-
</Loc>
|
|
187
|
-
<Loc>
|
|
188
|
-
<Family>BASE</Family>
|
|
189
|
-
<Version>2010</Version>
|
|
190
|
-
<Href>http://www.xbrl.org/lrr/role/negated-2008-03-31.xsd</Href>
|
|
191
|
-
<AttType>SCH</AttType>
|
|
192
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
193
|
-
<Elements>0</Elements>
|
|
194
|
-
<Namespace>http://xbrl.us/us-gaap/negated/2008-03-31</Namespace>
|
|
195
|
-
</Loc>
|
|
196
|
-
<Loc>
|
|
197
|
-
<Family>BASE</Family>
|
|
198
|
-
<Version>2010</Version>
|
|
199
|
-
<Href>http://www.xbrl.org/lrr/arcrole/deprecated-2009-12-16.xsd</Href>
|
|
200
|
-
<AttType>SCH</AttType>
|
|
201
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
202
|
-
<Elements>0</Elements>
|
|
203
|
-
<Namespace>http://www.xbrl.org/2009/arcrole/deprecated</Namespace>
|
|
204
|
-
</Loc>
|
|
205
|
-
<Loc>
|
|
206
|
-
<Family>BASE</Family>
|
|
207
|
-
<Version>2010</Version>
|
|
208
|
-
<Href>http://www.xbrl.org/lrr/role/deprecated-2009-12-16.xsd</Href>
|
|
209
|
-
<AttType>SCH</AttType>
|
|
210
|
-
<FileTypeName>Roles/Arcroles</FileTypeName>
|
|
211
|
-
<Elements>0</Elements>
|
|
212
|
-
<Namespace>http://www.xbrl.org/2009/role/deprecated</Namespace>
|
|
213
|
-
</Loc>
|
|
214
|
-
|
|
215
|
-
<!-- NT5.0 -->
|
|
216
|
-
|
|
217
|
-
<Loc>
|
|
218
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
219
|
-
<Version>5.0</Version>
|
|
220
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-common-data.xsd</Href>
|
|
221
|
-
<AttType>SCH</AttType>
|
|
222
|
-
<FileTypeName>Schema</FileTypeName>
|
|
223
|
-
<Elements>1</Elements>
|
|
224
|
-
<Namespace>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-common-data</Namespace>
|
|
225
|
-
<Prefix>nl-cd</Prefix>
|
|
226
|
-
</Loc>
|
|
227
|
-
<Loc>
|
|
228
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
229
|
-
<Version>5.0</Version>
|
|
230
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-common-data-documentation-lab-en.xml</Href>
|
|
231
|
-
<AttType>LAB</AttType>
|
|
232
|
-
<FileTypeName>Labels, Documentation, en</FileTypeName>
|
|
233
|
-
<Elements>0</Elements>
|
|
234
|
-
</Loc>
|
|
235
|
-
<Loc>
|
|
236
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
237
|
-
<Version>5.0</Version>
|
|
238
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-common-data-documentation-lab-nl.xml</Href>
|
|
239
|
-
<AttType>LAB</AttType>
|
|
240
|
-
<FileTypeName>Labels, Documentation, nl</FileTypeName>
|
|
241
|
-
<Elements>0</Elements>
|
|
242
|
-
</Loc>
|
|
243
|
-
<Loc>
|
|
244
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
245
|
-
<Version>5.0</Version>
|
|
246
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-common-data-lab-en.xml</Href>
|
|
247
|
-
<AttType>LAB</AttType>
|
|
248
|
-
<FileTypeName>Labels, Standard, en</FileTypeName>
|
|
249
|
-
<Elements>0</Elements>
|
|
250
|
-
</Loc>
|
|
251
|
-
<Loc>
|
|
252
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
253
|
-
<Version>5.0</Version>
|
|
254
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-common-data-lab-nl.xml</Href>
|
|
255
|
-
<AttType>LAB</AttType>
|
|
256
|
-
<FileTypeName>Labels, Standard, nl</FileTypeName>
|
|
257
|
-
<Elements>0</Elements>
|
|
258
|
-
</Loc>
|
|
259
|
-
<Loc>
|
|
260
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
261
|
-
<Version>5.0</Version>
|
|
262
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-common-data-ref.xml</Href>
|
|
263
|
-
<AttType>REF</AttType>
|
|
264
|
-
<FileTypeName>Reference, Authoritative</FileTypeName>
|
|
265
|
-
<Elements>0</Elements>
|
|
266
|
-
</Loc>
|
|
267
|
-
<Loc>
|
|
268
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
269
|
-
<Version>5.0</Version>
|
|
270
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-genbase.xsd</Href>
|
|
271
|
-
<AttType>SCH</AttType>
|
|
272
|
-
<FileTypeName>Schema</FileTypeName>
|
|
273
|
-
<Elements>1</Elements>
|
|
274
|
-
<Namespace>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-genbase</Namespace>
|
|
275
|
-
<Prefix>nl-gen</Prefix>
|
|
276
|
-
</Loc>
|
|
277
|
-
<Loc>
|
|
278
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
279
|
-
<Version>5.0</Version>
|
|
280
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-genbase-documentation-lab-nl.xml</Href>
|
|
281
|
-
<AttType>LAB</AttType>
|
|
282
|
-
<FileTypeName>Labels, Documentation, nl</FileTypeName>
|
|
283
|
-
<Elements>0</Elements>
|
|
284
|
-
</Loc>
|
|
285
|
-
<Loc>
|
|
286
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
287
|
-
<Version>5.0</Version>
|
|
288
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-genbase-lab-en.xml</Href>
|
|
289
|
-
<AttType>LAB</AttType>
|
|
290
|
-
<FileTypeName>Labels, Standard, en</FileTypeName>
|
|
291
|
-
<Elements>0</Elements>
|
|
292
|
-
</Loc>
|
|
293
|
-
<Loc>
|
|
294
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
295
|
-
<Version>5.0</Version>
|
|
296
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-genbase-lab-nl.xml</Href>
|
|
297
|
-
<AttType>LAB</AttType>
|
|
298
|
-
<FileTypeName>Labels, Standard, nl</FileTypeName>
|
|
299
|
-
<Elements>0</Elements>
|
|
300
|
-
</Loc>
|
|
301
|
-
<Loc>
|
|
302
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
303
|
-
<Version>5.0</Version>
|
|
304
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/items/nl-genbase-ref.xml</Href>
|
|
305
|
-
<AttType>REF</AttType>
|
|
306
|
-
<FileTypeName>Reference, Authoritative</FileTypeName>
|
|
307
|
-
<Elements>0</Elements>
|
|
308
|
-
</Loc>
|
|
309
|
-
<Loc>
|
|
310
|
-
<Family>BASE</Family>
|
|
311
|
-
<Version>5.0</Version>
|
|
312
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/types/nl-types.xsd</Href>
|
|
313
|
-
<LocalHref>basis/sbr/types/nl-types.xsd</LocalHref>
|
|
314
|
-
<AttType>SCH</AttType>
|
|
315
|
-
<FileTypeName>Schema</FileTypeName>
|
|
316
|
-
<Elements>1</Elements>
|
|
317
|
-
<Namespace>http://www.nltaxonomie.nl/5.0/basis/sbr/types/nl-types</Namespace>
|
|
318
|
-
<Prefix>nl-types</Prefix>
|
|
319
|
-
</Loc>
|
|
320
|
-
<Loc>
|
|
321
|
-
<Family>BASE</Family>
|
|
322
|
-
<Version>5.0</Version>
|
|
323
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/types/nl-codes.xsd</Href>
|
|
324
|
-
<LocalHref>basis/sbr/types/nl-codes.xsd</LocalHref>
|
|
325
|
-
<AttType>SCH</AttType>
|
|
326
|
-
<FileTypeName>Schema</FileTypeName>
|
|
327
|
-
<Elements>1</Elements>
|
|
328
|
-
<Namespace>http://www.nltaxonomie.nl/5.0/basis/sbr/types/nl-codes</Namespace>
|
|
329
|
-
<Prefix>nl-codes</Prefix>
|
|
330
|
-
</Loc>
|
|
331
|
-
|
|
332
|
-
<!-- NT 6.0 -->
|
|
333
|
-
|
|
334
|
-
<Loc>
|
|
335
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
336
|
-
<Version>6.0</Version>
|
|
337
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-common-data.xsd</Href>
|
|
338
|
-
<LocalHref>basis/sbr/items/nl-common-data.xsd</LocalHref>
|
|
339
|
-
<AttType>SCH</AttType>
|
|
340
|
-
<FileTypeName>Schema</FileTypeName>
|
|
341
|
-
<Elements>1</Elements>
|
|
342
|
-
<Namespace>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-common-data</Namespace>
|
|
343
|
-
<Prefix>nl-cd</Prefix>
|
|
344
|
-
</Loc>
|
|
345
|
-
<Loc>
|
|
346
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
347
|
-
<Version>6.0</Version>
|
|
348
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-common-data-documentation-lab-en.xml</Href>
|
|
349
|
-
<AttType>LAB</AttType>
|
|
350
|
-
<FileTypeName>Labels, Documentation, en</FileTypeName>
|
|
351
|
-
<Elements>0</Elements>
|
|
352
|
-
</Loc>
|
|
353
|
-
<Loc>
|
|
354
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
355
|
-
<Version>6.0</Version>
|
|
356
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-common-data-documentation-lab-nl.xml</Href>
|
|
357
|
-
<AttType>LAB</AttType>
|
|
358
|
-
<FileTypeName>Labels, Documentation, nl</FileTypeName>
|
|
359
|
-
<Elements>0</Elements>
|
|
360
|
-
</Loc>
|
|
361
|
-
<Loc>
|
|
362
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
363
|
-
<Version>6.0</Version>
|
|
364
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-common-data-lab-en.xml</Href>
|
|
365
|
-
<AttType>LAB</AttType>
|
|
366
|
-
<FileTypeName>Labels, Standard, en</FileTypeName>
|
|
367
|
-
<Elements>0</Elements>
|
|
368
|
-
</Loc>
|
|
369
|
-
<Loc>
|
|
370
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
371
|
-
<Version>6.0</Version>
|
|
372
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-common-data-lab-nl.xml</Href>
|
|
373
|
-
<AttType>LAB</AttType>
|
|
374
|
-
<FileTypeName>Labels, Standard, nl</FileTypeName>
|
|
375
|
-
<Elements>0</Elements>
|
|
376
|
-
</Loc>
|
|
377
|
-
<Loc>
|
|
378
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
379
|
-
<Version>6.0</Version>
|
|
380
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-common-data-ref.xml</Href>
|
|
381
|
-
<LocalHref>basis/sbr/items/nl-common-data-ref.xml</LocalHref>
|
|
382
|
-
<AttType>REF</AttType>
|
|
383
|
-
<FileTypeName>Reference, Authoritative</FileTypeName>
|
|
384
|
-
<Elements>0</Elements>
|
|
385
|
-
</Loc>
|
|
386
|
-
<Loc>
|
|
387
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
388
|
-
<Version>6.0</Version>
|
|
389
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-genbase.xsd</Href>
|
|
390
|
-
<LocalHref>basis/sbr/items/nl-genbase.xsd</LocalHref>
|
|
391
|
-
<AttType>SCH</AttType>
|
|
392
|
-
<FileTypeName>Schema</FileTypeName>
|
|
393
|
-
<Elements>1</Elements>
|
|
394
|
-
<Namespace>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-genbase</Namespace>
|
|
395
|
-
<Prefix>nl-gen</Prefix>
|
|
396
|
-
</Loc>
|
|
397
|
-
<Loc>
|
|
398
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
399
|
-
<Version>6.0</Version>
|
|
400
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-genbase-terse-lab-nl.xml</Href>
|
|
401
|
-
<AttType>LAB</AttType>
|
|
402
|
-
<FileTypeName>Labels, Terse, nl</FileTypeName>
|
|
403
|
-
<Elements>0</Elements>
|
|
404
|
-
</Loc>
|
|
405
|
-
<Loc>
|
|
406
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
407
|
-
<Version>6.0</Version>
|
|
408
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-genbase-terse-lab-en.xml</Href>
|
|
409
|
-
<AttType>LAB</AttType>
|
|
410
|
-
<FileTypeName>Labels, Terse, en</FileTypeName>
|
|
411
|
-
<Elements>0</Elements>
|
|
412
|
-
</Loc>
|
|
413
|
-
<Loc>
|
|
414
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
415
|
-
<Version>6.0</Version>
|
|
416
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-genbase-lab-nl.xml</Href>
|
|
417
|
-
<AttType>LAB</AttType>
|
|
418
|
-
<FileTypeName>Labels, Standard, nl</FileTypeName>
|
|
419
|
-
<Elements>0</Elements>
|
|
420
|
-
</Loc>
|
|
421
|
-
<Loc>
|
|
422
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
423
|
-
<Version>6.0</Version>
|
|
424
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-genbase-lab-en.xml</Href>
|
|
425
|
-
<AttType>LAB</AttType>
|
|
426
|
-
<FileTypeName>Labels, Standard, en</FileTypeName>
|
|
427
|
-
<Elements>0</Elements>
|
|
428
|
-
</Loc>
|
|
429
|
-
<Loc>
|
|
430
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
431
|
-
<Version>6.0</Version>
|
|
432
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-genbase-periodstart-lab-nl.xml</Href>
|
|
433
|
-
<AttType>LAB</AttType>
|
|
434
|
-
<FileTypeName>Labels, Period start, nl</FileTypeName>
|
|
435
|
-
<Elements>0</Elements>
|
|
436
|
-
</Loc>
|
|
437
|
-
<Loc>
|
|
438
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
439
|
-
<Version>6.0</Version>
|
|
440
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-genbase-periodstart-lab-en.xml</Href>
|
|
441
|
-
<AttType>LAB</AttType>
|
|
442
|
-
<FileTypeName>Labels, Period start, en</FileTypeName>
|
|
443
|
-
<Elements>0</Elements>
|
|
444
|
-
</Loc>
|
|
445
|
-
<Loc>
|
|
446
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
447
|
-
<Version>6.0</Version>
|
|
448
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-genbase-periodstart-lab-nl.xml</Href>
|
|
449
|
-
<AttType>LAB</AttType>
|
|
450
|
-
<FileTypeName>Labels, Period start, nl</FileTypeName>
|
|
451
|
-
<Elements>0</Elements>
|
|
452
|
-
</Loc>
|
|
453
|
-
<Loc>
|
|
454
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
455
|
-
<Version>6.0</Version>
|
|
456
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-genbase-periodend-lab-en.xml</Href>
|
|
457
|
-
<AttType>LAB</AttType>
|
|
458
|
-
<FileTypeName>Labels, Period end, en</FileTypeName>
|
|
459
|
-
<Elements>0</Elements>
|
|
460
|
-
</Loc>
|
|
461
|
-
<Loc>
|
|
462
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
463
|
-
<Version>6.0</Version>
|
|
464
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-genbase-periodend-lab-nl.xml</Href>
|
|
465
|
-
<AttType>LAB</AttType>
|
|
466
|
-
<FileTypeName>Labels, Period end, nl</FileTypeName>
|
|
467
|
-
<Elements>0</Elements>
|
|
468
|
-
</Loc>
|
|
469
|
-
<Loc>
|
|
470
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
471
|
-
<Version>6.0</Version>
|
|
472
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/items/nl-genbase-ref.xml</Href>
|
|
473
|
-
<AttType>REF</AttType>
|
|
474
|
-
<FileTypeName>Reference, Authoritative</FileTypeName>
|
|
475
|
-
<Elements>0</Elements>
|
|
476
|
-
</Loc>
|
|
477
|
-
<Loc>
|
|
478
|
-
<Family>SBR-NL-LINKROLES</Family>
|
|
479
|
-
<Version>6.0</Version>
|
|
480
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/linkroles/nl-genbase-domain-linkroles.xsd</Href>
|
|
481
|
-
<AttType>SCH</AttType>
|
|
482
|
-
<FileTypeName>Schema</FileTypeName>
|
|
483
|
-
<Elements>1</Elements>
|
|
484
|
-
<Namespace>http://www.nltaxonomie.nl/6.0/basis/sbr/linkroles/nl-genbase-domain-linkroles</Namespace>
|
|
485
|
-
<Prefix>nl-lr</Prefix>
|
|
486
|
-
</Loc>
|
|
487
|
-
<Loc>
|
|
488
|
-
<Family>SBR-NL-LINKROLES</Family>
|
|
489
|
-
<Version>6.0</Version>
|
|
490
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/linkroles/nl-genbase-domain-linkroles-generic-lab-en.xml</Href>
|
|
491
|
-
<AttType>LAB</AttType>
|
|
492
|
-
<FileTypeName>Labels, Standard, en</FileTypeName>
|
|
493
|
-
<Elements>0</Elements>
|
|
494
|
-
</Loc>
|
|
495
|
-
<Loc>
|
|
496
|
-
<Family>SBR-NL-LINKROLES</Family>
|
|
497
|
-
<Version>6.0</Version>
|
|
498
|
-
<Href>http://www.nltaxonomie.nl/6.0/basis/sbr/linkroles/nl-genbase-domain-linkroles-generic-lab-nl.xml</Href>
|
|
499
|
-
<AttType>LAB</AttType>
|
|
500
|
-
<FileTypeName>Labels, Standard, nl</FileTypeName>
|
|
501
|
-
<Elements>0</Elements>
|
|
502
|
-
</Loc>
|
|
503
|
-
|
|
504
|
-
<!-- NT 7.0 -->
|
|
505
|
-
|
|
506
|
-
<Loc>
|
|
507
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
508
|
-
<Version>7.0</Version>
|
|
509
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-common-data.xsd</Href>
|
|
510
|
-
<LocalHref>basis/sbr/items/nl-common-data.xsd</LocalHref>
|
|
511
|
-
<AttType>SCH</AttType>
|
|
512
|
-
<FileTypeName>Schema</FileTypeName>
|
|
513
|
-
<Elements>1</Elements>
|
|
514
|
-
<Namespace>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-common-data</Namespace>
|
|
515
|
-
<Prefix>nl-cd</Prefix>
|
|
516
|
-
</Loc>
|
|
517
|
-
<Loc>
|
|
518
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
519
|
-
<Version>7.0</Version>
|
|
520
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-common-data-documentation-lab-en.xml</Href>
|
|
521
|
-
<AttType>LAB</AttType>
|
|
522
|
-
<FileTypeName>Labels, Documentation, en</FileTypeName>
|
|
523
|
-
<Elements>0</Elements>
|
|
524
|
-
</Loc>
|
|
525
|
-
<Loc>
|
|
526
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
527
|
-
<Version>7.0</Version>
|
|
528
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-common-data-documentation-lab-nl.xml</Href>
|
|
529
|
-
<AttType>LAB</AttType>
|
|
530
|
-
<FileTypeName>Labels, Documentation, nl</FileTypeName>
|
|
531
|
-
<Elements>0</Elements>
|
|
532
|
-
</Loc>
|
|
533
|
-
<Loc>
|
|
534
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
535
|
-
<Version>7.0</Version>
|
|
536
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-common-data-lab-en.xml</Href>
|
|
537
|
-
<AttType>LAB</AttType>
|
|
538
|
-
<FileTypeName>Labels, Standard, en</FileTypeName>
|
|
539
|
-
<Elements>0</Elements>
|
|
540
|
-
</Loc>
|
|
541
|
-
<Loc>
|
|
542
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
543
|
-
<Version>7.0</Version>
|
|
544
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-common-data-lab-nl.xml</Href>
|
|
545
|
-
<AttType>LAB</AttType>
|
|
546
|
-
<FileTypeName>Labels, Standard, nl</FileTypeName>
|
|
547
|
-
<Elements>0</Elements>
|
|
548
|
-
</Loc>
|
|
549
|
-
<Loc>
|
|
550
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
551
|
-
<Version>7.0</Version>
|
|
552
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-common-data-ref.xml</Href>
|
|
553
|
-
<LocalHref>basis/sbr/items/nl-common-data-ref.xml</LocalHref>
|
|
554
|
-
<AttType>REF</AttType>
|
|
555
|
-
<FileTypeName>Reference, Authoritative</FileTypeName>
|
|
556
|
-
<Elements>0</Elements>
|
|
557
|
-
</Loc>
|
|
558
|
-
<Loc>
|
|
559
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
560
|
-
<Version>7.0</Version>
|
|
561
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-genbase.xsd</Href>
|
|
562
|
-
<LocalHref>basis/sbr/items/nl-genbase.xsd</LocalHref>
|
|
563
|
-
<AttType>SCH</AttType>
|
|
564
|
-
<FileTypeName>Schema</FileTypeName>
|
|
565
|
-
<Elements>1</Elements>
|
|
566
|
-
<Namespace>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-genbase</Namespace>
|
|
567
|
-
<Prefix>nl-gen</Prefix>
|
|
568
|
-
</Loc>
|
|
569
|
-
<Loc>
|
|
570
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
571
|
-
<Version>7.0</Version>
|
|
572
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-genbase-terse-lab-nl.xml</Href>
|
|
573
|
-
<AttType>LAB</AttType>
|
|
574
|
-
<FileTypeName>Labels, Terse, nl</FileTypeName>
|
|
575
|
-
<Elements>0</Elements>
|
|
576
|
-
</Loc>
|
|
577
|
-
<Loc>
|
|
578
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
579
|
-
<Version>7.0</Version>
|
|
580
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-genbase-terse-lab-en.xml</Href>
|
|
581
|
-
<AttType>LAB</AttType>
|
|
582
|
-
<FileTypeName>Labels, Terse, en</FileTypeName>
|
|
583
|
-
<Elements>0</Elements>
|
|
584
|
-
</Loc>
|
|
585
|
-
<Loc>
|
|
586
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
587
|
-
<Version>7.0</Version>
|
|
588
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-genbase-lab-nl.xml</Href>
|
|
589
|
-
<AttType>LAB</AttType>
|
|
590
|
-
<FileTypeName>Labels, Standard, nl</FileTypeName>
|
|
591
|
-
<Elements>0</Elements>
|
|
592
|
-
</Loc>
|
|
593
|
-
<Loc>
|
|
594
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
595
|
-
<Version>7.0</Version>
|
|
596
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-genbase-lab-en.xml</Href>
|
|
597
|
-
<AttType>LAB</AttType>
|
|
598
|
-
<FileTypeName>Labels, Standard, en</FileTypeName>
|
|
599
|
-
<Elements>0</Elements>
|
|
600
|
-
</Loc>
|
|
601
|
-
<Loc>
|
|
602
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
603
|
-
<Version>7.0</Version>
|
|
604
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-genbase-periodstart-lab-nl.xml</Href>
|
|
605
|
-
<AttType>LAB</AttType>
|
|
606
|
-
<FileTypeName>Labels, Period start, nl</FileTypeName>
|
|
607
|
-
<Elements>0</Elements>
|
|
608
|
-
</Loc>
|
|
609
|
-
<Loc>
|
|
610
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
611
|
-
<Version>7.0</Version>
|
|
612
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-genbase-periodstart-lab-en.xml</Href>
|
|
613
|
-
<AttType>LAB</AttType>
|
|
614
|
-
<FileTypeName>Labels, Period start, en</FileTypeName>
|
|
615
|
-
<Elements>0</Elements>
|
|
616
|
-
</Loc>
|
|
617
|
-
<Loc>
|
|
618
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
619
|
-
<Version>7.0</Version>
|
|
620
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-genbase-periodstart-lab-nl.xml</Href>
|
|
621
|
-
<AttType>LAB</AttType>
|
|
622
|
-
<FileTypeName>Labels, Period start, nl</FileTypeName>
|
|
623
|
-
<Elements>0</Elements>
|
|
624
|
-
</Loc>
|
|
625
|
-
<Loc>
|
|
626
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
627
|
-
<Version>7.0</Version>
|
|
628
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-genbase-periodend-lab-en.xml</Href>
|
|
629
|
-
<AttType>LAB</AttType>
|
|
630
|
-
<FileTypeName>Labels, Period end, en</FileTypeName>
|
|
631
|
-
<Elements>0</Elements>
|
|
632
|
-
</Loc>
|
|
633
|
-
<Loc>
|
|
634
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
635
|
-
<Version>7.0</Version>
|
|
636
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-genbase-periodend-lab-nl.xml</Href>
|
|
637
|
-
<AttType>LAB</AttType>
|
|
638
|
-
<FileTypeName>Labels, Period end, nl</FileTypeName>
|
|
639
|
-
<Elements>0</Elements>
|
|
640
|
-
</Loc>
|
|
641
|
-
<Loc>
|
|
642
|
-
<Family>SBR-GEN-ITEMS</Family>
|
|
643
|
-
<Version>7.0</Version>
|
|
644
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/items/nl-genbase-ref.xml</Href>
|
|
645
|
-
<AttType>REF</AttType>
|
|
646
|
-
<FileTypeName>Reference, Authoritative</FileTypeName>
|
|
647
|
-
<Elements>0</Elements>
|
|
648
|
-
</Loc>
|
|
649
|
-
<Loc>
|
|
650
|
-
<Family>SBR-NL-LINKROLES</Family>
|
|
651
|
-
<Version>7.0</Version>
|
|
652
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/linkroles/nl-genbase-domain-linkroles.xsd</Href>
|
|
653
|
-
<AttType>SCH</AttType>
|
|
654
|
-
<FileTypeName>Schema</FileTypeName>
|
|
655
|
-
<Elements>1</Elements>
|
|
656
|
-
<Namespace>http://www.nltaxonomie.nl/7.0/basis/sbr/linkroles/nl-genbase-domain-linkroles</Namespace>
|
|
657
|
-
<Prefix>nl-lr</Prefix>
|
|
658
|
-
</Loc>
|
|
659
|
-
<Loc>
|
|
660
|
-
<Family>SBR-NL-LINKROLES</Family>
|
|
661
|
-
<Version>7.0</Version>
|
|
662
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/linkroles/nl-genbase-domain-linkroles-generic-lab-en.xml</Href>
|
|
663
|
-
<AttType>LAB</AttType>
|
|
664
|
-
<FileTypeName>Labels, Standard, en</FileTypeName>
|
|
665
|
-
<Elements>0</Elements>
|
|
666
|
-
</Loc>
|
|
667
|
-
<Loc>
|
|
668
|
-
<Family>SBR-NL-LINKROLES</Family>
|
|
669
|
-
<Version>7.0</Version>
|
|
670
|
-
<Href>http://www.nltaxonomie.nl/7.0/basis/sbr/linkroles/nl-genbase-domain-linkroles-generic-lab-nl.xml</Href>
|
|
671
|
-
<AttType>LAB</AttType>
|
|
672
|
-
<FileTypeName>Labels, Standard, nl</FileTypeName>
|
|
673
|
-
<Elements>0</Elements>
|
|
674
|
-
</Loc>
|
|
675
|
-
|
|
676
|
-
<!-- NT 2011 targetNamespaces -->
|
|
677
|
-
<Loc>
|
|
678
|
-
<Family>SBR-NL-ITEMS</Family>
|
|
679
|
-
<Version>7.0</Version>
|
|
680
|
-
<Href>http://www.nltaxonomie.nl/2011/basis/sbr/items/nl-common-data.xsd</Href>
|
|
681
|
-
<LocalHref>basis/sbr/items/nl-common-data.xsd</LocalHref>
|
|
682
|
-
<AttType>SCH</AttType>
|
|
683
|
-
<FileTypeName>Schema</FileTypeName>
|
|
684
|
-
<Elements>1</Elements>
|
|
685
|
-
<Namespace>http://www.nltaxonomie.nl/2011/basis/sbr/items/nl-common-data</Namespace>
|
|
686
|
-
<Prefix>nl-cd</Prefix>
|
|
687
|
-
</Loc>
|
|
688
|
-
|
|
689
|
-
<!-- do not examine sbr-nl rules in these files, this is why they are marked as BASE family -->
|
|
690
|
-
<Loc>
|
|
691
|
-
<Family>BASE</Family>
|
|
692
|
-
<Version>5.0</Version>
|
|
693
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/linkroles/xbrl-syntax-extension.xsd</Href>
|
|
694
|
-
<LocalHref>basis/sbr/xbrl/xbrl-syntax-extension.xsd</LocalHref>
|
|
695
|
-
<AttType>SCH</AttType>
|
|
696
|
-
<FileTypeName>Schema</FileTypeName>
|
|
697
|
-
<Elements>1</Elements>
|
|
698
|
-
<Namespace>http://www.nltaxonomie.nl/5.0/basis/sbr/xbrl/xbrl-syntax-extension</Namespace>
|
|
699
|
-
<Prefix>sbr</Prefix>
|
|
700
|
-
</Loc>
|
|
701
|
-
<Loc>
|
|
702
|
-
<Family>BASE</Family>
|
|
703
|
-
<Version>5.0</Version>
|
|
704
|
-
<Href>http://www.nltaxonomie.nl/5.0/basis/sbr/xbrl/xbrl-syntax-arcroles.xsd</Href>
|
|
705
|
-
<AttType>SCH</AttType>
|
|
706
|
-
<FileTypeName>Schema</FileTypeName>
|
|
707
|
-
<Elements>1</Elements>
|
|
708
|
-
<Namespace>http://www.nltaxonomie.nl/2011/basis/sbr/xbrl/xbrl-syntax-arcroles</Namespace>
|
|
709
|
-
<Prefix>sbr-a</Prefix>
|
|
710
|
-
</Loc>
|
|
711
|
-
<Loc>
|
|
712
|
-
<Family>BASE</Family>
|
|
713
|
-
<Version>6.0</Version>
|
|
714
|
-
<Href>http://www.nltaxonomie.nl/2011/xbrl/xbrl-syntax-extension.xsd</Href>
|
|
715
|
-
<LocalHref>basis/sbr/xbrl/xbrl-syntax-extension.xsd</LocalHref>
|
|
716
|
-
<AttType>SCH</AttType>
|
|
717
|
-
<FileTypeName>Schema</FileTypeName>
|
|
718
|
-
<Elements>1</Elements>
|
|
719
|
-
<Namespace>http://www.nltaxonomie.nl/2011/xbrl/xbrl-syntax-extension</Namespace>
|
|
720
|
-
<Prefix>sbr</Prefix>
|
|
721
|
-
</Loc>
|
|
722
|
-
<Loc>
|
|
723
|
-
<Family>BASE</Family>
|
|
724
|
-
<Version>6.0</Version>
|
|
725
|
-
<Href>http://www.nltaxonomie.nl/2011/basis/sbr/xbrl/xbrl-syntax-arcroles.xsd</Href>
|
|
726
|
-
<LocalHref>basis/sbr/xbrl/xbrl-syntax-arcroles.xsd</LocalHref>
|
|
727
|
-
<AttType>SCH</AttType>
|
|
728
|
-
<FileTypeName>Schema</FileTypeName>
|
|
729
|
-
<Elements>1</Elements>
|
|
730
|
-
<Namespace>http://www.nltaxonomie.nl/2011/xbrl/xbrl-syntax-arcroles</Namespace>
|
|
731
|
-
<Prefix>sbr-a</Prefix>
|
|
732
|
-
</Loc>
|
|
733
|
-
<Loc>
|
|
734
|
-
<Family>BASE</Family>
|
|
735
|
-
<Version>7.0</Version>
|
|
736
|
-
<Href>http://www.nltaxonomie.nl/2011/xbrl/xbrl-syntax-extension.xsd</Href>
|
|
737
|
-
<AttType>SCH</AttType>
|
|
738
|
-
<FileTypeName>Schema</FileTypeName>
|
|
739
|
-
<Elements>1</Elements>
|
|
740
|
-
<Namespace>http://www.nltaxonomie.nl/2011/xbrl/xbrl-syntax-extension</Namespace>
|
|
741
|
-
<Prefix>sbr</Prefix>
|
|
742
|
-
</Loc>
|
|
743
|
-
<Loc>
|
|
744
|
-
<Family>BASE</Family>
|
|
745
|
-
<Version>7.0</Version>
|
|
746
|
-
<Href>http://www.nltaxonomie.nl/2011/xbrl/xbrl-syntax-arcroles.xsd</Href>
|
|
747
|
-
<AttType>SCH</AttType>
|
|
748
|
-
<FileTypeName>Schema</FileTypeName>
|
|
749
|
-
<Elements>1</Elements>
|
|
750
|
-
<Namespace>http://www.nltaxonomie.nl/2011/xbrl/xbrl-syntax-arcroles</Namespace>
|
|
751
|
-
<Prefix>sbr-a</Prefix>
|
|
752
|
-
</Loc>
|
|
753
|
-
|
|
754
|
-
</Erxl>
|