Browse Source

Erster Entwurf für mdl

gc-server6 2 years ago
parent
commit
ae40f3b7cc
5 changed files with 57533 additions and 8 deletions
  1. 377 0
      cognos7/mdl_convert.py
  2. 8 8
      cognos7/transformer7.py
  3. 47605 0
      data/S_Offene_Auftraege copy.json
  4. 4449 0
      data/S_Offene_Auftraege.json
  5. 5094 0
      data/S_Offene_Auftraege.mdl

+ 377 - 0
cognos7/mdl_convert.py

@@ -0,0 +1,377 @@
+from itertools import pairwise
+import json
+import re
+import csv
+
+
+def get_field(field, block, num=1):
+    if num == 2:
+        res = re.search(field + r' (\d+) "([^"]*)" ', block)
+        if res:
+            return res[1], res[2]
+        return "0", ""
+    res = re.search(field + r' "([^"]*)" ', block)
+    if res:
+        return res[1]
+    res = re.search(field + r" (\w*) ", block)
+    if res:
+        return res[1]
+    return ""
+
+
+def ignore(block):
+    s = block.split(" ")
+    return (s[0], block)
+
+
+def model_name(block):
+    return {"Type": "Description", "Decription": block}
+    # "Name \"Neues Modell\" ModelCodePage \"ibm-5348_P100-1997\" AutoAccess False UpdateCycle 9 ModelStamp 1218210240
+    # Version \"10.2.6109.304\" ModelCategoryOrderDefault OrderUsePreference ModelOrderedByDefault False
+    # ModelNonRollupHierarchies False "
+
+
+def cognos_source(block):
+    id, name = get_field("CognosSource", block, 2)
+    return {
+        "Type": "CognosSource",
+        "ID": id,
+        "Name": name,
+        "SourceType": get_field("SourceType", block),
+        "SourcePath": get_field("SourcePath", block),
+        "PackageTimeStamp": get_field("PackageTimeStamp", block),
+        # "CognosSource 10335 \"GC\" SourceType Package SourcePath \"/content/folder[@name='Package']/package[@name='GC']\"
+        # PackageTimeStamp \"/content/folder[@name='Package']/package[@name='GC']/model[@name='2020-09-23T14:57:28.424Z']\" "
+    }
+
+
+def cognos_package_datasource_connection(block):
+    id, name = get_field("CognosPackageDatasourceConnection", block, 2)
+    prs_id, prs_name = get_field("PackageReportSource", block, 2)
+    return {
+        "Type": "CognosPackageDatasourceConnection",
+        "ID": id,
+        "Name": name,
+        "PackageReportSource": {
+            "ID": prs_id,
+            "Name": prs_name,
+        },
+        "CognosPackageConnection": get_field("CognosPackageConnection", block),
+        "CognosPackageConnectionSignon": get_field(
+            "CognosPackageConnectionSignon", block
+        ),
+        "CognosPackageAlwaysUseTransformerSignon": get_field(
+            "CognosPackageAlwaysUseTransformerSignon", block
+        ),
+        "CognosPackagePowercubeSource": get_field(
+            "CognosPackagePowercubeSource", block
+        ),
+        # "CognosPackageDatasourceConnection 15957 \"3H_AUTOMOBILE\" PackageReportSource 10335 \"GC\"
+        # CognosPackageConnection \"3H_AUTOMOBILE\"
+        # CognosPackageConnectionSignon \"3H_AUTOMOBILE\" CognosPackageAlwaysUseTransformerSignon False
+        # CognosPackagePowercubeSource False "
+    }
+
+
+def data_source(block):
+    id, name = get_field("CognosPackageDatasourceConnection", block, 2)
+    prs_id, prs_name = get_field("PackageReportSource", block, 2)
+    return {
+        "Type": "DataSource",
+        "ID": id,
+        "Name": name,
+        "Separator": get_field("Separator", block),
+        "SourceType": get_field("SourceType", block),
+        "CharacterSet": get_field("CharacterSet", block),
+        "DecimalSep": get_field("DecimalSep", block),
+        "Thousandsep": get_field("Thousandsep", block),
+        "Columns": get_field("Columns", block),
+        "Timing": get_field("Timing", block),
+        "PackageReportSource": {
+            "ID": prs_id,
+            "Name": prs_name,
+        },
+        "AutoSummary": get_field("AutoSummary", block),
+        "SetCurrent": get_field("SetCurrent", block),
+        "ServerSource": get_field("ServerSource", block),
+        "Speed": get_field("Speed", block),
+        "Presummarized": get_field("Presummarized", block),
+        "StreamExtractSize": get_field("StreamExtractSize", block),
+    }
+
+
+def org_name(block):
+    id, name = get_field("OrgName", block, 2)
+    return {
+        "Type": "OrgName",
+        "ID": id,
+        "Name": name,
+        "Origin": get_field("Origin", block),
+        "Offset": get_field("Offset", block),
+        "Column": get_field("Column", block),
+        "Storage": get_field("Storage", block),
+        "Scale": get_field("Scale", block),
+        "Size": get_field("Size", block),
+        "Decimals": get_field("Decimals", block),
+        "Class": get_field("Class", block),
+        "InputScale": get_field("InputScale", block),
+        "TimeArray": get_field("TimeArray", block),
+        "ColSrcType": get_field("ColSrcType", block),
+    }
+
+
+def dimension(block):
+    id, name = get_field("Dimension", block, 2)
+    return {
+        "Type": "Dimension",
+        "ID": id,
+        "Name": name,
+        "DimType": get_field("DimType", block),
+        "EarliestDate": get_field("EarliestDate", block),
+        "LatestDate": get_field("LatestDate", block),
+        "ManualPeriods": get_field("ManualPeriods", block),
+        "DaysInWeek": get_field("DaysInWeek", block),
+        "NewCatsLock": get_field("NewCatsLock", block),
+        "ExcludeAutoPartitioning": get_field("ExcludeAutoPartitioning", block),
+        "DimDefaultCategory": get_field("DimDefaultCategory", block),
+        # "Dimension 1463 \"Zeit\" DimType Date EarliestDate 19010101 LatestDate 21001231 ManualPeriods False DaysInWeek 127
+        # NewCatsLock False ExcludeAutoPartitioning False DimDefaultCategory 0 "
+    }
+
+
+def categories(block):
+    return {
+        "Type": "Categories",
+        # "Categories"
+    }
+
+
+def root(block):
+    id, name = get_field("Root", block, 2)
+    return {
+        "Type": "Root",
+        "ID": id,
+        "Name": name,
+        "Inclusion": get_field("Inclusion", block),
+        "Lastuse": get_field("Lastuse", block),
+        "Date": get_field("Date", block),
+        "Filtered": get_field("Filtered", block),
+        "Suppressed": get_field("Suppressed", block),
+        "Sign": get_field("Sign", block),
+        "HideValue": get_field("HideValue", block),
+        "IsKeyOrphanage": get_field("IsKeyOrphanage", block),
+        "IsTruncated": get_field("IsTruncated", block),
+        "Blanks": get_field("Blanks", block),
+        # "Root 1467 \"Zeit\" Inclusion Generate Lastuse 20180820 Date 0 Filtered False
+        # Suppressed False Sign False HideValue False
+        # IsKeyOrphanage False IsTruncated False Blanks False Drill 1469 \"Nach Zeit\" Label \"Nach Zeit\" Inclusion Suppress Filtered False
+        # Suppressed True PrimaryDrill True HideValue False YearBegins 20080101 PartialWeek Split ExtraWeek None WeekBegins Sunday
+        # Levels 1475 \"Jahr\" Blanks \"( Leerstelle )\" Inclusion Generate DateFunction Year Generate Need RefreshLabel False
+        # RefreshDescription False RefreshShortName False NewCatsLock False CatLabFormat \"YYYY\" Timerank 10
+        # UniqueCategories True UniqueMove False Associations 1477 \"Order Date\" AssociationType Type_Query
+        # AssociationRole Role_Source AssociationReferenced \"Order Date\" Associations 1479 \"Order Date\"
+        # AssociationContext 1469 AssociationType Type_Query AssociationRole Role_OrderBy
+        # AssociationReferenced \"Order Date\" SortOrder Default SortAs Ascending "
+    }
+
+
+def levels(block):
+    id, name = get_field("Levels", block, 2)
+    return {
+        "Type": "Levels",
+        "ID": id,
+        "Name": name,
+        "Blanks": get_field("Blanks", block),
+        "Inclusion": get_field("Inclusion", block),
+        "DateFunction": get_field("DateFunction", block),
+        "Generate": get_field("Generate", block),
+        "RefreshLabel": get_field("RefreshLabel", block),
+        "RefreshDescription": get_field("RefreshDescription", block),
+        "RefreshShortName": get_field("RefreshShortName", block),
+        "NewCatsLock": get_field("NewCatsLock", block),
+        "CatLabFormat": get_field("CatLabFormat", block),
+        "Timerank": get_field("Timerank", block),
+        "UniqueCategories": get_field("UniqueCategories", block),
+        "UniqueMove": get_field("UniqueMove", block),
+        # "Associations": get_field("Inclusion", block),
+        # "AssociationType": get_field("Inclusion", block),
+        # "AssociationRole": get_field("Inclusion", block),
+        # "AssociationReferenced": get_field("Inclusion", block),
+        # "Levels 1481 \"Quartal\" Blanks \"( Leerstelle )\" Inclusion Generate DateFunction Quarter Generate All RefreshLabel False
+        # RefreshDescription False RefreshShortName False NewCatsLock False CatLabFormat \"Q\"\". Q.\"\" YYYY\" Timerank 20
+        # UniqueCategories True UniqueMove False Associations 1483 \"Order Date\" AssociationType Type_Query
+        # AssociationRole Role_Source AssociationReferenced \"Order Date\" Associations 1485 \"Order Date\"
+        # AssociationContext 1469 AssociationType Type_Query AssociationRole Role_OrderBy
+        # AssociationReferenced \"Order Date\" SortOrder Default SortAs Ascending "
+    }
+
+
+def category(block):
+    return {
+        "Type": "Category",
+        # "Category 10555 \"20170101-20171231\" Parent 1469 Levels 1475 OrderBy Drill 1469 Value \"2017\" Label \"2017\"
+        # Lastuse 20180820 SourceValue \"2017\" Date 20170101 Filtered False Suppressed False Sign False HideValue False
+        # IsKeyOrphanage False IsTruncated False Blanks False Category 10557 \"20170101-20170331\" Parent 10555 Levels 1481
+        # OrderBy Drill 1469 Value \"20170101\" Label \"1. Q. 2017\" Lastuse 20180711 SourceValue \"20170101\" Date 20170101
+        # Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
+        # Category 10559 \"20170101-20170131\" Parent 10557 Levels 1487 OrderBy Drill 1469 Value \"201701\" Label \"Jan./2017\"
+        # Lastuse 20180711 SourceValue \"201701\" Date 20170101 Filtered False Suppressed False Sign False HideValue False
+        # IsKeyOrphanage False IsTruncated False Blanks False Category 10561 \"20170101\" Parent 10559 Levels 1493
+        # OrderBy Drill 1469 Value \"20170101\" Label \"01/01/2017\" Lastuse 20180711 SourceValue \"20170101\" Date 20170101
+        # Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False "
+    }
+
+
+def special_category(block):
+    return {
+        "Type": "SpecialCategory",
+        # "SpecialCategory 1503 \"M bisher\" Parent 1467 Levels 0 Lastuse 20180820 Rollup True TimeAggregate ToDate RunningPeriods 0
+        # ToDateLevel \"Monat\" TargetOffset 0 TargetLevel \"Tag\" ContextOffset 0 DateDrill 1469 Primary 11737 Primary 11739
+        # Primary 11741 Primary 11743 Primary 11745 Primary 11747 Primary 11749 Primary 11751 Primary 11753 Sign False "
+    }
+
+
+def map_drills(block):
+    return {
+        "Type": "MapDrills",
+        # "MapDrills MapDrill 1469 "
+    }
+
+
+def view_name(block):
+    return {
+        "Type": "ViewName",
+        # "ViewName 1471 \"Alle Kategorien\" Type All ViewCustomView 0 ViewName 1473 \"Dimension auslassen\" Type Omit
+        # ViewCustomView 0 Dimension 1521 \"AH-Gruppe\" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
+        # DimDefaultCategory 0 "
+    }
+
+
+def associations(block):
+    return {
+        "Type": "Associations",
+        # "Associations 15065 \"Hauptbetrieb_Name\" AssociationType Type_Query AssociationRole Role_Label
+        # AssociationReferenced \"Hauptbetrieb_Name\" Associations 15069 \"Hauptbetrieb_ID\"
+        # AssociationContext 1525 AssociationType Type_Query AssociationRole Role_OrderBy
+        # AssociationReferenced \"Hauptbetrieb_ID\" SortOrder Text SortAs Ascending "
+    }
+
+
+def drill(block):
+    id, name = get_field("Drill", block, 2)
+    return {
+        "Type": "Drill",
+        "ID": id,
+        "Name": name,
+        "Label": get_field("Label", block),
+        "Inclusion": get_field("Inclusion", block),
+        "Filtered": get_field("Filtered", block),
+        "Suppressed": get_field("Suppressed", block),
+        "PrimaryDrill": get_field("PrimaryDrill", block),
+        "HideValue": get_field("HideValue", block),
+        "YearBegins": get_field("YearBegins", block),
+        "PartialWeek": get_field("PartialWeek", block),
+        "ExtraWeek": get_field("ExtraWeek", block),
+        "WeekBegins": get_field("WeekBegins", block),
+        # "Drill 1595 \"Nach Marke\" Inclusion Suppress Filtered False Suppressed True PrimaryDrill True HideValue False
+        # Levels 1601 \"Marke\" Blanks \"( Leerstelle )\"
+        # DateFunction None Generate None RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False Timerank 0
+        # UniqueCategories False UniqueMove False
+        # Associations 1603 \"Fabrikat\" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced \"Fabrikat\" "
+    }
+
+
+def measure(block):
+    return {
+        "Type": "Measure",
+        # "Measure 10053 \"DG\" Missing Zero IgnoreMissingValue False Storage Float64 OutPutScale 0 Decimals 8
+        # ReverseSign False IsCurrency False
+        # IsFolder False Format \"#,##0~0\" DrillThrough False EndList
+        # Associations 10055 \"DG\" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced \"DG\" "
+    }
+
+
+def signon(block):
+    return {
+        "Type": "Signon",
+        # "Signon 15673 \"GC_CARLO\" UserId \"gaps\" PromptForPassword False
+        # EncryptedPW \"*1*0154377D72534C4B5F384F556F5B7970286A59373F70255D63D4EDE5BC9A7FD45994\" \"AC2C0B8CE18548\"
+        # AutoLogon False SignonType \"DataSource\" Signon 15917 \"Global1\" UserId \"Global1\" PromptForPassword False
+        # EncryptedPW \"*1*013B396846296D72232C62274C312B48432B464B52705B2147BC0680EA66C628A0FE\" \"A70FDB4177ACBA\"
+        # AutoLogon True SignOnNamespace \"CognosEx\" SignonType \"Cognos\" "
+    }
+
+
+def dimension_view(block):
+    return {
+        "Type": "DimensionView",
+        # "DimensionView 1463 \"All Categories\" DimensionView 1521 \"All Categories\" DimensionView 1551 \"All Categories\"
+        # DimensionView 1575 \"All Categories\" DimensionView 1591 \"All Categories\" DimensionView 1651 \"All Categories\"
+        # DimensionView 1665 \"All Categories\" DimensionView 1693 \"All Categories\" DimensionView 15741 \"All Categories\"
+        # MeasureInclude 9829 Yes MeasureInclude 10053 Yes MeasureInclude 10309 Yes MeasureInclude 10313 Yes
+        # MeasureInclude 10317 Yes MeasureInclude 15761 Yes "
+    }
+
+
+def allocation_add(block):
+    return {
+        "Type": "AllocationAdd",
+        # "AllocationAdd Measure 9829 Type Default AllocationAdd Measure 10053 Type Default AllocationAdd Measure 10309 Type Default
+        # AllocationAdd Measure 10313 Type Default AllocationAdd Measure 10317 Type Default AllocationAdd Measure 15761 Type Default "
+    }
+
+
+def cube(block):
+    return {
+        "Type": "Cube",
+    }
+
+
+CONVERSION = {
+    "Name": model_name,
+    "CognosSource": cognos_source,
+    "CognosPackageDatasourceConnection": cognos_package_datasource_connection,
+    "DataSource": data_source,
+    "OrgName": org_name,
+    "Dimension": dimension,
+    "Categories": categories,
+    "Root": root,
+    "Category": category,
+    "SpecialCategory": special_category,
+    "Levels": levels,
+    "MapDrills": map_drills,
+    "ViewName": view_name,
+    "Drill": drill,
+    "Measure": measure,
+    "Signon": signon,
+    "DimensionView": dimension_view,
+    "Cube": cube,
+}
+
+
+def convert_block(block):
+    block = block.replace("\n", "")
+    block_type = block.split(" ")[0]
+    # block_pair = re.findall(r'("[^"]+"|\w+) ', block)
+    # return (block_type, list(zip((block_pair[::2], block_pair[1::2]))))
+    if block_type in CONVERSION:
+        return CONVERSION[block_type](block)
+    return block_type
+
+
+def main(filename):
+    with open(filename, "r") as frh:
+        mdl_str = frh.read()
+
+    mdl_str = re.sub(r"\n+", "\n", mdl_str)
+    tags = "|".join(list(CONVERSION.keys()))
+    mdl_str = re.sub(r"\n(" + tags + r") ", r"\n\n\1 ", mdl_str)
+    mdl_blocks = mdl_str.split("\n\n")
+
+    result = [convert_block(b) for b in mdl_blocks]
+
+    json.dump(result, open(filename[:-4] + ".json", "w"), indent=2)
+
+
+if __name__ == "__main__":
+    main("data/S_Offene_Auftraege.mdl")

+ 8 - 8
cognos7/transformer7.py

@@ -9,29 +9,29 @@ cube_out = cfg.portal_dir + "\\System\\Cube_out"
 cube_temp = cube_out + "\\temp"
 
 
-@plac.pos('model_file', '', type=str)
+@plac.pos("model_file", "", type=str)
 def create(model_file):
     cube = cube_name(model_file)
 
     cmd = f'"{cfg.cognos_dir}\\runmac32.exe" "{cfg.tools_dir}\\VBS\\create-cube.mac" "{models_dir}","{model_file}","{cube_temp}"'
-    print(f"Erstelle Cube '{cube}' fuer '{model_file}'...", end='')
+    print(f"Erstelle Cube '{cube}' fuer '{model_file}'...", end="")
 
     p = subprocess.Popen(cmd)
     p.wait()
-    temp_file = f'{cube_temp}\\{model_file}.mdc'
-    cube_file = f'{cube_out}\\{cube}.mdc'
+    # temp_file = f"{cube_temp}\\{model_file}.mdc"
+    # cube_file = f"{cube_out}\\{cube}.mdc"
 
-    print('erfolgreich.')
+    print("erfolgreich.")
 
 
 def cube_name(model_file):
-    p = re.compile(r'cube_out\\([^\.]+)\.mdc', re.IGNORECASE)
-    with open(models_dir + '\\' + model_file, 'r', errors='ignore') as f:
+    p = re.compile(r"cube_out\\([^\.]+)\.mdc", re.IGNORECASE)
+    with open(models_dir + "\\" + model_file, "r", errors="ignore") as f:
         for line in f.readlines():
             m = p.search(line)
             if m:
                 return p.match(m.group()).groups()[0].lower()
 
 
-if __name__ == '__main__':
+if __name__ == "__main__":
     plac.call(create)

+ 47605 - 0
data/S_Offene_Auftraege copy.json

@@ -0,0 +1,47605 @@
+[
+  [
+    "",
+    [
+      [
+        []
+      ],
+      [
+        []
+      ]
+    ]
+  ],
+  [
+    "Name",
+    [
+      [
+        [
+          "Name",
+          "ModelCodePage",
+          "AutoAccess",
+          "UpdateCycle",
+          "ModelStamp",
+          "Version",
+          "ModelCategoryOrderDefault",
+          "ModelOrderedByDefault",
+          "ModelNonRollupHierarchies"
+        ]
+      ],
+      [
+        [
+          "\"Neues Modell\"",
+          "\"ibm-5348_P100-1997\"",
+          "False",
+          "9",
+          "1218210240",
+          "\"10.2.6109.304\"",
+          "OrderUsePreference",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "CognosSource",
+    [
+      [
+        [
+          "CognosSource",
+          "\"GC\"",
+          "Package",
+          "\"/content/folder[@name='Package']/package[@name='GC']\"",
+          "\"/content/folder[@name='Package']/package[@name='GC']/model[@name='2020-09-23T14:57:28.424Z']\""
+        ]
+      ],
+      [
+        [
+          "10335",
+          "SourceType",
+          "SourcePath",
+          "PackageTimeStamp"
+        ]
+      ]
+    ]
+  ],
+  [
+    "CognosPackageDatasourceConnection",
+    [
+      [
+        [
+          "CognosPackageDatasourceConnection",
+          "\"3H_AUTOMOBILE\"",
+          "10335",
+          "CognosPackageConnection",
+          "CognosPackageConnectionSignon",
+          "CognosPackageAlwaysUseTransformerSignon",
+          "CognosPackagePowercubeSource"
+        ]
+      ],
+      [
+        [
+          "15957",
+          "PackageReportSource",
+          "\"GC\"",
+          "\"3H_AUTOMOBILE\"",
+          "\"3H_AUTOMOBILE\"",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "CognosPackageDatasourceConnection",
+    [
+      [
+        [
+          "CognosPackageDatasourceConnection",
+          "\"LOCOSOFT\"",
+          "10335",
+          "CognosPackageConnection",
+          "CognosPackageConnectionSignon",
+          "CognosPackageAlwaysUseTransformerSignon",
+          "CognosPackagePowercubeSource"
+        ]
+      ],
+      [
+        [
+          "15959",
+          "PackageReportSource",
+          "\"GC\"",
+          "\"LOCOSOFT\"",
+          "\"LOCOSOFT\"",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "CognosPackageDatasourceConnection",
+    [
+      [
+        [
+          "CognosPackageDatasourceConnection",
+          "\"GC_CARLO\"",
+          "10335",
+          "CognosPackageConnection",
+          "CognosPackageConnectionSignon",
+          "Database",
+          "\"GC_CARLO\"",
+          "True",
+          "False"
+        ]
+      ],
+      [
+        [
+          "15961",
+          "PackageReportSource",
+          "\"GC\"",
+          "\"GC_CARLO\"",
+          "\"gaps\"",
+          "15673",
+          "CognosPackageAlwaysUseTransformerSignon",
+          "CognosPackagePowercubeSource"
+        ]
+      ]
+    ]
+  ],
+  [
+    "CognosPackageDatasourceConnection",
+    [
+      [
+        [
+          "CognosPackageDatasourceConnection",
+          "\"GC\"",
+          "10335",
+          "CognosPackageConnection",
+          "CognosPackageConnectionSignon",
+          "Database",
+          "\"GC_CARLO\"",
+          "True",
+          "False"
+        ]
+      ],
+      [
+        [
+          "15963",
+          "PackageReportSource",
+          "\"GC\"",
+          "\"GC\"",
+          "\"GC\"",
+          "15673",
+          "CognosPackageAlwaysUseTransformerSignon",
+          "CognosPackagePowercubeSource"
+        ]
+      ]
+    ]
+  ],
+  [
+    "DataSource",
+    [
+      [
+        [
+          "DataSource",
+          "\"current_date_Prognose_operativ\"",
+          "\";\"",
+          "CognosSourceQuery",
+          "Default",
+          "\",\"",
+          "\".\"",
+          "True",
+          "PopYesCreateDefault",
+          "10335",
+          "AutoSummary",
+          "SetCurrent",
+          "ServerSource",
+          "Speed",
+          "Presummarized",
+          "StreamExtractSize"
+        ]
+      ],
+      [
+        [
+          "15871",
+          "Separator",
+          "SourceType",
+          "CharacterSet",
+          "DecimalSep",
+          "Thousandsep",
+          "Columns",
+          "Timing",
+          "PackageReportSource",
+          "\"GC\"",
+          "False",
+          "True",
+          "False",
+          "False",
+          "False",
+          "0"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Bundeslaender Id]\"",
+          "Source",
+          "0",
+          "\"Bundeslaender Id\"",
+          "Text",
+          "0",
+          "512",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15873",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Invoice Date]\"",
+          "Source",
+          "1",
+          "\"Order Date\"",
+          "Int32",
+          "0",
+          "12",
+          "0",
+          "Date",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15875",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Wochentage Id]\"",
+          "Source",
+          "2",
+          "\"Wochentage Id\"",
+          "Text",
+          "0",
+          "512",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15877",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Mofr]\"",
+          "Source",
+          "3",
+          "\"Arbeitstag Mofr\"",
+          "Float64",
+          "0",
+          "4",
+          "0",
+          "Quantity",
+          "0",
+          "Off",
+          "Sum",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15879",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "Rollup",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Zaehler Mofr]\"",
+          "Source",
+          "4",
+          "\"Zaehler Mofr\"",
+          "Float64",
+          "0",
+          "4",
+          "0",
+          "Quantity",
+          "0",
+          "Off",
+          "Sum",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15881",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "Rollup",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Summe Mofr]\"",
+          "Source",
+          "5",
+          "\"Summe Mofr\"",
+          "Float64",
+          "0",
+          "4",
+          "0",
+          "Quantity",
+          "0",
+          "Off",
+          "Sum",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15883",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "Rollup",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Mosa]\"",
+          "Source",
+          "6",
+          "\"Arbeitstag Mosa\"",
+          "Float64",
+          "0",
+          "4",
+          "0",
+          "Quantity",
+          "0",
+          "Off",
+          "Sum",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15885",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "Rollup",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Zaehler Mosa]\"",
+          "Source",
+          "7",
+          "\"Zaehler Mosa\"",
+          "Float64",
+          "0",
+          "4",
+          "0",
+          "Quantity",
+          "0",
+          "Off",
+          "Sum",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15887",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "Rollup",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Summe Mosa]\"",
+          "Source",
+          "8",
+          "\"Summe Mosa\"",
+          "Float64",
+          "0",
+          "4",
+          "0",
+          "Quantity",
+          "0",
+          "Off",
+          "Sum",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15889",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "Rollup",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Feiertage Id]\"",
+          "Source",
+          "9",
+          "\"Feiertage Id\"",
+          "Float64",
+          "0",
+          "4",
+          "0",
+          "Quantity",
+          "0",
+          "Off",
+          "Sum",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15891",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "Rollup",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Jahr]\"",
+          "Source",
+          "10",
+          "\"Jahr\"",
+          "Float64",
+          "0",
+          "4",
+          "0",
+          "Quantity",
+          "0",
+          "Off",
+          "Sum",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15893",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "Rollup",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Nr Jahr]\"",
+          "Source",
+          "11",
+          "\"Arbeitstag Nr Jahr\"",
+          "Float64",
+          "0",
+          "4",
+          "0",
+          "Quantity",
+          "0",
+          "Off",
+          "Sum",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15895",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "Rollup",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[current_date_Prognose_operativ].[Gesamt Arbeitstage]\"",
+          "Source",
+          "12",
+          "\"Gesamt Arbeitstage\"",
+          "Float64",
+          "0",
+          "4",
+          "0",
+          "Quantity",
+          "0",
+          "Off",
+          "Sum",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15897",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "Rollup",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "DataSource",
+    [
+      [
+        [
+          "DataSource",
+          "\"Offene_Auftraege\"",
+          "\";\"",
+          "CognosSourceQuery",
+          "Default",
+          "\",\"",
+          "\".\"",
+          "True",
+          "PopYesCreateDefault",
+          "10335",
+          "AutoSummary",
+          "SetCurrent",
+          "ServerSource",
+          "Speed",
+          "Presummarized",
+          "StreamExtractSize"
+        ]
+      ],
+      [
+        [
+          "15827",
+          "Separator",
+          "SourceType",
+          "CharacterSet",
+          "DecimalSep",
+          "Thousandsep",
+          "Columns",
+          "Timing",
+          "PackageReportSource",
+          "\"GC\"",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Hauptbetrieb_ID]\"",
+          "Source",
+          "0",
+          "\"Hauptbetrieb_ID\"",
+          "Text",
+          "0",
+          "22",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15829",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Hauptbetrieb_Name]\"",
+          "Source",
+          "1",
+          "\"Hauptbetrieb_Name\"",
+          "Text",
+          "0",
+          "102",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15831",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Standort_ID]\"",
+          "Source",
+          "2",
+          "\"Standort_ID\"",
+          "Text",
+          "0",
+          "22",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15833",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Standort_Name]\"",
+          "Source",
+          "3",
+          "\"Standort_Name\"",
+          "Text",
+          "0",
+          "102",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15835",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Serviceberater]\"",
+          "Source",
+          "4",
+          "\"Serviceberater\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15837",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Order Number]\"",
+          "Source",
+          "5",
+          "\"Order Number\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15839",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Fabrikat]\"",
+          "Source",
+          "6",
+          "\"Fabrikat\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15841",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Model]\"",
+          "Source",
+          "7",
+          "\"Model\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15843",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Fahrzeug]\"",
+          "Source",
+          "8",
+          "\"Fahrzeug\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15845",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Kostenstelle]\"",
+          "Source",
+          "9",
+          "\"Kostenstelle\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15847",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Marke]\"",
+          "Source",
+          "10",
+          "\"Marke\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15849",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Kunde]\"",
+          "Source",
+          "11",
+          "\"Kunde\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15851",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Turnover_Type_Desc]\"",
+          "Source",
+          "12",
+          "\"Turnover_Type_Desc\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15853",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Tage offen]\"",
+          "Source",
+          "13",
+          "\"Tage offen\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15855",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[DG]\"",
+          "Source",
+          "14",
+          "\"DG\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15857",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Lohn]\"",
+          "Source",
+          "15",
+          "\"Lohn\"",
+          "Float64",
+          "8",
+          "15",
+          "8",
+          "Quantity",
+          "0",
+          "Off",
+          "Sum",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15859",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "Rollup",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Teile]\"",
+          "Source",
+          "16",
+          "\"Teile\"",
+          "Default",
+          "0",
+          "1",
+          "0",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15861",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Sonst.]\"",
+          "Source",
+          "17",
+          "\"Sonst.\"",
+          "Float64",
+          "8",
+          "15",
+          "8",
+          "Quantity",
+          "0",
+          "Off",
+          "Sum",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15863",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "Rollup",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Auftragsart]\"",
+          "Source",
+          "18",
+          "\"Auftragsart\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15865",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Order Date]\"",
+          "Source",
+          "19",
+          "\"Order Date\"",
+          "Int32",
+          "0",
+          "12",
+          "0",
+          "Date",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15867",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "OrgName",
+    [
+      [
+        [
+          "OrgName",
+          "\"[Schnittstelle].[Offene_Auftraege].[Tage seit letzt. Stemp.]\"",
+          "Source",
+          "20",
+          "\"Tage seit letzt. Stemp.\"",
+          "Text",
+          "0",
+          "202",
+          "0",
+          "Description",
+          "0",
+          "Off",
+          "None"
+        ]
+      ],
+      [
+        [
+          "15869",
+          "Origin",
+          "Offset",
+          "Column",
+          "Storage",
+          "Scale",
+          "Size",
+          "Decimals",
+          "Class",
+          "InputScale",
+          "TimeArray",
+          "ColSrcType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Dimension",
+    [
+      [
+        [
+          "Dimension",
+          "\"Zeit\"",
+          "Date",
+          "19010101",
+          "21001231",
+          "False",
+          "127",
+          "False",
+          "False",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1463",
+          "DimType",
+          "EarliestDate",
+          "LatestDate",
+          "ManualPeriods",
+          "DaysInWeek",
+          "NewCatsLock",
+          "ExcludeAutoPartitioning",
+          "DimDefaultCategory"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Categories",
+    [
+      [
+        [
+          "Categories"
+        ]
+      ],
+      [
+        []
+      ]
+    ]
+  ],
+  [
+    "Root",
+    [
+      [
+        [
+          "Root",
+          "\"Zeit\"",
+          "Generate",
+          "20180820",
+          "0",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1467",
+          "Inclusion",
+          "Lastuse",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Drill",
+    [
+      [
+        [
+          "Drill",
+          "\"Nach Zeit\"",
+          "\"Nach Zeit\"",
+          "Suppress",
+          "False",
+          "True",
+          "True",
+          "False",
+          "20080101",
+          "Split",
+          "None",
+          "Sunday"
+        ]
+      ],
+      [
+        [
+          "1469",
+          "Label",
+          "Inclusion",
+          "Filtered",
+          "Suppressed",
+          "PrimaryDrill",
+          "HideValue",
+          "YearBegins",
+          "PartialWeek",
+          "ExtraWeek",
+          "WeekBegins"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Jahr\"",
+          "\"( Leerstelle )\"",
+          "Generate",
+          "Year",
+          "Need",
+          "False",
+          "False",
+          "False",
+          "False",
+          "\"YYYY\"",
+          "10",
+          "True",
+          "False",
+          "1477",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "Associations",
+          "\"Order Date\"",
+          "1469",
+          "Type_Query",
+          "Role_OrderBy",
+          "\"Order Date\"",
+          "Default",
+          "Ascending"
+        ]
+      ],
+      [
+        [
+          "1475",
+          "Blanks",
+          "Inclusion",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "CatLabFormat",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Order Date\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Order Date\"",
+          "1479",
+          "AssociationContext",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "SortOrder",
+          "SortAs"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Quartal\"",
+          "\"( Leerstelle )\"",
+          "Generate",
+          "Quarter",
+          "All",
+          "False",
+          "False",
+          "False",
+          "False",
+          "\" YYYY\"",
+          "20",
+          "True",
+          "False",
+          "1483",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "Associations",
+          "\"Order Date\"",
+          "1469",
+          "Type_Query",
+          "Role_OrderBy",
+          "\"Order Date\"",
+          "Default",
+          "Ascending"
+        ]
+      ],
+      [
+        [
+          "1481",
+          "Blanks",
+          "Inclusion",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "CatLabFormat",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Order Date\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Order Date\"",
+          "1485",
+          "AssociationContext",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "SortOrder",
+          "SortAs"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Monat\"",
+          "\"( Leerstelle )\"",
+          "Generate",
+          "Month",
+          "All",
+          "False",
+          "False",
+          "False",
+          "False",
+          "\"MMM/YYYY\"",
+          "30",
+          "True",
+          "False",
+          "1489",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "Associations",
+          "\"Order Date\"",
+          "1469",
+          "Type_Query",
+          "Role_OrderBy",
+          "\"Order Date\"",
+          "Default",
+          "Ascending"
+        ]
+      ],
+      [
+        [
+          "1487",
+          "Blanks",
+          "Inclusion",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "CatLabFormat",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Order Date\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Order Date\"",
+          "1491",
+          "AssociationContext",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "SortOrder",
+          "SortAs"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Tag\"",
+          "\"( Leerstelle )\"",
+          "Generate",
+          "Day",
+          "All",
+          "False",
+          "False",
+          "False",
+          "False",
+          "\"DD/MM/YYYY\"",
+          "50",
+          "True",
+          "False",
+          "1495",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "Associations",
+          "\"Order Date\"",
+          "1469",
+          "Type_Query",
+          "Role_OrderBy",
+          "\"Order Date\"",
+          "Default",
+          "Ascending"
+        ]
+      ],
+      [
+        [
+          "1493",
+          "Blanks",
+          "Inclusion",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "CatLabFormat",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Order Date\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Order Date\"",
+          "1497",
+          "AssociationContext",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "SortOrder",
+          "SortAs"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170101-20171231\"",
+          "1469",
+          "1475",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10555",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"2017\"",
+          "\"2017\"",
+          "20180820",
+          "\"2017\"",
+          "20170101",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170101-20170331\"",
+          "10555",
+          "1481",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10557",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170101\"",
+          "\"1. Q. 2017\"",
+          "20180711",
+          "\"20170101\"",
+          "20170101",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170101-20170131\"",
+          "10557",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10559",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201701\"",
+          "\"Jan./2017\"",
+          "20180711",
+          "\"201701\"",
+          "20170101",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170101\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10561",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170101\"",
+          "\"01/01/2017\"",
+          "20180711",
+          "\"20170101\"",
+          "20170101",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170102\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10563",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170102\"",
+          "\"02/01/2017\"",
+          "20180711",
+          "\"20170102\"",
+          "20170102",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170103\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10565",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170103\"",
+          "\"03/01/2017\"",
+          "20180711",
+          "\"20170103\"",
+          "20170103",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170104\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10567",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170104\"",
+          "\"04/01/2017\"",
+          "20180711",
+          "\"20170104\"",
+          "20170104",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170105\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10569",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170105\"",
+          "\"05/01/2017\"",
+          "20180711",
+          "\"20170105\"",
+          "20170105",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170106\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10571",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170106\"",
+          "\"06/01/2017\"",
+          "20180711",
+          "\"20170106\"",
+          "20170106",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170107\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10573",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170107\"",
+          "\"07/01/2017\"",
+          "20180711",
+          "\"20170107\"",
+          "20170107",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170108\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10575",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170108\"",
+          "\"08/01/2017\"",
+          "20180711",
+          "\"20170108\"",
+          "20170108",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170109\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10577",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170109\"",
+          "\"09/01/2017\"",
+          "20180711",
+          "\"20170109\"",
+          "20170109",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170110\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10579",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170110\"",
+          "\"10/01/2017\"",
+          "20180711",
+          "\"20170110\"",
+          "20170110",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170111\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10581",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170111\"",
+          "\"11/01/2017\"",
+          "20180711",
+          "\"20170111\"",
+          "20170111",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170112\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10583",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170112\"",
+          "\"12/01/2017\"",
+          "20180711",
+          "\"20170112\"",
+          "20170112",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170113\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10585",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170113\"",
+          "\"13/01/2017\"",
+          "20180711",
+          "\"20170113\"",
+          "20170113",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170114\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10587",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170114\"",
+          "\"14/01/2017\"",
+          "20180711",
+          "\"20170114\"",
+          "20170114",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170115\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10589",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170115\"",
+          "\"15/01/2017\"",
+          "20180711",
+          "\"20170115\"",
+          "20170115",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170116\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10591",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170116\"",
+          "\"16/01/2017\"",
+          "20180711",
+          "\"20170116\"",
+          "20170116",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170117\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10593",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170117\"",
+          "\"17/01/2017\"",
+          "20180711",
+          "\"20170117\"",
+          "20170117",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170118\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10595",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170118\"",
+          "\"18/01/2017\"",
+          "20180711",
+          "\"20170118\"",
+          "20170118",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170119\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10597",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170119\"",
+          "\"19/01/2017\"",
+          "20180711",
+          "\"20170119\"",
+          "20170119",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170120\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10599",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170120\"",
+          "\"20/01/2017\"",
+          "20180711",
+          "\"20170120\"",
+          "20170120",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170121\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10601",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170121\"",
+          "\"21/01/2017\"",
+          "20180711",
+          "\"20170121\"",
+          "20170121",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170122\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10603",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170122\"",
+          "\"22/01/2017\"",
+          "20180711",
+          "\"20170122\"",
+          "20170122",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170123\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10605",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170123\"",
+          "\"23/01/2017\"",
+          "20180711",
+          "\"20170123\"",
+          "20170123",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170124\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10607",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170124\"",
+          "\"24/01/2017\"",
+          "20180711",
+          "\"20170124\"",
+          "20170124",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170125\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10609",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170125\"",
+          "\"25/01/2017\"",
+          "20180711",
+          "\"20170125\"",
+          "20170125",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170126\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10611",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170126\"",
+          "\"26/01/2017\"",
+          "20180711",
+          "\"20170126\"",
+          "20170126",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170127\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10613",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170127\"",
+          "\"27/01/2017\"",
+          "20180711",
+          "\"20170127\"",
+          "20170127",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170128\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10615",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170128\"",
+          "\"28/01/2017\"",
+          "20180711",
+          "\"20170128\"",
+          "20170128",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170129\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10617",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170129\"",
+          "\"29/01/2017\"",
+          "20180711",
+          "\"20170129\"",
+          "20170129",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170130\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10619",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170130\"",
+          "\"30/01/2017\"",
+          "20180711",
+          "\"20170130\"",
+          "20170130",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170131\"",
+          "10559",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10621",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170131\"",
+          "\"31/01/2017\"",
+          "20180711",
+          "\"20170131\"",
+          "20170131",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170201-20170228\"",
+          "10557",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10623",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201702\"",
+          "\"Feb./2017\"",
+          "20180711",
+          "\"201702\"",
+          "20170201",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170201\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10625",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170201\"",
+          "\"01/02/2017\"",
+          "20180711",
+          "\"20170201\"",
+          "20170201",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170202\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10627",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170202\"",
+          "\"02/02/2017\"",
+          "20180711",
+          "\"20170202\"",
+          "20170202",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170203\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10629",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170203\"",
+          "\"03/02/2017\"",
+          "20180711",
+          "\"20170203\"",
+          "20170203",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170204\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10631",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170204\"",
+          "\"04/02/2017\"",
+          "20180711",
+          "\"20170204\"",
+          "20170204",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170205\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10633",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170205\"",
+          "\"05/02/2017\"",
+          "20180711",
+          "\"20170205\"",
+          "20170205",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170206\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10635",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170206\"",
+          "\"06/02/2017\"",
+          "20180711",
+          "\"20170206\"",
+          "20170206",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170207\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10637",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170207\"",
+          "\"07/02/2017\"",
+          "20180711",
+          "\"20170207\"",
+          "20170207",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170208\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10639",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170208\"",
+          "\"08/02/2017\"",
+          "20180711",
+          "\"20170208\"",
+          "20170208",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170209\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10641",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170209\"",
+          "\"09/02/2017\"",
+          "20180711",
+          "\"20170209\"",
+          "20170209",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170210\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10643",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170210\"",
+          "\"10/02/2017\"",
+          "20180711",
+          "\"20170210\"",
+          "20170210",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170211\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10645",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170211\"",
+          "\"11/02/2017\"",
+          "20180711",
+          "\"20170211\"",
+          "20170211",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170212\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10647",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170212\"",
+          "\"12/02/2017\"",
+          "20180711",
+          "\"20170212\"",
+          "20170212",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170213\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10649",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170213\"",
+          "\"13/02/2017\"",
+          "20180711",
+          "\"20170213\"",
+          "20170213",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170214\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10651",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170214\"",
+          "\"14/02/2017\"",
+          "20180711",
+          "\"20170214\"",
+          "20170214",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170215\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10653",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170215\"",
+          "\"15/02/2017\"",
+          "20180711",
+          "\"20170215\"",
+          "20170215",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170216\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10655",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170216\"",
+          "\"16/02/2017\"",
+          "20180711",
+          "\"20170216\"",
+          "20170216",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170217\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10657",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170217\"",
+          "\"17/02/2017\"",
+          "20180711",
+          "\"20170217\"",
+          "20170217",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170218\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10659",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170218\"",
+          "\"18/02/2017\"",
+          "20180711",
+          "\"20170218\"",
+          "20170218",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170219\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10661",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170219\"",
+          "\"19/02/2017\"",
+          "20180711",
+          "\"20170219\"",
+          "20170219",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170220\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10663",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170220\"",
+          "\"20/02/2017\"",
+          "20180711",
+          "\"20170220\"",
+          "20170220",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170221\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10665",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170221\"",
+          "\"21/02/2017\"",
+          "20180711",
+          "\"20170221\"",
+          "20170221",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170222\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10667",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170222\"",
+          "\"22/02/2017\"",
+          "20180711",
+          "\"20170222\"",
+          "20170222",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170223\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10669",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170223\"",
+          "\"23/02/2017\"",
+          "20180711",
+          "\"20170223\"",
+          "20170223",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170224\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10671",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170224\"",
+          "\"24/02/2017\"",
+          "20180711",
+          "\"20170224\"",
+          "20170224",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170225\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10673",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170225\"",
+          "\"25/02/2017\"",
+          "20180711",
+          "\"20170225\"",
+          "20170225",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170226\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10675",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170226\"",
+          "\"26/02/2017\"",
+          "20180711",
+          "\"20170226\"",
+          "20170226",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170227\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10677",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170227\"",
+          "\"27/02/2017\"",
+          "20180711",
+          "\"20170227\"",
+          "20170227",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170228\"",
+          "10623",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10679",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170228\"",
+          "\"28/02/2017\"",
+          "20180711",
+          "\"20170228\"",
+          "20170228",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170301-20170331\"",
+          "10557",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10681",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201703\"",
+          "\"M\u00e4rz/2017\"",
+          "20180711",
+          "\"201703\"",
+          "20170301",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170301\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10683",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170301\"",
+          "\"01/03/2017\"",
+          "20180711",
+          "\"20170301\"",
+          "20170301",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170302\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10685",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170302\"",
+          "\"02/03/2017\"",
+          "20180711",
+          "\"20170302\"",
+          "20170302",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170303\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10687",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170303\"",
+          "\"03/03/2017\"",
+          "20180711",
+          "\"20170303\"",
+          "20170303",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170304\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10689",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170304\"",
+          "\"04/03/2017\"",
+          "20180711",
+          "\"20170304\"",
+          "20170304",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170305\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10691",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170305\"",
+          "\"05/03/2017\"",
+          "20180711",
+          "\"20170305\"",
+          "20170305",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170306\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10693",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170306\"",
+          "\"06/03/2017\"",
+          "20180711",
+          "\"20170306\"",
+          "20170306",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170307\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10695",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170307\"",
+          "\"07/03/2017\"",
+          "20180711",
+          "\"20170307\"",
+          "20170307",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170308\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10697",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170308\"",
+          "\"08/03/2017\"",
+          "20180711",
+          "\"20170308\"",
+          "20170308",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170309\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10699",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170309\"",
+          "\"09/03/2017\"",
+          "20180711",
+          "\"20170309\"",
+          "20170309",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170310\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10701",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170310\"",
+          "\"10/03/2017\"",
+          "20180711",
+          "\"20170310\"",
+          "20170310",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170311\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10703",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170311\"",
+          "\"11/03/2017\"",
+          "20180711",
+          "\"20170311\"",
+          "20170311",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170312\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10705",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170312\"",
+          "\"12/03/2017\"",
+          "20180711",
+          "\"20170312\"",
+          "20170312",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170313\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10707",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170313\"",
+          "\"13/03/2017\"",
+          "20180711",
+          "\"20170313\"",
+          "20170313",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170314\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10709",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170314\"",
+          "\"14/03/2017\"",
+          "20180711",
+          "\"20170314\"",
+          "20170314",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170315\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10711",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170315\"",
+          "\"15/03/2017\"",
+          "20180711",
+          "\"20170315\"",
+          "20170315",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170316\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10713",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170316\"",
+          "\"16/03/2017\"",
+          "20180711",
+          "\"20170316\"",
+          "20170316",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170317\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10715",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170317\"",
+          "\"17/03/2017\"",
+          "20180711",
+          "\"20170317\"",
+          "20170317",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170318\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10717",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170318\"",
+          "\"18/03/2017\"",
+          "20180711",
+          "\"20170318\"",
+          "20170318",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170319\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10719",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170319\"",
+          "\"19/03/2017\"",
+          "20180711",
+          "\"20170319\"",
+          "20170319",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170320\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10721",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170320\"",
+          "\"20/03/2017\"",
+          "20180711",
+          "\"20170320\"",
+          "20170320",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170321\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10723",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170321\"",
+          "\"21/03/2017\"",
+          "20180711",
+          "\"20170321\"",
+          "20170321",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170322\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10725",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170322\"",
+          "\"22/03/2017\"",
+          "20180711",
+          "\"20170322\"",
+          "20170322",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170323\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10727",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170323\"",
+          "\"23/03/2017\"",
+          "20180711",
+          "\"20170323\"",
+          "20170323",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170324\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10729",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170324\"",
+          "\"24/03/2017\"",
+          "20180711",
+          "\"20170324\"",
+          "20170324",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170325\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10731",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170325\"",
+          "\"25/03/2017\"",
+          "20180711",
+          "\"20170325\"",
+          "20170325",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170326\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10733",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170326\"",
+          "\"26/03/2017\"",
+          "20180711",
+          "\"20170326\"",
+          "20170326",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170327\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10735",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170327\"",
+          "\"27/03/2017\"",
+          "20180711",
+          "\"20170327\"",
+          "20170327",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170328\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10737",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170328\"",
+          "\"28/03/2017\"",
+          "20180711",
+          "\"20170328\"",
+          "20170328",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170329\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10739",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170329\"",
+          "\"29/03/2017\"",
+          "20180711",
+          "\"20170329\"",
+          "20170329",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170330\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10741",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170330\"",
+          "\"30/03/2017\"",
+          "20180711",
+          "\"20170330\"",
+          "20170330",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170331\"",
+          "10681",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10743",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170331\"",
+          "\"31/03/2017\"",
+          "20180711",
+          "\"20170331\"",
+          "20170331",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170401-20170630\"",
+          "10555",
+          "1481",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10745",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170401\"",
+          "\"2. Q. 2017\"",
+          "20180711",
+          "\"20170401\"",
+          "20170401",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170401-20170430\"",
+          "10745",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10747",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201704\"",
+          "\"Apr./2017\"",
+          "20180711",
+          "\"201704\"",
+          "20170401",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170401\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10749",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170401\"",
+          "\"01/04/2017\"",
+          "20180711",
+          "\"20170401\"",
+          "20170401",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170402\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10751",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170402\"",
+          "\"02/04/2017\"",
+          "20180711",
+          "\"20170402\"",
+          "20170402",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170403\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10753",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170403\"",
+          "\"03/04/2017\"",
+          "20180711",
+          "\"20170403\"",
+          "20170403",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170404\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10755",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170404\"",
+          "\"04/04/2017\"",
+          "20180711",
+          "\"20170404\"",
+          "20170404",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170405\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10757",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170405\"",
+          "\"05/04/2017\"",
+          "20180711",
+          "\"20170405\"",
+          "20170405",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170406\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10759",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170406\"",
+          "\"06/04/2017\"",
+          "20180711",
+          "\"20170406\"",
+          "20170406",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170407\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10761",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170407\"",
+          "\"07/04/2017\"",
+          "20180711",
+          "\"20170407\"",
+          "20170407",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170408\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10763",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170408\"",
+          "\"08/04/2017\"",
+          "20180711",
+          "\"20170408\"",
+          "20170408",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170409\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10765",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170409\"",
+          "\"09/04/2017\"",
+          "20180711",
+          "\"20170409\"",
+          "20170409",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170410\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10767",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170410\"",
+          "\"10/04/2017\"",
+          "20180711",
+          "\"20170410\"",
+          "20170410",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170411\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10769",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170411\"",
+          "\"11/04/2017\"",
+          "20180711",
+          "\"20170411\"",
+          "20170411",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170412\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10771",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170412\"",
+          "\"12/04/2017\"",
+          "20180711",
+          "\"20170412\"",
+          "20170412",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170413\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10773",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170413\"",
+          "\"13/04/2017\"",
+          "20180711",
+          "\"20170413\"",
+          "20170413",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170414\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10775",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170414\"",
+          "\"14/04/2017\"",
+          "20180711",
+          "\"20170414\"",
+          "20170414",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170415\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10777",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170415\"",
+          "\"15/04/2017\"",
+          "20180711",
+          "\"20170415\"",
+          "20170415",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170416\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10779",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170416\"",
+          "\"16/04/2017\"",
+          "20180711",
+          "\"20170416\"",
+          "20170416",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170417\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10781",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170417\"",
+          "\"17/04/2017\"",
+          "20180711",
+          "\"20170417\"",
+          "20170417",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170418\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10783",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170418\"",
+          "\"18/04/2017\"",
+          "20180711",
+          "\"20170418\"",
+          "20170418",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170419\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10785",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170419\"",
+          "\"19/04/2017\"",
+          "20180711",
+          "\"20170419\"",
+          "20170419",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170420\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10787",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170420\"",
+          "\"20/04/2017\"",
+          "20180711",
+          "\"20170420\"",
+          "20170420",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170421\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10789",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170421\"",
+          "\"21/04/2017\"",
+          "20180711",
+          "\"20170421\"",
+          "20170421",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170422\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10791",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170422\"",
+          "\"22/04/2017\"",
+          "20180711",
+          "\"20170422\"",
+          "20170422",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170423\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10793",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170423\"",
+          "\"23/04/2017\"",
+          "20180711",
+          "\"20170423\"",
+          "20170423",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170424\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10795",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170424\"",
+          "\"24/04/2017\"",
+          "20180711",
+          "\"20170424\"",
+          "20170424",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170425\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10797",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170425\"",
+          "\"25/04/2017\"",
+          "20180711",
+          "\"20170425\"",
+          "20170425",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170426\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10799",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170426\"",
+          "\"26/04/2017\"",
+          "20180711",
+          "\"20170426\"",
+          "20170426",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170427\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10801",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170427\"",
+          "\"27/04/2017\"",
+          "20180711",
+          "\"20170427\"",
+          "20170427",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170428\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10803",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170428\"",
+          "\"28/04/2017\"",
+          "20180711",
+          "\"20170428\"",
+          "20170428",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170429\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10805",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170429\"",
+          "\"29/04/2017\"",
+          "20180711",
+          "\"20170429\"",
+          "20170429",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170430\"",
+          "10747",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10807",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170430\"",
+          "\"30/04/2017\"",
+          "20180711",
+          "\"20170430\"",
+          "20170430",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170501-20170531\"",
+          "10745",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10809",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201705\"",
+          "\"Mai/2017\"",
+          "20180711",
+          "\"201705\"",
+          "20170501",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170501\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10811",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170501\"",
+          "\"01/05/2017\"",
+          "20180711",
+          "\"20170501\"",
+          "20170501",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170502\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10813",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170502\"",
+          "\"02/05/2017\"",
+          "20180711",
+          "\"20170502\"",
+          "20170502",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170503\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10815",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170503\"",
+          "\"03/05/2017\"",
+          "20180711",
+          "\"20170503\"",
+          "20170503",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170504\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10817",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170504\"",
+          "\"04/05/2017\"",
+          "20180711",
+          "\"20170504\"",
+          "20170504",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170505\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10819",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170505\"",
+          "\"05/05/2017\"",
+          "20180711",
+          "\"20170505\"",
+          "20170505",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170506\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10821",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170506\"",
+          "\"06/05/2017\"",
+          "20180711",
+          "\"20170506\"",
+          "20170506",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170507\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10823",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170507\"",
+          "\"07/05/2017\"",
+          "20180711",
+          "\"20170507\"",
+          "20170507",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170508\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10825",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170508\"",
+          "\"08/05/2017\"",
+          "20180711",
+          "\"20170508\"",
+          "20170508",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170509\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10827",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170509\"",
+          "\"09/05/2017\"",
+          "20180711",
+          "\"20170509\"",
+          "20170509",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170510\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10829",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170510\"",
+          "\"10/05/2017\"",
+          "20180711",
+          "\"20170510\"",
+          "20170510",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170511\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10831",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170511\"",
+          "\"11/05/2017\"",
+          "20180711",
+          "\"20170511\"",
+          "20170511",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170512\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10833",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170512\"",
+          "\"12/05/2017\"",
+          "20180711",
+          "\"20170512\"",
+          "20170512",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170513\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10835",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170513\"",
+          "\"13/05/2017\"",
+          "20180711",
+          "\"20170513\"",
+          "20170513",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170514\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10837",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170514\"",
+          "\"14/05/2017\"",
+          "20180711",
+          "\"20170514\"",
+          "20170514",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170515\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10839",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170515\"",
+          "\"15/05/2017\"",
+          "20180711",
+          "\"20170515\"",
+          "20170515",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170516\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10841",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170516\"",
+          "\"16/05/2017\"",
+          "20180711",
+          "\"20170516\"",
+          "20170516",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170517\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10843",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170517\"",
+          "\"17/05/2017\"",
+          "20180711",
+          "\"20170517\"",
+          "20170517",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170518\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10845",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170518\"",
+          "\"18/05/2017\"",
+          "20180711",
+          "\"20170518\"",
+          "20170518",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170519\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10847",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170519\"",
+          "\"19/05/2017\"",
+          "20180711",
+          "\"20170519\"",
+          "20170519",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170520\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10849",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170520\"",
+          "\"20/05/2017\"",
+          "20180711",
+          "\"20170520\"",
+          "20170520",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170521\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10851",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170521\"",
+          "\"21/05/2017\"",
+          "20180711",
+          "\"20170521\"",
+          "20170521",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170522\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10853",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170522\"",
+          "\"22/05/2017\"",
+          "20180711",
+          "\"20170522\"",
+          "20170522",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170523\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10855",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170523\"",
+          "\"23/05/2017\"",
+          "20180711",
+          "\"20170523\"",
+          "20170523",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170524\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10857",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170524\"",
+          "\"24/05/2017\"",
+          "20180711",
+          "\"20170524\"",
+          "20170524",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170525\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10859",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170525\"",
+          "\"25/05/2017\"",
+          "20180711",
+          "\"20170525\"",
+          "20170525",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170526\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10861",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170526\"",
+          "\"26/05/2017\"",
+          "20180711",
+          "\"20170526\"",
+          "20170526",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170527\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10863",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170527\"",
+          "\"27/05/2017\"",
+          "20180711",
+          "\"20170527\"",
+          "20170527",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170528\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10865",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170528\"",
+          "\"28/05/2017\"",
+          "20180711",
+          "\"20170528\"",
+          "20170528",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170529\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10867",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170529\"",
+          "\"29/05/2017\"",
+          "20180711",
+          "\"20170529\"",
+          "20170529",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170530\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10869",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170530\"",
+          "\"30/05/2017\"",
+          "20180711",
+          "\"20170530\"",
+          "20170530",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170531\"",
+          "10809",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10871",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170531\"",
+          "\"31/05/2017\"",
+          "20180711",
+          "\"20170531\"",
+          "20170531",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170601-20170630\"",
+          "10745",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10873",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201706\"",
+          "\"Juni/2017\"",
+          "20180711",
+          "\"201706\"",
+          "20170601",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170601\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10875",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170601\"",
+          "\"01/06/2017\"",
+          "20180711",
+          "\"20170601\"",
+          "20170601",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170602\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10877",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170602\"",
+          "\"02/06/2017\"",
+          "20180711",
+          "\"20170602\"",
+          "20170602",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170603\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10879",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170603\"",
+          "\"03/06/2017\"",
+          "20180711",
+          "\"20170603\"",
+          "20170603",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170604\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10881",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170604\"",
+          "\"04/06/2017\"",
+          "20180711",
+          "\"20170604\"",
+          "20170604",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170605\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10883",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170605\"",
+          "\"05/06/2017\"",
+          "20180711",
+          "\"20170605\"",
+          "20170605",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170606\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10885",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170606\"",
+          "\"06/06/2017\"",
+          "20180711",
+          "\"20170606\"",
+          "20170606",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170607\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10887",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170607\"",
+          "\"07/06/2017\"",
+          "20180711",
+          "\"20170607\"",
+          "20170607",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170608\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10889",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170608\"",
+          "\"08/06/2017\"",
+          "20180711",
+          "\"20170608\"",
+          "20170608",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170609\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10891",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170609\"",
+          "\"09/06/2017\"",
+          "20180711",
+          "\"20170609\"",
+          "20170609",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170610\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10893",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170610\"",
+          "\"10/06/2017\"",
+          "20180711",
+          "\"20170610\"",
+          "20170610",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170611\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10895",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170611\"",
+          "\"11/06/2017\"",
+          "20180711",
+          "\"20170611\"",
+          "20170611",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170612\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10897",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170612\"",
+          "\"12/06/2017\"",
+          "20180711",
+          "\"20170612\"",
+          "20170612",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170613\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10899",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170613\"",
+          "\"13/06/2017\"",
+          "20180711",
+          "\"20170613\"",
+          "20170613",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170614\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10901",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170614\"",
+          "\"14/06/2017\"",
+          "20180711",
+          "\"20170614\"",
+          "20170614",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170615\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10903",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170615\"",
+          "\"15/06/2017\"",
+          "20180711",
+          "\"20170615\"",
+          "20170615",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170616\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10905",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170616\"",
+          "\"16/06/2017\"",
+          "20180711",
+          "\"20170616\"",
+          "20170616",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170617\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10907",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170617\"",
+          "\"17/06/2017\"",
+          "20180711",
+          "\"20170617\"",
+          "20170617",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170618\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10909",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170618\"",
+          "\"18/06/2017\"",
+          "20180711",
+          "\"20170618\"",
+          "20170618",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170619\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10911",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170619\"",
+          "\"19/06/2017\"",
+          "20180711",
+          "\"20170619\"",
+          "20170619",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170620\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10913",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170620\"",
+          "\"20/06/2017\"",
+          "20180711",
+          "\"20170620\"",
+          "20170620",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170621\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10915",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170621\"",
+          "\"21/06/2017\"",
+          "20180711",
+          "\"20170621\"",
+          "20170621",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170622\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10917",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170622\"",
+          "\"22/06/2017\"",
+          "20180711",
+          "\"20170622\"",
+          "20170622",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170623\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10919",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170623\"",
+          "\"23/06/2017\"",
+          "20180711",
+          "\"20170623\"",
+          "20170623",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170624\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10921",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170624\"",
+          "\"24/06/2017\"",
+          "20180711",
+          "\"20170624\"",
+          "20170624",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170625\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10923",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170625\"",
+          "\"25/06/2017\"",
+          "20180711",
+          "\"20170625\"",
+          "20170625",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170626\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10925",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170626\"",
+          "\"26/06/2017\"",
+          "20180711",
+          "\"20170626\"",
+          "20170626",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170627\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10927",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170627\"",
+          "\"27/06/2017\"",
+          "20180711",
+          "\"20170627\"",
+          "20170627",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170628\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10929",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170628\"",
+          "\"28/06/2017\"",
+          "20180711",
+          "\"20170628\"",
+          "20170628",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170629\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10931",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170629\"",
+          "\"29/06/2017\"",
+          "20180711",
+          "\"20170629\"",
+          "20170629",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170630\"",
+          "10873",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10933",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170630\"",
+          "\"30/06/2017\"",
+          "20180711",
+          "\"20170630\"",
+          "20170630",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170701-20170930\"",
+          "10555",
+          "1481",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10935",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170701\"",
+          "\"3. Q. 2017\"",
+          "20180711",
+          "\"20170701\"",
+          "20170701",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170701-20170731\"",
+          "10935",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10937",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201707\"",
+          "\"Juli/2017\"",
+          "20180711",
+          "\"201707\"",
+          "20170701",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170701\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10939",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170701\"",
+          "\"01/07/2017\"",
+          "20180711",
+          "\"20170701\"",
+          "20170701",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170702\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10941",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170702\"",
+          "\"02/07/2017\"",
+          "20180711",
+          "\"20170702\"",
+          "20170702",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170703\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10943",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170703\"",
+          "\"03/07/2017\"",
+          "20180711",
+          "\"20170703\"",
+          "20170703",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170704\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10945",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170704\"",
+          "\"04/07/2017\"",
+          "20180711",
+          "\"20170704\"",
+          "20170704",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170705\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10947",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170705\"",
+          "\"05/07/2017\"",
+          "20180711",
+          "\"20170705\"",
+          "20170705",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170706\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10949",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170706\"",
+          "\"06/07/2017\"",
+          "20180711",
+          "\"20170706\"",
+          "20170706",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170707\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10951",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170707\"",
+          "\"07/07/2017\"",
+          "20180711",
+          "\"20170707\"",
+          "20170707",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170708\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10953",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170708\"",
+          "\"08/07/2017\"",
+          "20180711",
+          "\"20170708\"",
+          "20170708",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170709\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10955",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170709\"",
+          "\"09/07/2017\"",
+          "20180711",
+          "\"20170709\"",
+          "20170709",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170710\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10957",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170710\"",
+          "\"10/07/2017\"",
+          "20180711",
+          "\"20170710\"",
+          "20170710",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170711\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10959",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170711\"",
+          "\"11/07/2017\"",
+          "20180711",
+          "\"20170711\"",
+          "20170711",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170712\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10961",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170712\"",
+          "\"12/07/2017\"",
+          "20180711",
+          "\"20170712\"",
+          "20170712",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170713\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10963",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170713\"",
+          "\"13/07/2017\"",
+          "20180711",
+          "\"20170713\"",
+          "20170713",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170714\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10965",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170714\"",
+          "\"14/07/2017\"",
+          "20180711",
+          "\"20170714\"",
+          "20170714",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170715\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10967",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170715\"",
+          "\"15/07/2017\"",
+          "20180711",
+          "\"20170715\"",
+          "20170715",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170716\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10969",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170716\"",
+          "\"16/07/2017\"",
+          "20180711",
+          "\"20170716\"",
+          "20170716",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170717\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10971",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170717\"",
+          "\"17/07/2017\"",
+          "20180711",
+          "\"20170717\"",
+          "20170717",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170718\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10973",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170718\"",
+          "\"18/07/2017\"",
+          "20180711",
+          "\"20170718\"",
+          "20170718",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170719\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10975",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170719\"",
+          "\"19/07/2017\"",
+          "20180711",
+          "\"20170719\"",
+          "20170719",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170720\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10977",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170720\"",
+          "\"20/07/2017\"",
+          "20180711",
+          "\"20170720\"",
+          "20170720",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170721\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10979",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170721\"",
+          "\"21/07/2017\"",
+          "20180711",
+          "\"20170721\"",
+          "20170721",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170722\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10981",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170722\"",
+          "\"22/07/2017\"",
+          "20180711",
+          "\"20170722\"",
+          "20170722",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170723\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10983",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170723\"",
+          "\"23/07/2017\"",
+          "20180711",
+          "\"20170723\"",
+          "20170723",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170724\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10985",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170724\"",
+          "\"24/07/2017\"",
+          "20180711",
+          "\"20170724\"",
+          "20170724",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170725\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10987",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170725\"",
+          "\"25/07/2017\"",
+          "20180711",
+          "\"20170725\"",
+          "20170725",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170726\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10989",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170726\"",
+          "\"26/07/2017\"",
+          "20180711",
+          "\"20170726\"",
+          "20170726",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170727\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10991",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170727\"",
+          "\"27/07/2017\"",
+          "20180711",
+          "\"20170727\"",
+          "20170727",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170728\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10993",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170728\"",
+          "\"28/07/2017\"",
+          "20180711",
+          "\"20170728\"",
+          "20170728",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170729\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10995",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170729\"",
+          "\"29/07/2017\"",
+          "20180711",
+          "\"20170729\"",
+          "20170729",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170730\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10997",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170730\"",
+          "\"30/07/2017\"",
+          "20180711",
+          "\"20170730\"",
+          "20170730",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170731\"",
+          "10937",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "10999",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170731\"",
+          "\"31/07/2017\"",
+          "20180711",
+          "\"20170731\"",
+          "20170731",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170801-20170831\"",
+          "10935",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11001",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201708\"",
+          "\"Aug./2017\"",
+          "20180711",
+          "\"201708\"",
+          "20170801",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170801\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11003",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170801\"",
+          "\"01/08/2017\"",
+          "20180711",
+          "\"20170801\"",
+          "20170801",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170802\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11005",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170802\"",
+          "\"02/08/2017\"",
+          "20180711",
+          "\"20170802\"",
+          "20170802",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170803\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11007",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170803\"",
+          "\"03/08/2017\"",
+          "20180711",
+          "\"20170803\"",
+          "20170803",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170804\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11009",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170804\"",
+          "\"04/08/2017\"",
+          "20180711",
+          "\"20170804\"",
+          "20170804",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170805\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11011",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170805\"",
+          "\"05/08/2017\"",
+          "20180711",
+          "\"20170805\"",
+          "20170805",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170806\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11013",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170806\"",
+          "\"06/08/2017\"",
+          "20180711",
+          "\"20170806\"",
+          "20170806",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170807\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11015",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170807\"",
+          "\"07/08/2017\"",
+          "20180711",
+          "\"20170807\"",
+          "20170807",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170808\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11017",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170808\"",
+          "\"08/08/2017\"",
+          "20180711",
+          "\"20170808\"",
+          "20170808",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170809\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11019",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170809\"",
+          "\"09/08/2017\"",
+          "20180711",
+          "\"20170809\"",
+          "20170809",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170810\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11021",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170810\"",
+          "\"10/08/2017\"",
+          "20180711",
+          "\"20170810\"",
+          "20170810",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170811\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11023",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170811\"",
+          "\"11/08/2017\"",
+          "20180711",
+          "\"20170811\"",
+          "20170811",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170812\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11025",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170812\"",
+          "\"12/08/2017\"",
+          "20180711",
+          "\"20170812\"",
+          "20170812",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170813\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11027",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170813\"",
+          "\"13/08/2017\"",
+          "20180711",
+          "\"20170813\"",
+          "20170813",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170814\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11029",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170814\"",
+          "\"14/08/2017\"",
+          "20180711",
+          "\"20170814\"",
+          "20170814",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170815\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11031",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170815\"",
+          "\"15/08/2017\"",
+          "20180711",
+          "\"20170815\"",
+          "20170815",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170816\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11033",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170816\"",
+          "\"16/08/2017\"",
+          "20180711",
+          "\"20170816\"",
+          "20170816",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170817\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11035",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170817\"",
+          "\"17/08/2017\"",
+          "20180711",
+          "\"20170817\"",
+          "20170817",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170818\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11037",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170818\"",
+          "\"18/08/2017\"",
+          "20180711",
+          "\"20170818\"",
+          "20170818",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170819\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11039",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170819\"",
+          "\"19/08/2017\"",
+          "20180711",
+          "\"20170819\"",
+          "20170819",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170820\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11041",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170820\"",
+          "\"20/08/2017\"",
+          "20180711",
+          "\"20170820\"",
+          "20170820",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170821\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11043",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170821\"",
+          "\"21/08/2017\"",
+          "20180711",
+          "\"20170821\"",
+          "20170821",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170822\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11045",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170822\"",
+          "\"22/08/2017\"",
+          "20180711",
+          "\"20170822\"",
+          "20170822",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170823\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11047",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170823\"",
+          "\"23/08/2017\"",
+          "20180711",
+          "\"20170823\"",
+          "20170823",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170824\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11049",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170824\"",
+          "\"24/08/2017\"",
+          "20180711",
+          "\"20170824\"",
+          "20170824",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170825\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11051",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170825\"",
+          "\"25/08/2017\"",
+          "20180711",
+          "\"20170825\"",
+          "20170825",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170826\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11053",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170826\"",
+          "\"26/08/2017\"",
+          "20180711",
+          "\"20170826\"",
+          "20170826",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170827\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11055",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170827\"",
+          "\"27/08/2017\"",
+          "20180711",
+          "\"20170827\"",
+          "20170827",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170828\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11057",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170828\"",
+          "\"28/08/2017\"",
+          "20180711",
+          "\"20170828\"",
+          "20170828",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170829\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11059",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170829\"",
+          "\"29/08/2017\"",
+          "20180711",
+          "\"20170829\"",
+          "20170829",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170830\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11061",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170830\"",
+          "\"30/08/2017\"",
+          "20180711",
+          "\"20170830\"",
+          "20170830",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170831\"",
+          "11001",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11063",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170831\"",
+          "\"31/08/2017\"",
+          "20180711",
+          "\"20170831\"",
+          "20170831",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170901-20170930\"",
+          "10935",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11065",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201709\"",
+          "\"Sept./2017\"",
+          "20180711",
+          "\"201709\"",
+          "20170901",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170901\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11067",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170901\"",
+          "\"01/09/2017\"",
+          "20180711",
+          "\"20170901\"",
+          "20170901",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170902\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11069",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170902\"",
+          "\"02/09/2017\"",
+          "20180711",
+          "\"20170902\"",
+          "20170902",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170903\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11071",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170903\"",
+          "\"03/09/2017\"",
+          "20180711",
+          "\"20170903\"",
+          "20170903",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170904\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11073",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170904\"",
+          "\"04/09/2017\"",
+          "20180711",
+          "\"20170904\"",
+          "20170904",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170905\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11075",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170905\"",
+          "\"05/09/2017\"",
+          "20180711",
+          "\"20170905\"",
+          "20170905",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170906\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11077",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170906\"",
+          "\"06/09/2017\"",
+          "20180711",
+          "\"20170906\"",
+          "20170906",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170907\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11079",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170907\"",
+          "\"07/09/2017\"",
+          "20180711",
+          "\"20170907\"",
+          "20170907",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170908\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11081",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170908\"",
+          "\"08/09/2017\"",
+          "20180711",
+          "\"20170908\"",
+          "20170908",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170909\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11083",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170909\"",
+          "\"09/09/2017\"",
+          "20180711",
+          "\"20170909\"",
+          "20170909",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170910\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11085",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170910\"",
+          "\"10/09/2017\"",
+          "20180711",
+          "\"20170910\"",
+          "20170910",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170911\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11087",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170911\"",
+          "\"11/09/2017\"",
+          "20180711",
+          "\"20170911\"",
+          "20170911",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170912\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11089",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170912\"",
+          "\"12/09/2017\"",
+          "20180711",
+          "\"20170912\"",
+          "20170912",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170913\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11091",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170913\"",
+          "\"13/09/2017\"",
+          "20180711",
+          "\"20170913\"",
+          "20170913",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170914\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11093",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170914\"",
+          "\"14/09/2017\"",
+          "20180711",
+          "\"20170914\"",
+          "20170914",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170915\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11095",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170915\"",
+          "\"15/09/2017\"",
+          "20180711",
+          "\"20170915\"",
+          "20170915",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170916\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11097",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170916\"",
+          "\"16/09/2017\"",
+          "20180711",
+          "\"20170916\"",
+          "20170916",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170917\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11099",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170917\"",
+          "\"17/09/2017\"",
+          "20180711",
+          "\"20170917\"",
+          "20170917",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170918\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11101",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170918\"",
+          "\"18/09/2017\"",
+          "20180711",
+          "\"20170918\"",
+          "20170918",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170919\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11103",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170919\"",
+          "\"19/09/2017\"",
+          "20180711",
+          "\"20170919\"",
+          "20170919",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170920\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11105",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170920\"",
+          "\"20/09/2017\"",
+          "20180711",
+          "\"20170920\"",
+          "20170920",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170921\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11107",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170921\"",
+          "\"21/09/2017\"",
+          "20180711",
+          "\"20170921\"",
+          "20170921",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170922\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11109",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170922\"",
+          "\"22/09/2017\"",
+          "20180711",
+          "\"20170922\"",
+          "20170922",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170923\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11111",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170923\"",
+          "\"23/09/2017\"",
+          "20180711",
+          "\"20170923\"",
+          "20170923",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170924\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11113",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170924\"",
+          "\"24/09/2017\"",
+          "20180711",
+          "\"20170924\"",
+          "20170924",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170925\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11115",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170925\"",
+          "\"25/09/2017\"",
+          "20180711",
+          "\"20170925\"",
+          "20170925",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170926\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11117",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170926\"",
+          "\"26/09/2017\"",
+          "20180711",
+          "\"20170926\"",
+          "20170926",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170927\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11119",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170927\"",
+          "\"27/09/2017\"",
+          "20180711",
+          "\"20170927\"",
+          "20170927",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170928\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11121",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170928\"",
+          "\"28/09/2017\"",
+          "20180711",
+          "\"20170928\"",
+          "20170928",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170929\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11123",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170929\"",
+          "\"29/09/2017\"",
+          "20180711",
+          "\"20170929\"",
+          "20170929",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20170930\"",
+          "11065",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11125",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20170930\"",
+          "\"30/09/2017\"",
+          "20180711",
+          "\"20170930\"",
+          "20170930",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171001-20171231\"",
+          "10555",
+          "1481",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11127",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171001\"",
+          "\"4. Q. 2017\"",
+          "20180820",
+          "\"20171001\"",
+          "20171001",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171001-20171031\"",
+          "11127",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11129",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201710\"",
+          "\"Okt./2017\"",
+          "20180711",
+          "\"201710\"",
+          "20171001",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171001\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11131",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171001\"",
+          "\"01/10/2017\"",
+          "20180711",
+          "\"20171001\"",
+          "20171001",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171002\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11133",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171002\"",
+          "\"02/10/2017\"",
+          "20180711",
+          "\"20171002\"",
+          "20171002",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171003\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11135",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171003\"",
+          "\"03/10/2017\"",
+          "20180711",
+          "\"20171003\"",
+          "20171003",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171004\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11137",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171004\"",
+          "\"04/10/2017\"",
+          "20180711",
+          "\"20171004\"",
+          "20171004",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171005\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11139",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171005\"",
+          "\"05/10/2017\"",
+          "20180711",
+          "\"20171005\"",
+          "20171005",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171006\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11141",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171006\"",
+          "\"06/10/2017\"",
+          "20180711",
+          "\"20171006\"",
+          "20171006",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171007\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11143",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171007\"",
+          "\"07/10/2017\"",
+          "20180711",
+          "\"20171007\"",
+          "20171007",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171008\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11145",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171008\"",
+          "\"08/10/2017\"",
+          "20180711",
+          "\"20171008\"",
+          "20171008",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171009\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11147",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171009\"",
+          "\"09/10/2017\"",
+          "20180711",
+          "\"20171009\"",
+          "20171009",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171010\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11149",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171010\"",
+          "\"10/10/2017\"",
+          "20180711",
+          "\"20171010\"",
+          "20171010",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171011\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11151",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171011\"",
+          "\"11/10/2017\"",
+          "20180711",
+          "\"20171011\"",
+          "20171011",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171012\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11153",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171012\"",
+          "\"12/10/2017\"",
+          "20180711",
+          "\"20171012\"",
+          "20171012",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171013\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11155",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171013\"",
+          "\"13/10/2017\"",
+          "20180711",
+          "\"20171013\"",
+          "20171013",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171014\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11157",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171014\"",
+          "\"14/10/2017\"",
+          "20180711",
+          "\"20171014\"",
+          "20171014",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171015\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11159",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171015\"",
+          "\"15/10/2017\"",
+          "20180711",
+          "\"20171015\"",
+          "20171015",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171016\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11161",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171016\"",
+          "\"16/10/2017\"",
+          "20180711",
+          "\"20171016\"",
+          "20171016",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171017\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11163",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171017\"",
+          "\"17/10/2017\"",
+          "20180711",
+          "\"20171017\"",
+          "20171017",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171018\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11165",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171018\"",
+          "\"18/10/2017\"",
+          "20180711",
+          "\"20171018\"",
+          "20171018",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171019\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11167",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171019\"",
+          "\"19/10/2017\"",
+          "20180711",
+          "\"20171019\"",
+          "20171019",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171020\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11169",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171020\"",
+          "\"20/10/2017\"",
+          "20180711",
+          "\"20171020\"",
+          "20171020",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171021\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11171",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171021\"",
+          "\"21/10/2017\"",
+          "20180711",
+          "\"20171021\"",
+          "20171021",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171022\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11173",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171022\"",
+          "\"22/10/2017\"",
+          "20180711",
+          "\"20171022\"",
+          "20171022",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171023\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11175",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171023\"",
+          "\"23/10/2017\"",
+          "20180711",
+          "\"20171023\"",
+          "20171023",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171024\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11177",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171024\"",
+          "\"24/10/2017\"",
+          "20180711",
+          "\"20171024\"",
+          "20171024",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171025\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11179",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171025\"",
+          "\"25/10/2017\"",
+          "20180711",
+          "\"20171025\"",
+          "20171025",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171026\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11181",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171026\"",
+          "\"26/10/2017\"",
+          "20180711",
+          "\"20171026\"",
+          "20171026",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171027\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11183",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171027\"",
+          "\"27/10/2017\"",
+          "20180711",
+          "\"20171027\"",
+          "20171027",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171028\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11185",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171028\"",
+          "\"28/10/2017\"",
+          "20180711",
+          "\"20171028\"",
+          "20171028",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171029\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11187",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171029\"",
+          "\"29/10/2017\"",
+          "20180711",
+          "\"20171029\"",
+          "20171029",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171030\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11189",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171030\"",
+          "\"30/10/2017\"",
+          "20180711",
+          "\"20171030\"",
+          "20171030",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171031\"",
+          "11129",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11191",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171031\"",
+          "\"31/10/2017\"",
+          "20180711",
+          "\"20171031\"",
+          "20171031",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171101-20171130\"",
+          "11127",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11193",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201711\"",
+          "\"Nov./2017\"",
+          "20180820",
+          "\"201711\"",
+          "20171101",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171101\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11195",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171101\"",
+          "\"01/11/2017\"",
+          "20180711",
+          "\"20171101\"",
+          "20171101",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171102\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11197",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171102\"",
+          "\"02/11/2017\"",
+          "20180711",
+          "\"20171102\"",
+          "20171102",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171103\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11199",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171103\"",
+          "\"03/11/2017\"",
+          "20180711",
+          "\"20171103\"",
+          "20171103",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171104\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11201",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171104\"",
+          "\"04/11/2017\"",
+          "20180711",
+          "\"20171104\"",
+          "20171104",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171105\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11203",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171105\"",
+          "\"05/11/2017\"",
+          "20180711",
+          "\"20171105\"",
+          "20171105",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171106\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11205",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171106\"",
+          "\"06/11/2017\"",
+          "20180711",
+          "\"20171106\"",
+          "20171106",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171107\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11207",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171107\"",
+          "\"07/11/2017\"",
+          "20180711",
+          "\"20171107\"",
+          "20171107",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171108\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11209",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171108\"",
+          "\"08/11/2017\"",
+          "20180711",
+          "\"20171108\"",
+          "20171108",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171109\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11211",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171109\"",
+          "\"09/11/2017\"",
+          "20180711",
+          "\"20171109\"",
+          "20171109",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171110\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11213",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171110\"",
+          "\"10/11/2017\"",
+          "20180711",
+          "\"20171110\"",
+          "20171110",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171111\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11215",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171111\"",
+          "\"11/11/2017\"",
+          "20180711",
+          "\"20171111\"",
+          "20171111",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171112\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11217",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171112\"",
+          "\"12/11/2017\"",
+          "20180711",
+          "\"20171112\"",
+          "20171112",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171113\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11219",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171113\"",
+          "\"13/11/2017\"",
+          "20180711",
+          "\"20171113\"",
+          "20171113",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171114\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11221",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171114\"",
+          "\"14/11/2017\"",
+          "20180711",
+          "\"20171114\"",
+          "20171114",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171115\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11223",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171115\"",
+          "\"15/11/2017\"",
+          "20180711",
+          "\"20171115\"",
+          "20171115",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171116\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11225",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171116\"",
+          "\"16/11/2017\"",
+          "20180711",
+          "\"20171116\"",
+          "20171116",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171117\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11227",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171117\"",
+          "\"17/11/2017\"",
+          "20180711",
+          "\"20171117\"",
+          "20171117",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171118\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11229",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171118\"",
+          "\"18/11/2017\"",
+          "20180711",
+          "\"20171118\"",
+          "20171118",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171119\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11231",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171119\"",
+          "\"19/11/2017\"",
+          "20180711",
+          "\"20171119\"",
+          "20171119",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171120\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11233",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171120\"",
+          "\"20/11/2017\"",
+          "20180820",
+          "\"20171120\"",
+          "20171120",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171121\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11235",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171121\"",
+          "\"21/11/2017\"",
+          "20180711",
+          "\"20171121\"",
+          "20171121",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171122\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11237",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171122\"",
+          "\"22/11/2017\"",
+          "20180711",
+          "\"20171122\"",
+          "20171122",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171123\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11239",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171123\"",
+          "\"23/11/2017\"",
+          "20180711",
+          "\"20171123\"",
+          "20171123",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171124\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11241",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171124\"",
+          "\"24/11/2017\"",
+          "20180711",
+          "\"20171124\"",
+          "20171124",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171125\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11243",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171125\"",
+          "\"25/11/2017\"",
+          "20180711",
+          "\"20171125\"",
+          "20171125",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171126\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11245",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171126\"",
+          "\"26/11/2017\"",
+          "20180711",
+          "\"20171126\"",
+          "20171126",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171127\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11247",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171127\"",
+          "\"27/11/2017\"",
+          "20180711",
+          "\"20171127\"",
+          "20171127",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171128\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11249",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171128\"",
+          "\"28/11/2017\"",
+          "20180711",
+          "\"20171128\"",
+          "20171128",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171129\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11251",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171129\"",
+          "\"29/11/2017\"",
+          "20180711",
+          "\"20171129\"",
+          "20171129",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171130\"",
+          "11193",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11253",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171130\"",
+          "\"30/11/2017\"",
+          "20180711",
+          "\"20171130\"",
+          "20171130",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171201-20171231\"",
+          "11127",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11255",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201712\"",
+          "\"Dez./2017\"",
+          "20180711",
+          "\"201712\"",
+          "20171201",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171201\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11257",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171201\"",
+          "\"01/12/2017\"",
+          "20180711",
+          "\"20171201\"",
+          "20171201",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171202\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11259",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171202\"",
+          "\"02/12/2017\"",
+          "20180711",
+          "\"20171202\"",
+          "20171202",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171203\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11261",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171203\"",
+          "\"03/12/2017\"",
+          "20180711",
+          "\"20171203\"",
+          "20171203",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171204\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11263",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171204\"",
+          "\"04/12/2017\"",
+          "20180711",
+          "\"20171204\"",
+          "20171204",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171205\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11265",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171205\"",
+          "\"05/12/2017\"",
+          "20180711",
+          "\"20171205\"",
+          "20171205",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171206\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11267",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171206\"",
+          "\"06/12/2017\"",
+          "20180711",
+          "\"20171206\"",
+          "20171206",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171207\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11269",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171207\"",
+          "\"07/12/2017\"",
+          "20180711",
+          "\"20171207\"",
+          "20171207",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171208\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11271",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171208\"",
+          "\"08/12/2017\"",
+          "20180711",
+          "\"20171208\"",
+          "20171208",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171209\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11273",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171209\"",
+          "\"09/12/2017\"",
+          "20180711",
+          "\"20171209\"",
+          "20171209",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171210\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11275",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171210\"",
+          "\"10/12/2017\"",
+          "20180711",
+          "\"20171210\"",
+          "20171210",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171211\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11277",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171211\"",
+          "\"11/12/2017\"",
+          "20180711",
+          "\"20171211\"",
+          "20171211",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171212\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11279",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171212\"",
+          "\"12/12/2017\"",
+          "20180711",
+          "\"20171212\"",
+          "20171212",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171213\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11281",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171213\"",
+          "\"13/12/2017\"",
+          "20180711",
+          "\"20171213\"",
+          "20171213",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171214\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11283",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171214\"",
+          "\"14/12/2017\"",
+          "20180711",
+          "\"20171214\"",
+          "20171214",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171215\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11285",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171215\"",
+          "\"15/12/2017\"",
+          "20180711",
+          "\"20171215\"",
+          "20171215",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171216\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11287",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171216\"",
+          "\"16/12/2017\"",
+          "20180711",
+          "\"20171216\"",
+          "20171216",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171217\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11289",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171217\"",
+          "\"17/12/2017\"",
+          "20180711",
+          "\"20171217\"",
+          "20171217",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171218\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11291",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171218\"",
+          "\"18/12/2017\"",
+          "20180711",
+          "\"20171218\"",
+          "20171218",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171219\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11293",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171219\"",
+          "\"19/12/2017\"",
+          "20180711",
+          "\"20171219\"",
+          "20171219",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171220\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11295",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171220\"",
+          "\"20/12/2017\"",
+          "20180711",
+          "\"20171220\"",
+          "20171220",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171221\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11297",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171221\"",
+          "\"21/12/2017\"",
+          "20180711",
+          "\"20171221\"",
+          "20171221",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171222\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11299",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171222\"",
+          "\"22/12/2017\"",
+          "20180711",
+          "\"20171222\"",
+          "20171222",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171223\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11301",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171223\"",
+          "\"23/12/2017\"",
+          "20180711",
+          "\"20171223\"",
+          "20171223",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171224\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11303",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171224\"",
+          "\"24/12/2017\"",
+          "20180711",
+          "\"20171224\"",
+          "20171224",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171225\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11305",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171225\"",
+          "\"25/12/2017\"",
+          "20180711",
+          "\"20171225\"",
+          "20171225",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171226\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11307",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171226\"",
+          "\"26/12/2017\"",
+          "20180711",
+          "\"20171226\"",
+          "20171226",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171227\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11309",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171227\"",
+          "\"27/12/2017\"",
+          "20180711",
+          "\"20171227\"",
+          "20171227",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171228\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11311",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171228\"",
+          "\"28/12/2017\"",
+          "20180711",
+          "\"20171228\"",
+          "20171228",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171229\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11313",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171229\"",
+          "\"29/12/2017\"",
+          "20180711",
+          "\"20171229\"",
+          "20171229",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171230\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11315",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171230\"",
+          "\"30/12/2017\"",
+          "20180711",
+          "\"20171230\"",
+          "20171230",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20171231\"",
+          "11255",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11317",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20171231\"",
+          "\"31/12/2017\"",
+          "20180711",
+          "\"20171231\"",
+          "20171231",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180101-20181231\"",
+          "1469",
+          "1475",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11353",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"2018\"",
+          "\"2018\"",
+          "20180820",
+          "\"2018\"",
+          "20180101",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180101-20180331\"",
+          "11353",
+          "1481",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11355",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180101\"",
+          "\"1. Q. 2018\"",
+          "20180820",
+          "\"20180101\"",
+          "20180101",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180101-20180131\"",
+          "11355",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11357",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201801\"",
+          "\"Jan./2018\"",
+          "20180711",
+          "\"201801\"",
+          "20180101",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180101\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11359",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180101\"",
+          "\"01/01/2018\"",
+          "20180711",
+          "\"20180101\"",
+          "20180101",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180102\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11361",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180102\"",
+          "\"02/01/2018\"",
+          "20180711",
+          "\"20180102\"",
+          "20180102",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180103\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11363",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180103\"",
+          "\"03/01/2018\"",
+          "20180711",
+          "\"20180103\"",
+          "20180103",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180104\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11365",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180104\"",
+          "\"04/01/2018\"",
+          "20180711",
+          "\"20180104\"",
+          "20180104",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180105\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11367",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180105\"",
+          "\"05/01/2018\"",
+          "20180711",
+          "\"20180105\"",
+          "20180105",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180106\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11369",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180106\"",
+          "\"06/01/2018\"",
+          "20180711",
+          "\"20180106\"",
+          "20180106",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180107\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11371",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180107\"",
+          "\"07/01/2018\"",
+          "20180711",
+          "\"20180107\"",
+          "20180107",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180108\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11373",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180108\"",
+          "\"08/01/2018\"",
+          "20180711",
+          "\"20180108\"",
+          "20180108",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180109\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11375",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180109\"",
+          "\"09/01/2018\"",
+          "20180711",
+          "\"20180109\"",
+          "20180109",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180110\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11377",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180110\"",
+          "\"10/01/2018\"",
+          "20180711",
+          "\"20180110\"",
+          "20180110",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180111\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11379",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180111\"",
+          "\"11/01/2018\"",
+          "20180711",
+          "\"20180111\"",
+          "20180111",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180112\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11381",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180112\"",
+          "\"12/01/2018\"",
+          "20180711",
+          "\"20180112\"",
+          "20180112",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180113\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11383",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180113\"",
+          "\"13/01/2018\"",
+          "20180711",
+          "\"20180113\"",
+          "20180113",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180114\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11385",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180114\"",
+          "\"14/01/2018\"",
+          "20180711",
+          "\"20180114\"",
+          "20180114",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180115\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11387",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180115\"",
+          "\"15/01/2018\"",
+          "20180711",
+          "\"20180115\"",
+          "20180115",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180116\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11389",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180116\"",
+          "\"16/01/2018\"",
+          "20180711",
+          "\"20180116\"",
+          "20180116",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180117\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11391",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180117\"",
+          "\"17/01/2018\"",
+          "20180711",
+          "\"20180117\"",
+          "20180117",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180118\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11393",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180118\"",
+          "\"18/01/2018\"",
+          "20180711",
+          "\"20180118\"",
+          "20180118",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180119\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11395",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180119\"",
+          "\"19/01/2018\"",
+          "20180711",
+          "\"20180119\"",
+          "20180119",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180120\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11397",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180120\"",
+          "\"20/01/2018\"",
+          "20180711",
+          "\"20180120\"",
+          "20180120",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180121\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11399",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180121\"",
+          "\"21/01/2018\"",
+          "20180711",
+          "\"20180121\"",
+          "20180121",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180122\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11401",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180122\"",
+          "\"22/01/2018\"",
+          "20180711",
+          "\"20180122\"",
+          "20180122",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180123\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11403",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180123\"",
+          "\"23/01/2018\"",
+          "20180711",
+          "\"20180123\"",
+          "20180123",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180124\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11405",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180124\"",
+          "\"24/01/2018\"",
+          "20180711",
+          "\"20180124\"",
+          "20180124",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180125\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11407",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180125\"",
+          "\"25/01/2018\"",
+          "20180711",
+          "\"20180125\"",
+          "20180125",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180126\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11409",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180126\"",
+          "\"26/01/2018\"",
+          "20180711",
+          "\"20180126\"",
+          "20180126",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180127\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11411",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180127\"",
+          "\"27/01/2018\"",
+          "20180711",
+          "\"20180127\"",
+          "20180127",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180128\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11413",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180128\"",
+          "\"28/01/2018\"",
+          "20180711",
+          "\"20180128\"",
+          "20180128",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180129\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11415",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180129\"",
+          "\"29/01/2018\"",
+          "20180711",
+          "\"20180129\"",
+          "20180129",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180130\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11417",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180130\"",
+          "\"30/01/2018\"",
+          "20180711",
+          "\"20180130\"",
+          "20180130",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180131\"",
+          "11357",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11419",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180131\"",
+          "\"31/01/2018\"",
+          "20180711",
+          "\"20180131\"",
+          "20180131",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180201-20180228\"",
+          "11355",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11421",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201802\"",
+          "\"Feb./2018\"",
+          "20180820",
+          "\"201802\"",
+          "20180201",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180201\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11423",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180201\"",
+          "\"01/02/2018\"",
+          "20180711",
+          "\"20180201\"",
+          "20180201",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180202\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11425",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180202\"",
+          "\"02/02/2018\"",
+          "20180711",
+          "\"20180202\"",
+          "20180202",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180203\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11427",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180203\"",
+          "\"03/02/2018\"",
+          "20180711",
+          "\"20180203\"",
+          "20180203",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180204\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11429",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180204\"",
+          "\"04/02/2018\"",
+          "20180711",
+          "\"20180204\"",
+          "20180204",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180205\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11431",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180205\"",
+          "\"05/02/2018\"",
+          "20180711",
+          "\"20180205\"",
+          "20180205",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180206\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11433",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180206\"",
+          "\"06/02/2018\"",
+          "20180711",
+          "\"20180206\"",
+          "20180206",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180207\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11435",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180207\"",
+          "\"07/02/2018\"",
+          "20180711",
+          "\"20180207\"",
+          "20180207",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180208\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11437",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180208\"",
+          "\"08/02/2018\"",
+          "20180711",
+          "\"20180208\"",
+          "20180208",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180209\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11439",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180209\"",
+          "\"09/02/2018\"",
+          "20180711",
+          "\"20180209\"",
+          "20180209",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180210\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11441",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180210\"",
+          "\"10/02/2018\"",
+          "20180711",
+          "\"20180210\"",
+          "20180210",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180211\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11443",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180211\"",
+          "\"11/02/2018\"",
+          "20180711",
+          "\"20180211\"",
+          "20180211",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180212\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11445",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180212\"",
+          "\"12/02/2018\"",
+          "20180711",
+          "\"20180212\"",
+          "20180212",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180213\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11447",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180213\"",
+          "\"13/02/2018\"",
+          "20180711",
+          "\"20180213\"",
+          "20180213",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180214\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11449",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180214\"",
+          "\"14/02/2018\"",
+          "20180711",
+          "\"20180214\"",
+          "20180214",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180215\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11451",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180215\"",
+          "\"15/02/2018\"",
+          "20180711",
+          "\"20180215\"",
+          "20180215",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180216\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11453",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180216\"",
+          "\"16/02/2018\"",
+          "20180711",
+          "\"20180216\"",
+          "20180216",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180217\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11455",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180217\"",
+          "\"17/02/2018\"",
+          "20180711",
+          "\"20180217\"",
+          "20180217",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180218\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11457",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180218\"",
+          "\"18/02/2018\"",
+          "20180711",
+          "\"20180218\"",
+          "20180218",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180219\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11459",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180219\"",
+          "\"19/02/2018\"",
+          "20180711",
+          "\"20180219\"",
+          "20180219",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180220\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11461",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180220\"",
+          "\"20/02/2018\"",
+          "20180711",
+          "\"20180220\"",
+          "20180220",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180221\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11463",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180221\"",
+          "\"21/02/2018\"",
+          "20180820",
+          "\"20180221\"",
+          "20180221",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180222\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11465",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180222\"",
+          "\"22/02/2018\"",
+          "20180711",
+          "\"20180222\"",
+          "20180222",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180223\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11467",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180223\"",
+          "\"23/02/2018\"",
+          "20180711",
+          "\"20180223\"",
+          "20180223",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180224\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11469",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180224\"",
+          "\"24/02/2018\"",
+          "20180711",
+          "\"20180224\"",
+          "20180224",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180225\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11471",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180225\"",
+          "\"25/02/2018\"",
+          "20180711",
+          "\"20180225\"",
+          "20180225",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180226\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11473",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180226\"",
+          "\"26/02/2018\"",
+          "20180711",
+          "\"20180226\"",
+          "20180226",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180227\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11475",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180227\"",
+          "\"27/02/2018\"",
+          "20180711",
+          "\"20180227\"",
+          "20180227",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180228\"",
+          "11421",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11477",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180228\"",
+          "\"28/02/2018\"",
+          "20180711",
+          "\"20180228\"",
+          "20180228",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180301-20180331\"",
+          "11355",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11479",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201803\"",
+          "\"M\u00e4rz/2018\"",
+          "20180820",
+          "\"201803\"",
+          "20180301",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180301\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11481",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180301\"",
+          "\"01/03/2018\"",
+          "20180711",
+          "\"20180301\"",
+          "20180301",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180302\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11483",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180302\"",
+          "\"02/03/2018\"",
+          "20180711",
+          "\"20180302\"",
+          "20180302",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180303\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11485",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180303\"",
+          "\"03/03/2018\"",
+          "20180711",
+          "\"20180303\"",
+          "20180303",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180304\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11487",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180304\"",
+          "\"04/03/2018\"",
+          "20180711",
+          "\"20180304\"",
+          "20180304",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180305\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11489",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180305\"",
+          "\"05/03/2018\"",
+          "20180711",
+          "\"20180305\"",
+          "20180305",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180306\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11491",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180306\"",
+          "\"06/03/2018\"",
+          "20180711",
+          "\"20180306\"",
+          "20180306",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180307\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11493",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180307\"",
+          "\"07/03/2018\"",
+          "20180711",
+          "\"20180307\"",
+          "20180307",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180308\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11495",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180308\"",
+          "\"08/03/2018\"",
+          "20180820",
+          "\"20180308\"",
+          "20180308",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180309\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11497",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180309\"",
+          "\"09/03/2018\"",
+          "20180711",
+          "\"20180309\"",
+          "20180309",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180310\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11499",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180310\"",
+          "\"10/03/2018\"",
+          "20180711",
+          "\"20180310\"",
+          "20180310",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180311\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11501",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180311\"",
+          "\"11/03/2018\"",
+          "20180711",
+          "\"20180311\"",
+          "20180311",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180312\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11503",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180312\"",
+          "\"12/03/2018\"",
+          "20180711",
+          "\"20180312\"",
+          "20180312",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180313\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11505",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180313\"",
+          "\"13/03/2018\"",
+          "20180711",
+          "\"20180313\"",
+          "20180313",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180314\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11507",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180314\"",
+          "\"14/03/2018\"",
+          "20180711",
+          "\"20180314\"",
+          "20180314",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180315\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11509",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180315\"",
+          "\"15/03/2018\"",
+          "20180711",
+          "\"20180315\"",
+          "20180315",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180316\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11511",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180316\"",
+          "\"16/03/2018\"",
+          "20180711",
+          "\"20180316\"",
+          "20180316",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180317\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11513",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180317\"",
+          "\"17/03/2018\"",
+          "20180711",
+          "\"20180317\"",
+          "20180317",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180318\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11515",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180318\"",
+          "\"18/03/2018\"",
+          "20180711",
+          "\"20180318\"",
+          "20180318",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180319\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11517",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180319\"",
+          "\"19/03/2018\"",
+          "20180711",
+          "\"20180319\"",
+          "20180319",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180320\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11519",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180320\"",
+          "\"20/03/2018\"",
+          "20180711",
+          "\"20180320\"",
+          "20180320",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180321\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11521",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180321\"",
+          "\"21/03/2018\"",
+          "20180711",
+          "\"20180321\"",
+          "20180321",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180322\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11523",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180322\"",
+          "\"22/03/2018\"",
+          "20180711",
+          "\"20180322\"",
+          "20180322",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180323\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11525",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180323\"",
+          "\"23/03/2018\"",
+          "20180711",
+          "\"20180323\"",
+          "20180323",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180324\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11527",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180324\"",
+          "\"24/03/2018\"",
+          "20180711",
+          "\"20180324\"",
+          "20180324",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180325\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11529",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180325\"",
+          "\"25/03/2018\"",
+          "20180711",
+          "\"20180325\"",
+          "20180325",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180326\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11531",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180326\"",
+          "\"26/03/2018\"",
+          "20180711",
+          "\"20180326\"",
+          "20180326",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180327\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11533",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180327\"",
+          "\"27/03/2018\"",
+          "20180711",
+          "\"20180327\"",
+          "20180327",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180328\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11535",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180328\"",
+          "\"28/03/2018\"",
+          "20180711",
+          "\"20180328\"",
+          "20180328",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180329\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11537",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180329\"",
+          "\"29/03/2018\"",
+          "20180711",
+          "\"20180329\"",
+          "20180329",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180330\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11539",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180330\"",
+          "\"30/03/2018\"",
+          "20180711",
+          "\"20180330\"",
+          "20180330",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180331\"",
+          "11479",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11541",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180331\"",
+          "\"31/03/2018\"",
+          "20180711",
+          "\"20180331\"",
+          "20180331",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180401-20180630\"",
+          "11353",
+          "1481",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11543",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180401\"",
+          "\"2. Q. 2018\"",
+          "20180820",
+          "\"20180401\"",
+          "20180401",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180401-20180430\"",
+          "11543",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11545",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201804\"",
+          "\"Apr./2018\"",
+          "20180820",
+          "\"201804\"",
+          "20180401",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180401\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11547",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180401\"",
+          "\"01/04/2018\"",
+          "20180711",
+          "\"20180401\"",
+          "20180401",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180402\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11549",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180402\"",
+          "\"02/04/2018\"",
+          "20180711",
+          "\"20180402\"",
+          "20180402",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180403\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11551",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180403\"",
+          "\"03/04/2018\"",
+          "20180820",
+          "\"20180403\"",
+          "20180403",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180404\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11553",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180404\"",
+          "\"04/04/2018\"",
+          "20180711",
+          "\"20180404\"",
+          "20180404",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180405\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11555",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180405\"",
+          "\"05/04/2018\"",
+          "20180711",
+          "\"20180405\"",
+          "20180405",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180406\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11557",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180406\"",
+          "\"06/04/2018\"",
+          "20180711",
+          "\"20180406\"",
+          "20180406",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180407\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11559",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180407\"",
+          "\"07/04/2018\"",
+          "20180711",
+          "\"20180407\"",
+          "20180407",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180408\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11561",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180408\"",
+          "\"08/04/2018\"",
+          "20180711",
+          "\"20180408\"",
+          "20180408",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180409\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11563",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180409\"",
+          "\"09/04/2018\"",
+          "20180820",
+          "\"20180409\"",
+          "20180409",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180410\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11565",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180410\"",
+          "\"10/04/2018\"",
+          "20180711",
+          "\"20180410\"",
+          "20180410",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180411\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11567",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180411\"",
+          "\"11/04/2018\"",
+          "20180711",
+          "\"20180411\"",
+          "20180411",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180412\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11569",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180412\"",
+          "\"12/04/2018\"",
+          "20180711",
+          "\"20180412\"",
+          "20180412",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180413\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11571",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180413\"",
+          "\"13/04/2018\"",
+          "20180711",
+          "\"20180413\"",
+          "20180413",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180414\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11573",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180414\"",
+          "\"14/04/2018\"",
+          "20180820",
+          "\"20180414\"",
+          "20180414",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180415\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11575",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180415\"",
+          "\"15/04/2018\"",
+          "20180711",
+          "\"20180415\"",
+          "20180415",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180416\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11577",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180416\"",
+          "\"16/04/2018\"",
+          "20180820",
+          "\"20180416\"",
+          "20180416",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180417\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11579",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180417\"",
+          "\"17/04/2018\"",
+          "20180711",
+          "\"20180417\"",
+          "20180417",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180418\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11581",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180418\"",
+          "\"18/04/2018\"",
+          "20180711",
+          "\"20180418\"",
+          "20180418",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180419\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11583",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180419\"",
+          "\"19/04/2018\"",
+          "20180711",
+          "\"20180419\"",
+          "20180419",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180420\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11585",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180420\"",
+          "\"20/04/2018\"",
+          "20180820",
+          "\"20180420\"",
+          "20180420",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180421\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11587",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180421\"",
+          "\"21/04/2018\"",
+          "20180711",
+          "\"20180421\"",
+          "20180421",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180422\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11589",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180422\"",
+          "\"22/04/2018\"",
+          "20180711",
+          "\"20180422\"",
+          "20180422",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180423\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11591",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180423\"",
+          "\"23/04/2018\"",
+          "20180711",
+          "\"20180423\"",
+          "20180423",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180424\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11593",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180424\"",
+          "\"24/04/2018\"",
+          "20180820",
+          "\"20180424\"",
+          "20180424",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180425\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11595",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180425\"",
+          "\"25/04/2018\"",
+          "20180711",
+          "\"20180425\"",
+          "20180425",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180426\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11597",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180426\"",
+          "\"26/04/2018\"",
+          "20180711",
+          "\"20180426\"",
+          "20180426",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180427\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11599",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180427\"",
+          "\"27/04/2018\"",
+          "20180711",
+          "\"20180427\"",
+          "20180427",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180428\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11601",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180428\"",
+          "\"28/04/2018\"",
+          "20180711",
+          "\"20180428\"",
+          "20180428",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180429\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11603",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180429\"",
+          "\"29/04/2018\"",
+          "20180711",
+          "\"20180429\"",
+          "20180429",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180430\"",
+          "11545",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11605",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180430\"",
+          "\"30/04/2018\"",
+          "20180711",
+          "\"20180430\"",
+          "20180430",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180501-20180531\"",
+          "11543",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11607",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201805\"",
+          "\"Mai/2018\"",
+          "20180820",
+          "\"201805\"",
+          "20180501",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180501\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11609",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180501\"",
+          "\"01/05/2018\"",
+          "20180711",
+          "\"20180501\"",
+          "20180501",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180502\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11611",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180502\"",
+          "\"02/05/2018\"",
+          "20180711",
+          "\"20180502\"",
+          "20180502",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180503\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11613",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180503\"",
+          "\"03/05/2018\"",
+          "20180820",
+          "\"20180503\"",
+          "20180503",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180504\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11615",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180504\"",
+          "\"04/05/2018\"",
+          "20180820",
+          "\"20180504\"",
+          "20180504",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180505\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11617",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180505\"",
+          "\"05/05/2018\"",
+          "20180711",
+          "\"20180505\"",
+          "20180505",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180506\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11619",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180506\"",
+          "\"06/05/2018\"",
+          "20180711",
+          "\"20180506\"",
+          "20180506",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180507\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11621",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180507\"",
+          "\"07/05/2018\"",
+          "20180711",
+          "\"20180507\"",
+          "20180507",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180508\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11623",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180508\"",
+          "\"08/05/2018\"",
+          "20180820",
+          "\"20180508\"",
+          "20180508",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180509\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11625",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180509\"",
+          "\"09/05/2018\"",
+          "20180711",
+          "\"20180509\"",
+          "20180509",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180510\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11627",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180510\"",
+          "\"10/05/2018\"",
+          "20180711",
+          "\"20180510\"",
+          "20180510",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180511\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11629",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180511\"",
+          "\"11/05/2018\"",
+          "20180820",
+          "\"20180511\"",
+          "20180511",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180512\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11631",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180512\"",
+          "\"12/05/2018\"",
+          "20180711",
+          "\"20180512\"",
+          "20180512",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180513\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11633",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180513\"",
+          "\"13/05/2018\"",
+          "20180711",
+          "\"20180513\"",
+          "20180513",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180514\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11635",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180514\"",
+          "\"14/05/2018\"",
+          "20180820",
+          "\"20180514\"",
+          "20180514",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180515\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11637",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180515\"",
+          "\"15/05/2018\"",
+          "20180711",
+          "\"20180515\"",
+          "20180515",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180516\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11639",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180516\"",
+          "\"16/05/2018\"",
+          "20180711",
+          "\"20180516\"",
+          "20180516",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180517\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11641",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180517\"",
+          "\"17/05/2018\"",
+          "20180820",
+          "\"20180517\"",
+          "20180517",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180518\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11643",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180518\"",
+          "\"18/05/2018\"",
+          "20180820",
+          "\"20180518\"",
+          "20180518",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180519\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11645",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180519\"",
+          "\"19/05/2018\"",
+          "20180820",
+          "\"20180519\"",
+          "20180519",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180520\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11647",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180520\"",
+          "\"20/05/2018\"",
+          "20180711",
+          "\"20180520\"",
+          "20180520",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180521\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11649",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180521\"",
+          "\"21/05/2018\"",
+          "20180711",
+          "\"20180521\"",
+          "20180521",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180522\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11651",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180522\"",
+          "\"22/05/2018\"",
+          "20180711",
+          "\"20180522\"",
+          "20180522",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180523\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11653",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180523\"",
+          "\"23/05/2018\"",
+          "20180820",
+          "\"20180523\"",
+          "20180523",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180524\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11655",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180524\"",
+          "\"24/05/2018\"",
+          "20180711",
+          "\"20180524\"",
+          "20180524",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180525\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11657",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180525\"",
+          "\"25/05/2018\"",
+          "20180820",
+          "\"20180525\"",
+          "20180525",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180526\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11659",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180526\"",
+          "\"26/05/2018\"",
+          "20180711",
+          "\"20180526\"",
+          "20180526",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180527\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11661",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180527\"",
+          "\"27/05/2018\"",
+          "20180711",
+          "\"20180527\"",
+          "20180527",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180528\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11663",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180528\"",
+          "\"28/05/2018\"",
+          "20180820",
+          "\"20180528\"",
+          "20180528",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180529\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11665",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180529\"",
+          "\"29/05/2018\"",
+          "20180820",
+          "\"20180529\"",
+          "20180529",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180530\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11667",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180530\"",
+          "\"30/05/2018\"",
+          "20180711",
+          "\"20180530\"",
+          "20180530",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180531\"",
+          "11607",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11669",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180531\"",
+          "\"31/05/2018\"",
+          "20180711",
+          "\"20180531\"",
+          "20180531",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180601-20180630\"",
+          "11543",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11671",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201806\"",
+          "\"Juni/2018\"",
+          "20180820",
+          "\"201806\"",
+          "20180601",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180601\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11673",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180601\"",
+          "\"01/06/2018\"",
+          "20180820",
+          "\"20180601\"",
+          "20180601",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180602\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11675",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180602\"",
+          "\"02/06/2018\"",
+          "20180711",
+          "\"20180602\"",
+          "20180602",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180603\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11677",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180603\"",
+          "\"03/06/2018\"",
+          "20180711",
+          "\"20180603\"",
+          "20180603",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180604\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11679",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180604\"",
+          "\"04/06/2018\"",
+          "20180820",
+          "\"20180604\"",
+          "20180604",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180605\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11681",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180605\"",
+          "\"05/06/2018\"",
+          "20180820",
+          "\"20180605\"",
+          "20180605",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180606\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11683",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180606\"",
+          "\"06/06/2018\"",
+          "20180820",
+          "\"20180606\"",
+          "20180606",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180607\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11685",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180607\"",
+          "\"07/06/2018\"",
+          "20180820",
+          "\"20180607\"",
+          "20180607",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180608\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11687",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180608\"",
+          "\"08/06/2018\"",
+          "20180820",
+          "\"20180608\"",
+          "20180608",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180609\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11689",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180609\"",
+          "\"09/06/2018\"",
+          "20180820",
+          "\"20180609\"",
+          "20180609",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180610\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11691",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180610\"",
+          "\"10/06/2018\"",
+          "20180711",
+          "\"20180610\"",
+          "20180610",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180611\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11693",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180611\"",
+          "\"11/06/2018\"",
+          "20180820",
+          "\"20180611\"",
+          "20180611",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180612\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11695",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180612\"",
+          "\"12/06/2018\"",
+          "20180711",
+          "\"20180612\"",
+          "20180612",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180613\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11697",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180613\"",
+          "\"13/06/2018\"",
+          "20180820",
+          "\"20180613\"",
+          "20180613",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180614\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11699",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180614\"",
+          "\"14/06/2018\"",
+          "20180820",
+          "\"20180614\"",
+          "20180614",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180615\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11701",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180615\"",
+          "\"15/06/2018\"",
+          "20180820",
+          "\"20180615\"",
+          "20180615",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180616\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11703",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180616\"",
+          "\"16/06/2018\"",
+          "20180711",
+          "\"20180616\"",
+          "20180616",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180617\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11705",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180617\"",
+          "\"17/06/2018\"",
+          "20180711",
+          "\"20180617\"",
+          "20180617",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180618\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11707",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180618\"",
+          "\"18/06/2018\"",
+          "20180820",
+          "\"20180618\"",
+          "20180618",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180619\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11709",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180619\"",
+          "\"19/06/2018\"",
+          "20180820",
+          "\"20180619\"",
+          "20180619",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180620\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11711",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180620\"",
+          "\"20/06/2018\"",
+          "20180820",
+          "\"20180620\"",
+          "20180620",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180621\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11713",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180621\"",
+          "\"21/06/2018\"",
+          "20180820",
+          "\"20180621\"",
+          "20180621",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180622\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11715",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180622\"",
+          "\"22/06/2018\"",
+          "20180820",
+          "\"20180622\"",
+          "20180622",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180623\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11717",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180623\"",
+          "\"23/06/2018\"",
+          "20180711",
+          "\"20180623\"",
+          "20180623",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180624\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11719",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180624\"",
+          "\"24/06/2018\"",
+          "20180711",
+          "\"20180624\"",
+          "20180624",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180625\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11721",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180625\"",
+          "\"25/06/2018\"",
+          "20180820",
+          "\"20180625\"",
+          "20180625",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180626\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11723",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180626\"",
+          "\"26/06/2018\"",
+          "20180820",
+          "\"20180626\"",
+          "20180626",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180627\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11725",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180627\"",
+          "\"27/06/2018\"",
+          "20180820",
+          "\"20180627\"",
+          "20180627",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180628\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11727",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180628\"",
+          "\"28/06/2018\"",
+          "20180820",
+          "\"20180628\"",
+          "20180628",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180629\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11729",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180629\"",
+          "\"29/06/2018\"",
+          "20180820",
+          "\"20180629\"",
+          "20180629",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180630\"",
+          "11671",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11731",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180630\"",
+          "\"30/06/2018\"",
+          "20180820",
+          "\"20180630\"",
+          "20180630",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180701-20180930\"",
+          "11353",
+          "1481",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11733",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180701\"",
+          "\"3. Q. 2018\"",
+          "20180820",
+          "\"20180701\"",
+          "20180701",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180701-20180731\"",
+          "11733",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11735",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201807\"",
+          "\"Juli/2018\"",
+          "20180820",
+          "\"201807\"",
+          "20180701",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180701\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11737",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180701\"",
+          "\"01/07/2018\"",
+          "20180711",
+          "\"20180701\"",
+          "20180701",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180702\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11739",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180702\"",
+          "\"02/07/2018\"",
+          "20180820",
+          "\"20180702\"",
+          "20180702",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180703\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11741",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180703\"",
+          "\"03/07/2018\"",
+          "20180820",
+          "\"20180703\"",
+          "20180703",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180704\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11743",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180704\"",
+          "\"04/07/2018\"",
+          "20180820",
+          "\"20180704\"",
+          "20180704",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180705\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11745",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180705\"",
+          "\"05/07/2018\"",
+          "20180820",
+          "\"20180705\"",
+          "20180705",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180706\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11747",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180706\"",
+          "\"06/07/2018\"",
+          "20180820",
+          "\"20180706\"",
+          "20180706",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180707\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11749",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180707\"",
+          "\"07/07/2018\"",
+          "20180820",
+          "\"20180707\"",
+          "20180707",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180708\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11751",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180708\"",
+          "\"08/07/2018\"",
+          "20180711",
+          "\"20180708\"",
+          "20180708",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180709\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Current",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "11753",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180709\"",
+          "\"09/07/2018\"",
+          "20180820",
+          "\"20180709\"",
+          "20180709",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180710\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11755",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180710\"",
+          "\"10/07/2018\"",
+          "20180711",
+          "\"20180710\"",
+          "20180710",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180711\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11757",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180711\"",
+          "\"11/07/2018\"",
+          "20180711",
+          "\"20180711\"",
+          "20180711",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180712\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11759",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180712\"",
+          "\"12/07/2018\"",
+          "20180711",
+          "\"20180712\"",
+          "20180712",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180713\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11761",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180713\"",
+          "\"13/07/2018\"",
+          "20180711",
+          "\"20180713\"",
+          "20180713",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180714\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11763",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180714\"",
+          "\"14/07/2018\"",
+          "20180711",
+          "\"20180714\"",
+          "20180714",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180715\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11765",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180715\"",
+          "\"15/07/2018\"",
+          "20180711",
+          "\"20180715\"",
+          "20180715",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180716\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11767",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180716\"",
+          "\"16/07/2018\"",
+          "20180711",
+          "\"20180716\"",
+          "20180716",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180717\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11769",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180717\"",
+          "\"17/07/2018\"",
+          "20180711",
+          "\"20180717\"",
+          "20180717",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180718\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11771",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180718\"",
+          "\"18/07/2018\"",
+          "20180711",
+          "\"20180718\"",
+          "20180718",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180719\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11773",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180719\"",
+          "\"19/07/2018\"",
+          "20180711",
+          "\"20180719\"",
+          "20180719",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180720\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11775",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180720\"",
+          "\"20/07/2018\"",
+          "20180711",
+          "\"20180720\"",
+          "20180720",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180721\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11777",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180721\"",
+          "\"21/07/2018\"",
+          "20180711",
+          "\"20180721\"",
+          "20180721",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180722\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11779",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180722\"",
+          "\"22/07/2018\"",
+          "20180711",
+          "\"20180722\"",
+          "20180722",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180723\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11781",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180723\"",
+          "\"23/07/2018\"",
+          "20180711",
+          "\"20180723\"",
+          "20180723",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180724\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11783",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180724\"",
+          "\"24/07/2018\"",
+          "20180711",
+          "\"20180724\"",
+          "20180724",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180725\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11785",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180725\"",
+          "\"25/07/2018\"",
+          "20180711",
+          "\"20180725\"",
+          "20180725",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180726\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11787",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180726\"",
+          "\"26/07/2018\"",
+          "20180711",
+          "\"20180726\"",
+          "20180726",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180727\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11789",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180727\"",
+          "\"27/07/2018\"",
+          "20180711",
+          "\"20180727\"",
+          "20180727",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180728\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11791",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180728\"",
+          "\"28/07/2018\"",
+          "20180711",
+          "\"20180728\"",
+          "20180728",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180729\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11793",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180729\"",
+          "\"29/07/2018\"",
+          "20180711",
+          "\"20180729\"",
+          "20180729",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180730\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11795",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180730\"",
+          "\"30/07/2018\"",
+          "20180711",
+          "\"20180730\"",
+          "20180730",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180731\"",
+          "11735",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11797",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180731\"",
+          "\"31/07/2018\"",
+          "20180711",
+          "\"20180731\"",
+          "20180731",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180801-20180831\"",
+          "11733",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11799",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201808\"",
+          "\"Aug./2018\"",
+          "20180711",
+          "\"201808\"",
+          "20180801",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180801\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11801",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180801\"",
+          "\"01/08/2018\"",
+          "20180711",
+          "\"20180801\"",
+          "20180801",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180802\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11803",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180802\"",
+          "\"02/08/2018\"",
+          "20180711",
+          "\"20180802\"",
+          "20180802",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180803\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11805",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180803\"",
+          "\"03/08/2018\"",
+          "20180711",
+          "\"20180803\"",
+          "20180803",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180804\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11807",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180804\"",
+          "\"04/08/2018\"",
+          "20180711",
+          "\"20180804\"",
+          "20180804",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180805\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11809",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180805\"",
+          "\"05/08/2018\"",
+          "20180711",
+          "\"20180805\"",
+          "20180805",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180806\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11811",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180806\"",
+          "\"06/08/2018\"",
+          "20180711",
+          "\"20180806\"",
+          "20180806",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180807\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11813",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180807\"",
+          "\"07/08/2018\"",
+          "20180711",
+          "\"20180807\"",
+          "20180807",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180808\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11815",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180808\"",
+          "\"08/08/2018\"",
+          "20180711",
+          "\"20180808\"",
+          "20180808",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180809\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11817",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180809\"",
+          "\"09/08/2018\"",
+          "20180711",
+          "\"20180809\"",
+          "20180809",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180810\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11819",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180810\"",
+          "\"10/08/2018\"",
+          "20180711",
+          "\"20180810\"",
+          "20180810",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180811\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11821",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180811\"",
+          "\"11/08/2018\"",
+          "20180711",
+          "\"20180811\"",
+          "20180811",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180812\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11823",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180812\"",
+          "\"12/08/2018\"",
+          "20180711",
+          "\"20180812\"",
+          "20180812",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180813\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11825",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180813\"",
+          "\"13/08/2018\"",
+          "20180711",
+          "\"20180813\"",
+          "20180813",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180814\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11827",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180814\"",
+          "\"14/08/2018\"",
+          "20180711",
+          "\"20180814\"",
+          "20180814",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180815\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11829",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180815\"",
+          "\"15/08/2018\"",
+          "20180711",
+          "\"20180815\"",
+          "20180815",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180816\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11831",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180816\"",
+          "\"16/08/2018\"",
+          "20180711",
+          "\"20180816\"",
+          "20180816",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180817\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11833",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180817\"",
+          "\"17/08/2018\"",
+          "20180711",
+          "\"20180817\"",
+          "20180817",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180818\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11835",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180818\"",
+          "\"18/08/2018\"",
+          "20180711",
+          "\"20180818\"",
+          "20180818",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180819\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11837",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180819\"",
+          "\"19/08/2018\"",
+          "20180711",
+          "\"20180819\"",
+          "20180819",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180820\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11839",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180820\"",
+          "\"20/08/2018\"",
+          "20180711",
+          "\"20180820\"",
+          "20180820",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180821\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11841",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180821\"",
+          "\"21/08/2018\"",
+          "20180711",
+          "\"20180821\"",
+          "20180821",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180822\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11843",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180822\"",
+          "\"22/08/2018\"",
+          "20180711",
+          "\"20180822\"",
+          "20180822",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180823\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11845",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180823\"",
+          "\"23/08/2018\"",
+          "20180711",
+          "\"20180823\"",
+          "20180823",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180824\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11847",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180824\"",
+          "\"24/08/2018\"",
+          "20180711",
+          "\"20180824\"",
+          "20180824",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180825\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11849",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180825\"",
+          "\"25/08/2018\"",
+          "20180711",
+          "\"20180825\"",
+          "20180825",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180826\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11851",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180826\"",
+          "\"26/08/2018\"",
+          "20180711",
+          "\"20180826\"",
+          "20180826",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180827\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11853",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180827\"",
+          "\"27/08/2018\"",
+          "20180711",
+          "\"20180827\"",
+          "20180827",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180828\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11855",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180828\"",
+          "\"28/08/2018\"",
+          "20180711",
+          "\"20180828\"",
+          "20180828",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180829\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11857",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180829\"",
+          "\"29/08/2018\"",
+          "20180711",
+          "\"20180829\"",
+          "20180829",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180830\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11859",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180830\"",
+          "\"30/08/2018\"",
+          "20180711",
+          "\"20180830\"",
+          "20180830",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180831\"",
+          "11799",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11861",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180831\"",
+          "\"31/08/2018\"",
+          "20180711",
+          "\"20180831\"",
+          "20180831",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180901-20180930\"",
+          "11733",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11863",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201809\"",
+          "\"Sept./2018\"",
+          "20180711",
+          "\"201809\"",
+          "20180901",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180901\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11865",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180901\"",
+          "\"01/09/2018\"",
+          "20180711",
+          "\"20180901\"",
+          "20180901",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180902\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11867",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180902\"",
+          "\"02/09/2018\"",
+          "20180711",
+          "\"20180902\"",
+          "20180902",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180903\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11869",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180903\"",
+          "\"03/09/2018\"",
+          "20180711",
+          "\"20180903\"",
+          "20180903",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180904\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11871",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180904\"",
+          "\"04/09/2018\"",
+          "20180711",
+          "\"20180904\"",
+          "20180904",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180905\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11873",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180905\"",
+          "\"05/09/2018\"",
+          "20180711",
+          "\"20180905\"",
+          "20180905",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180906\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11875",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180906\"",
+          "\"06/09/2018\"",
+          "20180711",
+          "\"20180906\"",
+          "20180906",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180907\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11877",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180907\"",
+          "\"07/09/2018\"",
+          "20180711",
+          "\"20180907\"",
+          "20180907",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180908\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11879",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180908\"",
+          "\"08/09/2018\"",
+          "20180711",
+          "\"20180908\"",
+          "20180908",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180909\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11881",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180909\"",
+          "\"09/09/2018\"",
+          "20180711",
+          "\"20180909\"",
+          "20180909",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180910\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11883",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180910\"",
+          "\"10/09/2018\"",
+          "20180711",
+          "\"20180910\"",
+          "20180910",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180911\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11885",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180911\"",
+          "\"11/09/2018\"",
+          "20180711",
+          "\"20180911\"",
+          "20180911",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180912\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11887",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180912\"",
+          "\"12/09/2018\"",
+          "20180711",
+          "\"20180912\"",
+          "20180912",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180913\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11889",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180913\"",
+          "\"13/09/2018\"",
+          "20180711",
+          "\"20180913\"",
+          "20180913",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180914\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11891",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180914\"",
+          "\"14/09/2018\"",
+          "20180711",
+          "\"20180914\"",
+          "20180914",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180915\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11893",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180915\"",
+          "\"15/09/2018\"",
+          "20180711",
+          "\"20180915\"",
+          "20180915",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180916\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11895",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180916\"",
+          "\"16/09/2018\"",
+          "20180711",
+          "\"20180916\"",
+          "20180916",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180917\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11897",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180917\"",
+          "\"17/09/2018\"",
+          "20180711",
+          "\"20180917\"",
+          "20180917",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180918\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11899",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180918\"",
+          "\"18/09/2018\"",
+          "20180711",
+          "\"20180918\"",
+          "20180918",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180919\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11901",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180919\"",
+          "\"19/09/2018\"",
+          "20180711",
+          "\"20180919\"",
+          "20180919",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180920\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11903",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180920\"",
+          "\"20/09/2018\"",
+          "20180711",
+          "\"20180920\"",
+          "20180920",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180921\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11905",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180921\"",
+          "\"21/09/2018\"",
+          "20180711",
+          "\"20180921\"",
+          "20180921",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180922\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11907",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180922\"",
+          "\"22/09/2018\"",
+          "20180711",
+          "\"20180922\"",
+          "20180922",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180923\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11909",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180923\"",
+          "\"23/09/2018\"",
+          "20180711",
+          "\"20180923\"",
+          "20180923",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180924\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11911",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180924\"",
+          "\"24/09/2018\"",
+          "20180711",
+          "\"20180924\"",
+          "20180924",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180925\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11913",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180925\"",
+          "\"25/09/2018\"",
+          "20180711",
+          "\"20180925\"",
+          "20180925",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180926\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11915",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180926\"",
+          "\"26/09/2018\"",
+          "20180711",
+          "\"20180926\"",
+          "20180926",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180927\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11917",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180927\"",
+          "\"27/09/2018\"",
+          "20180711",
+          "\"20180927\"",
+          "20180927",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180928\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11919",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180928\"",
+          "\"28/09/2018\"",
+          "20180711",
+          "\"20180928\"",
+          "20180928",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180929\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11921",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180929\"",
+          "\"29/09/2018\"",
+          "20180711",
+          "\"20180929\"",
+          "20180929",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20180930\"",
+          "11863",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11923",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20180930\"",
+          "\"30/09/2018\"",
+          "20180711",
+          "\"20180930\"",
+          "20180930",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181001-20181231\"",
+          "11353",
+          "1481",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11925",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181001\"",
+          "\"4. Q. 2018\"",
+          "20180711",
+          "\"20181001\"",
+          "20181001",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181001-20181031\"",
+          "11925",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11927",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201810\"",
+          "\"Okt./2018\"",
+          "20180711",
+          "\"201810\"",
+          "20181001",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181001\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11929",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181001\"",
+          "\"01/10/2018\"",
+          "20180711",
+          "\"20181001\"",
+          "20181001",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181002\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11931",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181002\"",
+          "\"02/10/2018\"",
+          "20180711",
+          "\"20181002\"",
+          "20181002",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181003\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11933",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181003\"",
+          "\"03/10/2018\"",
+          "20180711",
+          "\"20181003\"",
+          "20181003",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181004\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11935",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181004\"",
+          "\"04/10/2018\"",
+          "20180711",
+          "\"20181004\"",
+          "20181004",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181005\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11937",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181005\"",
+          "\"05/10/2018\"",
+          "20180711",
+          "\"20181005\"",
+          "20181005",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181006\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11939",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181006\"",
+          "\"06/10/2018\"",
+          "20180711",
+          "\"20181006\"",
+          "20181006",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181007\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11941",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181007\"",
+          "\"07/10/2018\"",
+          "20180711",
+          "\"20181007\"",
+          "20181007",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181008\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11943",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181008\"",
+          "\"08/10/2018\"",
+          "20180711",
+          "\"20181008\"",
+          "20181008",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181009\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11945",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181009\"",
+          "\"09/10/2018\"",
+          "20180711",
+          "\"20181009\"",
+          "20181009",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181010\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11947",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181010\"",
+          "\"10/10/2018\"",
+          "20180711",
+          "\"20181010\"",
+          "20181010",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181011\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11949",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181011\"",
+          "\"11/10/2018\"",
+          "20180711",
+          "\"20181011\"",
+          "20181011",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181012\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11951",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181012\"",
+          "\"12/10/2018\"",
+          "20180711",
+          "\"20181012\"",
+          "20181012",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181013\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11953",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181013\"",
+          "\"13/10/2018\"",
+          "20180711",
+          "\"20181013\"",
+          "20181013",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181014\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11955",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181014\"",
+          "\"14/10/2018\"",
+          "20180711",
+          "\"20181014\"",
+          "20181014",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181015\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11957",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181015\"",
+          "\"15/10/2018\"",
+          "20180711",
+          "\"20181015\"",
+          "20181015",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181016\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11959",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181016\"",
+          "\"16/10/2018\"",
+          "20180711",
+          "\"20181016\"",
+          "20181016",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181017\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11961",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181017\"",
+          "\"17/10/2018\"",
+          "20180711",
+          "\"20181017\"",
+          "20181017",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181018\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11963",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181018\"",
+          "\"18/10/2018\"",
+          "20180711",
+          "\"20181018\"",
+          "20181018",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181019\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11965",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181019\"",
+          "\"19/10/2018\"",
+          "20180711",
+          "\"20181019\"",
+          "20181019",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181020\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11967",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181020\"",
+          "\"20/10/2018\"",
+          "20180711",
+          "\"20181020\"",
+          "20181020",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181021\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11969",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181021\"",
+          "\"21/10/2018\"",
+          "20180711",
+          "\"20181021\"",
+          "20181021",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181022\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11971",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181022\"",
+          "\"22/10/2018\"",
+          "20180711",
+          "\"20181022\"",
+          "20181022",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181023\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11973",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181023\"",
+          "\"23/10/2018\"",
+          "20180711",
+          "\"20181023\"",
+          "20181023",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181024\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11975",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181024\"",
+          "\"24/10/2018\"",
+          "20180711",
+          "\"20181024\"",
+          "20181024",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181025\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11977",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181025\"",
+          "\"25/10/2018\"",
+          "20180711",
+          "\"20181025\"",
+          "20181025",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181026\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11979",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181026\"",
+          "\"26/10/2018\"",
+          "20180711",
+          "\"20181026\"",
+          "20181026",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181027\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11981",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181027\"",
+          "\"27/10/2018\"",
+          "20180711",
+          "\"20181027\"",
+          "20181027",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181028\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11983",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181028\"",
+          "\"28/10/2018\"",
+          "20180711",
+          "\"20181028\"",
+          "20181028",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181029\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11985",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181029\"",
+          "\"29/10/2018\"",
+          "20180711",
+          "\"20181029\"",
+          "20181029",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181030\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11987",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181030\"",
+          "\"30/10/2018\"",
+          "20180711",
+          "\"20181030\"",
+          "20181030",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181031\"",
+          "11927",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11989",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181031\"",
+          "\"31/10/2018\"",
+          "20180711",
+          "\"20181031\"",
+          "20181031",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181101-20181130\"",
+          "11925",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11991",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201811\"",
+          "\"Nov./2018\"",
+          "20180711",
+          "\"201811\"",
+          "20181101",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181101\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11993",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181101\"",
+          "\"01/11/2018\"",
+          "20180711",
+          "\"20181101\"",
+          "20181101",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181102\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11995",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181102\"",
+          "\"02/11/2018\"",
+          "20180711",
+          "\"20181102\"",
+          "20181102",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181103\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11997",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181103\"",
+          "\"03/11/2018\"",
+          "20180711",
+          "\"20181103\"",
+          "20181103",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181104\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "11999",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181104\"",
+          "\"04/11/2018\"",
+          "20180711",
+          "\"20181104\"",
+          "20181104",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181105\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12001",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181105\"",
+          "\"05/11/2018\"",
+          "20180711",
+          "\"20181105\"",
+          "20181105",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181106\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12003",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181106\"",
+          "\"06/11/2018\"",
+          "20180711",
+          "\"20181106\"",
+          "20181106",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181107\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12005",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181107\"",
+          "\"07/11/2018\"",
+          "20180711",
+          "\"20181107\"",
+          "20181107",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181108\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12007",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181108\"",
+          "\"08/11/2018\"",
+          "20180711",
+          "\"20181108\"",
+          "20181108",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181109\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12009",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181109\"",
+          "\"09/11/2018\"",
+          "20180711",
+          "\"20181109\"",
+          "20181109",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181110\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12011",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181110\"",
+          "\"10/11/2018\"",
+          "20180711",
+          "\"20181110\"",
+          "20181110",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181111\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12013",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181111\"",
+          "\"11/11/2018\"",
+          "20180711",
+          "\"20181111\"",
+          "20181111",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181112\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12015",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181112\"",
+          "\"12/11/2018\"",
+          "20180711",
+          "\"20181112\"",
+          "20181112",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181113\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12017",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181113\"",
+          "\"13/11/2018\"",
+          "20180711",
+          "\"20181113\"",
+          "20181113",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181114\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12019",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181114\"",
+          "\"14/11/2018\"",
+          "20180711",
+          "\"20181114\"",
+          "20181114",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181115\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12021",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181115\"",
+          "\"15/11/2018\"",
+          "20180711",
+          "\"20181115\"",
+          "20181115",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181116\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12023",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181116\"",
+          "\"16/11/2018\"",
+          "20180711",
+          "\"20181116\"",
+          "20181116",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181117\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12025",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181117\"",
+          "\"17/11/2018\"",
+          "20180711",
+          "\"20181117\"",
+          "20181117",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181118\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12027",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181118\"",
+          "\"18/11/2018\"",
+          "20180711",
+          "\"20181118\"",
+          "20181118",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181119\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12029",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181119\"",
+          "\"19/11/2018\"",
+          "20180711",
+          "\"20181119\"",
+          "20181119",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181120\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12031",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181120\"",
+          "\"20/11/2018\"",
+          "20180711",
+          "\"20181120\"",
+          "20181120",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181121\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12033",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181121\"",
+          "\"21/11/2018\"",
+          "20180711",
+          "\"20181121\"",
+          "20181121",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181122\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12035",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181122\"",
+          "\"22/11/2018\"",
+          "20180711",
+          "\"20181122\"",
+          "20181122",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181123\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12037",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181123\"",
+          "\"23/11/2018\"",
+          "20180711",
+          "\"20181123\"",
+          "20181123",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181124\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12039",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181124\"",
+          "\"24/11/2018\"",
+          "20180711",
+          "\"20181124\"",
+          "20181124",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181125\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12041",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181125\"",
+          "\"25/11/2018\"",
+          "20180711",
+          "\"20181125\"",
+          "20181125",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181126\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12043",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181126\"",
+          "\"26/11/2018\"",
+          "20180711",
+          "\"20181126\"",
+          "20181126",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181127\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12045",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181127\"",
+          "\"27/11/2018\"",
+          "20180711",
+          "\"20181127\"",
+          "20181127",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181128\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12047",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181128\"",
+          "\"28/11/2018\"",
+          "20180711",
+          "\"20181128\"",
+          "20181128",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181129\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12049",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181129\"",
+          "\"29/11/2018\"",
+          "20180711",
+          "\"20181129\"",
+          "20181129",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181130\"",
+          "11991",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12051",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181130\"",
+          "\"30/11/2018\"",
+          "20180711",
+          "\"20181130\"",
+          "20181130",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181201-20181231\"",
+          "11925",
+          "1487",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12053",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"201812\"",
+          "\"Dez./2018\"",
+          "20180711",
+          "\"201812\"",
+          "20181201",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181201\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12055",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181201\"",
+          "\"01/12/2018\"",
+          "20180711",
+          "\"20181201\"",
+          "20181201",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181202\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12057",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181202\"",
+          "\"02/12/2018\"",
+          "20180711",
+          "\"20181202\"",
+          "20181202",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181203\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12059",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181203\"",
+          "\"03/12/2018\"",
+          "20180711",
+          "\"20181203\"",
+          "20181203",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181204\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12061",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181204\"",
+          "\"04/12/2018\"",
+          "20180711",
+          "\"20181204\"",
+          "20181204",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181205\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12063",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181205\"",
+          "\"05/12/2018\"",
+          "20180711",
+          "\"20181205\"",
+          "20181205",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181206\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12065",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181206\"",
+          "\"06/12/2018\"",
+          "20180711",
+          "\"20181206\"",
+          "20181206",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181207\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12067",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181207\"",
+          "\"07/12/2018\"",
+          "20180711",
+          "\"20181207\"",
+          "20181207",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181208\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12069",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181208\"",
+          "\"08/12/2018\"",
+          "20180711",
+          "\"20181208\"",
+          "20181208",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181209\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12071",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181209\"",
+          "\"09/12/2018\"",
+          "20180711",
+          "\"20181209\"",
+          "20181209",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181210\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12073",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181210\"",
+          "\"10/12/2018\"",
+          "20180711",
+          "\"20181210\"",
+          "20181210",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181211\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12075",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181211\"",
+          "\"11/12/2018\"",
+          "20180711",
+          "\"20181211\"",
+          "20181211",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181212\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12077",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181212\"",
+          "\"12/12/2018\"",
+          "20180711",
+          "\"20181212\"",
+          "20181212",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181213\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12079",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181213\"",
+          "\"13/12/2018\"",
+          "20180711",
+          "\"20181213\"",
+          "20181213",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181214\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12081",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181214\"",
+          "\"14/12/2018\"",
+          "20180711",
+          "\"20181214\"",
+          "20181214",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181215\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12083",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181215\"",
+          "\"15/12/2018\"",
+          "20180711",
+          "\"20181215\"",
+          "20181215",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181216\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12085",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181216\"",
+          "\"16/12/2018\"",
+          "20180711",
+          "\"20181216\"",
+          "20181216",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181217\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12087",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181217\"",
+          "\"17/12/2018\"",
+          "20180711",
+          "\"20181217\"",
+          "20181217",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181218\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12089",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181218\"",
+          "\"18/12/2018\"",
+          "20180711",
+          "\"20181218\"",
+          "20181218",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181219\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12091",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181219\"",
+          "\"19/12/2018\"",
+          "20180711",
+          "\"20181219\"",
+          "20181219",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181220\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12093",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181220\"",
+          "\"20/12/2018\"",
+          "20180711",
+          "\"20181220\"",
+          "20181220",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181221\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12095",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181221\"",
+          "\"21/12/2018\"",
+          "20180711",
+          "\"20181221\"",
+          "20181221",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181222\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12097",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181222\"",
+          "\"22/12/2018\"",
+          "20180711",
+          "\"20181222\"",
+          "20181222",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181223\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12099",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181223\"",
+          "\"23/12/2018\"",
+          "20180711",
+          "\"20181223\"",
+          "20181223",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181224\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12101",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181224\"",
+          "\"24/12/2018\"",
+          "20180711",
+          "\"20181224\"",
+          "20181224",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181225\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12103",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181225\"",
+          "\"25/12/2018\"",
+          "20180711",
+          "\"20181225\"",
+          "20181225",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181226\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12105",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181226\"",
+          "\"26/12/2018\"",
+          "20180711",
+          "\"20181226\"",
+          "20181226",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181227\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12107",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181227\"",
+          "\"27/12/2018\"",
+          "20180711",
+          "\"20181227\"",
+          "20181227",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181228\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12109",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181228\"",
+          "\"28/12/2018\"",
+          "20180711",
+          "\"20181228\"",
+          "20181228",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181229\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12111",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181229\"",
+          "\"29/12/2018\"",
+          "20180711",
+          "\"20181229\"",
+          "20181229",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181230\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12113",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181230\"",
+          "\"30/12/2018\"",
+          "20180711",
+          "\"20181230\"",
+          "20181230",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"20181231\"",
+          "12053",
+          "1493",
+          "Drill",
+          "Value",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Date",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ],
+      [
+        [
+          "12115",
+          "Parent",
+          "Levels",
+          "OrderBy",
+          "1469",
+          "\"20181231\"",
+          "\"31/12/2018\"",
+          "20180711",
+          "\"20181231\"",
+          "20181231",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Aktueller Tag\"",
+          "1467",
+          "0",
+          "20180820",
+          "True",
+          "Single",
+          "0",
+          "0",
+          "\"Tag\"",
+          "0",
+          "1469",
+          "11753",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1499",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "DateDrill",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Gestern\"",
+          "1467",
+          "0",
+          "20180820",
+          "True",
+          "Single",
+          "0",
+          "1",
+          "\"Tag\"",
+          "0",
+          "1469",
+          "11751",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1501",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "DateDrill",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"M bisher\"",
+          "1467",
+          "0",
+          "20180820",
+          "True",
+          "ToDate",
+          "0",
+          "\"Monat\"",
+          "0",
+          "\"Tag\"",
+          "0",
+          "1469",
+          "11737",
+          "11739",
+          "11741",
+          "11743",
+          "11745",
+          "11747",
+          "11749",
+          "11751",
+          "11753",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1503",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "DateDrill",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriger M bisher\"",
+          "1467",
+          "0",
+          "20180820",
+          "True",
+          "ToDate",
+          "0",
+          "\"Monat\"",
+          "0",
+          "\"Tag\"",
+          "1",
+          "\"Monat\"",
+          "1469",
+          "11673",
+          "11675",
+          "11677",
+          "11679",
+          "11681",
+          "11683",
+          "11685",
+          "11687",
+          "11689",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1505",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "ContextLevel",
+          "DateDrill",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"M bisher gruppiert\"",
+          "1467",
+          "0",
+          "20180820",
+          "True",
+          "ToDate_Grp",
+          "0",
+          "\"Monat\"",
+          "0",
+          "\"Tag\"",
+          "1",
+          "\"Monat\"",
+          "1469",
+          "13831",
+          "1507",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "1507",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "ContextLevel",
+          "DateDrill",
+          "TransientLevelList",
+          "For",
+          "EndList",
+          "13825",
+          "13823",
+          "13827",
+          "13829",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"M bisher gruppiert~Voriger M bisher\"",
+          "1507"
+        ]
+      ],
+      [
+        [
+          "13825",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "ContextLevel",
+          "DateDrill",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"Voriger M bisher\"",
+          "20180820",
+          "False",
+          "ToDate",
+          "0",
+          "\"Monat\"",
+          "0",
+          "\"Tag\"",
+          "1",
+          "\"Monat\"",
+          "1469",
+          "11673",
+          "11675",
+          "11677",
+          "11679",
+          "11681",
+          "11683",
+          "11685",
+          "11687",
+          "11689",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"M bisher gruppiert~M bisher\"",
+          "1507",
+          "0",
+          "\"M bisher\"",
+          "20180820",
+          "False",
+          "ToDate",
+          "0",
+          "\"Monat\"",
+          "0",
+          "\"Tag\"",
+          "0",
+          "1469",
+          "11737",
+          "11739",
+          "11741",
+          "11743",
+          "11745",
+          "11747",
+          "11749",
+          "11751",
+          "11753",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13823",
+          "Parent",
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "DateDrill",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "M",
+          "\u00c4NDERUNG",
+          "M",
+          "\" )\"",
+          "1507",
+          "0",
+          "\"M bisher \u00c4nderung\"",
+          "20180820",
+          "False",
+          "None",
+          "change",
+          "\"M bisher gruppiert~M bisher@13823\"",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13827",
+          "bisher",
+          "Voriger",
+          "M",
+          "Parent",
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Calc",
+          "\"M bisher gruppiert~Voriger M bisher@13825\"",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "M",
+          "PROZENTZUWACHS",
+          "M",
+          "\" )\"",
+          "1507",
+          "0",
+          "\"M bisher Zuwachs\"",
+          "20180820",
+          "False",
+          "None",
+          "growth",
+          "\"M bisher gruppiert~M bisher@13823\"",
+          "\"0%~2\"",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13829",
+          "bisher",
+          "Voriger",
+          "M",
+          "Parent",
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Calc",
+          "\"M bisher gruppiert~Voriger M bisher@13825\"",
+          "Format",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Q bisher\"",
+          "1467",
+          "0",
+          "20180820",
+          "True",
+          "ToDate",
+          "0",
+          "\"Quartal\"",
+          "0",
+          "\"Tag\"",
+          "0",
+          "1469",
+          "13835",
+          "1487",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "1509",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "DateDrill",
+          "TransientLevelList",
+          "For",
+          "EndList",
+          "13833",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Q bisher~Monat1\"",
+          "1509",
+          "0",
+          "\"Juli/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11737",
+          "11739",
+          "11741",
+          "11743",
+          "11745",
+          "11747",
+          "11749",
+          "11751",
+          "11753",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13833",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges Q bisher\"",
+          "1467",
+          "0",
+          "20180820",
+          "True",
+          "ToDate",
+          "0",
+          "\"Quartal\"",
+          "0",
+          "\"Tag\"",
+          "1",
+          "\"Quartal\"",
+          "1469",
+          "13839",
+          "1487",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "1511",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "ContextLevel",
+          "DateDrill",
+          "TransientLevelList",
+          "For",
+          "EndList",
+          "13837",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges Q bisher~Monat1\"",
+          "1511",
+          "0",
+          "\"Apr./2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11547",
+          "11549",
+          "11551",
+          "11553",
+          "11555",
+          "11557",
+          "11559",
+          "11561",
+          "11563",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13837",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Q bisher gruppiert\"",
+          "1467",
+          "0",
+          "20180820",
+          "True",
+          "ToDate_Grp",
+          "0",
+          "\"Quartal\"",
+          "0",
+          "\"Tag\"",
+          "1",
+          "\"Quartal\"",
+          "1469",
+          "13845",
+          "1487",
+          "For",
+          "EndList",
+          "13847",
+          "13841",
+          "13851",
+          "13853",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1513",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "ContextLevel",
+          "DateDrill",
+          "TransientLevelList",
+          "For",
+          "13855",
+          "1513",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Q bisher gruppiert~Voriges Q bisher\"",
+          "1513"
+        ]
+      ],
+      [
+        [
+          "13847",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "ContextLevel",
+          "DateDrill",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"Voriges Q bisher\"",
+          "20180820",
+          "False",
+          "ToDate",
+          "0",
+          "\"Quartal\"",
+          "0",
+          "\"Tag\"",
+          "1",
+          "\"Quartal\"",
+          "1469",
+          "13849",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Q bisher gruppiert~Voriges Q bisher~Monat1\"",
+          "13847"
+        ]
+      ],
+      [
+        [
+          "13849",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"Apr./2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11547",
+          "11549",
+          "11551",
+          "11553",
+          "11555",
+          "11557",
+          "11559",
+          "11561",
+          "11563",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Q bisher gruppiert~Q bisher\"",
+          "1513",
+          "0",
+          "\"Q bisher\"",
+          "20180820",
+          "False",
+          "ToDate",
+          "0",
+          "\"Quartal\"",
+          "0",
+          "\"Tag\"",
+          "0",
+          "1469",
+          "13843",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13841",
+          "Parent",
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "DateDrill",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Q bisher gruppiert~Q bisher~Monat1\"",
+          "13841"
+        ]
+      ],
+      [
+        [
+          "13843",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"Juli/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11737",
+          "11739",
+          "11741",
+          "11743",
+          "11745",
+          "11747",
+          "11749",
+          "11751",
+          "11753",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "Q",
+          "\u00c4NDERUNG",
+          "Q",
+          "\" )\"",
+          "1513",
+          "0",
+          "\"Q bisher \u00c4nderung\"",
+          "20180820",
+          "False",
+          "None",
+          "change",
+          "\"Q bisher gruppiert~Q bisher@13841\"",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13851",
+          "bisher",
+          "Voriges",
+          "Q",
+          "Parent",
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Calc",
+          "\"Q bisher gruppiert~Voriges Q bisher@13847\"",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "Q",
+          "PROZENTZUWACHS",
+          "Q",
+          "\" )\"",
+          "1513",
+          "0",
+          "\"Q bisher Zuwachs\"",
+          "20180820",
+          "False",
+          "None",
+          "growth",
+          "\"Q bisher gruppiert~Q bisher@13841\"",
+          "\"0%~2\"",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13853",
+          "bisher",
+          "Voriges",
+          "Q",
+          "Parent",
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Calc",
+          "\"Q bisher gruppiert~Voriges Q bisher@13847\"",
+          "Format",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher\"",
+          "1467",
+          "0",
+          "20180820",
+          "True",
+          "ToDate",
+          "0",
+          "\"Jahr\"",
+          "0",
+          "\"Tag\"",
+          "0",
+          "1469",
+          "13859",
+          "1481",
+          "For",
+          "EndList",
+          "13857",
+          "13869",
+          "13877",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1515",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "DateDrill",
+          "TransientLevelList",
+          "For",
+          "13863",
+          "1487",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher~Quartal1\"",
+          "1515",
+          "0",
+          "\"1. Q. 2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13861",
+          "13865",
+          "13867",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13857",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher~Quartal1~Monat1\"",
+          "13857",
+          "0",
+          "\"Jan./2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11359",
+          "11361",
+          "11363",
+          "11365",
+          "11367",
+          "11369",
+          "11371",
+          "11373",
+          "11375",
+          "11377",
+          "11379",
+          "11381",
+          "11383",
+          "11385",
+          "11387",
+          "11389",
+          "11391",
+          "11393",
+          "11395",
+          "11397",
+          "11399",
+          "11401",
+          "11403",
+          "11405",
+          "11407",
+          "11409",
+          "11411",
+          "11413",
+          "11415",
+          "11417",
+          "11419",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13861",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher~Quartal1~Monat2\"",
+          "13857",
+          "0",
+          "\"Feb./2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11423",
+          "11425",
+          "11427",
+          "11429",
+          "11431",
+          "11433",
+          "11435",
+          "11437",
+          "11439",
+          "11441",
+          "11443",
+          "11445",
+          "11447",
+          "11449",
+          "11451",
+          "11453",
+          "11455",
+          "11457",
+          "11459",
+          "11461",
+          "11463",
+          "11465",
+          "11467",
+          "11469",
+          "11471",
+          "11473",
+          "11475",
+          "11477",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13865",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher~Quartal1~Monat3\"",
+          "13857",
+          "0",
+          "\"M\u00e4rz/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11481",
+          "11483",
+          "11485",
+          "11487",
+          "11489",
+          "11491",
+          "11493",
+          "11495",
+          "11497",
+          "11499",
+          "11501",
+          "11503",
+          "11505",
+          "11507",
+          "11509",
+          "11511",
+          "11513",
+          "11515",
+          "11517",
+          "11519",
+          "11521",
+          "11523",
+          "11525",
+          "11527",
+          "11529",
+          "11531",
+          "11533",
+          "11535",
+          "11537",
+          "11539",
+          "11541",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13867",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher~Quartal2\"",
+          "1515",
+          "0",
+          "\"2. Q. 2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13871",
+          "13873",
+          "13875",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13869",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher~Quartal2~Monat1\"",
+          "13869",
+          "0",
+          "\"Apr./2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11547",
+          "11549",
+          "11551",
+          "11553",
+          "11555",
+          "11557",
+          "11559",
+          "11561",
+          "11563",
+          "11565",
+          "11567",
+          "11569",
+          "11571",
+          "11573",
+          "11575",
+          "11577",
+          "11579",
+          "11581",
+          "11583",
+          "11585",
+          "11587",
+          "11589",
+          "11591",
+          "11593",
+          "11595",
+          "11597",
+          "11599",
+          "11601",
+          "11603",
+          "11605",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13871",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher~Quartal2~Monat2\"",
+          "13869",
+          "0",
+          "\"Mai/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11609",
+          "11611",
+          "11613",
+          "11615",
+          "11617",
+          "11619",
+          "11621",
+          "11623",
+          "11625",
+          "11627",
+          "11629",
+          "11631",
+          "11633",
+          "11635",
+          "11637",
+          "11639",
+          "11641",
+          "11643",
+          "11645",
+          "11647",
+          "11649",
+          "11651",
+          "11653",
+          "11655",
+          "11657",
+          "11659",
+          "11661",
+          "11663",
+          "11665",
+          "11667",
+          "11669",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13873",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher~Quartal2~Monat3\"",
+          "13869",
+          "0",
+          "\"Juni/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11673",
+          "11675",
+          "11677",
+          "11679",
+          "11681",
+          "11683",
+          "11685",
+          "11687",
+          "11689",
+          "11691",
+          "11693",
+          "11695",
+          "11697",
+          "11699",
+          "11701",
+          "11703",
+          "11705",
+          "11707",
+          "11709",
+          "11711",
+          "11713",
+          "11715",
+          "11717",
+          "11719",
+          "11721",
+          "11723",
+          "11725",
+          "11727",
+          "11729",
+          "11731",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13875",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher~Quartal3\"",
+          "1515",
+          "0",
+          "\"3. Q. 2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13879",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13877",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher~Quartal3~Monat1\"",
+          "13877",
+          "0",
+          "\"Juli/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11737",
+          "11739",
+          "11741",
+          "11743",
+          "11745",
+          "11747",
+          "11749",
+          "11751",
+          "11753",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13879",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges J bisher\"",
+          "1467",
+          "0",
+          "20180820",
+          "True",
+          "ToDate",
+          "0",
+          "\"Jahr\"",
+          "0",
+          "\"Tag\"",
+          "1",
+          "\"Jahr\"",
+          "1469",
+          "13883",
+          "1481",
+          "For",
+          "EndList",
+          "13881",
+          "13893",
+          "13901",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1517",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "ContextLevel",
+          "DateDrill",
+          "TransientLevelList",
+          "For",
+          "13887",
+          "1487",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges J bisher~Quartal1\"",
+          "1517",
+          "0",
+          "\"1. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13885",
+          "13889",
+          "13891",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13881",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges J bisher~Quartal1~Monat1\"",
+          "13881",
+          "0",
+          "\"Jan./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10561",
+          "10563",
+          "10565",
+          "10567",
+          "10569",
+          "10571",
+          "10573",
+          "10575",
+          "10577",
+          "10579",
+          "10581",
+          "10583",
+          "10585",
+          "10587",
+          "10589",
+          "10591",
+          "10593",
+          "10595",
+          "10597",
+          "10599",
+          "10601",
+          "10603",
+          "10605",
+          "10607",
+          "10609",
+          "10611",
+          "10613",
+          "10615",
+          "10617",
+          "10619",
+          "10621",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13885",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges J bisher~Quartal1~Monat2\"",
+          "13881",
+          "0",
+          "\"Feb./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10625",
+          "10627",
+          "10629",
+          "10631",
+          "10633",
+          "10635",
+          "10637",
+          "10639",
+          "10641",
+          "10643",
+          "10645",
+          "10647",
+          "10649",
+          "10651",
+          "10653",
+          "10655",
+          "10657",
+          "10659",
+          "10661",
+          "10663",
+          "10665",
+          "10667",
+          "10669",
+          "10671",
+          "10673",
+          "10675",
+          "10677",
+          "10679",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13889",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges J bisher~Quartal1~Monat3\"",
+          "13881",
+          "0",
+          "\"M\u00e4rz/2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10683",
+          "10685",
+          "10687",
+          "10689",
+          "10691",
+          "10693",
+          "10695",
+          "10697",
+          "10699",
+          "10701",
+          "10703",
+          "10705",
+          "10707",
+          "10709",
+          "10711",
+          "10713",
+          "10715",
+          "10717",
+          "10719",
+          "10721",
+          "10723",
+          "10725",
+          "10727",
+          "10729",
+          "10731",
+          "10733",
+          "10735",
+          "10737",
+          "10739",
+          "10741",
+          "10743",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13891",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges J bisher~Quartal2\"",
+          "1517",
+          "0",
+          "\"2. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13895",
+          "13897",
+          "13899",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13893",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges J bisher~Quartal2~Monat1\"",
+          "13893",
+          "0",
+          "\"Apr./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10749",
+          "10751",
+          "10753",
+          "10755",
+          "10757",
+          "10759",
+          "10761",
+          "10763",
+          "10765",
+          "10767",
+          "10769",
+          "10771",
+          "10773",
+          "10775",
+          "10777",
+          "10779",
+          "10781",
+          "10783",
+          "10785",
+          "10787",
+          "10789",
+          "10791",
+          "10793",
+          "10795",
+          "10797",
+          "10799",
+          "10801",
+          "10803",
+          "10805",
+          "10807",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13895",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges J bisher~Quartal2~Monat2\"",
+          "13893",
+          "0",
+          "\"Mai/2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10811",
+          "10813",
+          "10815",
+          "10817",
+          "10819",
+          "10821",
+          "10823",
+          "10825",
+          "10827",
+          "10829",
+          "10831",
+          "10833",
+          "10835",
+          "10837",
+          "10839",
+          "10841",
+          "10843",
+          "10845",
+          "10847",
+          "10849",
+          "10851",
+          "10853",
+          "10855",
+          "10857",
+          "10859",
+          "10861",
+          "10863",
+          "10865",
+          "10867",
+          "10869",
+          "10871",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13897",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges J bisher~Quartal2~Monat3\"",
+          "13893",
+          "0",
+          "\"Juni/2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10875",
+          "10877",
+          "10879",
+          "10881",
+          "10883",
+          "10885",
+          "10887",
+          "10889",
+          "10891",
+          "10893",
+          "10895",
+          "10897",
+          "10899",
+          "10901",
+          "10903",
+          "10905",
+          "10907",
+          "10909",
+          "10911",
+          "10913",
+          "10915",
+          "10917",
+          "10919",
+          "10921",
+          "10923",
+          "10925",
+          "10927",
+          "10929",
+          "10931",
+          "10933",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13899",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges J bisher~Quartal3\"",
+          "1517",
+          "0",
+          "\"3. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13903",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13901",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"Voriges J bisher~Quartal3~Monat1\"",
+          "13901",
+          "0",
+          "\"Juli/2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10939",
+          "10941",
+          "10943",
+          "10945",
+          "10947",
+          "10949",
+          "10951",
+          "10953",
+          "10955",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13903",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert\"",
+          "1467",
+          "0",
+          "20180820",
+          "True",
+          "ToDate_Grp",
+          "0",
+          "\"Jahr\"",
+          "0",
+          "\"Tag\"",
+          "1",
+          "\"Jahr\"",
+          "1469",
+          "13909",
+          "1481",
+          "For",
+          "13957",
+          "1519",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "1519",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "ContextLevel",
+          "DateDrill",
+          "TransientLevelList",
+          "For",
+          "13913",
+          "1487",
+          "For",
+          "EndList",
+          "13931",
+          "13905",
+          "13953",
+          "13955",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~Voriges J bisher\"",
+          "1519"
+        ]
+      ],
+      [
+        [
+          "13931",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "ContextLevel",
+          "DateDrill",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"Voriges J bisher\"",
+          "20180820",
+          "False",
+          "ToDate",
+          "0",
+          "\"Jahr\"",
+          "0",
+          "\"Tag\"",
+          "1",
+          "\"Jahr\"",
+          "1469",
+          "13933",
+          "13941",
+          "13949",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~Voriges J bisher~Quartal1\"",
+          "13931"
+        ]
+      ],
+      [
+        [
+          "13933",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"1. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13935",
+          "13937",
+          "13939",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~Voriges J bisher~Quartal1~Monat1\"",
+          "13933",
+          "0",
+          "\"Jan./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10561",
+          "10563",
+          "10565",
+          "10567",
+          "10569",
+          "10571",
+          "10573",
+          "10575",
+          "10577",
+          "10579",
+          "10581",
+          "10583",
+          "10585",
+          "10587",
+          "10589",
+          "10591",
+          "10593",
+          "10595",
+          "10597",
+          "10599",
+          "10601",
+          "10603",
+          "10605",
+          "10607",
+          "10609",
+          "10611",
+          "10613",
+          "10615",
+          "10617",
+          "10619",
+          "10621",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13935",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~Voriges J bisher~Quartal1~Monat2\"",
+          "13933",
+          "0",
+          "\"Feb./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10625",
+          "10627",
+          "10629",
+          "10631",
+          "10633",
+          "10635",
+          "10637",
+          "10639",
+          "10641",
+          "10643",
+          "10645",
+          "10647",
+          "10649",
+          "10651",
+          "10653",
+          "10655",
+          "10657",
+          "10659",
+          "10661",
+          "10663",
+          "10665",
+          "10667",
+          "10669",
+          "10671",
+          "10673",
+          "10675",
+          "10677",
+          "10679",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13937",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~Voriges J bisher~Quartal1~Monat3\"",
+          "13933",
+          "0",
+          "\"M\u00e4rz/2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10683",
+          "10685",
+          "10687",
+          "10689",
+          "10691",
+          "10693",
+          "10695",
+          "10697",
+          "10699",
+          "10701",
+          "10703",
+          "10705",
+          "10707",
+          "10709",
+          "10711",
+          "10713",
+          "10715",
+          "10717",
+          "10719",
+          "10721",
+          "10723",
+          "10725",
+          "10727",
+          "10729",
+          "10731",
+          "10733",
+          "10735",
+          "10737",
+          "10739",
+          "10741",
+          "10743",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13939",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~Voriges J bisher~Quartal2\"",
+          "13931"
+        ]
+      ],
+      [
+        [
+          "13941",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"2. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13943",
+          "13945",
+          "13947",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~Voriges J bisher~Quartal2~Monat1\"",
+          "13941",
+          "0",
+          "\"Apr./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10749",
+          "10751",
+          "10753",
+          "10755",
+          "10757",
+          "10759",
+          "10761",
+          "10763",
+          "10765",
+          "10767",
+          "10769",
+          "10771",
+          "10773",
+          "10775",
+          "10777",
+          "10779",
+          "10781",
+          "10783",
+          "10785",
+          "10787",
+          "10789",
+          "10791",
+          "10793",
+          "10795",
+          "10797",
+          "10799",
+          "10801",
+          "10803",
+          "10805",
+          "10807",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13943",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~Voriges J bisher~Quartal2~Monat2\"",
+          "13941",
+          "0",
+          "\"Mai/2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10811",
+          "10813",
+          "10815",
+          "10817",
+          "10819",
+          "10821",
+          "10823",
+          "10825",
+          "10827",
+          "10829",
+          "10831",
+          "10833",
+          "10835",
+          "10837",
+          "10839",
+          "10841",
+          "10843",
+          "10845",
+          "10847",
+          "10849",
+          "10851",
+          "10853",
+          "10855",
+          "10857",
+          "10859",
+          "10861",
+          "10863",
+          "10865",
+          "10867",
+          "10869",
+          "10871",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13945",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~Voriges J bisher~Quartal2~Monat3\"",
+          "13941",
+          "0",
+          "\"Juni/2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10875",
+          "10877",
+          "10879",
+          "10881",
+          "10883",
+          "10885",
+          "10887",
+          "10889",
+          "10891",
+          "10893",
+          "10895",
+          "10897",
+          "10899",
+          "10901",
+          "10903",
+          "10905",
+          "10907",
+          "10909",
+          "10911",
+          "10913",
+          "10915",
+          "10917",
+          "10919",
+          "10921",
+          "10923",
+          "10925",
+          "10927",
+          "10929",
+          "10931",
+          "10933",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13947",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~Voriges J bisher~Quartal3\"",
+          "13931"
+        ]
+      ],
+      [
+        [
+          "13949",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"3. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13951",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~Voriges J bisher~Quartal3~Monat1\"",
+          "13949",
+          "0",
+          "\"Juli/2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10939",
+          "10941",
+          "10943",
+          "10945",
+          "10947",
+          "10949",
+          "10951",
+          "10953",
+          "10955",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13951",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~J bisher\"",
+          "1519",
+          "0",
+          "\"J bisher\"",
+          "20180820",
+          "False",
+          "ToDate",
+          "0",
+          "\"Jahr\"",
+          "0",
+          "\"Tag\"",
+          "0",
+          "1469",
+          "13907",
+          "13919",
+          "13927",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13905",
+          "Parent",
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "ToDateLevel",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "DateDrill",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~J bisher~Quartal1\"",
+          "13905"
+        ]
+      ],
+      [
+        [
+          "13907",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"1. Q. 2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13911",
+          "13915",
+          "13917",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~J bisher~Quartal1~Monat1\"",
+          "13907"
+        ]
+      ],
+      [
+        [
+          "13911",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"Jan./2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11359",
+          "11361",
+          "11363",
+          "11365",
+          "11367",
+          "11369",
+          "11371",
+          "11373",
+          "11375",
+          "11377",
+          "11379",
+          "11381",
+          "11383",
+          "11385",
+          "11387",
+          "11389",
+          "11391",
+          "11393",
+          "11395",
+          "11397",
+          "11399",
+          "11401",
+          "11403",
+          "11405",
+          "11407",
+          "11409",
+          "11411",
+          "11413",
+          "11415",
+          "11417",
+          "11419",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~J bisher~Quartal1~Monat2\"",
+          "13907"
+        ]
+      ],
+      [
+        [
+          "13915",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"Feb./2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11423",
+          "11425",
+          "11427",
+          "11429",
+          "11431",
+          "11433",
+          "11435",
+          "11437",
+          "11439",
+          "11441",
+          "11443",
+          "11445",
+          "11447",
+          "11449",
+          "11451",
+          "11453",
+          "11455",
+          "11457",
+          "11459",
+          "11461",
+          "11463",
+          "11465",
+          "11467",
+          "11469",
+          "11471",
+          "11473",
+          "11475",
+          "11477",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~J bisher~Quartal1~Monat3\"",
+          "13907"
+        ]
+      ],
+      [
+        [
+          "13917",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"M\u00e4rz/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11481",
+          "11483",
+          "11485",
+          "11487",
+          "11489",
+          "11491",
+          "11493",
+          "11495",
+          "11497",
+          "11499",
+          "11501",
+          "11503",
+          "11505",
+          "11507",
+          "11509",
+          "11511",
+          "11513",
+          "11515",
+          "11517",
+          "11519",
+          "11521",
+          "11523",
+          "11525",
+          "11527",
+          "11529",
+          "11531",
+          "11533",
+          "11535",
+          "11537",
+          "11539",
+          "11541",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~J bisher~Quartal2\"",
+          "13905"
+        ]
+      ],
+      [
+        [
+          "13919",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"2. Q. 2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13921",
+          "13923",
+          "13925",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~J bisher~Quartal2~Monat1\"",
+          "13919"
+        ]
+      ],
+      [
+        [
+          "13921",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"Apr./2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11547",
+          "11549",
+          "11551",
+          "11553",
+          "11555",
+          "11557",
+          "11559",
+          "11561",
+          "11563",
+          "11565",
+          "11567",
+          "11569",
+          "11571",
+          "11573",
+          "11575",
+          "11577",
+          "11579",
+          "11581",
+          "11583",
+          "11585",
+          "11587",
+          "11589",
+          "11591",
+          "11593",
+          "11595",
+          "11597",
+          "11599",
+          "11601",
+          "11603",
+          "11605",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~J bisher~Quartal2~Monat2\"",
+          "13919"
+        ]
+      ],
+      [
+        [
+          "13923",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"Mai/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11609",
+          "11611",
+          "11613",
+          "11615",
+          "11617",
+          "11619",
+          "11621",
+          "11623",
+          "11625",
+          "11627",
+          "11629",
+          "11631",
+          "11633",
+          "11635",
+          "11637",
+          "11639",
+          "11641",
+          "11643",
+          "11645",
+          "11647",
+          "11649",
+          "11651",
+          "11653",
+          "11655",
+          "11657",
+          "11659",
+          "11661",
+          "11663",
+          "11665",
+          "11667",
+          "11669",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~J bisher~Quartal2~Monat3\"",
+          "13919"
+        ]
+      ],
+      [
+        [
+          "13925",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"Juni/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11673",
+          "11675",
+          "11677",
+          "11679",
+          "11681",
+          "11683",
+          "11685",
+          "11687",
+          "11689",
+          "11691",
+          "11693",
+          "11695",
+          "11697",
+          "11699",
+          "11701",
+          "11703",
+          "11705",
+          "11707",
+          "11709",
+          "11711",
+          "11713",
+          "11715",
+          "11717",
+          "11719",
+          "11721",
+          "11723",
+          "11725",
+          "11727",
+          "11729",
+          "11731",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~J bisher~Quartal3\"",
+          "13905"
+        ]
+      ],
+      [
+        [
+          "13927",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"3. Q. 2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13929",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"J bisher gruppiert~J bisher~Quartal3~Monat1\"",
+          "13927"
+        ]
+      ],
+      [
+        [
+          "13929",
+          "Parent"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "0",
+          "\"Juli/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11737",
+          "11739",
+          "11741",
+          "11743",
+          "11745",
+          "11747",
+          "11749",
+          "11751",
+          "11753",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "J",
+          "\u00c4NDERUNG",
+          "J",
+          "\" )\"",
+          "1519",
+          "0",
+          "\"J bisher \u00c4nderung\"",
+          "20180820",
+          "False",
+          "None",
+          "change",
+          "\"J bisher gruppiert~J bisher@13905\"",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13953",
+          "bisher",
+          "Voriges",
+          "J",
+          "Parent",
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Calc",
+          "\"J bisher gruppiert~Voriges J bisher@13931\"",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "J",
+          "PROZENTZUWACHS",
+          "J",
+          "\" )\"",
+          "1519",
+          "0",
+          "\"J bisher Zuwachs\"",
+          "20180820",
+          "False",
+          "None",
+          "growth",
+          "\"J bisher gruppiert~J bisher@13905\"",
+          "\"0%~2\"",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13955",
+          "bisher",
+          "Voriges",
+          "J",
+          "Parent",
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Calc",
+          "\"J bisher gruppiert~Voriges J bisher@13931\"",
+          "Format",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"103941\"",
+          "1467",
+          "0",
+          "\"per Vormonat\"",
+          "20180820",
+          "True",
+          "ToDate",
+          "0",
+          "1",
+          "\"Monat\"",
+          "0",
+          "1469",
+          "13961",
+          "1475",
+          "For",
+          "EndList",
+          "13959",
+          "13973",
+          "False"
+        ]
+      ],
+      [
+        [
+          "9157",
+          "Parent",
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "DateDrill",
+          "TransientLevelList",
+          "For",
+          "13965",
+          "1481",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"103941~Jahr1\"",
+          "9157",
+          "0",
+          "\"2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13963",
+          "13967",
+          "13969",
+          "13971",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13959",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"103941~Jahr1~Quartal1\"",
+          "13959",
+          "0",
+          "\"1. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10559",
+          "10623",
+          "10681",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13963",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"103941~Jahr1~Quartal2\"",
+          "13959",
+          "0",
+          "\"2. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10747",
+          "10809",
+          "10873",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13967",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"103941~Jahr1~Quartal3\"",
+          "13959",
+          "0",
+          "\"3. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10937",
+          "11001",
+          "11065",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13969",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"103941~Jahr1~Quartal4\"",
+          "13959",
+          "0",
+          "\"4. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11129",
+          "11193",
+          "11255",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13971",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"103941~Jahr2\"",
+          "9157",
+          "0",
+          "\"2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13975",
+          "13977",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13973",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"103941~Jahr2~Quartal1\"",
+          "13973",
+          "0",
+          "\"1. Q. 2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11357",
+          "11421",
+          "11479",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13975",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"103941~Jahr2~Quartal2\"",
+          "13973",
+          "0",
+          "\"2. Q. 2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11545",
+          "11607",
+          "11671",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13977",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319\"",
+          "1467",
+          "0",
+          "\"\u00e4lter 14 Tage\"",
+          "20180820",
+          "True",
+          "ToDate",
+          "0",
+          "14",
+          "\"Tag\"",
+          "0",
+          "1469",
+          "13981",
+          "1475",
+          "For",
+          "13989",
+          "1487",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ],
+      [
+        [
+          "9159",
+          "Parent",
+          "Levels",
+          "Label",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "RunningPeriods",
+          "TargetOffset",
+          "TargetLevel",
+          "ContextOffset",
+          "DateDrill",
+          "TransientLevelList",
+          "For",
+          "13985",
+          "1481",
+          "For",
+          "EndList",
+          "13979",
+          "14019",
+          "False"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1\"",
+          "9159",
+          "0",
+          "\"2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13983",
+          "13995",
+          "14003",
+          "14011",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13979",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal1\"",
+          "13979",
+          "0",
+          "\"1. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13987",
+          "13991",
+          "13993",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13983",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal1~Monat1\"",
+          "13983",
+          "0",
+          "\"Jan./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10561",
+          "10563",
+          "10565",
+          "10567",
+          "10569",
+          "10571",
+          "10573",
+          "10575",
+          "10577",
+          "10579",
+          "10581",
+          "10583",
+          "10585",
+          "10587",
+          "10589",
+          "10591",
+          "10593",
+          "10595",
+          "10597",
+          "10599",
+          "10601",
+          "10603",
+          "10605",
+          "10607",
+          "10609",
+          "10611",
+          "10613",
+          "10615",
+          "10617",
+          "10619",
+          "10621",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13987",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal1~Monat2\"",
+          "13983",
+          "0",
+          "\"Feb./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10625",
+          "10627",
+          "10629",
+          "10631",
+          "10633",
+          "10635",
+          "10637",
+          "10639",
+          "10641",
+          "10643",
+          "10645",
+          "10647",
+          "10649",
+          "10651",
+          "10653",
+          "10655",
+          "10657",
+          "10659",
+          "10661",
+          "10663",
+          "10665",
+          "10667",
+          "10669",
+          "10671",
+          "10673",
+          "10675",
+          "10677",
+          "10679",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13991",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal1~Monat3\"",
+          "13983",
+          "0",
+          "\"M\u00e4rz/2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10683",
+          "10685",
+          "10687",
+          "10689",
+          "10691",
+          "10693",
+          "10695",
+          "10697",
+          "10699",
+          "10701",
+          "10703",
+          "10705",
+          "10707",
+          "10709",
+          "10711",
+          "10713",
+          "10715",
+          "10717",
+          "10719",
+          "10721",
+          "10723",
+          "10725",
+          "10727",
+          "10729",
+          "10731",
+          "10733",
+          "10735",
+          "10737",
+          "10739",
+          "10741",
+          "10743",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13993",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal2\"",
+          "13979",
+          "0",
+          "\"2. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "13997",
+          "13999",
+          "14001",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13995",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal2~Monat1\"",
+          "13995",
+          "0",
+          "\"Apr./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10749",
+          "10751",
+          "10753",
+          "10755",
+          "10757",
+          "10759",
+          "10761",
+          "10763",
+          "10765",
+          "10767",
+          "10769",
+          "10771",
+          "10773",
+          "10775",
+          "10777",
+          "10779",
+          "10781",
+          "10783",
+          "10785",
+          "10787",
+          "10789",
+          "10791",
+          "10793",
+          "10795",
+          "10797",
+          "10799",
+          "10801",
+          "10803",
+          "10805",
+          "10807",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13997",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal2~Monat2\"",
+          "13995",
+          "0",
+          "\"Mai/2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10811",
+          "10813",
+          "10815",
+          "10817",
+          "10819",
+          "10821",
+          "10823",
+          "10825",
+          "10827",
+          "10829",
+          "10831",
+          "10833",
+          "10835",
+          "10837",
+          "10839",
+          "10841",
+          "10843",
+          "10845",
+          "10847",
+          "10849",
+          "10851",
+          "10853",
+          "10855",
+          "10857",
+          "10859",
+          "10861",
+          "10863",
+          "10865",
+          "10867",
+          "10869",
+          "10871",
+          "False"
+        ]
+      ],
+      [
+        [
+          "13999",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal2~Monat3\"",
+          "13995",
+          "0",
+          "\"Juni/2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10875",
+          "10877",
+          "10879",
+          "10881",
+          "10883",
+          "10885",
+          "10887",
+          "10889",
+          "10891",
+          "10893",
+          "10895",
+          "10897",
+          "10899",
+          "10901",
+          "10903",
+          "10905",
+          "10907",
+          "10909",
+          "10911",
+          "10913",
+          "10915",
+          "10917",
+          "10919",
+          "10921",
+          "10923",
+          "10925",
+          "10927",
+          "10929",
+          "10931",
+          "10933",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14001",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal3\"",
+          "13979",
+          "0",
+          "\"3. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "14005",
+          "14007",
+          "14009",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14003",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal3~Monat1\"",
+          "14003",
+          "0",
+          "\"Juli/2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "10939",
+          "10941",
+          "10943",
+          "10945",
+          "10947",
+          "10949",
+          "10951",
+          "10953",
+          "10955",
+          "10957",
+          "10959",
+          "10961",
+          "10963",
+          "10965",
+          "10967",
+          "10969",
+          "10971",
+          "10973",
+          "10975",
+          "10977",
+          "10979",
+          "10981",
+          "10983",
+          "10985",
+          "10987",
+          "10989",
+          "10991",
+          "10993",
+          "10995",
+          "10997",
+          "10999",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14005",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal3~Monat2\"",
+          "14003",
+          "0",
+          "\"Aug./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11003",
+          "11005",
+          "11007",
+          "11009",
+          "11011",
+          "11013",
+          "11015",
+          "11017",
+          "11019",
+          "11021",
+          "11023",
+          "11025",
+          "11027",
+          "11029",
+          "11031",
+          "11033",
+          "11035",
+          "11037",
+          "11039",
+          "11041",
+          "11043",
+          "11045",
+          "11047",
+          "11049",
+          "11051",
+          "11053",
+          "11055",
+          "11057",
+          "11059",
+          "11061",
+          "11063",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14007",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal3~Monat3\"",
+          "14003",
+          "0",
+          "\"Sept./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11067",
+          "11069",
+          "11071",
+          "11073",
+          "11075",
+          "11077",
+          "11079",
+          "11081",
+          "11083",
+          "11085",
+          "11087",
+          "11089",
+          "11091",
+          "11093",
+          "11095",
+          "11097",
+          "11099",
+          "11101",
+          "11103",
+          "11105",
+          "11107",
+          "11109",
+          "11111",
+          "11113",
+          "11115",
+          "11117",
+          "11119",
+          "11121",
+          "11123",
+          "11125",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14009",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal4\"",
+          "13979",
+          "0",
+          "\"4. Q. 2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "14013",
+          "14015",
+          "14017",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14011",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal4~Monat1\"",
+          "14011",
+          "0",
+          "\"Okt./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11131",
+          "11133",
+          "11135",
+          "11137",
+          "11139",
+          "11141",
+          "11143",
+          "11145",
+          "11147",
+          "11149",
+          "11151",
+          "11153",
+          "11155",
+          "11157",
+          "11159",
+          "11161",
+          "11163",
+          "11165",
+          "11167",
+          "11169",
+          "11171",
+          "11173",
+          "11175",
+          "11177",
+          "11179",
+          "11181",
+          "11183",
+          "11185",
+          "11187",
+          "11189",
+          "11191",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14013",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal4~Monat2\"",
+          "14011",
+          "0",
+          "\"Nov./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11195",
+          "11197",
+          "11199",
+          "11201",
+          "11203",
+          "11205",
+          "11207",
+          "11209",
+          "11211",
+          "11213",
+          "11215",
+          "11217",
+          "11219",
+          "11221",
+          "11223",
+          "11225",
+          "11227",
+          "11229",
+          "11231",
+          "11233",
+          "11235",
+          "11237",
+          "11239",
+          "11241",
+          "11243",
+          "11245",
+          "11247",
+          "11249",
+          "11251",
+          "11253",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14015",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr1~Quartal4~Monat3\"",
+          "14011",
+          "0",
+          "\"Dez./2017\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11257",
+          "11259",
+          "11261",
+          "11263",
+          "11265",
+          "11267",
+          "11269",
+          "11271",
+          "11273",
+          "11275",
+          "11277",
+          "11279",
+          "11281",
+          "11283",
+          "11285",
+          "11287",
+          "11289",
+          "11291",
+          "11293",
+          "11295",
+          "11297",
+          "11299",
+          "11301",
+          "11303",
+          "11305",
+          "11307",
+          "11309",
+          "11311",
+          "11313",
+          "11315",
+          "11317",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14017",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr2\"",
+          "9159",
+          "0",
+          "\"2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "14021",
+          "14029",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14019",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr2~Quartal1\"",
+          "14019",
+          "0",
+          "\"1. Q. 2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "14023",
+          "14025",
+          "14027",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14021",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr2~Quartal1~Monat1\"",
+          "14021",
+          "0",
+          "\"Jan./2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11359",
+          "11361",
+          "11363",
+          "11365",
+          "11367",
+          "11369",
+          "11371",
+          "11373",
+          "11375",
+          "11377",
+          "11379",
+          "11381",
+          "11383",
+          "11385",
+          "11387",
+          "11389",
+          "11391",
+          "11393",
+          "11395",
+          "11397",
+          "11399",
+          "11401",
+          "11403",
+          "11405",
+          "11407",
+          "11409",
+          "11411",
+          "11413",
+          "11415",
+          "11417",
+          "11419",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14023",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr2~Quartal1~Monat2\"",
+          "14021",
+          "0",
+          "\"Feb./2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11423",
+          "11425",
+          "11427",
+          "11429",
+          "11431",
+          "11433",
+          "11435",
+          "11437",
+          "11439",
+          "11441",
+          "11443",
+          "11445",
+          "11447",
+          "11449",
+          "11451",
+          "11453",
+          "11455",
+          "11457",
+          "11459",
+          "11461",
+          "11463",
+          "11465",
+          "11467",
+          "11469",
+          "11471",
+          "11473",
+          "11475",
+          "11477",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14025",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr2~Quartal1~Monat3\"",
+          "14021",
+          "0",
+          "\"M\u00e4rz/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11481",
+          "11483",
+          "11485",
+          "11487",
+          "11489",
+          "11491",
+          "11493",
+          "11495",
+          "11497",
+          "11499",
+          "11501",
+          "11503",
+          "11505",
+          "11507",
+          "11509",
+          "11511",
+          "11513",
+          "11515",
+          "11517",
+          "11519",
+          "11521",
+          "11523",
+          "11525",
+          "11527",
+          "11529",
+          "11531",
+          "11533",
+          "11535",
+          "11537",
+          "11539",
+          "11541",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14027",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr2~Quartal2\"",
+          "14019",
+          "0",
+          "\"2. Q. 2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "14031",
+          "14033",
+          "14035",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14029",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr2~Quartal2~Monat1\"",
+          "14029",
+          "0",
+          "\"Apr./2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11547",
+          "11549",
+          "11551",
+          "11553",
+          "11555",
+          "11557",
+          "11559",
+          "11561",
+          "11563",
+          "11565",
+          "11567",
+          "11569",
+          "11571",
+          "11573",
+          "11575",
+          "11577",
+          "11579",
+          "11581",
+          "11583",
+          "11585",
+          "11587",
+          "11589",
+          "11591",
+          "11593",
+          "11595",
+          "11597",
+          "11599",
+          "11601",
+          "11603",
+          "11605",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14031",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr2~Quartal2~Monat2\"",
+          "14029",
+          "0",
+          "\"Mai/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11609",
+          "11611",
+          "11613",
+          "11615",
+          "11617",
+          "11619",
+          "11621",
+          "11623",
+          "11625",
+          "11627",
+          "11629",
+          "11631",
+          "11633",
+          "11635",
+          "11637",
+          "11639",
+          "11641",
+          "11643",
+          "11645",
+          "11647",
+          "11649",
+          "11651",
+          "11653",
+          "11655",
+          "11657",
+          "11659",
+          "11661",
+          "11663",
+          "11665",
+          "11667",
+          "11669",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14033",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "SpecialCategory",
+    [
+      [
+        [
+          "SpecialCategory",
+          "\"113319~Jahr2~Quartal2~Monat3\"",
+          "14029",
+          "0",
+          "\"Juni/2018\"",
+          "Generate",
+          "20180820",
+          "True",
+          "None",
+          "11673",
+          "11675",
+          "11677",
+          "11679",
+          "11681",
+          "11683",
+          "11685",
+          "11687",
+          "11689",
+          "11691",
+          "11693",
+          "11695",
+          "11697",
+          "11699",
+          "11701",
+          "11703",
+          "11705",
+          "11707",
+          "11709",
+          "11711",
+          "11713",
+          "11715",
+          "11717",
+          "11719",
+          "11721",
+          "False"
+        ]
+      ],
+      [
+        [
+          "14035",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "Rollup",
+          "TimeAggregate",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Primary",
+          "Sign"
+        ]
+      ]
+    ]
+  ],
+  [
+    "MapDrills",
+    [
+      [
+        [
+          "MapDrills",
+          "1469"
+        ]
+      ],
+      [
+        [
+          "MapDrill"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Alle Kategorien\"",
+          "All",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1471",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Dimension auslassen\"",
+          "Omit",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1473",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Dimension",
+    [
+      [
+        [
+          "Dimension",
+          "\"AH-Gruppe\"",
+          "Regular",
+          "False",
+          "False",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1521",
+          "DimType",
+          "NewCatsLock",
+          "ExcludeAutoPartitioning",
+          "DimDefaultCategory"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Categories",
+    [
+      [
+        [
+          "Categories"
+        ]
+      ],
+      [
+        []
+      ]
+    ]
+  ],
+  [
+    "Root",
+    [
+      [
+        [
+          "Root",
+          "\"Hauptbetrieb\"",
+          "Generate",
+          "20180820",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1523",
+          "Inclusion",
+          "Lastuse",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Drill",
+    [
+      [
+        [
+          "Drill",
+          "\"Nach Hauptbetrieb\"",
+          "Suppress",
+          "False",
+          "True",
+          "True",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1525",
+          "Inclusion",
+          "Filtered",
+          "Suppressed",
+          "PrimaryDrill",
+          "HideValue"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Hauptbetrieb\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "1533",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "Associations",
+          "\"Hauptbetrieb_Name\"",
+          "Type_Query",
+          "Role_Label",
+          "\"Hauptbetrieb_Name\"",
+          "15069",
+          "AssociationContext",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "SortOrder",
+          "SortAs"
+        ]
+      ],
+      [
+        [
+          "1531",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Hauptbetrieb_ID\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Hauptbetrieb_ID\"",
+          "15065",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "Associations",
+          "\"Hauptbetrieb_ID\"",
+          "1525",
+          "Type_Query",
+          "Role_OrderBy",
+          "\"Hauptbetrieb_ID\"",
+          "Text",
+          "Ascending"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Standort\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "1537",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "Associations",
+          "\"Standort_Name\"",
+          "Type_Query",
+          "Role_Label",
+          "\"Standort_Name\"",
+          "15071",
+          "AssociationContext",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "SortOrder",
+          "SortAs"
+        ]
+      ],
+      [
+        [
+          "1535",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Standort_ID\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Standort_ID\"",
+          "15067",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "Associations",
+          "\"Standort_ID\"",
+          "1525",
+          "Type_Query",
+          "Role_OrderBy",
+          "\"Standort_ID\"",
+          "Text",
+          "Ascending"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Serviceberater\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "1541",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ],
+      [
+        [
+          "1539",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Serviceberater\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Serviceberater\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Order Number\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "1549",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "Associations",
+          "\"Tage offen\"",
+          "1525",
+          "Type_Query",
+          "Role_OrderBy",
+          "\"Tage offen\"",
+          "Int16",
+          "Descending"
+        ]
+      ],
+      [
+        [
+          "1547",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Order Number\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Order Number\"",
+          "10329",
+          "AssociationContext",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "SortOrder",
+          "SortAs"
+        ]
+      ]
+    ]
+  ],
+  [
+    "MapDrills",
+    [
+      [
+        [
+          "MapDrills",
+          "1525"
+        ]
+      ],
+      [
+        [
+          "MapDrill"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Alle Kategorien\"",
+          "All",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1527",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Dimension auslassen\"",
+          "Omit",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1529",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Dimension",
+    [
+      [
+        [
+          "Dimension",
+          "\"Fabrikat\"",
+          "Regular",
+          "False",
+          "False",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1551",
+          "DimType",
+          "NewCatsLock",
+          "ExcludeAutoPartitioning",
+          "DimDefaultCategory"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Categories",
+    [
+      [
+        [
+          "Categories"
+        ]
+      ],
+      [
+        []
+      ]
+    ]
+  ],
+  [
+    "Root",
+    [
+      [
+        [
+          "Root",
+          "\"Fabrikat\"",
+          "Generate",
+          "20180820",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1553",
+          "Inclusion",
+          "Lastuse",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Drill",
+    [
+      [
+        [
+          "Drill",
+          "\"Nach Fabrikat\"",
+          "Suppress",
+          "False",
+          "True",
+          "True",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1555",
+          "Inclusion",
+          "Filtered",
+          "Suppressed",
+          "PrimaryDrill",
+          "HideValue"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Fabrikat\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "1563",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ],
+      [
+        [
+          "1561",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Fabrikat\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Fabrikat\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Model\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "1567",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ],
+      [
+        [
+          "1565",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Model\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Model\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Fahrzeug\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "1571",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ],
+      [
+        [
+          "1569",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Fahrzeug\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Fahrzeug\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"Ford\"",
+          "1555",
+          "1561",
+          "20200615",
+          "\"Ford\"",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "15729",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "SourceValue",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"KIA\"",
+          "1555",
+          "1561",
+          "20200615",
+          "\"KIA\"",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "15731",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "SourceValue",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"Mitsubishi\"",
+          "1555",
+          "1561",
+          "20200615",
+          "\"Mitsubishi\"",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "15733",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "SourceValue",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "MapDrills",
+    [
+      [
+        [
+          "MapDrills",
+          "1555"
+        ]
+      ],
+      [
+        [
+          "MapDrill"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Alle Kategorien\"",
+          "All",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1557",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Dimension auslassen\"",
+          "Omit",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1559",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Dimension",
+    [
+      [
+        [
+          "Dimension",
+          "\"Kostenstelle\"",
+          "Regular",
+          "False",
+          "False",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1575",
+          "DimType",
+          "NewCatsLock",
+          "ExcludeAutoPartitioning",
+          "DimDefaultCategory"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Categories",
+    [
+      [
+        [
+          "Categories"
+        ]
+      ],
+      [
+        []
+      ]
+    ]
+  ],
+  [
+    "Root",
+    [
+      [
+        [
+          "Root",
+          "\"Kostenstelle\"",
+          "Generate",
+          "20180820",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1577",
+          "Inclusion",
+          "Lastuse",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Drill",
+    [
+      [
+        [
+          "Drill",
+          "\"Nach Kostenstelle\"",
+          "Suppress",
+          "False",
+          "True",
+          "True",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1579",
+          "Inclusion",
+          "Filtered",
+          "Suppressed",
+          "PrimaryDrill",
+          "HideValue"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Kostenstelle\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "1587",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ],
+      [
+        [
+          "1585",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Kostenstelle\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Kostenstelle\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"3\"",
+          "1579",
+          "1585",
+          "\"3 - Mechanik\"",
+          "20200615",
+          "\"3\"",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "2491",
+          "Parent",
+          "Levels",
+          "Label",
+          "Lastuse",
+          "SourceValue",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"6\"",
+          "1579",
+          "1585",
+          "\"6 - Teile\"",
+          "Generate",
+          "20200615",
+          "\"6\"",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "2579",
+          "Parent",
+          "Levels",
+          "Label",
+          "Inclusion",
+          "Lastuse",
+          "SourceValue",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "MapDrills",
+    [
+      [
+        [
+          "MapDrills",
+          "1579"
+        ]
+      ],
+      [
+        [
+          "MapDrill"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Alle Kategorien\"",
+          "All",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1581",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Dimension auslassen\"",
+          "Omit",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1583",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Dimension",
+    [
+      [
+        [
+          "Dimension",
+          "\"Marke\"",
+          "Regular",
+          "False",
+          "False",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1591",
+          "DimType",
+          "NewCatsLock",
+          "ExcludeAutoPartitioning",
+          "DimDefaultCategory"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Categories",
+    [
+      [
+        [
+          "Categories"
+        ]
+      ],
+      [
+        []
+      ]
+    ]
+  ],
+  [
+    "Root",
+    [
+      [
+        [
+          "Root",
+          "\"Marke\"",
+          "Generate",
+          "20180820",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1593",
+          "Inclusion",
+          "Lastuse",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Drill",
+    [
+      [
+        [
+          "Drill",
+          "\"Nach Marke\"",
+          "Suppress",
+          "False",
+          "True",
+          "True",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1595",
+          "Inclusion",
+          "Filtered",
+          "Suppressed",
+          "PrimaryDrill",
+          "HideValue"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Marke\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "1603",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ],
+      [
+        [
+          "1601",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Fabrikat\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Fabrikat\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"Ford\"",
+          "1595",
+          "1601",
+          "20200615",
+          "\"Ford\"",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "15735",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "SourceValue",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"KIA\"",
+          "1595",
+          "1601",
+          "20200615",
+          "\"KIA\"",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "15737",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "SourceValue",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Category",
+    [
+      [
+        [
+          "Category",
+          "\"Mitsubishi\"",
+          "1595",
+          "1601",
+          "20200615",
+          "\"Mitsubishi\"",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "15739",
+          "Parent",
+          "Levels",
+          "Lastuse",
+          "SourceValue",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "MapDrills",
+    [
+      [
+        [
+          "MapDrills",
+          "1595"
+        ]
+      ],
+      [
+        [
+          "MapDrill"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Alle Kategorien\"",
+          "All",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1597",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Dimension auslassen\"",
+          "Omit",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1599",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Dimension",
+    [
+      [
+        [
+          "Dimension",
+          "\"Kunde\"",
+          "Regular",
+          "False",
+          "False",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1651",
+          "DimType",
+          "NewCatsLock",
+          "ExcludeAutoPartitioning",
+          "DimDefaultCategory"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Categories",
+    [
+      [
+        [
+          "Categories"
+        ]
+      ],
+      [
+        []
+      ]
+    ]
+  ],
+  [
+    "Root",
+    [
+      [
+        [
+          "Root",
+          "\"Kunde\"",
+          "Generate",
+          "20180820",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1653",
+          "Inclusion",
+          "Lastuse",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Drill",
+    [
+      [
+        [
+          "Drill",
+          "\"Nach Kunde\"",
+          "Suppress",
+          "False",
+          "True",
+          "True",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1655",
+          "Inclusion",
+          "Filtered",
+          "Suppressed",
+          "PrimaryDrill",
+          "HideValue"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Kunde\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "1663",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ],
+      [
+        [
+          "1661",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Kunde\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Kunde\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "MapDrills",
+    [
+      [
+        [
+          "MapDrills",
+          "1655"
+        ]
+      ],
+      [
+        [
+          "MapDrill"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Alle Kategorien\"",
+          "All",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1657",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Dimension auslassen\"",
+          "Omit",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1659",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Dimension",
+    [
+      [
+        [
+          "Dimension",
+          "\"Auftrag Detail\"",
+          "Regular",
+          "False",
+          "False",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1665",
+          "DimType",
+          "NewCatsLock",
+          "ExcludeAutoPartitioning",
+          "DimDefaultCategory"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Categories",
+    [
+      [
+        [
+          "Categories"
+        ]
+      ],
+      [
+        []
+      ]
+    ]
+  ],
+  [
+    "Root",
+    [
+      [
+        [
+          "Root",
+          "\"verk. AW\"",
+          "Generate",
+          "20180820",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1667",
+          "Inclusion",
+          "Lastuse",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Drill",
+    [
+      [
+        [
+          "Drill",
+          "\"Nach verk. AW\"",
+          "Suppress",
+          "False",
+          "True",
+          "True",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1669",
+          "Inclusion",
+          "Filtered",
+          "Suppressed",
+          "PrimaryDrill",
+          "HideValue"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Serviceberater\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "10235",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ],
+      [
+        [
+          "10233",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Serviceberater\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Serviceberater\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Order Number\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "10229",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "Associations",
+          "\"Tage offen\"",
+          "1669",
+          "Type_Query",
+          "Role_OrderBy",
+          "\"Tage offen\"",
+          "Int16",
+          "Descending"
+        ]
+      ],
+      [
+        [
+          "10227",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Order Number\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Order Number\"",
+          "10231",
+          "AssociationContext",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "SortOrder",
+          "SortAs"
+        ]
+      ]
+    ]
+  ],
+  [
+    "MapDrills",
+    [
+      [
+        [
+          "MapDrills",
+          "1669"
+        ]
+      ],
+      [
+        [
+          "MapDrill"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Alle Kategorien\"",
+          "All",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1671",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Dimension auslassen\"",
+          "Omit",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1673",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Dimension",
+    [
+      [
+        [
+          "Dimension",
+          "\"Serviceberater\"",
+          "Regular",
+          "False",
+          "False",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1693",
+          "DimType",
+          "NewCatsLock",
+          "ExcludeAutoPartitioning",
+          "DimDefaultCategory"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Categories",
+    [
+      [
+        [
+          "Categories"
+        ]
+      ],
+      [
+        []
+      ]
+    ]
+  ],
+  [
+    "Root",
+    [
+      [
+        [
+          "Root",
+          "\"Serviceberater\"",
+          "Generate",
+          "20180820",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1695",
+          "Inclusion",
+          "Lastuse",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Drill",
+    [
+      [
+        [
+          "Drill",
+          "\"Nach Serviceberater\"",
+          "Suppress",
+          "False",
+          "True",
+          "True",
+          "False"
+        ]
+      ],
+      [
+        [
+          "1697",
+          "Inclusion",
+          "Filtered",
+          "Suppressed",
+          "PrimaryDrill",
+          "HideValue"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Serviceberater\"",
+          "\"( Leerstelle )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "1705",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ],
+      [
+        [
+          "1703",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Serviceberater\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Serviceberater\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Order Number\"",
+          "\"( Leer )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "14779",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "Associations",
+          "\"Tage offen\"",
+          "1697",
+          "Type_Query",
+          "Role_OrderBy",
+          "\"Tage offen\"",
+          "Int16",
+          "Descending"
+        ]
+      ],
+      [
+        [
+          "14777",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Order Number\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Order Number\"",
+          "14781",
+          "AssociationContext",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "SortOrder",
+          "SortAs"
+        ]
+      ]
+    ]
+  ],
+  [
+    "MapDrills",
+    [
+      [
+        [
+          "MapDrills",
+          "1697"
+        ]
+      ],
+      [
+        [
+          "MapDrill"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Alle Kategorien\"",
+          "All",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1699",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Dimension auslassen\"",
+          "Omit",
+          "0"
+        ]
+      ],
+      [
+        [
+          "1701",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Dimension",
+    [
+      [
+        [
+          "Dimension",
+          "\"Auftragsart\"",
+          "Regular",
+          "False",
+          "False",
+          "0"
+        ]
+      ],
+      [
+        [
+          "15741",
+          "DimType",
+          "NewCatsLock",
+          "ExcludeAutoPartitioning",
+          "DimDefaultCategory"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Categories",
+    [
+      [
+        [
+          "Categories"
+        ]
+      ],
+      [
+        []
+      ]
+    ]
+  ],
+  [
+    "Root",
+    [
+      [
+        [
+          "Root",
+          "\"Auftragsart\"",
+          "Generate",
+          "20200615",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False",
+          "False"
+        ]
+      ],
+      [
+        [
+          "15743",
+          "Inclusion",
+          "Lastuse",
+          "Filtered",
+          "Suppressed",
+          "Sign",
+          "HideValue",
+          "IsKeyOrphanage",
+          "IsTruncated",
+          "Blanks"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Drill",
+    [
+      [
+        [
+          "Drill",
+          "\"Nach Auftragsart\"",
+          "Suppress",
+          "False",
+          "True",
+          "True",
+          "False"
+        ]
+      ],
+      [
+        [
+          "15745",
+          "Inclusion",
+          "Filtered",
+          "Suppressed",
+          "PrimaryDrill",
+          "HideValue"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Levels",
+    [
+      [
+        [
+          "Levels",
+          "\"Auftragsart\"",
+          "\"( Leer )\"",
+          "None",
+          "None",
+          "False",
+          "False",
+          "False",
+          "False",
+          "0",
+          "False",
+          "False",
+          "15753",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "Associations",
+          "\"Auftragsart\"",
+          "15745",
+          "Type_Query",
+          "Role_OrderBy",
+          "\"Auftragsart\"",
+          "Text",
+          "Ascending"
+        ]
+      ],
+      [
+        [
+          "15751",
+          "Blanks",
+          "DateFunction",
+          "Generate",
+          "RefreshLabel",
+          "RefreshDescription",
+          "RefreshShortName",
+          "NewCatsLock",
+          "Timerank",
+          "UniqueCategories",
+          "UniqueMove",
+          "Associations",
+          "\"Auftragsart\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Auftragsart\"",
+          "15755",
+          "AssociationContext",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced",
+          "SortOrder",
+          "SortAs"
+        ]
+      ]
+    ]
+  ],
+  [
+    "MapDrills",
+    [
+      [
+        [
+          "MapDrills",
+          "15745"
+        ]
+      ],
+      [
+        [
+          "MapDrill"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Alle Kategorien\"",
+          "All",
+          "0"
+        ]
+      ],
+      [
+        [
+          "15747",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "ViewName",
+    [
+      [
+        [
+          "ViewName",
+          "\"Dimension auslassen\"",
+          "Omit",
+          "0"
+        ]
+      ],
+      [
+        [
+          "15749",
+          "Type",
+          "ViewCustomView"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Measure",
+    [
+      [
+        [
+          "Measure",
+          "\"Tage offen\"",
+          "Zero",
+          "False",
+          "Float64",
+          "0",
+          "5",
+          "False",
+          "False",
+          "False",
+          "\"#,##0~0\"",
+          "False",
+          "Associations",
+          "\"Tage offen\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Tage offen\""
+        ]
+      ],
+      [
+        [
+          "9829",
+          "Missing",
+          "IgnoreMissingValue",
+          "Storage",
+          "OutPutScale",
+          "Decimals",
+          "ReverseSign",
+          "IsCurrency",
+          "IsFolder",
+          "Format",
+          "DrillThrough",
+          "EndList",
+          "9831",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Measure",
+    [
+      [
+        [
+          "Measure",
+          "\"DG\"",
+          "Zero",
+          "False",
+          "Float64",
+          "0",
+          "8",
+          "False",
+          "False",
+          "False",
+          "\"#,##0~0\"",
+          "False",
+          "Associations",
+          "\"DG\"",
+          "Type_Query",
+          "Role_Source",
+          "\"DG\""
+        ]
+      ],
+      [
+        [
+          "10053",
+          "Missing",
+          "IgnoreMissingValue",
+          "Storage",
+          "OutPutScale",
+          "Decimals",
+          "ReverseSign",
+          "IsCurrency",
+          "IsFolder",
+          "Format",
+          "DrillThrough",
+          "EndList",
+          "10055",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Measure",
+    [
+      [
+        [
+          "Measure",
+          "\"Lohn\"",
+          "Zero",
+          "False",
+          "Float64",
+          "8",
+          "3",
+          "False",
+          "False",
+          "False",
+          "\"#,##0~0\"",
+          "False",
+          "Associations",
+          "\"Lohn\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Lohn\""
+        ]
+      ],
+      [
+        [
+          "10309",
+          "Missing",
+          "IgnoreMissingValue",
+          "Storage",
+          "OutPutScale",
+          "Decimals",
+          "ReverseSign",
+          "IsCurrency",
+          "IsFolder",
+          "Format",
+          "DrillThrough",
+          "EndList",
+          "10311",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Measure",
+    [
+      [
+        [
+          "Measure",
+          "\"Teile\"",
+          "Zero",
+          "False",
+          "Float64",
+          "0",
+          "3",
+          "False",
+          "False",
+          "False",
+          "\"#,##0~0\"",
+          "False",
+          "Associations",
+          "\"Teile\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Teile\""
+        ]
+      ],
+      [
+        [
+          "10313",
+          "Missing",
+          "IgnoreMissingValue",
+          "Storage",
+          "OutPutScale",
+          "Decimals",
+          "ReverseSign",
+          "IsCurrency",
+          "IsFolder",
+          "Format",
+          "DrillThrough",
+          "EndList",
+          "10315",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Measure",
+    [
+      [
+        [
+          "Measure",
+          "\"Sonst.\"",
+          "Zero",
+          "False",
+          "Float64",
+          "8",
+          "3",
+          "False",
+          "False",
+          "False",
+          "\"#,##0~0\"",
+          "False",
+          "Associations",
+          "\"Sonst.\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Sonst.\""
+        ]
+      ],
+      [
+        [
+          "10317",
+          "Missing",
+          "IgnoreMissingValue",
+          "Storage",
+          "OutPutScale",
+          "Decimals",
+          "ReverseSign",
+          "IsCurrency",
+          "IsFolder",
+          "Format",
+          "DrillThrough",
+          "EndList",
+          "10319",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Measure",
+    [
+      [
+        [
+          "Measure",
+          "\"Tage seit letzt. Stemp.\"",
+          "False",
+          "Float64",
+          "0",
+          "0",
+          "False",
+          "False",
+          "False",
+          "\"#,##0~0\"",
+          "False",
+          "Associations",
+          "\"Tage seit letzt. Stemp.\"",
+          "Type_Query",
+          "Role_Source",
+          "\"Tage seit letzt. Stemp.\""
+        ]
+      ],
+      [
+        [
+          "15761",
+          "IgnoreMissingValue",
+          "Storage",
+          "OutPutScale",
+          "Decimals",
+          "ReverseSign",
+          "IsCurrency",
+          "IsFolder",
+          "Format",
+          "DrillThrough",
+          "EndList",
+          "15763",
+          "AssociationType",
+          "AssociationRole",
+          "AssociationReferenced"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Signon",
+    [
+      [
+        [
+          "Signon",
+          "\"GC_CARLO\"",
+          "\"gaps\"",
+          "False",
+          "\"*1*0154377D72534C4B5F384F556F5B7970286A59373F70255D63D4EDE5BC9A7FD45994\"",
+          "AutoLogon",
+          "SignonType"
+        ]
+      ],
+      [
+        [
+          "15673",
+          "UserId",
+          "PromptForPassword",
+          "EncryptedPW",
+          "\"AC2C0B8CE18548\"",
+          "False",
+          "\"DataSource\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "Signon",
+    [
+      [
+        [
+          "Signon",
+          "\"Global1\"",
+          "\"Global1\"",
+          "False",
+          "\"*1*013B396846296D72232C62274C312B48432B464B52705B2147BC0680EA66C628A0FE\"",
+          "AutoLogon",
+          "SignOnNamespace",
+          "SignonType"
+        ]
+      ],
+      [
+        [
+          "15917",
+          "UserId",
+          "PromptForPassword",
+          "EncryptedPW",
+          "\"A70FDB4177ACBA\"",
+          "True",
+          "\"CognosEx\"",
+          "\"Cognos\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "Signon",
+    [
+      [
+        [
+          "Signon",
+          "\"Test\"",
+          "\"Global1\"",
+          "PromptForPassword",
+          "EncryptedPW",
+          "\"678035C7648969\"",
+          "False",
+          "\"DataSource\""
+        ]
+      ],
+      [
+        [
+          "15947",
+          "UserId",
+          "FullDb",
+          "False",
+          "\"*1*014D364B683C32432B543A6D2E6C475E207A526D2C3B325F74382B1B5F1C5B4C31AB\"",
+          "AutoLogon",
+          "SignonType"
+        ]
+      ]
+    ]
+  ],
+  [
+    "Cube",
+    [
+      [
+        [
+          "Cube",
+          "\"S_Offene_Auftraege\"",
+          "\"c:\\globalcube\\system\\audev_carit\\cube_out\\s_offene_auftraege.mdc\"",
+          "Status",
+          "CubeCreation",
+          "Optimize",
+          "ConsolidatedRecords",
+          "PartitionSize",
+          "PassesNumber",
+          "Compress",
+          "IncrementalUpdate",
+          "ServerCube",
+          "CubeStamp",
+          "CubeCycle",
+          "BlockParentTotals",
+          "Caching",
+          "UseAlternateFileName",
+          "DeployType",
+          "DeployLocations",
+          "EndList",
+          "True",
+          "2",
+          "False",
+          "DataSourceSignon",
+          "PublishEnable",
+          "PublishStatus",
+          "PublishAllowNullSuppression",
+          "PublishAllowMultiEdgeSuppression",
+          "PublishAllowAccessToSuppressionOptions"
+        ]
+      ],
+      [
+        [
+          "1707",
+          "MdcFile",
+          "EncryptedPW",
+          "OK",
+          "On",
+          "Default",
+          "10000000",
+          "500000",
+          "5",
+          "False",
+          "False",
+          "False",
+          "1534758561",
+          "8",
+          "False",
+          "False",
+          "False",
+          "DeployToAvailableLocationsAutomatic",
+          "\"c:\\globalcube\\cubes\"",
+          "DeployCleanupEnabled",
+          "DeployCleanupNumberOfCubes",
+          "DrillThrough",
+          "EndList",
+          "False",
+          "True",
+          "None",
+          "True",
+          "True",
+          "True"
+        ]
+      ]
+    ]
+  ],
+  [
+    "DimensionView",
+    [
+      [
+        [
+          "DimensionView",
+          "\"All Categories\"",
+          "1521"
+        ]
+      ],
+      [
+        [
+          "1463",
+          "DimensionView",
+          "\"All Categories\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "DimensionView",
+    [
+      [
+        [
+          "DimensionView",
+          "\"All Categories\"",
+          "1575"
+        ]
+      ],
+      [
+        [
+          "1551",
+          "DimensionView",
+          "\"All Categories\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "DimensionView",
+    [
+      [
+        [
+          "DimensionView",
+          "\"All Categories\"",
+          "1651"
+        ]
+      ],
+      [
+        [
+          "1591",
+          "DimensionView",
+          "\"All Categories\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "DimensionView",
+    [
+      [
+        [
+          "DimensionView",
+          "\"All Categories\"",
+          "1693"
+        ]
+      ],
+      [
+        [
+          "1665",
+          "DimensionView",
+          "\"All Categories\""
+        ]
+      ]
+    ]
+  ],
+  [
+    "DimensionView",
+    [
+      [
+        [
+          "DimensionView",
+          "\"All Categories\"",
+          "9829",
+          "MeasureInclude",
+          "Yes",
+          "10309",
+          "MeasureInclude",
+          "Yes",
+          "10317",
+          "MeasureInclude",
+          "Yes",
+          "Measure",
+          "Type",
+          "AllocationAdd",
+          "10053",
+          "Default",
+          "Measure",
+          "Type",
+          "AllocationAdd",
+          "10313",
+          "Default",
+          "Measure",
+          "Type",
+          "AllocationAdd",
+          "15761",
+          "Default"
+        ]
+      ],
+      [
+        [
+          "15741",
+          "MeasureInclude",
+          "Yes",
+          "10053",
+          "MeasureInclude",
+          "Yes",
+          "10313",
+          "MeasureInclude",
+          "Yes",
+          "15761",
+          "AllocationAdd",
+          "9829",
+          "Default",
+          "Measure",
+          "Type",
+          "AllocationAdd",
+          "10309",
+          "Default",
+          "Measure",
+          "Type",
+          "AllocationAdd",
+          "10317",
+          "Default",
+          "Measure",
+          "Type"
+        ]
+      ]
+    ]
+  ]
+]

+ 4449 - 0
data/S_Offene_Auftraege.json

@@ -0,0 +1,4449 @@
+[
+  "",
+  {
+    "Type": "Description",
+    "Decription": "Name \"Neues Modell\" ModelCodePage \"ibm-5348_P100-1997\" AutoAccess False UpdateCycle 9 ModelStamp 1218210240 Version \"10.2.6109.304\" ModelCategoryOrderDefault OrderUsePreference ModelOrderedByDefault False ModelNonRollupHierarchies False "
+  },
+  {
+    "Type": "CognosSource",
+    "ID": "10335",
+    "Name": "GC",
+    "SourceType": "Package",
+    "SourcePath": "/content/folder[@name='Package']/package[@name='GC']",
+    "PackageTimeStamp": "/content/folder[@name='Package']/package[@name='GC']/model[@name='2020-09-23T14:57:28.424Z']"
+  },
+  {
+    "Type": "CognosPackageDatasourceConnection",
+    "ID": "15957",
+    "Name": "3H_AUTOMOBILE",
+    "PackageReportSource": {
+      "ID": "10335",
+      "Name": "GC"
+    },
+    "CognosPackageConnection": "3H_AUTOMOBILE",
+    "CognosPackageConnectionSignon": "3H_AUTOMOBILE",
+    "CognosPackageAlwaysUseTransformerSignon": "False",
+    "CognosPackagePowercubeSource": "False"
+  },
+  {
+    "Type": "CognosPackageDatasourceConnection",
+    "ID": "15959",
+    "Name": "LOCOSOFT",
+    "PackageReportSource": {
+      "ID": "10335",
+      "Name": "GC"
+    },
+    "CognosPackageConnection": "LOCOSOFT",
+    "CognosPackageConnectionSignon": "LOCOSOFT",
+    "CognosPackageAlwaysUseTransformerSignon": "False",
+    "CognosPackagePowercubeSource": "False"
+  },
+  {
+    "Type": "CognosPackageDatasourceConnection",
+    "ID": "15961",
+    "Name": "GC_CARLO",
+    "PackageReportSource": {
+      "ID": "10335",
+      "Name": "GC"
+    },
+    "CognosPackageConnection": "GC_CARLO",
+    "CognosPackageConnectionSignon": "gaps",
+    "CognosPackageAlwaysUseTransformerSignon": "True",
+    "CognosPackagePowercubeSource": "False"
+  },
+  {
+    "Type": "CognosPackageDatasourceConnection",
+    "ID": "15963",
+    "Name": "GC",
+    "PackageReportSource": {
+      "ID": "10335",
+      "Name": "GC"
+    },
+    "CognosPackageConnection": "GC",
+    "CognosPackageConnectionSignon": "GC",
+    "CognosPackageAlwaysUseTransformerSignon": "True",
+    "CognosPackagePowercubeSource": "False"
+  },
+  {
+    "Type": "DataSource",
+    "ID": "0",
+    "Name": "",
+    "Separator": ";",
+    "SourceType": "CognosSourceQuery",
+    "CharacterSet": "Default",
+    "DecimalSep": ",",
+    "Thousandsep": ".",
+    "Columns": "True",
+    "Timing": "PopYesCreateDefault",
+    "PackageReportSource": {
+      "ID": "10335",
+      "Name": "GC"
+    },
+    "AutoSummary": "False",
+    "SetCurrent": "True",
+    "ServerSource": "False",
+    "Speed": "False",
+    "Presummarized": "False",
+    "StreamExtractSize": "0"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15873",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Bundeslaender Id]",
+    "Origin": "Source",
+    "Offset": "0",
+    "Column": "Bundeslaender Id",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "512",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15875",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Invoice Date]",
+    "Origin": "Source",
+    "Offset": "1",
+    "Column": "Order Date",
+    "Storage": "Int32",
+    "Scale": "0",
+    "Size": "12",
+    "Decimals": "0",
+    "Class": "Date",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15877",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Wochentage Id]",
+    "Origin": "Source",
+    "Offset": "2",
+    "Column": "Wochentage Id",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "512",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15879",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Mofr]",
+    "Origin": "Source",
+    "Offset": "3",
+    "Column": "Arbeitstag Mofr",
+    "Storage": "Float64",
+    "Scale": "0",
+    "Size": "4",
+    "Decimals": "0",
+    "Class": "Quantity",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15881",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Zaehler Mofr]",
+    "Origin": "Source",
+    "Offset": "4",
+    "Column": "Zaehler Mofr",
+    "Storage": "Float64",
+    "Scale": "0",
+    "Size": "4",
+    "Decimals": "0",
+    "Class": "Quantity",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15883",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Summe Mofr]",
+    "Origin": "Source",
+    "Offset": "5",
+    "Column": "Summe Mofr",
+    "Storage": "Float64",
+    "Scale": "0",
+    "Size": "4",
+    "Decimals": "0",
+    "Class": "Quantity",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15885",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Mosa]",
+    "Origin": "Source",
+    "Offset": "6",
+    "Column": "Arbeitstag Mosa",
+    "Storage": "Float64",
+    "Scale": "0",
+    "Size": "4",
+    "Decimals": "0",
+    "Class": "Quantity",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15887",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Zaehler Mosa]",
+    "Origin": "Source",
+    "Offset": "7",
+    "Column": "Zaehler Mosa",
+    "Storage": "Float64",
+    "Scale": "0",
+    "Size": "4",
+    "Decimals": "0",
+    "Class": "Quantity",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15889",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Summe Mosa]",
+    "Origin": "Source",
+    "Offset": "8",
+    "Column": "Summe Mosa",
+    "Storage": "Float64",
+    "Scale": "0",
+    "Size": "4",
+    "Decimals": "0",
+    "Class": "Quantity",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15891",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Feiertage Id]",
+    "Origin": "Source",
+    "Offset": "9",
+    "Column": "Feiertage Id",
+    "Storage": "Float64",
+    "Scale": "0",
+    "Size": "4",
+    "Decimals": "0",
+    "Class": "Quantity",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15893",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Jahr]",
+    "Origin": "Source",
+    "Offset": "10",
+    "Column": "Jahr",
+    "Storage": "Float64",
+    "Scale": "0",
+    "Size": "4",
+    "Decimals": "0",
+    "Class": "Quantity",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15895",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Nr Jahr]",
+    "Origin": "Source",
+    "Offset": "11",
+    "Column": "Arbeitstag Nr Jahr",
+    "Storage": "Float64",
+    "Scale": "0",
+    "Size": "4",
+    "Decimals": "0",
+    "Class": "Quantity",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15897",
+    "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Gesamt Arbeitstage]",
+    "Origin": "Source",
+    "Offset": "12",
+    "Column": "Gesamt Arbeitstage",
+    "Storage": "Float64",
+    "Scale": "0",
+    "Size": "4",
+    "Decimals": "0",
+    "Class": "Quantity",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "DataSource",
+    "ID": "0",
+    "Name": "",
+    "Separator": ";",
+    "SourceType": "CognosSourceQuery",
+    "CharacterSet": "Default",
+    "DecimalSep": ",",
+    "Thousandsep": ".",
+    "Columns": "True",
+    "Timing": "PopYesCreateDefault",
+    "PackageReportSource": {
+      "ID": "10335",
+      "Name": "GC"
+    },
+    "AutoSummary": "False",
+    "SetCurrent": "False",
+    "ServerSource": "False",
+    "Speed": "False",
+    "Presummarized": "False",
+    "StreamExtractSize": "0"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15829",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Hauptbetrieb_ID]",
+    "Origin": "Source",
+    "Offset": "0",
+    "Column": "Hauptbetrieb_ID",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "22",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15831",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Hauptbetrieb_Name]",
+    "Origin": "Source",
+    "Offset": "1",
+    "Column": "Hauptbetrieb_Name",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "102",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15833",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Standort_ID]",
+    "Origin": "Source",
+    "Offset": "2",
+    "Column": "Standort_ID",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "22",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15835",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Standort_Name]",
+    "Origin": "Source",
+    "Offset": "3",
+    "Column": "Standort_Name",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "102",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15837",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Serviceberater]",
+    "Origin": "Source",
+    "Offset": "4",
+    "Column": "Serviceberater",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15839",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Order Number]",
+    "Origin": "Source",
+    "Offset": "5",
+    "Column": "Order Number",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15841",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Fabrikat]",
+    "Origin": "Source",
+    "Offset": "6",
+    "Column": "Fabrikat",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15843",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Model]",
+    "Origin": "Source",
+    "Offset": "7",
+    "Column": "Model",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15845",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Fahrzeug]",
+    "Origin": "Source",
+    "Offset": "8",
+    "Column": "Fahrzeug",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15847",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Kostenstelle]",
+    "Origin": "Source",
+    "Offset": "9",
+    "Column": "Kostenstelle",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15849",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Marke]",
+    "Origin": "Source",
+    "Offset": "10",
+    "Column": "Marke",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15851",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Kunde]",
+    "Origin": "Source",
+    "Offset": "11",
+    "Column": "Kunde",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15853",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Turnover_Type_Desc]",
+    "Origin": "Source",
+    "Offset": "12",
+    "Column": "Turnover_Type_Desc",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15855",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Tage offen]",
+    "Origin": "Source",
+    "Offset": "13",
+    "Column": "Tage offen",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15857",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[DG]",
+    "Origin": "Source",
+    "Offset": "14",
+    "Column": "DG",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15859",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Lohn]",
+    "Origin": "Source",
+    "Offset": "15",
+    "Column": "Lohn",
+    "Storage": "Float64",
+    "Scale": "8",
+    "Size": "15",
+    "Decimals": "8",
+    "Class": "Quantity",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15861",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Teile]",
+    "Origin": "Source",
+    "Offset": "16",
+    "Column": "Teile",
+    "Storage": "Default",
+    "Scale": "0",
+    "Size": "1",
+    "Decimals": "0",
+    "Class": "",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15863",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Sonst.]",
+    "Origin": "Source",
+    "Offset": "17",
+    "Column": "Sonst.",
+    "Storage": "Float64",
+    "Scale": "8",
+    "Size": "15",
+    "Decimals": "8",
+    "Class": "Quantity",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15865",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Auftragsart]",
+    "Origin": "Source",
+    "Offset": "18",
+    "Column": "Auftragsart",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15867",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Order Date]",
+    "Origin": "Source",
+    "Offset": "19",
+    "Column": "Order Date",
+    "Storage": "Int32",
+    "Scale": "0",
+    "Size": "12",
+    "Decimals": "0",
+    "Class": "Date",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "OrgName",
+    "ID": "15869",
+    "Name": "[Schnittstelle].[Offene_Auftraege].[Tage seit letzt. Stemp.]",
+    "Origin": "Source",
+    "Offset": "20",
+    "Column": "Tage seit letzt. Stemp.",
+    "Storage": "Text",
+    "Scale": "0",
+    "Size": "202",
+    "Decimals": "0",
+    "Class": "Description",
+    "InputScale": "0",
+    "TimeArray": "Off",
+    "ColSrcType": "None"
+  },
+  {
+    "Type": "Dimension",
+    "ID": "1463",
+    "Name": "Zeit",
+    "DimType": "Date",
+    "EarliestDate": "19010101",
+    "LatestDate": "21001231",
+    "ManualPeriods": "False",
+    "DaysInWeek": "127",
+    "NewCatsLock": "False",
+    "ExcludeAutoPartitioning": "False",
+    "DimDefaultCategory": "0"
+  },
+  {
+    "Type": "Categories"
+  },
+  {
+    "Type": "Root",
+    "ID": "1467",
+    "Name": "Zeit",
+    "Inclusion": "Generate",
+    "Lastuse": "20180820",
+    "Date": "0",
+    "Filtered": "False",
+    "Suppressed": "False",
+    "Sign": "False",
+    "HideValue": "False",
+    "IsKeyOrphanage": "False",
+    "IsTruncated": "False",
+    "Blanks": "False"
+  },
+  {
+    "Type": "Drill",
+    "ID": "1469",
+    "Name": "Nach Zeit",
+    "Label": "Nach Zeit",
+    "Inclusion": "Suppress",
+    "Filtered": "False",
+    "Suppressed": "True",
+    "PrimaryDrill": "True",
+    "HideValue": "False",
+    "YearBegins": "20080101",
+    "PartialWeek": "Split",
+    "ExtraWeek": "None",
+    "WeekBegins": "Sunday"
+  },
+  {
+    "Type": "Levels",
+    "ID": "1475",
+    "Name": "Jahr",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "Generate",
+    "DateFunction": "Year",
+    "Generate": "DateFunction",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "YYYY",
+    "Timerank": "10",
+    "UniqueCategories": "True",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Levels",
+    "ID": "1481",
+    "Name": "Quartal",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "Generate",
+    "DateFunction": "Quarter",
+    "Generate": "DateFunction",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "20",
+    "UniqueCategories": "True",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Levels",
+    "ID": "1487",
+    "Name": "Monat",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "Generate",
+    "DateFunction": "Month",
+    "Generate": "DateFunction",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "MMM/YYYY",
+    "Timerank": "30",
+    "UniqueCategories": "True",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Levels",
+    "ID": "1493",
+    "Name": "Tag",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "Generate",
+    "DateFunction": "Day",
+    "Generate": "DateFunction",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "DD/MM/YYYY",
+    "Timerank": "50",
+    "UniqueCategories": "True",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "",
+    "DateFunction": "",
+    "Generate": "",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "",
+    "DateFunction": "",
+    "Generate": "",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "",
+    "DateFunction": "",
+    "Generate": "",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "Levels",
+    "ID": "0",
+    "Name": "",
+    "Blanks": "",
+    "Inclusion": "Generate",
+    "DateFunction": "",
+    "Generate": "Lastuse",
+    "RefreshLabel": "",
+    "RefreshDescription": "",
+    "RefreshShortName": "",
+    "NewCatsLock": "",
+    "CatLabFormat": "",
+    "Timerank": "",
+    "UniqueCategories": "",
+    "UniqueMove": ""
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "SpecialCategory"
+  },
+  {
+    "Type": "MapDrills"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "Dimension",
+    "ID": "1521",
+    "Name": "AH-Gruppe",
+    "DimType": "Regular",
+    "EarliestDate": "",
+    "LatestDate": "",
+    "ManualPeriods": "",
+    "DaysInWeek": "",
+    "NewCatsLock": "False",
+    "ExcludeAutoPartitioning": "False",
+    "DimDefaultCategory": "0"
+  },
+  {
+    "Type": "Categories"
+  },
+  {
+    "Type": "Root",
+    "ID": "1523",
+    "Name": "Hauptbetrieb",
+    "Inclusion": "Generate",
+    "Lastuse": "20180820",
+    "Date": "",
+    "Filtered": "False",
+    "Suppressed": "False",
+    "Sign": "False",
+    "HideValue": "False",
+    "IsKeyOrphanage": "False",
+    "IsTruncated": "False",
+    "Blanks": "False"
+  },
+  {
+    "Type": "Drill",
+    "ID": "1525",
+    "Name": "Nach Hauptbetrieb",
+    "Label": "",
+    "Inclusion": "Suppress",
+    "Filtered": "False",
+    "Suppressed": "True",
+    "PrimaryDrill": "True",
+    "HideValue": "False",
+    "YearBegins": "",
+    "PartialWeek": "",
+    "ExtraWeek": "",
+    "WeekBegins": ""
+  },
+  {
+    "Type": "Levels",
+    "ID": "1531",
+    "Name": "Hauptbetrieb",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Levels",
+    "ID": "1535",
+    "Name": "Standort",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Levels",
+    "ID": "1539",
+    "Name": "Serviceberater",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Levels",
+    "ID": "1547",
+    "Name": "Order Number",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "MapDrills"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "Dimension",
+    "ID": "1551",
+    "Name": "Fabrikat",
+    "DimType": "Regular",
+    "EarliestDate": "",
+    "LatestDate": "",
+    "ManualPeriods": "",
+    "DaysInWeek": "",
+    "NewCatsLock": "False",
+    "ExcludeAutoPartitioning": "False",
+    "DimDefaultCategory": "0"
+  },
+  {
+    "Type": "Categories"
+  },
+  {
+    "Type": "Root",
+    "ID": "1553",
+    "Name": "Fabrikat",
+    "Inclusion": "Generate",
+    "Lastuse": "20180820",
+    "Date": "",
+    "Filtered": "False",
+    "Suppressed": "False",
+    "Sign": "False",
+    "HideValue": "False",
+    "IsKeyOrphanage": "False",
+    "IsTruncated": "False",
+    "Blanks": "False"
+  },
+  {
+    "Type": "Drill",
+    "ID": "1555",
+    "Name": "Nach Fabrikat",
+    "Label": "",
+    "Inclusion": "Suppress",
+    "Filtered": "False",
+    "Suppressed": "True",
+    "PrimaryDrill": "True",
+    "HideValue": "False",
+    "YearBegins": "",
+    "PartialWeek": "",
+    "ExtraWeek": "",
+    "WeekBegins": ""
+  },
+  {
+    "Type": "Levels",
+    "ID": "1561",
+    "Name": "Fabrikat",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Levels",
+    "ID": "1565",
+    "Name": "Model",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Levels",
+    "ID": "1569",
+    "Name": "Fahrzeug",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "MapDrills"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "Dimension",
+    "ID": "1575",
+    "Name": "Kostenstelle",
+    "DimType": "Regular",
+    "EarliestDate": "",
+    "LatestDate": "",
+    "ManualPeriods": "",
+    "DaysInWeek": "",
+    "NewCatsLock": "False",
+    "ExcludeAutoPartitioning": "False",
+    "DimDefaultCategory": "0"
+  },
+  {
+    "Type": "Categories"
+  },
+  {
+    "Type": "Root",
+    "ID": "1577",
+    "Name": "Kostenstelle",
+    "Inclusion": "Generate",
+    "Lastuse": "20180820",
+    "Date": "",
+    "Filtered": "False",
+    "Suppressed": "False",
+    "Sign": "False",
+    "HideValue": "False",
+    "IsKeyOrphanage": "False",
+    "IsTruncated": "False",
+    "Blanks": "False"
+  },
+  {
+    "Type": "Drill",
+    "ID": "1579",
+    "Name": "Nach Kostenstelle",
+    "Label": "",
+    "Inclusion": "Suppress",
+    "Filtered": "False",
+    "Suppressed": "True",
+    "PrimaryDrill": "True",
+    "HideValue": "False",
+    "YearBegins": "",
+    "PartialWeek": "",
+    "ExtraWeek": "",
+    "WeekBegins": ""
+  },
+  {
+    "Type": "Levels",
+    "ID": "1585",
+    "Name": "Kostenstelle",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "MapDrills"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "Dimension",
+    "ID": "1591",
+    "Name": "Marke",
+    "DimType": "Regular",
+    "EarliestDate": "",
+    "LatestDate": "",
+    "ManualPeriods": "",
+    "DaysInWeek": "",
+    "NewCatsLock": "False",
+    "ExcludeAutoPartitioning": "False",
+    "DimDefaultCategory": "0"
+  },
+  {
+    "Type": "Categories"
+  },
+  {
+    "Type": "Root",
+    "ID": "1593",
+    "Name": "Marke",
+    "Inclusion": "Generate",
+    "Lastuse": "20180820",
+    "Date": "",
+    "Filtered": "False",
+    "Suppressed": "False",
+    "Sign": "False",
+    "HideValue": "False",
+    "IsKeyOrphanage": "False",
+    "IsTruncated": "False",
+    "Blanks": "False"
+  },
+  {
+    "Type": "Drill",
+    "ID": "1595",
+    "Name": "Nach Marke",
+    "Label": "",
+    "Inclusion": "Suppress",
+    "Filtered": "False",
+    "Suppressed": "True",
+    "PrimaryDrill": "True",
+    "HideValue": "False",
+    "YearBegins": "",
+    "PartialWeek": "",
+    "ExtraWeek": "",
+    "WeekBegins": ""
+  },
+  {
+    "Type": "Levels",
+    "ID": "1601",
+    "Name": "Marke",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "Category"
+  },
+  {
+    "Type": "MapDrills"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "Dimension",
+    "ID": "1651",
+    "Name": "Kunde",
+    "DimType": "Regular",
+    "EarliestDate": "",
+    "LatestDate": "",
+    "ManualPeriods": "",
+    "DaysInWeek": "",
+    "NewCatsLock": "False",
+    "ExcludeAutoPartitioning": "False",
+    "DimDefaultCategory": "0"
+  },
+  {
+    "Type": "Categories"
+  },
+  {
+    "Type": "Root",
+    "ID": "1653",
+    "Name": "Kunde",
+    "Inclusion": "Generate",
+    "Lastuse": "20180820",
+    "Date": "",
+    "Filtered": "False",
+    "Suppressed": "False",
+    "Sign": "False",
+    "HideValue": "False",
+    "IsKeyOrphanage": "False",
+    "IsTruncated": "False",
+    "Blanks": "False"
+  },
+  {
+    "Type": "Drill",
+    "ID": "1655",
+    "Name": "Nach Kunde",
+    "Label": "",
+    "Inclusion": "Suppress",
+    "Filtered": "False",
+    "Suppressed": "True",
+    "PrimaryDrill": "True",
+    "HideValue": "False",
+    "YearBegins": "",
+    "PartialWeek": "",
+    "ExtraWeek": "",
+    "WeekBegins": ""
+  },
+  {
+    "Type": "Levels",
+    "ID": "1661",
+    "Name": "Kunde",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "MapDrills"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "Dimension",
+    "ID": "1665",
+    "Name": "Auftrag Detail",
+    "DimType": "Regular",
+    "EarliestDate": "",
+    "LatestDate": "",
+    "ManualPeriods": "",
+    "DaysInWeek": "",
+    "NewCatsLock": "False",
+    "ExcludeAutoPartitioning": "False",
+    "DimDefaultCategory": "0"
+  },
+  {
+    "Type": "Categories"
+  },
+  {
+    "Type": "Root",
+    "ID": "1667",
+    "Name": "verk. AW",
+    "Inclusion": "Generate",
+    "Lastuse": "20180820",
+    "Date": "",
+    "Filtered": "False",
+    "Suppressed": "False",
+    "Sign": "False",
+    "HideValue": "False",
+    "IsKeyOrphanage": "False",
+    "IsTruncated": "False",
+    "Blanks": "False"
+  },
+  {
+    "Type": "Drill",
+    "ID": "1669",
+    "Name": "Nach verk. AW",
+    "Label": "",
+    "Inclusion": "Suppress",
+    "Filtered": "False",
+    "Suppressed": "True",
+    "PrimaryDrill": "True",
+    "HideValue": "False",
+    "YearBegins": "",
+    "PartialWeek": "",
+    "ExtraWeek": "",
+    "WeekBegins": ""
+  },
+  {
+    "Type": "Levels",
+    "ID": "10233",
+    "Name": "Serviceberater",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Levels",
+    "ID": "10227",
+    "Name": "Order Number",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "MapDrills"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "Dimension",
+    "ID": "1693",
+    "Name": "Serviceberater",
+    "DimType": "Regular",
+    "EarliestDate": "",
+    "LatestDate": "",
+    "ManualPeriods": "",
+    "DaysInWeek": "",
+    "NewCatsLock": "False",
+    "ExcludeAutoPartitioning": "False",
+    "DimDefaultCategory": "0"
+  },
+  {
+    "Type": "Categories"
+  },
+  {
+    "Type": "Root",
+    "ID": "1695",
+    "Name": "Serviceberater",
+    "Inclusion": "Generate",
+    "Lastuse": "20180820",
+    "Date": "",
+    "Filtered": "False",
+    "Suppressed": "False",
+    "Sign": "False",
+    "HideValue": "False",
+    "IsKeyOrphanage": "False",
+    "IsTruncated": "False",
+    "Blanks": "False"
+  },
+  {
+    "Type": "Drill",
+    "ID": "1697",
+    "Name": "Nach Serviceberater",
+    "Label": "",
+    "Inclusion": "Suppress",
+    "Filtered": "False",
+    "Suppressed": "True",
+    "PrimaryDrill": "True",
+    "HideValue": "False",
+    "YearBegins": "",
+    "PartialWeek": "",
+    "ExtraWeek": "",
+    "WeekBegins": ""
+  },
+  {
+    "Type": "Levels",
+    "ID": "1703",
+    "Name": "Serviceberater",
+    "Blanks": "( Leerstelle )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "Levels",
+    "ID": "14777",
+    "Name": "Order Number",
+    "Blanks": "( Leer )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "MapDrills"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "Dimension",
+    "ID": "15741",
+    "Name": "Auftragsart",
+    "DimType": "Regular",
+    "EarliestDate": "",
+    "LatestDate": "",
+    "ManualPeriods": "",
+    "DaysInWeek": "",
+    "NewCatsLock": "False",
+    "ExcludeAutoPartitioning": "False",
+    "DimDefaultCategory": "0"
+  },
+  {
+    "Type": "Categories"
+  },
+  {
+    "Type": "Root",
+    "ID": "15743",
+    "Name": "Auftragsart",
+    "Inclusion": "Generate",
+    "Lastuse": "20200615",
+    "Date": "",
+    "Filtered": "False",
+    "Suppressed": "False",
+    "Sign": "False",
+    "HideValue": "False",
+    "IsKeyOrphanage": "False",
+    "IsTruncated": "False",
+    "Blanks": "False"
+  },
+  {
+    "Type": "Drill",
+    "ID": "15745",
+    "Name": "Nach Auftragsart",
+    "Label": "",
+    "Inclusion": "Suppress",
+    "Filtered": "False",
+    "Suppressed": "True",
+    "PrimaryDrill": "True",
+    "HideValue": "False",
+    "YearBegins": "",
+    "PartialWeek": "",
+    "ExtraWeek": "",
+    "WeekBegins": ""
+  },
+  {
+    "Type": "Levels",
+    "ID": "15751",
+    "Name": "Auftragsart",
+    "Blanks": "( Leer )",
+    "Inclusion": "",
+    "DateFunction": "None",
+    "Generate": "None",
+    "RefreshLabel": "False",
+    "RefreshDescription": "False",
+    "RefreshShortName": "False",
+    "NewCatsLock": "False",
+    "CatLabFormat": "",
+    "Timerank": "0",
+    "UniqueCategories": "False",
+    "UniqueMove": "False"
+  },
+  {
+    "Type": "MapDrills"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "ViewName"
+  },
+  {
+    "Type": "Measure"
+  },
+  {
+    "Type": "Measure"
+  },
+  {
+    "Type": "Measure"
+  },
+  {
+    "Type": "Measure"
+  },
+  {
+    "Type": "Measure"
+  },
+  {
+    "Type": "Measure"
+  },
+  {
+    "Type": "Signon"
+  },
+  {
+    "Type": "Signon"
+  },
+  {
+    "Type": "Signon"
+  },
+  {
+    "Type": "Cube"
+  },
+  {
+    "Type": "DimensionView"
+  },
+  {
+    "Type": "DimensionView"
+  },
+  {
+    "Type": "DimensionView"
+  },
+  {
+    "Type": "DimensionView"
+  },
+  {
+    "Type": "DimensionView"
+  }
+]

+ 5094 - 0
data/S_Offene_Auftraege.mdl

@@ -0,0 +1,5094 @@
+
+Name "Neues Modell" ModelCodePage "ibm-5348_P100-1997" AutoAccess False 
+UpdateCycle 9 ModelStamp 1218210240 Version "10.2.6109.304" ModelCategoryOrderDefault OrderUsePreference 
+ModelOrderedByDefault False ModelNonRollupHierarchies False 
+
+CognosSource 10335 "GC" SourceType Package SourcePath "/content/folder[@name='Package']/package[@name='GC']" 
+PackageTimeStamp "/content/folder[@name='Package']/package[@name='GC']/model[@name='2020-09-23T14:57:28.424Z']" 
+
+
+CognosPackageDatasourceConnection 15957 "3H_AUTOMOBILE" PackageReportSource 10335 
+"GC" CognosPackageConnection "3H_AUTOMOBILE" CognosPackageConnectionSignon "3H_AUTOMOBILE" 
+CognosPackageAlwaysUseTransformerSignon False CognosPackagePowercubeSource False 
+
+
+CognosPackageDatasourceConnection 15959 "LOCOSOFT" PackageReportSource 10335 
+"GC" CognosPackageConnection "LOCOSOFT" CognosPackageConnectionSignon "LOCOSOFT" 
+CognosPackageAlwaysUseTransformerSignon False CognosPackagePowercubeSource False 
+
+
+CognosPackageDatasourceConnection 15961 "GC_CARLO" PackageReportSource 10335 
+"GC" CognosPackageConnection "GC_CARLO" CognosPackageConnectionSignon "gaps" 
+Database 15673 "GC_CARLO" CognosPackageAlwaysUseTransformerSignon True 
+CognosPackagePowercubeSource False 
+
+CognosPackageDatasourceConnection 15963 "GC" PackageReportSource 10335 
+"GC" CognosPackageConnection "GC" CognosPackageConnectionSignon "GC" Database 15673 
+"GC_CARLO" CognosPackageAlwaysUseTransformerSignon True CognosPackagePowercubeSource False 
+
+
+DataSource 15871 "current_date_Prognose_operativ" Separator ";" SourceType CognosSourceQuery 
+CharacterSet Default DecimalSep "," Thousandsep "." Columns True Timing PopYesCreateDefault 
+PackageReportSource 10335 "GC" AutoSummary False SetCurrent True ServerSource False 
+Speed False Presummarized False StreamExtractSize 0 
+
+OrgName 15873 "[Schnittstelle].[current_date_Prognose_operativ].[Bundeslaender Id]" 
+Origin Source Offset 0 Column "Bundeslaender Id" Storage Text Scale 0 Size 512 
+Decimals 0 Class Description InputScale 0 TimeArray Off ColSrcType None 
+
+
+OrgName 15875 "[Schnittstelle].[current_date_Prognose_operativ].[Invoice Date]" 
+Origin Source Offset 1 Column "Order Date" Storage Int32 Scale 0 Size 12 
+Decimals 0 Class Date InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15877 "[Schnittstelle].[current_date_Prognose_operativ].[Wochentage Id]" 
+Origin Source Offset 2 Column "Wochentage Id" Storage Text Scale 0 Size 512 
+Decimals 0 Class Description InputScale 0 TimeArray Off ColSrcType None 
+
+
+OrgName 15879 "[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Mofr]" 
+Origin Source Offset 3 Column "Arbeitstag Mofr" Storage Float64 Scale 0 
+Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off Rollup Sum 
+ColSrcType None 
+
+OrgName 15881 "[Schnittstelle].[current_date_Prognose_operativ].[Zaehler Mofr]" 
+Origin Source Offset 4 Column "Zaehler Mofr" Storage Float64 Scale 0 Size 4 
+Decimals 0 Class Quantity InputScale 0 TimeArray Off Rollup Sum ColSrcType None 
+
+
+OrgName 15883 "[Schnittstelle].[current_date_Prognose_operativ].[Summe Mofr]" 
+Origin Source Offset 5 Column "Summe Mofr" Storage Float64 Scale 0 Size 4 
+Decimals 0 Class Quantity InputScale 0 TimeArray Off Rollup Sum ColSrcType None 
+
+
+OrgName 15885 "[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Mosa]" 
+Origin Source Offset 6 Column "Arbeitstag Mosa" Storage Float64 Scale 0 
+Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off Rollup Sum 
+ColSrcType None 
+
+OrgName 15887 "[Schnittstelle].[current_date_Prognose_operativ].[Zaehler Mosa]" 
+Origin Source Offset 7 Column "Zaehler Mosa" Storage Float64 Scale 0 Size 4 
+Decimals 0 Class Quantity InputScale 0 TimeArray Off Rollup Sum ColSrcType None 
+
+
+OrgName 15889 "[Schnittstelle].[current_date_Prognose_operativ].[Summe Mosa]" 
+Origin Source Offset 8 Column "Summe Mosa" Storage Float64 Scale 0 Size 4 
+Decimals 0 Class Quantity InputScale 0 TimeArray Off Rollup Sum ColSrcType None 
+
+
+OrgName 15891 "[Schnittstelle].[current_date_Prognose_operativ].[Feiertage Id]" 
+Origin Source Offset 9 Column "Feiertage Id" Storage Float64 Scale 0 Size 4 
+Decimals 0 Class Quantity InputScale 0 TimeArray Off Rollup Sum ColSrcType None 
+
+
+OrgName 15893 "[Schnittstelle].[current_date_Prognose_operativ].[Jahr]" 
+Origin Source Offset 10 Column "Jahr" Storage Float64 Scale 0 Size 4 Decimals 0 
+Class Quantity InputScale 0 TimeArray Off Rollup Sum ColSrcType None 
+
+OrgName 15895 "[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Nr Jahr]" 
+Origin Source Offset 11 Column "Arbeitstag Nr Jahr" Storage Float64 Scale 0 
+Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off Rollup Sum 
+ColSrcType None 
+
+OrgName 15897 "[Schnittstelle].[current_date_Prognose_operativ].[Gesamt Arbeitstage]" 
+Origin Source Offset 12 Column "Gesamt Arbeitstage" Storage Float64 Scale 0 
+Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off Rollup Sum 
+ColSrcType None 
+
+DataSource 15827 "Offene_Auftraege" Separator ";" SourceType CognosSourceQuery 
+CharacterSet Default DecimalSep "," Thousandsep "." Columns True Timing PopYesCreateDefault 
+PackageReportSource 10335 "GC" AutoSummary False SetCurrent False ServerSource False 
+Speed False Presummarized False StreamExtractSize 0 
+
+OrgName 15829 "[Schnittstelle].[Offene_Auftraege].[Hauptbetrieb_ID]" Origin Source 
+Offset 0 Column "Hauptbetrieb_ID" Storage Text Scale 0 Size 22 Decimals 0 
+Class Description InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15831 "[Schnittstelle].[Offene_Auftraege].[Hauptbetrieb_Name]" 
+Origin Source Offset 1 Column "Hauptbetrieb_Name" Storage Text Scale 0 
+Size 102 Decimals 0 Class Description InputScale 0 TimeArray Off ColSrcType None 
+
+
+OrgName 15833 "[Schnittstelle].[Offene_Auftraege].[Standort_ID]" Origin Source 
+Offset 2 Column "Standort_ID" Storage Text Scale 0 Size 22 Decimals 0 Class Description 
+InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15835 "[Schnittstelle].[Offene_Auftraege].[Standort_Name]" Origin Source 
+Offset 3 Column "Standort_Name" Storage Text Scale 0 Size 102 Decimals 0 
+Class Description InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15837 "[Schnittstelle].[Offene_Auftraege].[Serviceberater]" Origin Source 
+Offset 4 Column "Serviceberater" Storage Text Scale 0 Size 202 Decimals 0 
+Class Description InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15839 "[Schnittstelle].[Offene_Auftraege].[Order Number]" Origin Source 
+Offset 5 Column "Order Number" Storage Text Scale 0 Size 202 Decimals 0 
+Class Description InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15841 "[Schnittstelle].[Offene_Auftraege].[Fabrikat]" Origin Source 
+Offset 6 Column "Fabrikat" Storage Text Scale 0 Size 202 Decimals 0 Class Description 
+InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15843 "[Schnittstelle].[Offene_Auftraege].[Model]" Origin Source 
+Offset 7 Column "Model" Storage Text Scale 0 Size 202 Decimals 0 Class Description 
+InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15845 "[Schnittstelle].[Offene_Auftraege].[Fahrzeug]" Origin Source 
+Offset 8 Column "Fahrzeug" Storage Text Scale 0 Size 202 Decimals 0 Class Description 
+InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15847 "[Schnittstelle].[Offene_Auftraege].[Kostenstelle]" Origin Source 
+Offset 9 Column "Kostenstelle" Storage Text Scale 0 Size 202 Decimals 0 
+Class Description InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15849 "[Schnittstelle].[Offene_Auftraege].[Marke]" Origin Source 
+Offset 10 Column "Marke" Storage Text Scale 0 Size 202 Decimals 0 Class Description 
+InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15851 "[Schnittstelle].[Offene_Auftraege].[Kunde]" Origin Source 
+Offset 11 Column "Kunde" Storage Text Scale 0 Size 202 Decimals 0 Class Description 
+InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15853 "[Schnittstelle].[Offene_Auftraege].[Turnover_Type_Desc]" 
+Origin Source Offset 12 Column "Turnover_Type_Desc" Storage Text Scale 0 
+Size 202 Decimals 0 Class Description InputScale 0 TimeArray Off ColSrcType None 
+
+
+OrgName 15855 "[Schnittstelle].[Offene_Auftraege].[Tage offen]" Origin Source 
+Offset 13 Column "Tage offen" Storage Text Scale 0 Size 202 Decimals 0 
+Class Description InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15857 "[Schnittstelle].[Offene_Auftraege].[DG]" Origin Source Offset 14 
+Column "DG" Storage Text Scale 0 Size 202 Decimals 0 Class Description 
+InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15859 "[Schnittstelle].[Offene_Auftraege].[Lohn]" Origin Source 
+Offset 15 Column "Lohn" Storage Float64 Scale 8 Size 15 Decimals 8 Class Quantity 
+InputScale 0 TimeArray Off Rollup Sum ColSrcType None 
+
+OrgName 15861 "[Schnittstelle].[Offene_Auftraege].[Teile]" Origin Source 
+Offset 16 Column "Teile" Storage Default Scale 0 Size 1 Decimals 0 InputScale 0 
+TimeArray Off ColSrcType None 
+
+OrgName 15863 "[Schnittstelle].[Offene_Auftraege].[Sonst.]" Origin Source 
+Offset 17 Column "Sonst." Storage Float64 Scale 8 Size 15 Decimals 8 Class Quantity 
+InputScale 0 TimeArray Off Rollup Sum ColSrcType None 
+
+OrgName 15865 "[Schnittstelle].[Offene_Auftraege].[Auftragsart]" Origin Source 
+Offset 18 Column "Auftragsart" Storage Text Scale 0 Size 202 Decimals 0 
+Class Description InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15867 "[Schnittstelle].[Offene_Auftraege].[Order Date]" Origin Source 
+Offset 19 Column "Order Date" Storage Int32 Scale 0 Size 12 Decimals 0 
+Class Date InputScale 0 TimeArray Off ColSrcType None 
+
+OrgName 15869 "[Schnittstelle].[Offene_Auftraege].[Tage seit letzt. Stemp.]" 
+Origin Source Offset 20 Column "Tage seit letzt. Stemp." Storage Text Scale 0 
+Size 202 Decimals 0 Class Description InputScale 0 TimeArray Off ColSrcType None 
+
+
+Dimension 1463 "Zeit" DimType Date EarliestDate 19010101 LatestDate 21001231 
+ManualPeriods False DaysInWeek 127 NewCatsLock False ExcludeAutoPartitioning False 
+DimDefaultCategory 0 
+
+Categories 
+Root 1467 "Zeit" Inclusion Generate Lastuse 20180820 Date 0 Filtered False 
+Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False 
+Blanks False 
+Drill 1469 "Nach Zeit" Label "Nach Zeit" Inclusion Suppress Filtered False 
+Suppressed True PrimaryDrill True HideValue False YearBegins 20080101 PartialWeek Split 
+ExtraWeek None WeekBegins Sunday 
+Levels 1475 "Jahr" Blanks "( Leerstelle )" Inclusion Generate DateFunction Year 
+Generate Need RefreshLabel False RefreshDescription False RefreshShortName False 
+NewCatsLock False CatLabFormat "YYYY" Timerank 10 UniqueCategories True 
+UniqueMove False Associations 1477 "Order Date" AssociationType Type_Query 
+AssociationRole Role_Source AssociationReferenced "Order Date" 
+Associations 1479 "Order Date" AssociationContext 1469 AssociationType Type_Query 
+AssociationRole Role_OrderBy AssociationReferenced "Order Date" SortOrder Default 
+SortAs Ascending 
+
+
+Levels 1481 "Quartal" Blanks "( Leerstelle )" Inclusion Generate DateFunction Quarter 
+Generate All RefreshLabel False RefreshDescription False RefreshShortName False 
+NewCatsLock False CatLabFormat "Q"". Q."" YYYY" Timerank 20 UniqueCategories True 
+UniqueMove False Associations 1483 "Order Date" AssociationType Type_Query 
+AssociationRole Role_Source AssociationReferenced "Order Date" 
+Associations 1485 "Order Date" AssociationContext 1469 AssociationType Type_Query 
+AssociationRole Role_OrderBy AssociationReferenced "Order Date" SortOrder Default 
+SortAs Ascending 
+
+
+Levels 1487 "Monat" Blanks "( Leerstelle )" Inclusion Generate DateFunction Month 
+Generate All RefreshLabel False RefreshDescription False RefreshShortName False 
+NewCatsLock False CatLabFormat "MMM/YYYY" Timerank 30 UniqueCategories True 
+UniqueMove False Associations 1489 "Order Date" AssociationType Type_Query 
+AssociationRole Role_Source AssociationReferenced "Order Date" 
+Associations 1491 "Order Date" AssociationContext 1469 AssociationType Type_Query 
+AssociationRole Role_OrderBy AssociationReferenced "Order Date" SortOrder Default 
+SortAs Ascending 
+
+
+Levels 1493 "Tag" Blanks "( Leerstelle )" Inclusion Generate DateFunction Day 
+Generate All RefreshLabel False RefreshDescription False RefreshShortName False 
+NewCatsLock False CatLabFormat "DD/MM/YYYY" Timerank 50 UniqueCategories True 
+UniqueMove False Associations 1495 "Order Date" AssociationType Type_Query 
+AssociationRole Role_Source AssociationReferenced "Order Date" 
+Associations 1497 "Order Date" AssociationContext 1469 AssociationType Type_Query 
+AssociationRole Role_OrderBy AssociationReferenced "Order Date" SortOrder Default 
+SortAs Ascending 
+
+
+Category 10555 "20170101-20171231" Parent 1469 Levels 1475 OrderBy Drill 1469 
+Value "2017" Label "2017" Lastuse 20180820 SourceValue "2017" Date 20170101 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+Category 10557 "20170101-20170331" Parent 10555 Levels 1481 OrderBy Drill 1469 
+Value "20170101" Label "1. Q. 2017" Lastuse 20180711 SourceValue "20170101" 
+Date 20170101 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 10559 "20170101-20170131" Parent 10557 Levels 1487 OrderBy Drill 1469 
+Value "201701" Label "Jan./2017" Lastuse 20180711 SourceValue "201701" 
+Date 20170101 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 10561 "20170101" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170101" 
+Label "01/01/2017" Lastuse 20180711 SourceValue "20170101" Date 20170101 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10563 "20170102" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170102" 
+Label "02/01/2017" Lastuse 20180711 SourceValue "20170102" Date 20170102 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10565 "20170103" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170103" 
+Label "03/01/2017" Lastuse 20180711 SourceValue "20170103" Date 20170103 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10567 "20170104" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170104" 
+Label "04/01/2017" Lastuse 20180711 SourceValue "20170104" Date 20170104 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10569 "20170105" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170105" 
+Label "05/01/2017" Lastuse 20180711 SourceValue "20170105" Date 20170105 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10571 "20170106" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170106" 
+Label "06/01/2017" Lastuse 20180711 SourceValue "20170106" Date 20170106 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10573 "20170107" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170107" 
+Label "07/01/2017" Lastuse 20180711 SourceValue "20170107" Date 20170107 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10575 "20170108" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170108" 
+Label "08/01/2017" Lastuse 20180711 SourceValue "20170108" Date 20170108 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10577 "20170109" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170109" 
+Label "09/01/2017" Lastuse 20180711 SourceValue "20170109" Date 20170109 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10579 "20170110" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170110" 
+Label "10/01/2017" Lastuse 20180711 SourceValue "20170110" Date 20170110 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10581 "20170111" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170111" 
+Label "11/01/2017" Lastuse 20180711 SourceValue "20170111" Date 20170111 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10583 "20170112" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170112" 
+Label "12/01/2017" Lastuse 20180711 SourceValue "20170112" Date 20170112 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10585 "20170113" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170113" 
+Label "13/01/2017" Lastuse 20180711 SourceValue "20170113" Date 20170113 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10587 "20170114" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170114" 
+Label "14/01/2017" Lastuse 20180711 SourceValue "20170114" Date 20170114 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10589 "20170115" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170115" 
+Label "15/01/2017" Lastuse 20180711 SourceValue "20170115" Date 20170115 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10591 "20170116" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170116" 
+Label "16/01/2017" Lastuse 20180711 SourceValue "20170116" Date 20170116 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10593 "20170117" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170117" 
+Label "17/01/2017" Lastuse 20180711 SourceValue "20170117" Date 20170117 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10595 "20170118" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170118" 
+Label "18/01/2017" Lastuse 20180711 SourceValue "20170118" Date 20170118 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10597 "20170119" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170119" 
+Label "19/01/2017" Lastuse 20180711 SourceValue "20170119" Date 20170119 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10599 "20170120" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170120" 
+Label "20/01/2017" Lastuse 20180711 SourceValue "20170120" Date 20170120 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10601 "20170121" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170121" 
+Label "21/01/2017" Lastuse 20180711 SourceValue "20170121" Date 20170121 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10603 "20170122" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170122" 
+Label "22/01/2017" Lastuse 20180711 SourceValue "20170122" Date 20170122 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10605 "20170123" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170123" 
+Label "23/01/2017" Lastuse 20180711 SourceValue "20170123" Date 20170123 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10607 "20170124" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170124" 
+Label "24/01/2017" Lastuse 20180711 SourceValue "20170124" Date 20170124 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10609 "20170125" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170125" 
+Label "25/01/2017" Lastuse 20180711 SourceValue "20170125" Date 20170125 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10611 "20170126" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170126" 
+Label "26/01/2017" Lastuse 20180711 SourceValue "20170126" Date 20170126 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10613 "20170127" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170127" 
+Label "27/01/2017" Lastuse 20180711 SourceValue "20170127" Date 20170127 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10615 "20170128" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170128" 
+Label "28/01/2017" Lastuse 20180711 SourceValue "20170128" Date 20170128 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10617 "20170129" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170129" 
+Label "29/01/2017" Lastuse 20180711 SourceValue "20170129" Date 20170129 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10619 "20170130" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170130" 
+Label "30/01/2017" Lastuse 20180711 SourceValue "20170130" Date 20170130 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10621 "20170131" Parent 10559 Levels 1493 OrderBy Drill 1469 Value "20170131" 
+Label "31/01/2017" Lastuse 20180711 SourceValue "20170131" Date 20170131 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 10623 "20170201-20170228" Parent 10557 Levels 1487 OrderBy Drill 1469 
+Value "201702" Label "Feb./2017" Lastuse 20180711 SourceValue "201702" 
+Date 20170201 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 10625 "20170201" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170201" 
+Label "01/02/2017" Lastuse 20180711 SourceValue "20170201" Date 20170201 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10627 "20170202" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170202" 
+Label "02/02/2017" Lastuse 20180711 SourceValue "20170202" Date 20170202 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10629 "20170203" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170203" 
+Label "03/02/2017" Lastuse 20180711 SourceValue "20170203" Date 20170203 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10631 "20170204" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170204" 
+Label "04/02/2017" Lastuse 20180711 SourceValue "20170204" Date 20170204 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10633 "20170205" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170205" 
+Label "05/02/2017" Lastuse 20180711 SourceValue "20170205" Date 20170205 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10635 "20170206" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170206" 
+Label "06/02/2017" Lastuse 20180711 SourceValue "20170206" Date 20170206 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10637 "20170207" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170207" 
+Label "07/02/2017" Lastuse 20180711 SourceValue "20170207" Date 20170207 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10639 "20170208" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170208" 
+Label "08/02/2017" Lastuse 20180711 SourceValue "20170208" Date 20170208 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10641 "20170209" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170209" 
+Label "09/02/2017" Lastuse 20180711 SourceValue "20170209" Date 20170209 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10643 "20170210" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170210" 
+Label "10/02/2017" Lastuse 20180711 SourceValue "20170210" Date 20170210 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10645 "20170211" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170211" 
+Label "11/02/2017" Lastuse 20180711 SourceValue "20170211" Date 20170211 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10647 "20170212" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170212" 
+Label "12/02/2017" Lastuse 20180711 SourceValue "20170212" Date 20170212 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10649 "20170213" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170213" 
+Label "13/02/2017" Lastuse 20180711 SourceValue "20170213" Date 20170213 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10651 "20170214" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170214" 
+Label "14/02/2017" Lastuse 20180711 SourceValue "20170214" Date 20170214 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10653 "20170215" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170215" 
+Label "15/02/2017" Lastuse 20180711 SourceValue "20170215" Date 20170215 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10655 "20170216" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170216" 
+Label "16/02/2017" Lastuse 20180711 SourceValue "20170216" Date 20170216 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10657 "20170217" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170217" 
+Label "17/02/2017" Lastuse 20180711 SourceValue "20170217" Date 20170217 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10659 "20170218" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170218" 
+Label "18/02/2017" Lastuse 20180711 SourceValue "20170218" Date 20170218 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10661 "20170219" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170219" 
+Label "19/02/2017" Lastuse 20180711 SourceValue "20170219" Date 20170219 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10663 "20170220" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170220" 
+Label "20/02/2017" Lastuse 20180711 SourceValue "20170220" Date 20170220 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10665 "20170221" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170221" 
+Label "21/02/2017" Lastuse 20180711 SourceValue "20170221" Date 20170221 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10667 "20170222" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170222" 
+Label "22/02/2017" Lastuse 20180711 SourceValue "20170222" Date 20170222 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10669 "20170223" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170223" 
+Label "23/02/2017" Lastuse 20180711 SourceValue "20170223" Date 20170223 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10671 "20170224" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170224" 
+Label "24/02/2017" Lastuse 20180711 SourceValue "20170224" Date 20170224 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10673 "20170225" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170225" 
+Label "25/02/2017" Lastuse 20180711 SourceValue "20170225" Date 20170225 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10675 "20170226" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170226" 
+Label "26/02/2017" Lastuse 20180711 SourceValue "20170226" Date 20170226 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10677 "20170227" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170227" 
+Label "27/02/2017" Lastuse 20180711 SourceValue "20170227" Date 20170227 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10679 "20170228" Parent 10623 Levels 1493 OrderBy Drill 1469 Value "20170228" 
+Label "28/02/2017" Lastuse 20180711 SourceValue "20170228" Date 20170228 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 10681 "20170301-20170331" Parent 10557 Levels 1487 OrderBy Drill 1469 
+Value "201703" Label "März/2017" Lastuse 20180711 SourceValue "201703" 
+Date 20170301 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 10683 "20170301" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170301" 
+Label "01/03/2017" Lastuse 20180711 SourceValue "20170301" Date 20170301 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10685 "20170302" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170302" 
+Label "02/03/2017" Lastuse 20180711 SourceValue "20170302" Date 20170302 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10687 "20170303" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170303" 
+Label "03/03/2017" Lastuse 20180711 SourceValue "20170303" Date 20170303 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10689 "20170304" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170304" 
+Label "04/03/2017" Lastuse 20180711 SourceValue "20170304" Date 20170304 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10691 "20170305" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170305" 
+Label "05/03/2017" Lastuse 20180711 SourceValue "20170305" Date 20170305 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10693 "20170306" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170306" 
+Label "06/03/2017" Lastuse 20180711 SourceValue "20170306" Date 20170306 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10695 "20170307" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170307" 
+Label "07/03/2017" Lastuse 20180711 SourceValue "20170307" Date 20170307 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10697 "20170308" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170308" 
+Label "08/03/2017" Lastuse 20180711 SourceValue "20170308" Date 20170308 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10699 "20170309" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170309" 
+Label "09/03/2017" Lastuse 20180711 SourceValue "20170309" Date 20170309 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10701 "20170310" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170310" 
+Label "10/03/2017" Lastuse 20180711 SourceValue "20170310" Date 20170310 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10703 "20170311" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170311" 
+Label "11/03/2017" Lastuse 20180711 SourceValue "20170311" Date 20170311 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10705 "20170312" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170312" 
+Label "12/03/2017" Lastuse 20180711 SourceValue "20170312" Date 20170312 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10707 "20170313" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170313" 
+Label "13/03/2017" Lastuse 20180711 SourceValue "20170313" Date 20170313 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10709 "20170314" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170314" 
+Label "14/03/2017" Lastuse 20180711 SourceValue "20170314" Date 20170314 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10711 "20170315" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170315" 
+Label "15/03/2017" Lastuse 20180711 SourceValue "20170315" Date 20170315 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10713 "20170316" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170316" 
+Label "16/03/2017" Lastuse 20180711 SourceValue "20170316" Date 20170316 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10715 "20170317" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170317" 
+Label "17/03/2017" Lastuse 20180711 SourceValue "20170317" Date 20170317 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10717 "20170318" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170318" 
+Label "18/03/2017" Lastuse 20180711 SourceValue "20170318" Date 20170318 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10719 "20170319" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170319" 
+Label "19/03/2017" Lastuse 20180711 SourceValue "20170319" Date 20170319 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10721 "20170320" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170320" 
+Label "20/03/2017" Lastuse 20180711 SourceValue "20170320" Date 20170320 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10723 "20170321" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170321" 
+Label "21/03/2017" Lastuse 20180711 SourceValue "20170321" Date 20170321 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10725 "20170322" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170322" 
+Label "22/03/2017" Lastuse 20180711 SourceValue "20170322" Date 20170322 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10727 "20170323" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170323" 
+Label "23/03/2017" Lastuse 20180711 SourceValue "20170323" Date 20170323 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10729 "20170324" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170324" 
+Label "24/03/2017" Lastuse 20180711 SourceValue "20170324" Date 20170324 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10731 "20170325" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170325" 
+Label "25/03/2017" Lastuse 20180711 SourceValue "20170325" Date 20170325 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10733 "20170326" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170326" 
+Label "26/03/2017" Lastuse 20180711 SourceValue "20170326" Date 20170326 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10735 "20170327" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170327" 
+Label "27/03/2017" Lastuse 20180711 SourceValue "20170327" Date 20170327 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10737 "20170328" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170328" 
+Label "28/03/2017" Lastuse 20180711 SourceValue "20170328" Date 20170328 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10739 "20170329" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170329" 
+Label "29/03/2017" Lastuse 20180711 SourceValue "20170329" Date 20170329 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10741 "20170330" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170330" 
+Label "30/03/2017" Lastuse 20180711 SourceValue "20170330" Date 20170330 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10743 "20170331" Parent 10681 Levels 1493 OrderBy Drill 1469 Value "20170331" 
+Label "31/03/2017" Lastuse 20180711 SourceValue "20170331" Date 20170331 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+
+Category 10745 "20170401-20170630" Parent 10555 Levels 1481 OrderBy Drill 1469 
+Value "20170401" Label "2. Q. 2017" Lastuse 20180711 SourceValue "20170401" 
+Date 20170401 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 10747 "20170401-20170430" Parent 10745 Levels 1487 OrderBy Drill 1469 
+Value "201704" Label "Apr./2017" Lastuse 20180711 SourceValue "201704" 
+Date 20170401 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 10749 "20170401" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170401" 
+Label "01/04/2017" Lastuse 20180711 SourceValue "20170401" Date 20170401 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10751 "20170402" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170402" 
+Label "02/04/2017" Lastuse 20180711 SourceValue "20170402" Date 20170402 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10753 "20170403" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170403" 
+Label "03/04/2017" Lastuse 20180711 SourceValue "20170403" Date 20170403 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10755 "20170404" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170404" 
+Label "04/04/2017" Lastuse 20180711 SourceValue "20170404" Date 20170404 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10757 "20170405" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170405" 
+Label "05/04/2017" Lastuse 20180711 SourceValue "20170405" Date 20170405 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10759 "20170406" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170406" 
+Label "06/04/2017" Lastuse 20180711 SourceValue "20170406" Date 20170406 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10761 "20170407" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170407" 
+Label "07/04/2017" Lastuse 20180711 SourceValue "20170407" Date 20170407 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10763 "20170408" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170408" 
+Label "08/04/2017" Lastuse 20180711 SourceValue "20170408" Date 20170408 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10765 "20170409" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170409" 
+Label "09/04/2017" Lastuse 20180711 SourceValue "20170409" Date 20170409 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10767 "20170410" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170410" 
+Label "10/04/2017" Lastuse 20180711 SourceValue "20170410" Date 20170410 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10769 "20170411" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170411" 
+Label "11/04/2017" Lastuse 20180711 SourceValue "20170411" Date 20170411 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10771 "20170412" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170412" 
+Label "12/04/2017" Lastuse 20180711 SourceValue "20170412" Date 20170412 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10773 "20170413" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170413" 
+Label "13/04/2017" Lastuse 20180711 SourceValue "20170413" Date 20170413 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10775 "20170414" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170414" 
+Label "14/04/2017" Lastuse 20180711 SourceValue "20170414" Date 20170414 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10777 "20170415" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170415" 
+Label "15/04/2017" Lastuse 20180711 SourceValue "20170415" Date 20170415 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10779 "20170416" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170416" 
+Label "16/04/2017" Lastuse 20180711 SourceValue "20170416" Date 20170416 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10781 "20170417" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170417" 
+Label "17/04/2017" Lastuse 20180711 SourceValue "20170417" Date 20170417 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10783 "20170418" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170418" 
+Label "18/04/2017" Lastuse 20180711 SourceValue "20170418" Date 20170418 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10785 "20170419" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170419" 
+Label "19/04/2017" Lastuse 20180711 SourceValue "20170419" Date 20170419 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10787 "20170420" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170420" 
+Label "20/04/2017" Lastuse 20180711 SourceValue "20170420" Date 20170420 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10789 "20170421" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170421" 
+Label "21/04/2017" Lastuse 20180711 SourceValue "20170421" Date 20170421 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10791 "20170422" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170422" 
+Label "22/04/2017" Lastuse 20180711 SourceValue "20170422" Date 20170422 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10793 "20170423" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170423" 
+Label "23/04/2017" Lastuse 20180711 SourceValue "20170423" Date 20170423 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10795 "20170424" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170424" 
+Label "24/04/2017" Lastuse 20180711 SourceValue "20170424" Date 20170424 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10797 "20170425" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170425" 
+Label "25/04/2017" Lastuse 20180711 SourceValue "20170425" Date 20170425 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10799 "20170426" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170426" 
+Label "26/04/2017" Lastuse 20180711 SourceValue "20170426" Date 20170426 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10801 "20170427" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170427" 
+Label "27/04/2017" Lastuse 20180711 SourceValue "20170427" Date 20170427 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10803 "20170428" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170428" 
+Label "28/04/2017" Lastuse 20180711 SourceValue "20170428" Date 20170428 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10805 "20170429" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170429" 
+Label "29/04/2017" Lastuse 20180711 SourceValue "20170429" Date 20170429 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10807 "20170430" Parent 10747 Levels 1493 OrderBy Drill 1469 Value "20170430" 
+Label "30/04/2017" Lastuse 20180711 SourceValue "20170430" Date 20170430 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 10809 "20170501-20170531" Parent 10745 Levels 1487 OrderBy Drill 1469 
+Value "201705" Label "Mai/2017" Lastuse 20180711 SourceValue "201705" Date 20170501 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+Category 10811 "20170501" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170501" 
+Label "01/05/2017" Lastuse 20180711 SourceValue "20170501" Date 20170501 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10813 "20170502" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170502" 
+Label "02/05/2017" Lastuse 20180711 SourceValue "20170502" Date 20170502 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10815 "20170503" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170503" 
+Label "03/05/2017" Lastuse 20180711 SourceValue "20170503" Date 20170503 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10817 "20170504" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170504" 
+Label "04/05/2017" Lastuse 20180711 SourceValue "20170504" Date 20170504 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10819 "20170505" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170505" 
+Label "05/05/2017" Lastuse 20180711 SourceValue "20170505" Date 20170505 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10821 "20170506" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170506" 
+Label "06/05/2017" Lastuse 20180711 SourceValue "20170506" Date 20170506 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10823 "20170507" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170507" 
+Label "07/05/2017" Lastuse 20180711 SourceValue "20170507" Date 20170507 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10825 "20170508" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170508" 
+Label "08/05/2017" Lastuse 20180711 SourceValue "20170508" Date 20170508 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10827 "20170509" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170509" 
+Label "09/05/2017" Lastuse 20180711 SourceValue "20170509" Date 20170509 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10829 "20170510" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170510" 
+Label "10/05/2017" Lastuse 20180711 SourceValue "20170510" Date 20170510 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10831 "20170511" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170511" 
+Label "11/05/2017" Lastuse 20180711 SourceValue "20170511" Date 20170511 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10833 "20170512" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170512" 
+Label "12/05/2017" Lastuse 20180711 SourceValue "20170512" Date 20170512 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10835 "20170513" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170513" 
+Label "13/05/2017" Lastuse 20180711 SourceValue "20170513" Date 20170513 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10837 "20170514" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170514" 
+Label "14/05/2017" Lastuse 20180711 SourceValue "20170514" Date 20170514 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10839 "20170515" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170515" 
+Label "15/05/2017" Lastuse 20180711 SourceValue "20170515" Date 20170515 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10841 "20170516" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170516" 
+Label "16/05/2017" Lastuse 20180711 SourceValue "20170516" Date 20170516 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10843 "20170517" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170517" 
+Label "17/05/2017" Lastuse 20180711 SourceValue "20170517" Date 20170517 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10845 "20170518" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170518" 
+Label "18/05/2017" Lastuse 20180711 SourceValue "20170518" Date 20170518 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10847 "20170519" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170519" 
+Label "19/05/2017" Lastuse 20180711 SourceValue "20170519" Date 20170519 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10849 "20170520" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170520" 
+Label "20/05/2017" Lastuse 20180711 SourceValue "20170520" Date 20170520 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10851 "20170521" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170521" 
+Label "21/05/2017" Lastuse 20180711 SourceValue "20170521" Date 20170521 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10853 "20170522" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170522" 
+Label "22/05/2017" Lastuse 20180711 SourceValue "20170522" Date 20170522 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10855 "20170523" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170523" 
+Label "23/05/2017" Lastuse 20180711 SourceValue "20170523" Date 20170523 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10857 "20170524" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170524" 
+Label "24/05/2017" Lastuse 20180711 SourceValue "20170524" Date 20170524 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10859 "20170525" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170525" 
+Label "25/05/2017" Lastuse 20180711 SourceValue "20170525" Date 20170525 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10861 "20170526" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170526" 
+Label "26/05/2017" Lastuse 20180711 SourceValue "20170526" Date 20170526 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10863 "20170527" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170527" 
+Label "27/05/2017" Lastuse 20180711 SourceValue "20170527" Date 20170527 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10865 "20170528" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170528" 
+Label "28/05/2017" Lastuse 20180711 SourceValue "20170528" Date 20170528 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10867 "20170529" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170529" 
+Label "29/05/2017" Lastuse 20180711 SourceValue "20170529" Date 20170529 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10869 "20170530" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170530" 
+Label "30/05/2017" Lastuse 20180711 SourceValue "20170530" Date 20170530 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10871 "20170531" Parent 10809 Levels 1493 OrderBy Drill 1469 Value "20170531" 
+Label "31/05/2017" Lastuse 20180711 SourceValue "20170531" Date 20170531 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 10873 "20170601-20170630" Parent 10745 Levels 1487 OrderBy Drill 1469 
+Value "201706" Label "Juni/2017" Lastuse 20180711 SourceValue "201706" 
+Date 20170601 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 10875 "20170601" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170601" 
+Label "01/06/2017" Lastuse 20180711 SourceValue "20170601" Date 20170601 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10877 "20170602" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170602" 
+Label "02/06/2017" Lastuse 20180711 SourceValue "20170602" Date 20170602 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10879 "20170603" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170603" 
+Label "03/06/2017" Lastuse 20180711 SourceValue "20170603" Date 20170603 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10881 "20170604" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170604" 
+Label "04/06/2017" Lastuse 20180711 SourceValue "20170604" Date 20170604 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10883 "20170605" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170605" 
+Label "05/06/2017" Lastuse 20180711 SourceValue "20170605" Date 20170605 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10885 "20170606" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170606" 
+Label "06/06/2017" Lastuse 20180711 SourceValue "20170606" Date 20170606 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10887 "20170607" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170607" 
+Label "07/06/2017" Lastuse 20180711 SourceValue "20170607" Date 20170607 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10889 "20170608" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170608" 
+Label "08/06/2017" Lastuse 20180711 SourceValue "20170608" Date 20170608 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10891 "20170609" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170609" 
+Label "09/06/2017" Lastuse 20180711 SourceValue "20170609" Date 20170609 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10893 "20170610" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170610" 
+Label "10/06/2017" Lastuse 20180711 SourceValue "20170610" Date 20170610 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10895 "20170611" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170611" 
+Label "11/06/2017" Lastuse 20180711 SourceValue "20170611" Date 20170611 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10897 "20170612" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170612" 
+Label "12/06/2017" Lastuse 20180711 SourceValue "20170612" Date 20170612 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10899 "20170613" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170613" 
+Label "13/06/2017" Lastuse 20180711 SourceValue "20170613" Date 20170613 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10901 "20170614" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170614" 
+Label "14/06/2017" Lastuse 20180711 SourceValue "20170614" Date 20170614 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10903 "20170615" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170615" 
+Label "15/06/2017" Lastuse 20180711 SourceValue "20170615" Date 20170615 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10905 "20170616" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170616" 
+Label "16/06/2017" Lastuse 20180711 SourceValue "20170616" Date 20170616 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10907 "20170617" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170617" 
+Label "17/06/2017" Lastuse 20180711 SourceValue "20170617" Date 20170617 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10909 "20170618" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170618" 
+Label "18/06/2017" Lastuse 20180711 SourceValue "20170618" Date 20170618 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10911 "20170619" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170619" 
+Label "19/06/2017" Lastuse 20180711 SourceValue "20170619" Date 20170619 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10913 "20170620" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170620" 
+Label "20/06/2017" Lastuse 20180711 SourceValue "20170620" Date 20170620 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10915 "20170621" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170621" 
+Label "21/06/2017" Lastuse 20180711 SourceValue "20170621" Date 20170621 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10917 "20170622" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170622" 
+Label "22/06/2017" Lastuse 20180711 SourceValue "20170622" Date 20170622 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10919 "20170623" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170623" 
+Label "23/06/2017" Lastuse 20180711 SourceValue "20170623" Date 20170623 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10921 "20170624" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170624" 
+Label "24/06/2017" Lastuse 20180711 SourceValue "20170624" Date 20170624 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10923 "20170625" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170625" 
+Label "25/06/2017" Lastuse 20180711 SourceValue "20170625" Date 20170625 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10925 "20170626" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170626" 
+Label "26/06/2017" Lastuse 20180711 SourceValue "20170626" Date 20170626 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10927 "20170627" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170627" 
+Label "27/06/2017" Lastuse 20180711 SourceValue "20170627" Date 20170627 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10929 "20170628" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170628" 
+Label "28/06/2017" Lastuse 20180711 SourceValue "20170628" Date 20170628 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10931 "20170629" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170629" 
+Label "29/06/2017" Lastuse 20180711 SourceValue "20170629" Date 20170629 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10933 "20170630" Parent 10873 Levels 1493 OrderBy Drill 1469 Value "20170630" 
+Label "30/06/2017" Lastuse 20180711 SourceValue "20170630" Date 20170630 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+
+Category 10935 "20170701-20170930" Parent 10555 Levels 1481 OrderBy Drill 1469 
+Value "20170701" Label "3. Q. 2017" Lastuse 20180711 SourceValue "20170701" 
+Date 20170701 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 10937 "20170701-20170731" Parent 10935 Levels 1487 OrderBy Drill 1469 
+Value "201707" Label "Juli/2017" Lastuse 20180711 SourceValue "201707" 
+Date 20170701 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 10939 "20170701" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170701" 
+Label "01/07/2017" Lastuse 20180711 SourceValue "20170701" Date 20170701 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10941 "20170702" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170702" 
+Label "02/07/2017" Lastuse 20180711 SourceValue "20170702" Date 20170702 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10943 "20170703" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170703" 
+Label "03/07/2017" Lastuse 20180711 SourceValue "20170703" Date 20170703 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10945 "20170704" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170704" 
+Label "04/07/2017" Lastuse 20180711 SourceValue "20170704" Date 20170704 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10947 "20170705" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170705" 
+Label "05/07/2017" Lastuse 20180711 SourceValue "20170705" Date 20170705 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10949 "20170706" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170706" 
+Label "06/07/2017" Lastuse 20180711 SourceValue "20170706" Date 20170706 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10951 "20170707" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170707" 
+Label "07/07/2017" Lastuse 20180711 SourceValue "20170707" Date 20170707 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10953 "20170708" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170708" 
+Label "08/07/2017" Lastuse 20180711 SourceValue "20170708" Date 20170708 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10955 "20170709" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170709" 
+Label "09/07/2017" Lastuse 20180711 SourceValue "20170709" Date 20170709 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10957 "20170710" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170710" 
+Label "10/07/2017" Lastuse 20180711 SourceValue "20170710" Date 20170710 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10959 "20170711" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170711" 
+Label "11/07/2017" Lastuse 20180711 SourceValue "20170711" Date 20170711 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10961 "20170712" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170712" 
+Label "12/07/2017" Lastuse 20180711 SourceValue "20170712" Date 20170712 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10963 "20170713" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170713" 
+Label "13/07/2017" Lastuse 20180711 SourceValue "20170713" Date 20170713 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10965 "20170714" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170714" 
+Label "14/07/2017" Lastuse 20180711 SourceValue "20170714" Date 20170714 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10967 "20170715" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170715" 
+Label "15/07/2017" Lastuse 20180711 SourceValue "20170715" Date 20170715 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10969 "20170716" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170716" 
+Label "16/07/2017" Lastuse 20180711 SourceValue "20170716" Date 20170716 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10971 "20170717" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170717" 
+Label "17/07/2017" Lastuse 20180711 SourceValue "20170717" Date 20170717 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10973 "20170718" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170718" 
+Label "18/07/2017" Lastuse 20180711 SourceValue "20170718" Date 20170718 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10975 "20170719" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170719" 
+Label "19/07/2017" Lastuse 20180711 SourceValue "20170719" Date 20170719 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10977 "20170720" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170720" 
+Label "20/07/2017" Lastuse 20180711 SourceValue "20170720" Date 20170720 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10979 "20170721" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170721" 
+Label "21/07/2017" Lastuse 20180711 SourceValue "20170721" Date 20170721 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10981 "20170722" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170722" 
+Label "22/07/2017" Lastuse 20180711 SourceValue "20170722" Date 20170722 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10983 "20170723" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170723" 
+Label "23/07/2017" Lastuse 20180711 SourceValue "20170723" Date 20170723 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10985 "20170724" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170724" 
+Label "24/07/2017" Lastuse 20180711 SourceValue "20170724" Date 20170724 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10987 "20170725" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170725" 
+Label "25/07/2017" Lastuse 20180711 SourceValue "20170725" Date 20170725 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10989 "20170726" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170726" 
+Label "26/07/2017" Lastuse 20180711 SourceValue "20170726" Date 20170726 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10991 "20170727" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170727" 
+Label "27/07/2017" Lastuse 20180711 SourceValue "20170727" Date 20170727 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10993 "20170728" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170728" 
+Label "28/07/2017" Lastuse 20180711 SourceValue "20170728" Date 20170728 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10995 "20170729" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170729" 
+Label "29/07/2017" Lastuse 20180711 SourceValue "20170729" Date 20170729 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10997 "20170730" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170730" 
+Label "30/07/2017" Lastuse 20180711 SourceValue "20170730" Date 20170730 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 10999 "20170731" Parent 10937 Levels 1493 OrderBy Drill 1469 Value "20170731" 
+Label "31/07/2017" Lastuse 20180711 SourceValue "20170731" Date 20170731 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 11001 "20170801-20170831" Parent 10935 Levels 1487 OrderBy Drill 1469 
+Value "201708" Label "Aug./2017" Lastuse 20180711 SourceValue "201708" 
+Date 20170801 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11003 "20170801" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170801" 
+Label "01/08/2017" Lastuse 20180711 SourceValue "20170801" Date 20170801 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11005 "20170802" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170802" 
+Label "02/08/2017" Lastuse 20180711 SourceValue "20170802" Date 20170802 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11007 "20170803" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170803" 
+Label "03/08/2017" Lastuse 20180711 SourceValue "20170803" Date 20170803 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11009 "20170804" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170804" 
+Label "04/08/2017" Lastuse 20180711 SourceValue "20170804" Date 20170804 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11011 "20170805" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170805" 
+Label "05/08/2017" Lastuse 20180711 SourceValue "20170805" Date 20170805 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11013 "20170806" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170806" 
+Label "06/08/2017" Lastuse 20180711 SourceValue "20170806" Date 20170806 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11015 "20170807" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170807" 
+Label "07/08/2017" Lastuse 20180711 SourceValue "20170807" Date 20170807 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11017 "20170808" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170808" 
+Label "08/08/2017" Lastuse 20180711 SourceValue "20170808" Date 20170808 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11019 "20170809" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170809" 
+Label "09/08/2017" Lastuse 20180711 SourceValue "20170809" Date 20170809 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11021 "20170810" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170810" 
+Label "10/08/2017" Lastuse 20180711 SourceValue "20170810" Date 20170810 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11023 "20170811" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170811" 
+Label "11/08/2017" Lastuse 20180711 SourceValue "20170811" Date 20170811 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11025 "20170812" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170812" 
+Label "12/08/2017" Lastuse 20180711 SourceValue "20170812" Date 20170812 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11027 "20170813" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170813" 
+Label "13/08/2017" Lastuse 20180711 SourceValue "20170813" Date 20170813 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11029 "20170814" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170814" 
+Label "14/08/2017" Lastuse 20180711 SourceValue "20170814" Date 20170814 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11031 "20170815" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170815" 
+Label "15/08/2017" Lastuse 20180711 SourceValue "20170815" Date 20170815 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11033 "20170816" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170816" 
+Label "16/08/2017" Lastuse 20180711 SourceValue "20170816" Date 20170816 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11035 "20170817" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170817" 
+Label "17/08/2017" Lastuse 20180711 SourceValue "20170817" Date 20170817 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11037 "20170818" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170818" 
+Label "18/08/2017" Lastuse 20180711 SourceValue "20170818" Date 20170818 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11039 "20170819" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170819" 
+Label "19/08/2017" Lastuse 20180711 SourceValue "20170819" Date 20170819 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11041 "20170820" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170820" 
+Label "20/08/2017" Lastuse 20180711 SourceValue "20170820" Date 20170820 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11043 "20170821" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170821" 
+Label "21/08/2017" Lastuse 20180711 SourceValue "20170821" Date 20170821 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11045 "20170822" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170822" 
+Label "22/08/2017" Lastuse 20180711 SourceValue "20170822" Date 20170822 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11047 "20170823" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170823" 
+Label "23/08/2017" Lastuse 20180711 SourceValue "20170823" Date 20170823 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11049 "20170824" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170824" 
+Label "24/08/2017" Lastuse 20180711 SourceValue "20170824" Date 20170824 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11051 "20170825" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170825" 
+Label "25/08/2017" Lastuse 20180711 SourceValue "20170825" Date 20170825 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11053 "20170826" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170826" 
+Label "26/08/2017" Lastuse 20180711 SourceValue "20170826" Date 20170826 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11055 "20170827" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170827" 
+Label "27/08/2017" Lastuse 20180711 SourceValue "20170827" Date 20170827 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11057 "20170828" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170828" 
+Label "28/08/2017" Lastuse 20180711 SourceValue "20170828" Date 20170828 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11059 "20170829" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170829" 
+Label "29/08/2017" Lastuse 20180711 SourceValue "20170829" Date 20170829 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11061 "20170830" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170830" 
+Label "30/08/2017" Lastuse 20180711 SourceValue "20170830" Date 20170830 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11063 "20170831" Parent 11001 Levels 1493 OrderBy Drill 1469 Value "20170831" 
+Label "31/08/2017" Lastuse 20180711 SourceValue "20170831" Date 20170831 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 11065 "20170901-20170930" Parent 10935 Levels 1487 OrderBy Drill 1469 
+Value "201709" Label "Sept./2017" Lastuse 20180711 SourceValue "201709" 
+Date 20170901 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11067 "20170901" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170901" 
+Label "01/09/2017" Lastuse 20180711 SourceValue "20170901" Date 20170901 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11069 "20170902" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170902" 
+Label "02/09/2017" Lastuse 20180711 SourceValue "20170902" Date 20170902 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11071 "20170903" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170903" 
+Label "03/09/2017" Lastuse 20180711 SourceValue "20170903" Date 20170903 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11073 "20170904" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170904" 
+Label "04/09/2017" Lastuse 20180711 SourceValue "20170904" Date 20170904 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11075 "20170905" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170905" 
+Label "05/09/2017" Lastuse 20180711 SourceValue "20170905" Date 20170905 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11077 "20170906" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170906" 
+Label "06/09/2017" Lastuse 20180711 SourceValue "20170906" Date 20170906 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11079 "20170907" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170907" 
+Label "07/09/2017" Lastuse 20180711 SourceValue "20170907" Date 20170907 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11081 "20170908" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170908" 
+Label "08/09/2017" Lastuse 20180711 SourceValue "20170908" Date 20170908 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11083 "20170909" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170909" 
+Label "09/09/2017" Lastuse 20180711 SourceValue "20170909" Date 20170909 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11085 "20170910" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170910" 
+Label "10/09/2017" Lastuse 20180711 SourceValue "20170910" Date 20170910 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11087 "20170911" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170911" 
+Label "11/09/2017" Lastuse 20180711 SourceValue "20170911" Date 20170911 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11089 "20170912" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170912" 
+Label "12/09/2017" Lastuse 20180711 SourceValue "20170912" Date 20170912 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11091 "20170913" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170913" 
+Label "13/09/2017" Lastuse 20180711 SourceValue "20170913" Date 20170913 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11093 "20170914" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170914" 
+Label "14/09/2017" Lastuse 20180711 SourceValue "20170914" Date 20170914 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11095 "20170915" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170915" 
+Label "15/09/2017" Lastuse 20180711 SourceValue "20170915" Date 20170915 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11097 "20170916" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170916" 
+Label "16/09/2017" Lastuse 20180711 SourceValue "20170916" Date 20170916 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11099 "20170917" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170917" 
+Label "17/09/2017" Lastuse 20180711 SourceValue "20170917" Date 20170917 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11101 "20170918" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170918" 
+Label "18/09/2017" Lastuse 20180711 SourceValue "20170918" Date 20170918 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11103 "20170919" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170919" 
+Label "19/09/2017" Lastuse 20180711 SourceValue "20170919" Date 20170919 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11105 "20170920" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170920" 
+Label "20/09/2017" Lastuse 20180711 SourceValue "20170920" Date 20170920 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11107 "20170921" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170921" 
+Label "21/09/2017" Lastuse 20180711 SourceValue "20170921" Date 20170921 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11109 "20170922" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170922" 
+Label "22/09/2017" Lastuse 20180711 SourceValue "20170922" Date 20170922 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11111 "20170923" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170923" 
+Label "23/09/2017" Lastuse 20180711 SourceValue "20170923" Date 20170923 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11113 "20170924" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170924" 
+Label "24/09/2017" Lastuse 20180711 SourceValue "20170924" Date 20170924 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11115 "20170925" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170925" 
+Label "25/09/2017" Lastuse 20180711 SourceValue "20170925" Date 20170925 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11117 "20170926" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170926" 
+Label "26/09/2017" Lastuse 20180711 SourceValue "20170926" Date 20170926 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11119 "20170927" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170927" 
+Label "27/09/2017" Lastuse 20180711 SourceValue "20170927" Date 20170927 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11121 "20170928" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170928" 
+Label "28/09/2017" Lastuse 20180711 SourceValue "20170928" Date 20170928 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11123 "20170929" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170929" 
+Label "29/09/2017" Lastuse 20180711 SourceValue "20170929" Date 20170929 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11125 "20170930" Parent 11065 Levels 1493 OrderBy Drill 1469 Value "20170930" 
+Label "30/09/2017" Lastuse 20180711 SourceValue "20170930" Date 20170930 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+
+Category 11127 "20171001-20171231" Parent 10555 Levels 1481 OrderBy Drill 1469 
+Value "20171001" Label "4. Q. 2017" Lastuse 20180820 SourceValue "20171001" 
+Date 20171001 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11129 "20171001-20171031" Parent 11127 Levels 1487 OrderBy Drill 1469 
+Value "201710" Label "Okt./2017" Lastuse 20180711 SourceValue "201710" 
+Date 20171001 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11131 "20171001" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171001" 
+Label "01/10/2017" Lastuse 20180711 SourceValue "20171001" Date 20171001 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11133 "20171002" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171002" 
+Label "02/10/2017" Lastuse 20180711 SourceValue "20171002" Date 20171002 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11135 "20171003" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171003" 
+Label "03/10/2017" Lastuse 20180711 SourceValue "20171003" Date 20171003 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11137 "20171004" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171004" 
+Label "04/10/2017" Lastuse 20180711 SourceValue "20171004" Date 20171004 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11139 "20171005" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171005" 
+Label "05/10/2017" Lastuse 20180711 SourceValue "20171005" Date 20171005 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11141 "20171006" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171006" 
+Label "06/10/2017" Lastuse 20180711 SourceValue "20171006" Date 20171006 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11143 "20171007" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171007" 
+Label "07/10/2017" Lastuse 20180711 SourceValue "20171007" Date 20171007 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11145 "20171008" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171008" 
+Label "08/10/2017" Lastuse 20180711 SourceValue "20171008" Date 20171008 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11147 "20171009" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171009" 
+Label "09/10/2017" Lastuse 20180711 SourceValue "20171009" Date 20171009 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11149 "20171010" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171010" 
+Label "10/10/2017" Lastuse 20180711 SourceValue "20171010" Date 20171010 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11151 "20171011" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171011" 
+Label "11/10/2017" Lastuse 20180711 SourceValue "20171011" Date 20171011 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11153 "20171012" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171012" 
+Label "12/10/2017" Lastuse 20180711 SourceValue "20171012" Date 20171012 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11155 "20171013" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171013" 
+Label "13/10/2017" Lastuse 20180711 SourceValue "20171013" Date 20171013 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11157 "20171014" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171014" 
+Label "14/10/2017" Lastuse 20180711 SourceValue "20171014" Date 20171014 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11159 "20171015" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171015" 
+Label "15/10/2017" Lastuse 20180711 SourceValue "20171015" Date 20171015 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11161 "20171016" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171016" 
+Label "16/10/2017" Lastuse 20180711 SourceValue "20171016" Date 20171016 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11163 "20171017" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171017" 
+Label "17/10/2017" Lastuse 20180711 SourceValue "20171017" Date 20171017 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11165 "20171018" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171018" 
+Label "18/10/2017" Lastuse 20180711 SourceValue "20171018" Date 20171018 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11167 "20171019" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171019" 
+Label "19/10/2017" Lastuse 20180711 SourceValue "20171019" Date 20171019 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11169 "20171020" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171020" 
+Label "20/10/2017" Lastuse 20180711 SourceValue "20171020" Date 20171020 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11171 "20171021" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171021" 
+Label "21/10/2017" Lastuse 20180711 SourceValue "20171021" Date 20171021 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11173 "20171022" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171022" 
+Label "22/10/2017" Lastuse 20180711 SourceValue "20171022" Date 20171022 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11175 "20171023" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171023" 
+Label "23/10/2017" Lastuse 20180711 SourceValue "20171023" Date 20171023 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11177 "20171024" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171024" 
+Label "24/10/2017" Lastuse 20180711 SourceValue "20171024" Date 20171024 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11179 "20171025" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171025" 
+Label "25/10/2017" Lastuse 20180711 SourceValue "20171025" Date 20171025 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11181 "20171026" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171026" 
+Label "26/10/2017" Lastuse 20180711 SourceValue "20171026" Date 20171026 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11183 "20171027" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171027" 
+Label "27/10/2017" Lastuse 20180711 SourceValue "20171027" Date 20171027 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11185 "20171028" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171028" 
+Label "28/10/2017" Lastuse 20180711 SourceValue "20171028" Date 20171028 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11187 "20171029" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171029" 
+Label "29/10/2017" Lastuse 20180711 SourceValue "20171029" Date 20171029 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11189 "20171030" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171030" 
+Label "30/10/2017" Lastuse 20180711 SourceValue "20171030" Date 20171030 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11191 "20171031" Parent 11129 Levels 1493 OrderBy Drill 1469 Value "20171031" 
+Label "31/10/2017" Lastuse 20180711 SourceValue "20171031" Date 20171031 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 11193 "20171101-20171130" Parent 11127 Levels 1487 OrderBy Drill 1469 
+Value "201711" Label "Nov./2017" Lastuse 20180820 SourceValue "201711" 
+Date 20171101 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11195 "20171101" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171101" 
+Label "01/11/2017" Lastuse 20180711 SourceValue "20171101" Date 20171101 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11197 "20171102" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171102" 
+Label "02/11/2017" Lastuse 20180711 SourceValue "20171102" Date 20171102 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11199 "20171103" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171103" 
+Label "03/11/2017" Lastuse 20180711 SourceValue "20171103" Date 20171103 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11201 "20171104" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171104" 
+Label "04/11/2017" Lastuse 20180711 SourceValue "20171104" Date 20171104 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11203 "20171105" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171105" 
+Label "05/11/2017" Lastuse 20180711 SourceValue "20171105" Date 20171105 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11205 "20171106" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171106" 
+Label "06/11/2017" Lastuse 20180711 SourceValue "20171106" Date 20171106 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11207 "20171107" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171107" 
+Label "07/11/2017" Lastuse 20180711 SourceValue "20171107" Date 20171107 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11209 "20171108" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171108" 
+Label "08/11/2017" Lastuse 20180711 SourceValue "20171108" Date 20171108 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11211 "20171109" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171109" 
+Label "09/11/2017" Lastuse 20180711 SourceValue "20171109" Date 20171109 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11213 "20171110" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171110" 
+Label "10/11/2017" Lastuse 20180711 SourceValue "20171110" Date 20171110 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11215 "20171111" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171111" 
+Label "11/11/2017" Lastuse 20180711 SourceValue "20171111" Date 20171111 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11217 "20171112" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171112" 
+Label "12/11/2017" Lastuse 20180711 SourceValue "20171112" Date 20171112 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11219 "20171113" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171113" 
+Label "13/11/2017" Lastuse 20180711 SourceValue "20171113" Date 20171113 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11221 "20171114" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171114" 
+Label "14/11/2017" Lastuse 20180711 SourceValue "20171114" Date 20171114 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11223 "20171115" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171115" 
+Label "15/11/2017" Lastuse 20180711 SourceValue "20171115" Date 20171115 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11225 "20171116" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171116" 
+Label "16/11/2017" Lastuse 20180711 SourceValue "20171116" Date 20171116 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11227 "20171117" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171117" 
+Label "17/11/2017" Lastuse 20180711 SourceValue "20171117" Date 20171117 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11229 "20171118" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171118" 
+Label "18/11/2017" Lastuse 20180711 SourceValue "20171118" Date 20171118 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11231 "20171119" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171119" 
+Label "19/11/2017" Lastuse 20180711 SourceValue "20171119" Date 20171119 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11233 "20171120" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171120" 
+Label "20/11/2017" Lastuse 20180820 SourceValue "20171120" Date 20171120 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11235 "20171121" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171121" 
+Label "21/11/2017" Lastuse 20180711 SourceValue "20171121" Date 20171121 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11237 "20171122" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171122" 
+Label "22/11/2017" Lastuse 20180711 SourceValue "20171122" Date 20171122 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11239 "20171123" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171123" 
+Label "23/11/2017" Lastuse 20180711 SourceValue "20171123" Date 20171123 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11241 "20171124" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171124" 
+Label "24/11/2017" Lastuse 20180711 SourceValue "20171124" Date 20171124 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11243 "20171125" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171125" 
+Label "25/11/2017" Lastuse 20180711 SourceValue "20171125" Date 20171125 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11245 "20171126" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171126" 
+Label "26/11/2017" Lastuse 20180711 SourceValue "20171126" Date 20171126 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11247 "20171127" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171127" 
+Label "27/11/2017" Lastuse 20180711 SourceValue "20171127" Date 20171127 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11249 "20171128" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171128" 
+Label "28/11/2017" Lastuse 20180711 SourceValue "20171128" Date 20171128 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11251 "20171129" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171129" 
+Label "29/11/2017" Lastuse 20180711 SourceValue "20171129" Date 20171129 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11253 "20171130" Parent 11193 Levels 1493 OrderBy Drill 1469 Value "20171130" 
+Label "30/11/2017" Lastuse 20180711 SourceValue "20171130" Date 20171130 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 11255 "20171201-20171231" Parent 11127 Levels 1487 OrderBy Drill 1469 
+Value "201712" Label "Dez./2017" Lastuse 20180711 SourceValue "201712" 
+Date 20171201 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11257 "20171201" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171201" 
+Label "01/12/2017" Lastuse 20180711 SourceValue "20171201" Date 20171201 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11259 "20171202" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171202" 
+Label "02/12/2017" Lastuse 20180711 SourceValue "20171202" Date 20171202 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11261 "20171203" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171203" 
+Label "03/12/2017" Lastuse 20180711 SourceValue "20171203" Date 20171203 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11263 "20171204" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171204" 
+Label "04/12/2017" Lastuse 20180711 SourceValue "20171204" Date 20171204 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11265 "20171205" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171205" 
+Label "05/12/2017" Lastuse 20180711 SourceValue "20171205" Date 20171205 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11267 "20171206" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171206" 
+Label "06/12/2017" Lastuse 20180711 SourceValue "20171206" Date 20171206 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11269 "20171207" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171207" 
+Label "07/12/2017" Lastuse 20180711 SourceValue "20171207" Date 20171207 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11271 "20171208" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171208" 
+Label "08/12/2017" Lastuse 20180711 SourceValue "20171208" Date 20171208 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11273 "20171209" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171209" 
+Label "09/12/2017" Lastuse 20180711 SourceValue "20171209" Date 20171209 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11275 "20171210" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171210" 
+Label "10/12/2017" Lastuse 20180711 SourceValue "20171210" Date 20171210 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11277 "20171211" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171211" 
+Label "11/12/2017" Lastuse 20180711 SourceValue "20171211" Date 20171211 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11279 "20171212" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171212" 
+Label "12/12/2017" Lastuse 20180711 SourceValue "20171212" Date 20171212 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11281 "20171213" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171213" 
+Label "13/12/2017" Lastuse 20180711 SourceValue "20171213" Date 20171213 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11283 "20171214" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171214" 
+Label "14/12/2017" Lastuse 20180711 SourceValue "20171214" Date 20171214 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11285 "20171215" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171215" 
+Label "15/12/2017" Lastuse 20180711 SourceValue "20171215" Date 20171215 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11287 "20171216" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171216" 
+Label "16/12/2017" Lastuse 20180711 SourceValue "20171216" Date 20171216 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11289 "20171217" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171217" 
+Label "17/12/2017" Lastuse 20180711 SourceValue "20171217" Date 20171217 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11291 "20171218" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171218" 
+Label "18/12/2017" Lastuse 20180711 SourceValue "20171218" Date 20171218 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11293 "20171219" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171219" 
+Label "19/12/2017" Lastuse 20180711 SourceValue "20171219" Date 20171219 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11295 "20171220" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171220" 
+Label "20/12/2017" Lastuse 20180711 SourceValue "20171220" Date 20171220 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11297 "20171221" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171221" 
+Label "21/12/2017" Lastuse 20180711 SourceValue "20171221" Date 20171221 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11299 "20171222" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171222" 
+Label "22/12/2017" Lastuse 20180711 SourceValue "20171222" Date 20171222 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11301 "20171223" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171223" 
+Label "23/12/2017" Lastuse 20180711 SourceValue "20171223" Date 20171223 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11303 "20171224" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171224" 
+Label "24/12/2017" Lastuse 20180711 SourceValue "20171224" Date 20171224 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11305 "20171225" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171225" 
+Label "25/12/2017" Lastuse 20180711 SourceValue "20171225" Date 20171225 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11307 "20171226" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171226" 
+Label "26/12/2017" Lastuse 20180711 SourceValue "20171226" Date 20171226 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11309 "20171227" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171227" 
+Label "27/12/2017" Lastuse 20180711 SourceValue "20171227" Date 20171227 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11311 "20171228" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171228" 
+Label "28/12/2017" Lastuse 20180711 SourceValue "20171228" Date 20171228 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11313 "20171229" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171229" 
+Label "29/12/2017" Lastuse 20180711 SourceValue "20171229" Date 20171229 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11315 "20171230" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171230" 
+Label "30/12/2017" Lastuse 20180711 SourceValue "20171230" Date 20171230 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11317 "20171231" Parent 11255 Levels 1493 OrderBy Drill 1469 Value "20171231" 
+Label "31/12/2017" Lastuse 20180711 SourceValue "20171231" Date 20171231 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+
+
+Category 11353 "20180101-20181231" Parent 1469 Levels 1475 OrderBy Drill 1469 
+Value "2018" Label "2018" Lastuse 20180820 SourceValue "2018" Date 20180101 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+Category 11355 "20180101-20180331" Parent 11353 Levels 1481 OrderBy Drill 1469 
+Value "20180101" Label "1. Q. 2018" Lastuse 20180820 SourceValue "20180101" 
+Date 20180101 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11357 "20180101-20180131" Parent 11355 Levels 1487 OrderBy Drill 1469 
+Value "201801" Label "Jan./2018" Lastuse 20180711 SourceValue "201801" 
+Date 20180101 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11359 "20180101" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180101" 
+Label "01/01/2018" Lastuse 20180711 SourceValue "20180101" Date 20180101 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11361 "20180102" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180102" 
+Label "02/01/2018" Lastuse 20180711 SourceValue "20180102" Date 20180102 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11363 "20180103" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180103" 
+Label "03/01/2018" Lastuse 20180711 SourceValue "20180103" Date 20180103 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11365 "20180104" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180104" 
+Label "04/01/2018" Lastuse 20180711 SourceValue "20180104" Date 20180104 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11367 "20180105" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180105" 
+Label "05/01/2018" Lastuse 20180711 SourceValue "20180105" Date 20180105 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11369 "20180106" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180106" 
+Label "06/01/2018" Lastuse 20180711 SourceValue "20180106" Date 20180106 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11371 "20180107" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180107" 
+Label "07/01/2018" Lastuse 20180711 SourceValue "20180107" Date 20180107 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11373 "20180108" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180108" 
+Label "08/01/2018" Lastuse 20180711 SourceValue "20180108" Date 20180108 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11375 "20180109" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180109" 
+Label "09/01/2018" Lastuse 20180711 SourceValue "20180109" Date 20180109 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11377 "20180110" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180110" 
+Label "10/01/2018" Lastuse 20180711 SourceValue "20180110" Date 20180110 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11379 "20180111" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180111" 
+Label "11/01/2018" Lastuse 20180711 SourceValue "20180111" Date 20180111 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11381 "20180112" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180112" 
+Label "12/01/2018" Lastuse 20180711 SourceValue "20180112" Date 20180112 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11383 "20180113" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180113" 
+Label "13/01/2018" Lastuse 20180711 SourceValue "20180113" Date 20180113 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11385 "20180114" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180114" 
+Label "14/01/2018" Lastuse 20180711 SourceValue "20180114" Date 20180114 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11387 "20180115" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180115" 
+Label "15/01/2018" Lastuse 20180711 SourceValue "20180115" Date 20180115 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11389 "20180116" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180116" 
+Label "16/01/2018" Lastuse 20180711 SourceValue "20180116" Date 20180116 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11391 "20180117" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180117" 
+Label "17/01/2018" Lastuse 20180711 SourceValue "20180117" Date 20180117 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11393 "20180118" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180118" 
+Label "18/01/2018" Lastuse 20180711 SourceValue "20180118" Date 20180118 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11395 "20180119" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180119" 
+Label "19/01/2018" Lastuse 20180711 SourceValue "20180119" Date 20180119 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11397 "20180120" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180120" 
+Label "20/01/2018" Lastuse 20180711 SourceValue "20180120" Date 20180120 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11399 "20180121" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180121" 
+Label "21/01/2018" Lastuse 20180711 SourceValue "20180121" Date 20180121 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11401 "20180122" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180122" 
+Label "22/01/2018" Lastuse 20180711 SourceValue "20180122" Date 20180122 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11403 "20180123" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180123" 
+Label "23/01/2018" Lastuse 20180711 SourceValue "20180123" Date 20180123 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11405 "20180124" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180124" 
+Label "24/01/2018" Lastuse 20180711 SourceValue "20180124" Date 20180124 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11407 "20180125" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180125" 
+Label "25/01/2018" Lastuse 20180711 SourceValue "20180125" Date 20180125 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11409 "20180126" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180126" 
+Label "26/01/2018" Lastuse 20180711 SourceValue "20180126" Date 20180126 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11411 "20180127" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180127" 
+Label "27/01/2018" Lastuse 20180711 SourceValue "20180127" Date 20180127 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11413 "20180128" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180128" 
+Label "28/01/2018" Lastuse 20180711 SourceValue "20180128" Date 20180128 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11415 "20180129" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180129" 
+Label "29/01/2018" Lastuse 20180711 SourceValue "20180129" Date 20180129 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11417 "20180130" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180130" 
+Label "30/01/2018" Lastuse 20180711 SourceValue "20180130" Date 20180130 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11419 "20180131" Parent 11357 Levels 1493 OrderBy Drill 1469 Value "20180131" 
+Label "31/01/2018" Lastuse 20180711 SourceValue "20180131" Date 20180131 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 11421 "20180201-20180228" Parent 11355 Levels 1487 OrderBy Drill 1469 
+Value "201802" Label "Feb./2018" Lastuse 20180820 SourceValue "201802" 
+Date 20180201 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11423 "20180201" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180201" 
+Label "01/02/2018" Lastuse 20180711 SourceValue "20180201" Date 20180201 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11425 "20180202" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180202" 
+Label "02/02/2018" Lastuse 20180711 SourceValue "20180202" Date 20180202 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11427 "20180203" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180203" 
+Label "03/02/2018" Lastuse 20180711 SourceValue "20180203" Date 20180203 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11429 "20180204" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180204" 
+Label "04/02/2018" Lastuse 20180711 SourceValue "20180204" Date 20180204 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11431 "20180205" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180205" 
+Label "05/02/2018" Lastuse 20180711 SourceValue "20180205" Date 20180205 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11433 "20180206" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180206" 
+Label "06/02/2018" Lastuse 20180711 SourceValue "20180206" Date 20180206 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11435 "20180207" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180207" 
+Label "07/02/2018" Lastuse 20180711 SourceValue "20180207" Date 20180207 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11437 "20180208" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180208" 
+Label "08/02/2018" Lastuse 20180711 SourceValue "20180208" Date 20180208 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11439 "20180209" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180209" 
+Label "09/02/2018" Lastuse 20180711 SourceValue "20180209" Date 20180209 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11441 "20180210" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180210" 
+Label "10/02/2018" Lastuse 20180711 SourceValue "20180210" Date 20180210 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11443 "20180211" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180211" 
+Label "11/02/2018" Lastuse 20180711 SourceValue "20180211" Date 20180211 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11445 "20180212" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180212" 
+Label "12/02/2018" Lastuse 20180711 SourceValue "20180212" Date 20180212 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11447 "20180213" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180213" 
+Label "13/02/2018" Lastuse 20180711 SourceValue "20180213" Date 20180213 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11449 "20180214" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180214" 
+Label "14/02/2018" Lastuse 20180711 SourceValue "20180214" Date 20180214 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11451 "20180215" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180215" 
+Label "15/02/2018" Lastuse 20180711 SourceValue "20180215" Date 20180215 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11453 "20180216" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180216" 
+Label "16/02/2018" Lastuse 20180711 SourceValue "20180216" Date 20180216 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11455 "20180217" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180217" 
+Label "17/02/2018" Lastuse 20180711 SourceValue "20180217" Date 20180217 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11457 "20180218" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180218" 
+Label "18/02/2018" Lastuse 20180711 SourceValue "20180218" Date 20180218 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11459 "20180219" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180219" 
+Label "19/02/2018" Lastuse 20180711 SourceValue "20180219" Date 20180219 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11461 "20180220" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180220" 
+Label "20/02/2018" Lastuse 20180711 SourceValue "20180220" Date 20180220 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11463 "20180221" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180221" 
+Label "21/02/2018" Lastuse 20180820 SourceValue "20180221" Date 20180221 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11465 "20180222" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180222" 
+Label "22/02/2018" Lastuse 20180711 SourceValue "20180222" Date 20180222 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11467 "20180223" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180223" 
+Label "23/02/2018" Lastuse 20180711 SourceValue "20180223" Date 20180223 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11469 "20180224" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180224" 
+Label "24/02/2018" Lastuse 20180711 SourceValue "20180224" Date 20180224 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11471 "20180225" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180225" 
+Label "25/02/2018" Lastuse 20180711 SourceValue "20180225" Date 20180225 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11473 "20180226" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180226" 
+Label "26/02/2018" Lastuse 20180711 SourceValue "20180226" Date 20180226 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11475 "20180227" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180227" 
+Label "27/02/2018" Lastuse 20180711 SourceValue "20180227" Date 20180227 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11477 "20180228" Parent 11421 Levels 1493 OrderBy Drill 1469 Value "20180228" 
+Label "28/02/2018" Lastuse 20180711 SourceValue "20180228" Date 20180228 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 11479 "20180301-20180331" Parent 11355 Levels 1487 OrderBy Drill 1469 
+Value "201803" Label "März/2018" Lastuse 20180820 SourceValue "201803" 
+Date 20180301 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11481 "20180301" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180301" 
+Label "01/03/2018" Lastuse 20180711 SourceValue "20180301" Date 20180301 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11483 "20180302" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180302" 
+Label "02/03/2018" Lastuse 20180711 SourceValue "20180302" Date 20180302 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11485 "20180303" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180303" 
+Label "03/03/2018" Lastuse 20180711 SourceValue "20180303" Date 20180303 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11487 "20180304" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180304" 
+Label "04/03/2018" Lastuse 20180711 SourceValue "20180304" Date 20180304 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11489 "20180305" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180305" 
+Label "05/03/2018" Lastuse 20180711 SourceValue "20180305" Date 20180305 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11491 "20180306" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180306" 
+Label "06/03/2018" Lastuse 20180711 SourceValue "20180306" Date 20180306 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11493 "20180307" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180307" 
+Label "07/03/2018" Lastuse 20180711 SourceValue "20180307" Date 20180307 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11495 "20180308" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180308" 
+Label "08/03/2018" Lastuse 20180820 SourceValue "20180308" Date 20180308 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11497 "20180309" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180309" 
+Label "09/03/2018" Lastuse 20180711 SourceValue "20180309" Date 20180309 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11499 "20180310" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180310" 
+Label "10/03/2018" Lastuse 20180711 SourceValue "20180310" Date 20180310 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11501 "20180311" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180311" 
+Label "11/03/2018" Lastuse 20180711 SourceValue "20180311" Date 20180311 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11503 "20180312" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180312" 
+Label "12/03/2018" Lastuse 20180711 SourceValue "20180312" Date 20180312 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11505 "20180313" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180313" 
+Label "13/03/2018" Lastuse 20180711 SourceValue "20180313" Date 20180313 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11507 "20180314" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180314" 
+Label "14/03/2018" Lastuse 20180711 SourceValue "20180314" Date 20180314 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11509 "20180315" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180315" 
+Label "15/03/2018" Lastuse 20180711 SourceValue "20180315" Date 20180315 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11511 "20180316" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180316" 
+Label "16/03/2018" Lastuse 20180711 SourceValue "20180316" Date 20180316 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11513 "20180317" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180317" 
+Label "17/03/2018" Lastuse 20180711 SourceValue "20180317" Date 20180317 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11515 "20180318" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180318" 
+Label "18/03/2018" Lastuse 20180711 SourceValue "20180318" Date 20180318 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11517 "20180319" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180319" 
+Label "19/03/2018" Lastuse 20180711 SourceValue "20180319" Date 20180319 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11519 "20180320" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180320" 
+Label "20/03/2018" Lastuse 20180711 SourceValue "20180320" Date 20180320 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11521 "20180321" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180321" 
+Label "21/03/2018" Lastuse 20180711 SourceValue "20180321" Date 20180321 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11523 "20180322" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180322" 
+Label "22/03/2018" Lastuse 20180711 SourceValue "20180322" Date 20180322 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11525 "20180323" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180323" 
+Label "23/03/2018" Lastuse 20180711 SourceValue "20180323" Date 20180323 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11527 "20180324" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180324" 
+Label "24/03/2018" Lastuse 20180711 SourceValue "20180324" Date 20180324 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11529 "20180325" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180325" 
+Label "25/03/2018" Lastuse 20180711 SourceValue "20180325" Date 20180325 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11531 "20180326" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180326" 
+Label "26/03/2018" Lastuse 20180711 SourceValue "20180326" Date 20180326 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11533 "20180327" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180327" 
+Label "27/03/2018" Lastuse 20180711 SourceValue "20180327" Date 20180327 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11535 "20180328" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180328" 
+Label "28/03/2018" Lastuse 20180711 SourceValue "20180328" Date 20180328 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11537 "20180329" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180329" 
+Label "29/03/2018" Lastuse 20180711 SourceValue "20180329" Date 20180329 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11539 "20180330" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180330" 
+Label "30/03/2018" Lastuse 20180711 SourceValue "20180330" Date 20180330 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11541 "20180331" Parent 11479 Levels 1493 OrderBy Drill 1469 Value "20180331" 
+Label "31/03/2018" Lastuse 20180711 SourceValue "20180331" Date 20180331 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+
+Category 11543 "20180401-20180630" Parent 11353 Levels 1481 OrderBy Drill 1469 
+Value "20180401" Label "2. Q. 2018" Lastuse 20180820 SourceValue "20180401" 
+Date 20180401 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11545 "20180401-20180430" Parent 11543 Levels 1487 OrderBy Drill 1469 
+Value "201804" Label "Apr./2018" Lastuse 20180820 SourceValue "201804" 
+Date 20180401 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11547 "20180401" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180401" 
+Label "01/04/2018" Lastuse 20180711 SourceValue "20180401" Date 20180401 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11549 "20180402" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180402" 
+Label "02/04/2018" Lastuse 20180711 SourceValue "20180402" Date 20180402 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11551 "20180403" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180403" 
+Label "03/04/2018" Lastuse 20180820 SourceValue "20180403" Date 20180403 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11553 "20180404" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180404" 
+Label "04/04/2018" Lastuse 20180711 SourceValue "20180404" Date 20180404 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11555 "20180405" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180405" 
+Label "05/04/2018" Lastuse 20180711 SourceValue "20180405" Date 20180405 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11557 "20180406" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180406" 
+Label "06/04/2018" Lastuse 20180711 SourceValue "20180406" Date 20180406 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11559 "20180407" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180407" 
+Label "07/04/2018" Lastuse 20180711 SourceValue "20180407" Date 20180407 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11561 "20180408" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180408" 
+Label "08/04/2018" Lastuse 20180711 SourceValue "20180408" Date 20180408 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11563 "20180409" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180409" 
+Label "09/04/2018" Lastuse 20180820 SourceValue "20180409" Date 20180409 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11565 "20180410" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180410" 
+Label "10/04/2018" Lastuse 20180711 SourceValue "20180410" Date 20180410 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11567 "20180411" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180411" 
+Label "11/04/2018" Lastuse 20180711 SourceValue "20180411" Date 20180411 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11569 "20180412" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180412" 
+Label "12/04/2018" Lastuse 20180711 SourceValue "20180412" Date 20180412 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11571 "20180413" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180413" 
+Label "13/04/2018" Lastuse 20180711 SourceValue "20180413" Date 20180413 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11573 "20180414" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180414" 
+Label "14/04/2018" Lastuse 20180820 SourceValue "20180414" Date 20180414 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11575 "20180415" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180415" 
+Label "15/04/2018" Lastuse 20180711 SourceValue "20180415" Date 20180415 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11577 "20180416" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180416" 
+Label "16/04/2018" Lastuse 20180820 SourceValue "20180416" Date 20180416 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11579 "20180417" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180417" 
+Label "17/04/2018" Lastuse 20180711 SourceValue "20180417" Date 20180417 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11581 "20180418" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180418" 
+Label "18/04/2018" Lastuse 20180711 SourceValue "20180418" Date 20180418 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11583 "20180419" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180419" 
+Label "19/04/2018" Lastuse 20180711 SourceValue "20180419" Date 20180419 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11585 "20180420" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180420" 
+Label "20/04/2018" Lastuse 20180820 SourceValue "20180420" Date 20180420 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11587 "20180421" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180421" 
+Label "21/04/2018" Lastuse 20180711 SourceValue "20180421" Date 20180421 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11589 "20180422" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180422" 
+Label "22/04/2018" Lastuse 20180711 SourceValue "20180422" Date 20180422 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11591 "20180423" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180423" 
+Label "23/04/2018" Lastuse 20180711 SourceValue "20180423" Date 20180423 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11593 "20180424" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180424" 
+Label "24/04/2018" Lastuse 20180820 SourceValue "20180424" Date 20180424 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11595 "20180425" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180425" 
+Label "25/04/2018" Lastuse 20180711 SourceValue "20180425" Date 20180425 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11597 "20180426" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180426" 
+Label "26/04/2018" Lastuse 20180711 SourceValue "20180426" Date 20180426 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11599 "20180427" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180427" 
+Label "27/04/2018" Lastuse 20180711 SourceValue "20180427" Date 20180427 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11601 "20180428" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180428" 
+Label "28/04/2018" Lastuse 20180711 SourceValue "20180428" Date 20180428 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11603 "20180429" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180429" 
+Label "29/04/2018" Lastuse 20180711 SourceValue "20180429" Date 20180429 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11605 "20180430" Parent 11545 Levels 1493 OrderBy Drill 1469 Value "20180430" 
+Label "30/04/2018" Lastuse 20180711 SourceValue "20180430" Date 20180430 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 11607 "20180501-20180531" Parent 11543 Levels 1487 OrderBy Drill 1469 
+Value "201805" Label "Mai/2018" Lastuse 20180820 SourceValue "201805" Date 20180501 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+Category 11609 "20180501" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180501" 
+Label "01/05/2018" Lastuse 20180711 SourceValue "20180501" Date 20180501 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11611 "20180502" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180502" 
+Label "02/05/2018" Lastuse 20180711 SourceValue "20180502" Date 20180502 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11613 "20180503" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180503" 
+Label "03/05/2018" Lastuse 20180820 SourceValue "20180503" Date 20180503 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11615 "20180504" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180504" 
+Label "04/05/2018" Lastuse 20180820 SourceValue "20180504" Date 20180504 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11617 "20180505" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180505" 
+Label "05/05/2018" Lastuse 20180711 SourceValue "20180505" Date 20180505 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11619 "20180506" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180506" 
+Label "06/05/2018" Lastuse 20180711 SourceValue "20180506" Date 20180506 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11621 "20180507" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180507" 
+Label "07/05/2018" Lastuse 20180711 SourceValue "20180507" Date 20180507 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11623 "20180508" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180508" 
+Label "08/05/2018" Lastuse 20180820 SourceValue "20180508" Date 20180508 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11625 "20180509" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180509" 
+Label "09/05/2018" Lastuse 20180711 SourceValue "20180509" Date 20180509 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11627 "20180510" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180510" 
+Label "10/05/2018" Lastuse 20180711 SourceValue "20180510" Date 20180510 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11629 "20180511" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180511" 
+Label "11/05/2018" Lastuse 20180820 SourceValue "20180511" Date 20180511 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11631 "20180512" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180512" 
+Label "12/05/2018" Lastuse 20180711 SourceValue "20180512" Date 20180512 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11633 "20180513" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180513" 
+Label "13/05/2018" Lastuse 20180711 SourceValue "20180513" Date 20180513 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11635 "20180514" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180514" 
+Label "14/05/2018" Lastuse 20180820 SourceValue "20180514" Date 20180514 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11637 "20180515" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180515" 
+Label "15/05/2018" Lastuse 20180711 SourceValue "20180515" Date 20180515 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11639 "20180516" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180516" 
+Label "16/05/2018" Lastuse 20180711 SourceValue "20180516" Date 20180516 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11641 "20180517" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180517" 
+Label "17/05/2018" Lastuse 20180820 SourceValue "20180517" Date 20180517 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11643 "20180518" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180518" 
+Label "18/05/2018" Lastuse 20180820 SourceValue "20180518" Date 20180518 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11645 "20180519" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180519" 
+Label "19/05/2018" Lastuse 20180820 SourceValue "20180519" Date 20180519 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11647 "20180520" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180520" 
+Label "20/05/2018" Lastuse 20180711 SourceValue "20180520" Date 20180520 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11649 "20180521" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180521" 
+Label "21/05/2018" Lastuse 20180711 SourceValue "20180521" Date 20180521 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11651 "20180522" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180522" 
+Label "22/05/2018" Lastuse 20180711 SourceValue "20180522" Date 20180522 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11653 "20180523" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180523" 
+Label "23/05/2018" Lastuse 20180820 SourceValue "20180523" Date 20180523 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11655 "20180524" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180524" 
+Label "24/05/2018" Lastuse 20180711 SourceValue "20180524" Date 20180524 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11657 "20180525" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180525" 
+Label "25/05/2018" Lastuse 20180820 SourceValue "20180525" Date 20180525 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11659 "20180526" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180526" 
+Label "26/05/2018" Lastuse 20180711 SourceValue "20180526" Date 20180526 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11661 "20180527" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180527" 
+Label "27/05/2018" Lastuse 20180711 SourceValue "20180527" Date 20180527 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11663 "20180528" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180528" 
+Label "28/05/2018" Lastuse 20180820 SourceValue "20180528" Date 20180528 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11665 "20180529" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180529" 
+Label "29/05/2018" Lastuse 20180820 SourceValue "20180529" Date 20180529 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11667 "20180530" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180530" 
+Label "30/05/2018" Lastuse 20180711 SourceValue "20180530" Date 20180530 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11669 "20180531" Parent 11607 Levels 1493 OrderBy Drill 1469 Value "20180531" 
+Label "31/05/2018" Lastuse 20180711 SourceValue "20180531" Date 20180531 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 11671 "20180601-20180630" Parent 11543 Levels 1487 OrderBy Drill 1469 
+Value "201806" Label "Juni/2018" Lastuse 20180820 SourceValue "201806" 
+Date 20180601 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11673 "20180601" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180601" 
+Label "01/06/2018" Lastuse 20180820 SourceValue "20180601" Date 20180601 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11675 "20180602" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180602" 
+Label "02/06/2018" Lastuse 20180711 SourceValue "20180602" Date 20180602 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11677 "20180603" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180603" 
+Label "03/06/2018" Lastuse 20180711 SourceValue "20180603" Date 20180603 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11679 "20180604" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180604" 
+Label "04/06/2018" Lastuse 20180820 SourceValue "20180604" Date 20180604 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11681 "20180605" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180605" 
+Label "05/06/2018" Lastuse 20180820 SourceValue "20180605" Date 20180605 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11683 "20180606" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180606" 
+Label "06/06/2018" Lastuse 20180820 SourceValue "20180606" Date 20180606 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11685 "20180607" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180607" 
+Label "07/06/2018" Lastuse 20180820 SourceValue "20180607" Date 20180607 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11687 "20180608" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180608" 
+Label "08/06/2018" Lastuse 20180820 SourceValue "20180608" Date 20180608 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11689 "20180609" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180609" 
+Label "09/06/2018" Lastuse 20180820 SourceValue "20180609" Date 20180609 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11691 "20180610" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180610" 
+Label "10/06/2018" Lastuse 20180711 SourceValue "20180610" Date 20180610 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11693 "20180611" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180611" 
+Label "11/06/2018" Lastuse 20180820 SourceValue "20180611" Date 20180611 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11695 "20180612" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180612" 
+Label "12/06/2018" Lastuse 20180711 SourceValue "20180612" Date 20180612 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11697 "20180613" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180613" 
+Label "13/06/2018" Lastuse 20180820 SourceValue "20180613" Date 20180613 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11699 "20180614" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180614" 
+Label "14/06/2018" Lastuse 20180820 SourceValue "20180614" Date 20180614 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11701 "20180615" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180615" 
+Label "15/06/2018" Lastuse 20180820 SourceValue "20180615" Date 20180615 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11703 "20180616" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180616" 
+Label "16/06/2018" Lastuse 20180711 SourceValue "20180616" Date 20180616 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11705 "20180617" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180617" 
+Label "17/06/2018" Lastuse 20180711 SourceValue "20180617" Date 20180617 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11707 "20180618" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180618" 
+Label "18/06/2018" Lastuse 20180820 SourceValue "20180618" Date 20180618 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11709 "20180619" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180619" 
+Label "19/06/2018" Lastuse 20180820 SourceValue "20180619" Date 20180619 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11711 "20180620" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180620" 
+Label "20/06/2018" Lastuse 20180820 SourceValue "20180620" Date 20180620 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11713 "20180621" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180621" 
+Label "21/06/2018" Lastuse 20180820 SourceValue "20180621" Date 20180621 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11715 "20180622" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180622" 
+Label "22/06/2018" Lastuse 20180820 SourceValue "20180622" Date 20180622 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11717 "20180623" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180623" 
+Label "23/06/2018" Lastuse 20180711 SourceValue "20180623" Date 20180623 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11719 "20180624" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180624" 
+Label "24/06/2018" Lastuse 20180711 SourceValue "20180624" Date 20180624 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11721 "20180625" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180625" 
+Label "25/06/2018" Lastuse 20180820 SourceValue "20180625" Date 20180625 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11723 "20180626" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180626" 
+Label "26/06/2018" Lastuse 20180820 SourceValue "20180626" Date 20180626 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11725 "20180627" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180627" 
+Label "27/06/2018" Lastuse 20180820 SourceValue "20180627" Date 20180627 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11727 "20180628" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180628" 
+Label "28/06/2018" Lastuse 20180820 SourceValue "20180628" Date 20180628 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11729 "20180629" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180629" 
+Label "29/06/2018" Lastuse 20180820 SourceValue "20180629" Date 20180629 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11731 "20180630" Parent 11671 Levels 1493 OrderBy Drill 1469 Value "20180630" 
+Label "30/06/2018" Lastuse 20180820 SourceValue "20180630" Date 20180630 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+
+Category 11733 "20180701-20180930" Parent 11353 Levels 1481 OrderBy Drill 1469 
+Value "20180701" Label "3. Q. 2018" Lastuse 20180820 SourceValue "20180701" 
+Date 20180701 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11735 "20180701-20180731" Parent 11733 Levels 1487 OrderBy Drill 1469 
+Value "201807" Label "Juli/2018" Lastuse 20180820 SourceValue "201807" 
+Date 20180701 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11737 "20180701" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180701" 
+Label "01/07/2018" Lastuse 20180711 SourceValue "20180701" Date 20180701 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11739 "20180702" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180702" 
+Label "02/07/2018" Lastuse 20180820 SourceValue "20180702" Date 20180702 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11741 "20180703" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180703" 
+Label "03/07/2018" Lastuse 20180820 SourceValue "20180703" Date 20180703 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11743 "20180704" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180704" 
+Label "04/07/2018" Lastuse 20180820 SourceValue "20180704" Date 20180704 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11745 "20180705" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180705" 
+Label "05/07/2018" Lastuse 20180820 SourceValue "20180705" Date 20180705 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11747 "20180706" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180706" 
+Label "06/07/2018" Lastuse 20180820 SourceValue "20180706" Date 20180706 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11749 "20180707" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180707" 
+Label "07/07/2018" Lastuse 20180820 SourceValue "20180707" Date 20180707 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11751 "20180708" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180708" 
+Label "08/07/2018" Lastuse 20180711 SourceValue "20180708" Date 20180708 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11753 "20180709" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180709" 
+Label "09/07/2018" Lastuse 20180820 SourceValue "20180709" Date 20180709 
+Current Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11755 "20180710" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180710" 
+Label "10/07/2018" Lastuse 20180711 SourceValue "20180710" Date 20180710 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11757 "20180711" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180711" 
+Label "11/07/2018" Lastuse 20180711 SourceValue "20180711" Date 20180711 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11759 "20180712" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180712" 
+Label "12/07/2018" Lastuse 20180711 SourceValue "20180712" Date 20180712 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11761 "20180713" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180713" 
+Label "13/07/2018" Lastuse 20180711 SourceValue "20180713" Date 20180713 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11763 "20180714" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180714" 
+Label "14/07/2018" Lastuse 20180711 SourceValue "20180714" Date 20180714 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11765 "20180715" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180715" 
+Label "15/07/2018" Lastuse 20180711 SourceValue "20180715" Date 20180715 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11767 "20180716" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180716" 
+Label "16/07/2018" Lastuse 20180711 SourceValue "20180716" Date 20180716 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11769 "20180717" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180717" 
+Label "17/07/2018" Lastuse 20180711 SourceValue "20180717" Date 20180717 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11771 "20180718" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180718" 
+Label "18/07/2018" Lastuse 20180711 SourceValue "20180718" Date 20180718 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11773 "20180719" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180719" 
+Label "19/07/2018" Lastuse 20180711 SourceValue "20180719" Date 20180719 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11775 "20180720" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180720" 
+Label "20/07/2018" Lastuse 20180711 SourceValue "20180720" Date 20180720 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11777 "20180721" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180721" 
+Label "21/07/2018" Lastuse 20180711 SourceValue "20180721" Date 20180721 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11779 "20180722" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180722" 
+Label "22/07/2018" Lastuse 20180711 SourceValue "20180722" Date 20180722 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11781 "20180723" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180723" 
+Label "23/07/2018" Lastuse 20180711 SourceValue "20180723" Date 20180723 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11783 "20180724" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180724" 
+Label "24/07/2018" Lastuse 20180711 SourceValue "20180724" Date 20180724 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11785 "20180725" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180725" 
+Label "25/07/2018" Lastuse 20180711 SourceValue "20180725" Date 20180725 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11787 "20180726" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180726" 
+Label "26/07/2018" Lastuse 20180711 SourceValue "20180726" Date 20180726 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11789 "20180727" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180727" 
+Label "27/07/2018" Lastuse 20180711 SourceValue "20180727" Date 20180727 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11791 "20180728" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180728" 
+Label "28/07/2018" Lastuse 20180711 SourceValue "20180728" Date 20180728 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11793 "20180729" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180729" 
+Label "29/07/2018" Lastuse 20180711 SourceValue "20180729" Date 20180729 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11795 "20180730" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180730" 
+Label "30/07/2018" Lastuse 20180711 SourceValue "20180730" Date 20180730 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11797 "20180731" Parent 11735 Levels 1493 OrderBy Drill 1469 Value "20180731" 
+Label "31/07/2018" Lastuse 20180711 SourceValue "20180731" Date 20180731 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 11799 "20180801-20180831" Parent 11733 Levels 1487 OrderBy Drill 1469 
+Value "201808" Label "Aug./2018" Lastuse 20180711 SourceValue "201808" 
+Date 20180801 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11801 "20180801" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180801" 
+Label "01/08/2018" Lastuse 20180711 SourceValue "20180801" Date 20180801 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11803 "20180802" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180802" 
+Label "02/08/2018" Lastuse 20180711 SourceValue "20180802" Date 20180802 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11805 "20180803" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180803" 
+Label "03/08/2018" Lastuse 20180711 SourceValue "20180803" Date 20180803 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11807 "20180804" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180804" 
+Label "04/08/2018" Lastuse 20180711 SourceValue "20180804" Date 20180804 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11809 "20180805" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180805" 
+Label "05/08/2018" Lastuse 20180711 SourceValue "20180805" Date 20180805 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11811 "20180806" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180806" 
+Label "06/08/2018" Lastuse 20180711 SourceValue "20180806" Date 20180806 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11813 "20180807" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180807" 
+Label "07/08/2018" Lastuse 20180711 SourceValue "20180807" Date 20180807 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11815 "20180808" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180808" 
+Label "08/08/2018" Lastuse 20180711 SourceValue "20180808" Date 20180808 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11817 "20180809" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180809" 
+Label "09/08/2018" Lastuse 20180711 SourceValue "20180809" Date 20180809 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11819 "20180810" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180810" 
+Label "10/08/2018" Lastuse 20180711 SourceValue "20180810" Date 20180810 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11821 "20180811" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180811" 
+Label "11/08/2018" Lastuse 20180711 SourceValue "20180811" Date 20180811 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11823 "20180812" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180812" 
+Label "12/08/2018" Lastuse 20180711 SourceValue "20180812" Date 20180812 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11825 "20180813" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180813" 
+Label "13/08/2018" Lastuse 20180711 SourceValue "20180813" Date 20180813 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11827 "20180814" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180814" 
+Label "14/08/2018" Lastuse 20180711 SourceValue "20180814" Date 20180814 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11829 "20180815" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180815" 
+Label "15/08/2018" Lastuse 20180711 SourceValue "20180815" Date 20180815 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11831 "20180816" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180816" 
+Label "16/08/2018" Lastuse 20180711 SourceValue "20180816" Date 20180816 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11833 "20180817" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180817" 
+Label "17/08/2018" Lastuse 20180711 SourceValue "20180817" Date 20180817 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11835 "20180818" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180818" 
+Label "18/08/2018" Lastuse 20180711 SourceValue "20180818" Date 20180818 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11837 "20180819" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180819" 
+Label "19/08/2018" Lastuse 20180711 SourceValue "20180819" Date 20180819 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11839 "20180820" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180820" 
+Label "20/08/2018" Lastuse 20180711 SourceValue "20180820" Date 20180820 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11841 "20180821" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180821" 
+Label "21/08/2018" Lastuse 20180711 SourceValue "20180821" Date 20180821 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11843 "20180822" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180822" 
+Label "22/08/2018" Lastuse 20180711 SourceValue "20180822" Date 20180822 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11845 "20180823" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180823" 
+Label "23/08/2018" Lastuse 20180711 SourceValue "20180823" Date 20180823 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11847 "20180824" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180824" 
+Label "24/08/2018" Lastuse 20180711 SourceValue "20180824" Date 20180824 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11849 "20180825" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180825" 
+Label "25/08/2018" Lastuse 20180711 SourceValue "20180825" Date 20180825 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11851 "20180826" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180826" 
+Label "26/08/2018" Lastuse 20180711 SourceValue "20180826" Date 20180826 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11853 "20180827" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180827" 
+Label "27/08/2018" Lastuse 20180711 SourceValue "20180827" Date 20180827 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11855 "20180828" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180828" 
+Label "28/08/2018" Lastuse 20180711 SourceValue "20180828" Date 20180828 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11857 "20180829" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180829" 
+Label "29/08/2018" Lastuse 20180711 SourceValue "20180829" Date 20180829 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11859 "20180830" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180830" 
+Label "30/08/2018" Lastuse 20180711 SourceValue "20180830" Date 20180830 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11861 "20180831" Parent 11799 Levels 1493 OrderBy Drill 1469 Value "20180831" 
+Label "31/08/2018" Lastuse 20180711 SourceValue "20180831" Date 20180831 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 11863 "20180901-20180930" Parent 11733 Levels 1487 OrderBy Drill 1469 
+Value "201809" Label "Sept./2018" Lastuse 20180711 SourceValue "201809" 
+Date 20180901 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11865 "20180901" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180901" 
+Label "01/09/2018" Lastuse 20180711 SourceValue "20180901" Date 20180901 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11867 "20180902" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180902" 
+Label "02/09/2018" Lastuse 20180711 SourceValue "20180902" Date 20180902 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11869 "20180903" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180903" 
+Label "03/09/2018" Lastuse 20180711 SourceValue "20180903" Date 20180903 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11871 "20180904" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180904" 
+Label "04/09/2018" Lastuse 20180711 SourceValue "20180904" Date 20180904 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11873 "20180905" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180905" 
+Label "05/09/2018" Lastuse 20180711 SourceValue "20180905" Date 20180905 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11875 "20180906" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180906" 
+Label "06/09/2018" Lastuse 20180711 SourceValue "20180906" Date 20180906 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11877 "20180907" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180907" 
+Label "07/09/2018" Lastuse 20180711 SourceValue "20180907" Date 20180907 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11879 "20180908" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180908" 
+Label "08/09/2018" Lastuse 20180711 SourceValue "20180908" Date 20180908 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11881 "20180909" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180909" 
+Label "09/09/2018" Lastuse 20180711 SourceValue "20180909" Date 20180909 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11883 "20180910" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180910" 
+Label "10/09/2018" Lastuse 20180711 SourceValue "20180910" Date 20180910 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11885 "20180911" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180911" 
+Label "11/09/2018" Lastuse 20180711 SourceValue "20180911" Date 20180911 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11887 "20180912" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180912" 
+Label "12/09/2018" Lastuse 20180711 SourceValue "20180912" Date 20180912 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11889 "20180913" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180913" 
+Label "13/09/2018" Lastuse 20180711 SourceValue "20180913" Date 20180913 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11891 "20180914" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180914" 
+Label "14/09/2018" Lastuse 20180711 SourceValue "20180914" Date 20180914 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11893 "20180915" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180915" 
+Label "15/09/2018" Lastuse 20180711 SourceValue "20180915" Date 20180915 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11895 "20180916" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180916" 
+Label "16/09/2018" Lastuse 20180711 SourceValue "20180916" Date 20180916 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11897 "20180917" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180917" 
+Label "17/09/2018" Lastuse 20180711 SourceValue "20180917" Date 20180917 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11899 "20180918" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180918" 
+Label "18/09/2018" Lastuse 20180711 SourceValue "20180918" Date 20180918 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11901 "20180919" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180919" 
+Label "19/09/2018" Lastuse 20180711 SourceValue "20180919" Date 20180919 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11903 "20180920" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180920" 
+Label "20/09/2018" Lastuse 20180711 SourceValue "20180920" Date 20180920 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11905 "20180921" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180921" 
+Label "21/09/2018" Lastuse 20180711 SourceValue "20180921" Date 20180921 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11907 "20180922" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180922" 
+Label "22/09/2018" Lastuse 20180711 SourceValue "20180922" Date 20180922 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11909 "20180923" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180923" 
+Label "23/09/2018" Lastuse 20180711 SourceValue "20180923" Date 20180923 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11911 "20180924" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180924" 
+Label "24/09/2018" Lastuse 20180711 SourceValue "20180924" Date 20180924 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11913 "20180925" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180925" 
+Label "25/09/2018" Lastuse 20180711 SourceValue "20180925" Date 20180925 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11915 "20180926" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180926" 
+Label "26/09/2018" Lastuse 20180711 SourceValue "20180926" Date 20180926 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11917 "20180927" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180927" 
+Label "27/09/2018" Lastuse 20180711 SourceValue "20180927" Date 20180927 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11919 "20180928" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180928" 
+Label "28/09/2018" Lastuse 20180711 SourceValue "20180928" Date 20180928 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11921 "20180929" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180929" 
+Label "29/09/2018" Lastuse 20180711 SourceValue "20180929" Date 20180929 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11923 "20180930" Parent 11863 Levels 1493 OrderBy Drill 1469 Value "20180930" 
+Label "30/09/2018" Lastuse 20180711 SourceValue "20180930" Date 20180930 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+
+Category 11925 "20181001-20181231" Parent 11353 Levels 1481 OrderBy Drill 1469 
+Value "20181001" Label "4. Q. 2018" Lastuse 20180711 SourceValue "20181001" 
+Date 20181001 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11927 "20181001-20181031" Parent 11925 Levels 1487 OrderBy Drill 1469 
+Value "201810" Label "Okt./2018" Lastuse 20180711 SourceValue "201810" 
+Date 20181001 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11929 "20181001" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181001" 
+Label "01/10/2018" Lastuse 20180711 SourceValue "20181001" Date 20181001 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11931 "20181002" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181002" 
+Label "02/10/2018" Lastuse 20180711 SourceValue "20181002" Date 20181002 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11933 "20181003" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181003" 
+Label "03/10/2018" Lastuse 20180711 SourceValue "20181003" Date 20181003 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11935 "20181004" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181004" 
+Label "04/10/2018" Lastuse 20180711 SourceValue "20181004" Date 20181004 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11937 "20181005" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181005" 
+Label "05/10/2018" Lastuse 20180711 SourceValue "20181005" Date 20181005 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11939 "20181006" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181006" 
+Label "06/10/2018" Lastuse 20180711 SourceValue "20181006" Date 20181006 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11941 "20181007" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181007" 
+Label "07/10/2018" Lastuse 20180711 SourceValue "20181007" Date 20181007 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11943 "20181008" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181008" 
+Label "08/10/2018" Lastuse 20180711 SourceValue "20181008" Date 20181008 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11945 "20181009" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181009" 
+Label "09/10/2018" Lastuse 20180711 SourceValue "20181009" Date 20181009 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11947 "20181010" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181010" 
+Label "10/10/2018" Lastuse 20180711 SourceValue "20181010" Date 20181010 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11949 "20181011" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181011" 
+Label "11/10/2018" Lastuse 20180711 SourceValue "20181011" Date 20181011 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11951 "20181012" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181012" 
+Label "12/10/2018" Lastuse 20180711 SourceValue "20181012" Date 20181012 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11953 "20181013" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181013" 
+Label "13/10/2018" Lastuse 20180711 SourceValue "20181013" Date 20181013 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11955 "20181014" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181014" 
+Label "14/10/2018" Lastuse 20180711 SourceValue "20181014" Date 20181014 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11957 "20181015" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181015" 
+Label "15/10/2018" Lastuse 20180711 SourceValue "20181015" Date 20181015 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11959 "20181016" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181016" 
+Label "16/10/2018" Lastuse 20180711 SourceValue "20181016" Date 20181016 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11961 "20181017" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181017" 
+Label "17/10/2018" Lastuse 20180711 SourceValue "20181017" Date 20181017 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11963 "20181018" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181018" 
+Label "18/10/2018" Lastuse 20180711 SourceValue "20181018" Date 20181018 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11965 "20181019" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181019" 
+Label "19/10/2018" Lastuse 20180711 SourceValue "20181019" Date 20181019 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11967 "20181020" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181020" 
+Label "20/10/2018" Lastuse 20180711 SourceValue "20181020" Date 20181020 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11969 "20181021" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181021" 
+Label "21/10/2018" Lastuse 20180711 SourceValue "20181021" Date 20181021 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11971 "20181022" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181022" 
+Label "22/10/2018" Lastuse 20180711 SourceValue "20181022" Date 20181022 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11973 "20181023" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181023" 
+Label "23/10/2018" Lastuse 20180711 SourceValue "20181023" Date 20181023 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11975 "20181024" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181024" 
+Label "24/10/2018" Lastuse 20180711 SourceValue "20181024" Date 20181024 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11977 "20181025" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181025" 
+Label "25/10/2018" Lastuse 20180711 SourceValue "20181025" Date 20181025 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11979 "20181026" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181026" 
+Label "26/10/2018" Lastuse 20180711 SourceValue "20181026" Date 20181026 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11981 "20181027" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181027" 
+Label "27/10/2018" Lastuse 20180711 SourceValue "20181027" Date 20181027 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11983 "20181028" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181028" 
+Label "28/10/2018" Lastuse 20180711 SourceValue "20181028" Date 20181028 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11985 "20181029" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181029" 
+Label "29/10/2018" Lastuse 20180711 SourceValue "20181029" Date 20181029 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11987 "20181030" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181030" 
+Label "30/10/2018" Lastuse 20180711 SourceValue "20181030" Date 20181030 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11989 "20181031" Parent 11927 Levels 1493 OrderBy Drill 1469 Value "20181031" 
+Label "31/10/2018" Lastuse 20180711 SourceValue "20181031" Date 20181031 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 11991 "20181101-20181130" Parent 11925 Levels 1487 OrderBy Drill 1469 
+Value "201811" Label "Nov./2018" Lastuse 20180711 SourceValue "201811" 
+Date 20181101 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 11993 "20181101" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181101" 
+Label "01/11/2018" Lastuse 20180711 SourceValue "20181101" Date 20181101 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11995 "20181102" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181102" 
+Label "02/11/2018" Lastuse 20180711 SourceValue "20181102" Date 20181102 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11997 "20181103" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181103" 
+Label "03/11/2018" Lastuse 20180711 SourceValue "20181103" Date 20181103 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 11999 "20181104" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181104" 
+Label "04/11/2018" Lastuse 20180711 SourceValue "20181104" Date 20181104 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12001 "20181105" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181105" 
+Label "05/11/2018" Lastuse 20180711 SourceValue "20181105" Date 20181105 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12003 "20181106" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181106" 
+Label "06/11/2018" Lastuse 20180711 SourceValue "20181106" Date 20181106 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12005 "20181107" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181107" 
+Label "07/11/2018" Lastuse 20180711 SourceValue "20181107" Date 20181107 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12007 "20181108" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181108" 
+Label "08/11/2018" Lastuse 20180711 SourceValue "20181108" Date 20181108 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12009 "20181109" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181109" 
+Label "09/11/2018" Lastuse 20180711 SourceValue "20181109" Date 20181109 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12011 "20181110" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181110" 
+Label "10/11/2018" Lastuse 20180711 SourceValue "20181110" Date 20181110 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12013 "20181111" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181111" 
+Label "11/11/2018" Lastuse 20180711 SourceValue "20181111" Date 20181111 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12015 "20181112" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181112" 
+Label "12/11/2018" Lastuse 20180711 SourceValue "20181112" Date 20181112 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12017 "20181113" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181113" 
+Label "13/11/2018" Lastuse 20180711 SourceValue "20181113" Date 20181113 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12019 "20181114" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181114" 
+Label "14/11/2018" Lastuse 20180711 SourceValue "20181114" Date 20181114 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12021 "20181115" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181115" 
+Label "15/11/2018" Lastuse 20180711 SourceValue "20181115" Date 20181115 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12023 "20181116" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181116" 
+Label "16/11/2018" Lastuse 20180711 SourceValue "20181116" Date 20181116 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12025 "20181117" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181117" 
+Label "17/11/2018" Lastuse 20180711 SourceValue "20181117" Date 20181117 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12027 "20181118" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181118" 
+Label "18/11/2018" Lastuse 20180711 SourceValue "20181118" Date 20181118 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12029 "20181119" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181119" 
+Label "19/11/2018" Lastuse 20180711 SourceValue "20181119" Date 20181119 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12031 "20181120" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181120" 
+Label "20/11/2018" Lastuse 20180711 SourceValue "20181120" Date 20181120 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12033 "20181121" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181121" 
+Label "21/11/2018" Lastuse 20180711 SourceValue "20181121" Date 20181121 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12035 "20181122" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181122" 
+Label "22/11/2018" Lastuse 20180711 SourceValue "20181122" Date 20181122 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12037 "20181123" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181123" 
+Label "23/11/2018" Lastuse 20180711 SourceValue "20181123" Date 20181123 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12039 "20181124" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181124" 
+Label "24/11/2018" Lastuse 20180711 SourceValue "20181124" Date 20181124 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12041 "20181125" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181125" 
+Label "25/11/2018" Lastuse 20180711 SourceValue "20181125" Date 20181125 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12043 "20181126" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181126" 
+Label "26/11/2018" Lastuse 20180711 SourceValue "20181126" Date 20181126 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12045 "20181127" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181127" 
+Label "27/11/2018" Lastuse 20180711 SourceValue "20181127" Date 20181127 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12047 "20181128" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181128" 
+Label "28/11/2018" Lastuse 20180711 SourceValue "20181128" Date 20181128 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12049 "20181129" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181129" 
+Label "29/11/2018" Lastuse 20180711 SourceValue "20181129" Date 20181129 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12051 "20181130" Parent 11991 Levels 1493 OrderBy Drill 1469 Value "20181130" 
+Label "30/11/2018" Lastuse 20180711 SourceValue "20181130" Date 20181130 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+Category 12053 "20181201-20181231" Parent 11925 Levels 1487 OrderBy Drill 1469 
+Value "201812" Label "Dez./2018" Lastuse 20180711 SourceValue "201812" 
+Date 20181201 Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+Category 12055 "20181201" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181201" 
+Label "01/12/2018" Lastuse 20180711 SourceValue "20181201" Date 20181201 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12057 "20181202" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181202" 
+Label "02/12/2018" Lastuse 20180711 SourceValue "20181202" Date 20181202 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12059 "20181203" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181203" 
+Label "03/12/2018" Lastuse 20180711 SourceValue "20181203" Date 20181203 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12061 "20181204" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181204" 
+Label "04/12/2018" Lastuse 20180711 SourceValue "20181204" Date 20181204 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12063 "20181205" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181205" 
+Label "05/12/2018" Lastuse 20180711 SourceValue "20181205" Date 20181205 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12065 "20181206" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181206" 
+Label "06/12/2018" Lastuse 20180711 SourceValue "20181206" Date 20181206 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12067 "20181207" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181207" 
+Label "07/12/2018" Lastuse 20180711 SourceValue "20181207" Date 20181207 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12069 "20181208" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181208" 
+Label "08/12/2018" Lastuse 20180711 SourceValue "20181208" Date 20181208 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12071 "20181209" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181209" 
+Label "09/12/2018" Lastuse 20180711 SourceValue "20181209" Date 20181209 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12073 "20181210" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181210" 
+Label "10/12/2018" Lastuse 20180711 SourceValue "20181210" Date 20181210 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12075 "20181211" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181211" 
+Label "11/12/2018" Lastuse 20180711 SourceValue "20181211" Date 20181211 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12077 "20181212" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181212" 
+Label "12/12/2018" Lastuse 20180711 SourceValue "20181212" Date 20181212 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12079 "20181213" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181213" 
+Label "13/12/2018" Lastuse 20180711 SourceValue "20181213" Date 20181213 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12081 "20181214" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181214" 
+Label "14/12/2018" Lastuse 20180711 SourceValue "20181214" Date 20181214 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12083 "20181215" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181215" 
+Label "15/12/2018" Lastuse 20180711 SourceValue "20181215" Date 20181215 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12085 "20181216" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181216" 
+Label "16/12/2018" Lastuse 20180711 SourceValue "20181216" Date 20181216 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12087 "20181217" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181217" 
+Label "17/12/2018" Lastuse 20180711 SourceValue "20181217" Date 20181217 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12089 "20181218" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181218" 
+Label "18/12/2018" Lastuse 20180711 SourceValue "20181218" Date 20181218 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12091 "20181219" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181219" 
+Label "19/12/2018" Lastuse 20180711 SourceValue "20181219" Date 20181219 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12093 "20181220" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181220" 
+Label "20/12/2018" Lastuse 20180711 SourceValue "20181220" Date 20181220 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12095 "20181221" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181221" 
+Label "21/12/2018" Lastuse 20180711 SourceValue "20181221" Date 20181221 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12097 "20181222" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181222" 
+Label "22/12/2018" Lastuse 20180711 SourceValue "20181222" Date 20181222 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12099 "20181223" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181223" 
+Label "23/12/2018" Lastuse 20180711 SourceValue "20181223" Date 20181223 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12101 "20181224" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181224" 
+Label "24/12/2018" Lastuse 20180711 SourceValue "20181224" Date 20181224 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12103 "20181225" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181225" 
+Label "25/12/2018" Lastuse 20180711 SourceValue "20181225" Date 20181225 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12105 "20181226" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181226" 
+Label "26/12/2018" Lastuse 20180711 SourceValue "20181226" Date 20181226 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12107 "20181227" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181227" 
+Label "27/12/2018" Lastuse 20180711 SourceValue "20181227" Date 20181227 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12109 "20181228" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181228" 
+Label "28/12/2018" Lastuse 20180711 SourceValue "20181228" Date 20181228 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12111 "20181229" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181229" 
+Label "29/12/2018" Lastuse 20180711 SourceValue "20181229" Date 20181229 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12113 "20181230" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181230" 
+Label "30/12/2018" Lastuse 20180711 SourceValue "20181230" Date 20181230 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 12115 "20181231" Parent 12053 Levels 1493 OrderBy Drill 1469 Value "20181231" 
+Label "31/12/2018" Lastuse 20180711 SourceValue "20181231" Date 20181231 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+
+
+
+SpecialCategory 1499 "Aktueller Tag" Parent 1467 Levels 0 Lastuse 20180820 
+Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset 0 TargetLevel "Tag" 
+ContextOffset 0 DateDrill 1469 Primary 11753 Sign False 
+
+SpecialCategory 1501 "Gestern" Parent 1467 Levels 0 Lastuse 20180820 Rollup True 
+TimeAggregate Single RunningPeriods 0 TargetOffset -1 TargetLevel "Tag" 
+ContextOffset 0 DateDrill 1469 Primary 11751 Sign False 
+
+SpecialCategory 1503 "M bisher" Parent 1467 Levels 0 Lastuse 20180820 Rollup True 
+TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Monat" TargetOffset 0 
+TargetLevel "Tag" ContextOffset 0 DateDrill 1469 Primary 11737 Primary 11739 
+Primary 11741 Primary 11743 Primary 11745 Primary 11747 Primary 11749 Primary 11751 
+Primary 11753 Sign False 
+
+SpecialCategory 1505 "Voriger M bisher" Parent 1467 Levels 0 Lastuse 20180820 
+Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Monat" TargetOffset 0 
+TargetLevel "Tag" ContextOffset -1 ContextLevel "Monat" DateDrill 1469 
+Primary 11673 Primary 11675 Primary 11677 Primary 11679 Primary 11681 Primary 11683 
+Primary 11685 Primary 11687 Primary 11689 Sign False 
+
+SpecialCategory 1507 "M bisher gruppiert" Parent 1467 Levels 0 Lastuse 20180820 
+Rollup True TimeAggregate ToDate_Grp RunningPeriods 0 ToDateLevel "Monat" 
+TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Monat" 
+DateDrill 1469 TransientLevelList 13831 For 1507 EndList Primary 13825 
+Primary 13823 Primary 13827 Primary 13829 Sign False 
+SpecialCategory 13825 "M bisher gruppiert~Voriger M bisher" Parent 1507 
+Levels 0 Label "Voriger M bisher" Lastuse 20180820 Rollup False TimeAggregate ToDate 
+RunningPeriods 0 ToDateLevel "Monat" TargetOffset 0 TargetLevel "Tag" ContextOffset -1 
+ContextLevel "Monat" DateDrill 1469 Primary 11673 Primary 11675 Primary 11677 
+Primary 11679 Primary 11681 Primary 11683 Primary 11685 Primary 11687 Primary 11689 
+Sign False 
+
+SpecialCategory 13823 "M bisher gruppiert~M bisher" Parent 1507 Levels 0 
+Label "M bisher" Lastuse 20180820 Rollup False TimeAggregate ToDate RunningPeriods 0 
+ToDateLevel "Monat" TargetOffset 0 TargetLevel "Tag" ContextOffset 0 DateDrill 1469 
+Primary 11737 Primary 11739 Primary 11741 Primary 11743 Primary 11745 Primary 11747 
+Primary 11749 Primary 11751 Primary 11753 Sign False 
+
+SpecialCategory 13827 "M bisher gruppiert~ÄNDERUNG ( ""Voriger M bisher"" , ""M bisher"" )" 
+Parent 1507 Levels 0 Label "M bisher Änderung" Lastuse 20180820 Rollup False 
+TimeAggregate None Calc change ( "M bisher gruppiert~Voriger M bisher@13825" , "M bisher gruppiert~M bisher@13823" )  Sign False 
+
+
+SpecialCategory 13829 "M bisher gruppiert~PROZENTZUWACHS ( ""Voriger M bisher"" , ""M bisher"" )" 
+Parent 1507 Levels 0 Label "M bisher Zuwachs" Lastuse 20180820 Rollup False 
+TimeAggregate None Calc percent-growth ( "M bisher gruppiert~Voriger M bisher@13825" , "M bisher gruppiert~M bisher@13823" )  Format "0%~2" 
+Sign False 
+
+
+SpecialCategory 1509 "Q bisher" Parent 1467 Levels 0 Lastuse 20180820 Rollup True 
+TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Quartal" TargetOffset 0 
+TargetLevel "Tag" ContextOffset 0 DateDrill 1469 TransientLevelList 13835 For 1487 
+EndList Primary 13833 Sign False 
+SpecialCategory 13833 "Q bisher~Monat1" Parent 1509 Levels 0 Label "Juli/2018" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 11737 
+Primary 11739 Primary 11741 Primary 11743 Primary 11745 Primary 11747 Primary 11749 
+Primary 11751 Primary 11753 Sign False 
+
+
+SpecialCategory 1511 "Voriges Q bisher" Parent 1467 Levels 0 Lastuse 20180820 
+Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Quartal" 
+TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Quartal" 
+DateDrill 1469 TransientLevelList 13839 For 1487 EndList Primary 13837 
+Sign False 
+SpecialCategory 13837 "Voriges Q bisher~Monat1" Parent 1511 Levels 0 Label "Apr./2018" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 11547 
+Primary 11549 Primary 11551 Primary 11553 Primary 11555 Primary 11557 Primary 11559 
+Primary 11561 Primary 11563 Sign False 
+
+
+SpecialCategory 1513 "Q bisher gruppiert" Parent 1467 Levels 0 Lastuse 20180820 
+Rollup True TimeAggregate ToDate_Grp RunningPeriods 0 ToDateLevel "Quartal" 
+TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Quartal" 
+DateDrill 1469 TransientLevelList 13845 For 1487 13855 For 1513 EndList Primary 13847 
+Primary 13841 Primary 13851 Primary 13853 Sign False 
+SpecialCategory 13847 "Q bisher gruppiert~Voriges Q bisher" Parent 1513 
+Levels 0 Label "Voriges Q bisher" Lastuse 20180820 Rollup False TimeAggregate ToDate 
+RunningPeriods 0 ToDateLevel "Quartal" TargetOffset 0 TargetLevel "Tag" 
+ContextOffset -1 ContextLevel "Quartal" DateDrill 1469 Primary 13849 Sign False 
+
+SpecialCategory 13849 "Q bisher gruppiert~Voriges Q bisher~Monat1" Parent 13847 
+Levels 0 Label "Apr./2018" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 11547 Primary 11549 Primary 11551 Primary 11553 
+Primary 11555 Primary 11557 Primary 11559 Primary 11561 Primary 11563 Sign False 
+
+
+
+SpecialCategory 13841 "Q bisher gruppiert~Q bisher" Parent 1513 Levels 0 
+Label "Q bisher" Lastuse 20180820 Rollup False TimeAggregate ToDate RunningPeriods 0 
+ToDateLevel "Quartal" TargetOffset 0 TargetLevel "Tag" ContextOffset 0 
+DateDrill 1469 Primary 13843 Sign False 
+SpecialCategory 13843 "Q bisher gruppiert~Q bisher~Monat1" Parent 13841 
+Levels 0 Label "Juli/2018" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 11737 Primary 11739 Primary 11741 Primary 11743 
+Primary 11745 Primary 11747 Primary 11749 Primary 11751 Primary 11753 Sign False 
+
+
+
+SpecialCategory 13851 "Q bisher gruppiert~ÄNDERUNG ( ""Voriges Q bisher"" , ""Q bisher"" )" 
+Parent 1513 Levels 0 Label "Q bisher Änderung" Lastuse 20180820 Rollup False 
+TimeAggregate None Calc change ( "Q bisher gruppiert~Voriges Q bisher@13847" , "Q bisher gruppiert~Q bisher@13841" )  Sign False 
+
+
+SpecialCategory 13853 "Q bisher gruppiert~PROZENTZUWACHS ( ""Voriges Q bisher"" , ""Q bisher"" )" 
+Parent 1513 Levels 0 Label "Q bisher Zuwachs" Lastuse 20180820 Rollup False 
+TimeAggregate None Calc percent-growth ( "Q bisher gruppiert~Voriges Q bisher@13847" , "Q bisher gruppiert~Q bisher@13841" )  Format "0%~2" 
+Sign False 
+
+
+SpecialCategory 1515 "J bisher" Parent 1467 Levels 0 Lastuse 20180820 Rollup True 
+TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr" TargetOffset 0 
+TargetLevel "Tag" ContextOffset 0 DateDrill 1469 TransientLevelList 13859 For 1481 
+13863 For 1487 EndList Primary 13857 Primary 13869 Primary 13877 Sign False 
+
+SpecialCategory 13857 "J bisher~Quartal1" Parent 1515 Levels 0 Label "1. Q. 2018" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 13861 
+Primary 13865 Primary 13867 Sign False 
+SpecialCategory 13861 "J bisher~Quartal1~Monat1" Parent 13857 Levels 0 
+Label "Jan./2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11359 Primary 11361 Primary 11363 Primary 11365 Primary 11367 Primary 11369 
+Primary 11371 Primary 11373 Primary 11375 Primary 11377 Primary 11379 Primary 11381 
+Primary 11383 Primary 11385 Primary 11387 Primary 11389 Primary 11391 Primary 11393 
+Primary 11395 Primary 11397 Primary 11399 Primary 11401 Primary 11403 Primary 11405 
+Primary 11407 Primary 11409 Primary 11411 Primary 11413 Primary 11415 Primary 11417 
+Primary 11419 Sign False 
+
+SpecialCategory 13865 "J bisher~Quartal1~Monat2" Parent 13857 Levels 0 
+Label "Feb./2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11423 Primary 11425 Primary 11427 Primary 11429 Primary 11431 Primary 11433 
+Primary 11435 Primary 11437 Primary 11439 Primary 11441 Primary 11443 Primary 11445 
+Primary 11447 Primary 11449 Primary 11451 Primary 11453 Primary 11455 Primary 11457 
+Primary 11459 Primary 11461 Primary 11463 Primary 11465 Primary 11467 Primary 11469 
+Primary 11471 Primary 11473 Primary 11475 Primary 11477 Sign False 
+
+SpecialCategory 13867 "J bisher~Quartal1~Monat3" Parent 13857 Levels 0 
+Label "März/2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11481 Primary 11483 Primary 11485 Primary 11487 Primary 11489 Primary 11491 
+Primary 11493 Primary 11495 Primary 11497 Primary 11499 Primary 11501 Primary 11503 
+Primary 11505 Primary 11507 Primary 11509 Primary 11511 Primary 11513 Primary 11515 
+Primary 11517 Primary 11519 Primary 11521 Primary 11523 Primary 11525 Primary 11527 
+Primary 11529 Primary 11531 Primary 11533 Primary 11535 Primary 11537 Primary 11539 
+Primary 11541 Sign False 
+
+
+SpecialCategory 13869 "J bisher~Quartal2" Parent 1515 Levels 0 Label "2. Q. 2018" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 13871 
+Primary 13873 Primary 13875 Sign False 
+SpecialCategory 13871 "J bisher~Quartal2~Monat1" Parent 13869 Levels 0 
+Label "Apr./2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11547 Primary 11549 Primary 11551 Primary 11553 Primary 11555 Primary 11557 
+Primary 11559 Primary 11561 Primary 11563 Primary 11565 Primary 11567 Primary 11569 
+Primary 11571 Primary 11573 Primary 11575 Primary 11577 Primary 11579 Primary 11581 
+Primary 11583 Primary 11585 Primary 11587 Primary 11589 Primary 11591 Primary 11593 
+Primary 11595 Primary 11597 Primary 11599 Primary 11601 Primary 11603 Primary 11605 
+Sign False 
+
+SpecialCategory 13873 "J bisher~Quartal2~Monat2" Parent 13869 Levels 0 
+Label "Mai/2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11609 Primary 11611 Primary 11613 Primary 11615 Primary 11617 Primary 11619 
+Primary 11621 Primary 11623 Primary 11625 Primary 11627 Primary 11629 Primary 11631 
+Primary 11633 Primary 11635 Primary 11637 Primary 11639 Primary 11641 Primary 11643 
+Primary 11645 Primary 11647 Primary 11649 Primary 11651 Primary 11653 Primary 11655 
+Primary 11657 Primary 11659 Primary 11661 Primary 11663 Primary 11665 Primary 11667 
+Primary 11669 Sign False 
+
+SpecialCategory 13875 "J bisher~Quartal2~Monat3" Parent 13869 Levels 0 
+Label "Juni/2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11673 Primary 11675 Primary 11677 Primary 11679 Primary 11681 Primary 11683 
+Primary 11685 Primary 11687 Primary 11689 Primary 11691 Primary 11693 Primary 11695 
+Primary 11697 Primary 11699 Primary 11701 Primary 11703 Primary 11705 Primary 11707 
+Primary 11709 Primary 11711 Primary 11713 Primary 11715 Primary 11717 Primary 11719 
+Primary 11721 Primary 11723 Primary 11725 Primary 11727 Primary 11729 Primary 11731 
+Sign False 
+
+
+SpecialCategory 13877 "J bisher~Quartal3" Parent 1515 Levels 0 Label "3. Q. 2018" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 13879 
+Sign False 
+SpecialCategory 13879 "J bisher~Quartal3~Monat1" Parent 13877 Levels 0 
+Label "Juli/2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11737 Primary 11739 Primary 11741 Primary 11743 Primary 11745 Primary 11747 
+Primary 11749 Primary 11751 Primary 11753 Sign False 
+
+
+
+SpecialCategory 1517 "Voriges J bisher" Parent 1467 Levels 0 Lastuse 20180820 
+Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr" TargetOffset 0 
+TargetLevel "Tag" ContextOffset -1 ContextLevel "Jahr" DateDrill 1469 TransientLevelList 13883 For 1481 
+13887 For 1487 EndList Primary 13881 Primary 13893 Primary 13901 Sign False 
+
+SpecialCategory 13881 "Voriges J bisher~Quartal1" Parent 1517 Levels 0 
+Label "1. Q. 2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 13885 Primary 13889 Primary 13891 Sign False 
+SpecialCategory 13885 "Voriges J bisher~Quartal1~Monat1" Parent 13881 Levels 0 
+Label "Jan./2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10561 Primary 10563 Primary 10565 Primary 10567 Primary 10569 Primary 10571 
+Primary 10573 Primary 10575 Primary 10577 Primary 10579 Primary 10581 Primary 10583 
+Primary 10585 Primary 10587 Primary 10589 Primary 10591 Primary 10593 Primary 10595 
+Primary 10597 Primary 10599 Primary 10601 Primary 10603 Primary 10605 Primary 10607 
+Primary 10609 Primary 10611 Primary 10613 Primary 10615 Primary 10617 Primary 10619 
+Primary 10621 Sign False 
+
+SpecialCategory 13889 "Voriges J bisher~Quartal1~Monat2" Parent 13881 Levels 0 
+Label "Feb./2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10625 Primary 10627 Primary 10629 Primary 10631 Primary 10633 Primary 10635 
+Primary 10637 Primary 10639 Primary 10641 Primary 10643 Primary 10645 Primary 10647 
+Primary 10649 Primary 10651 Primary 10653 Primary 10655 Primary 10657 Primary 10659 
+Primary 10661 Primary 10663 Primary 10665 Primary 10667 Primary 10669 Primary 10671 
+Primary 10673 Primary 10675 Primary 10677 Primary 10679 Sign False 
+
+SpecialCategory 13891 "Voriges J bisher~Quartal1~Monat3" Parent 13881 Levels 0 
+Label "März/2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10683 Primary 10685 Primary 10687 Primary 10689 Primary 10691 Primary 10693 
+Primary 10695 Primary 10697 Primary 10699 Primary 10701 Primary 10703 Primary 10705 
+Primary 10707 Primary 10709 Primary 10711 Primary 10713 Primary 10715 Primary 10717 
+Primary 10719 Primary 10721 Primary 10723 Primary 10725 Primary 10727 Primary 10729 
+Primary 10731 Primary 10733 Primary 10735 Primary 10737 Primary 10739 Primary 10741 
+Primary 10743 Sign False 
+
+
+SpecialCategory 13893 "Voriges J bisher~Quartal2" Parent 1517 Levels 0 
+Label "2. Q. 2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 13895 Primary 13897 Primary 13899 Sign False 
+SpecialCategory 13895 "Voriges J bisher~Quartal2~Monat1" Parent 13893 Levels 0 
+Label "Apr./2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10749 Primary 10751 Primary 10753 Primary 10755 Primary 10757 Primary 10759 
+Primary 10761 Primary 10763 Primary 10765 Primary 10767 Primary 10769 Primary 10771 
+Primary 10773 Primary 10775 Primary 10777 Primary 10779 Primary 10781 Primary 10783 
+Primary 10785 Primary 10787 Primary 10789 Primary 10791 Primary 10793 Primary 10795 
+Primary 10797 Primary 10799 Primary 10801 Primary 10803 Primary 10805 Primary 10807 
+Sign False 
+
+SpecialCategory 13897 "Voriges J bisher~Quartal2~Monat2" Parent 13893 Levels 0 
+Label "Mai/2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10811 Primary 10813 Primary 10815 Primary 10817 Primary 10819 Primary 10821 
+Primary 10823 Primary 10825 Primary 10827 Primary 10829 Primary 10831 Primary 10833 
+Primary 10835 Primary 10837 Primary 10839 Primary 10841 Primary 10843 Primary 10845 
+Primary 10847 Primary 10849 Primary 10851 Primary 10853 Primary 10855 Primary 10857 
+Primary 10859 Primary 10861 Primary 10863 Primary 10865 Primary 10867 Primary 10869 
+Primary 10871 Sign False 
+
+SpecialCategory 13899 "Voriges J bisher~Quartal2~Monat3" Parent 13893 Levels 0 
+Label "Juni/2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10875 Primary 10877 Primary 10879 Primary 10881 Primary 10883 Primary 10885 
+Primary 10887 Primary 10889 Primary 10891 Primary 10893 Primary 10895 Primary 10897 
+Primary 10899 Primary 10901 Primary 10903 Primary 10905 Primary 10907 Primary 10909 
+Primary 10911 Primary 10913 Primary 10915 Primary 10917 Primary 10919 Primary 10921 
+Primary 10923 Primary 10925 Primary 10927 Primary 10929 Primary 10931 Primary 10933 
+Sign False 
+
+
+SpecialCategory 13901 "Voriges J bisher~Quartal3" Parent 1517 Levels 0 
+Label "3. Q. 2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 13903 Sign False 
+SpecialCategory 13903 "Voriges J bisher~Quartal3~Monat1" Parent 13901 Levels 0 
+Label "Juli/2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10939 Primary 10941 Primary 10943 Primary 10945 Primary 10947 Primary 10949 
+Primary 10951 Primary 10953 Primary 10955 Sign False 
+
+
+
+SpecialCategory 1519 "J bisher gruppiert" Parent 1467 Levels 0 Lastuse 20180820 
+Rollup True TimeAggregate ToDate_Grp RunningPeriods 0 ToDateLevel "Jahr" 
+TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Jahr" DateDrill 1469 
+TransientLevelList 13909 For 1481 13913 For 1487 13957 For 1519 EndList Primary 13931 
+Primary 13905 Primary 13953 Primary 13955 Sign False 
+SpecialCategory 13931 "J bisher gruppiert~Voriges J bisher" Parent 1519 
+Levels 0 Label "Voriges J bisher" Lastuse 20180820 Rollup False TimeAggregate ToDate 
+RunningPeriods 0 ToDateLevel "Jahr" TargetOffset 0 TargetLevel "Tag" ContextOffset -1 
+ContextLevel "Jahr" DateDrill 1469 Primary 13933 Primary 13941 Primary 13949 
+Sign False 
+SpecialCategory 13933 "J bisher gruppiert~Voriges J bisher~Quartal1" Parent 13931 
+Levels 0 Label "1. Q. 2017" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 13935 Primary 13937 Primary 13939 Sign False 
+
+SpecialCategory 13935 "J bisher gruppiert~Voriges J bisher~Quartal1~Monat1" 
+Parent 13933 Levels 0 Label "Jan./2017" Inclusion Generate Lastuse 20180820 
+Rollup True TimeAggregate None Primary 10561 Primary 10563 Primary 10565 
+Primary 10567 Primary 10569 Primary 10571 Primary 10573 Primary 10575 Primary 10577 
+Primary 10579 Primary 10581 Primary 10583 Primary 10585 Primary 10587 Primary 10589 
+Primary 10591 Primary 10593 Primary 10595 Primary 10597 Primary 10599 Primary 10601 
+Primary 10603 Primary 10605 Primary 10607 Primary 10609 Primary 10611 Primary 10613 
+Primary 10615 Primary 10617 Primary 10619 Primary 10621 Sign False 
+
+SpecialCategory 13937 "J bisher gruppiert~Voriges J bisher~Quartal1~Monat2" 
+Parent 13933 Levels 0 Label "Feb./2017" Inclusion Generate Lastuse 20180820 
+Rollup True TimeAggregate None Primary 10625 Primary 10627 Primary 10629 
+Primary 10631 Primary 10633 Primary 10635 Primary 10637 Primary 10639 Primary 10641 
+Primary 10643 Primary 10645 Primary 10647 Primary 10649 Primary 10651 Primary 10653 
+Primary 10655 Primary 10657 Primary 10659 Primary 10661 Primary 10663 Primary 10665 
+Primary 10667 Primary 10669 Primary 10671 Primary 10673 Primary 10675 Primary 10677 
+Primary 10679 Sign False 
+
+SpecialCategory 13939 "J bisher gruppiert~Voriges J bisher~Quartal1~Monat3" 
+Parent 13933 Levels 0 Label "März/2017" Inclusion Generate Lastuse 20180820 
+Rollup True TimeAggregate None Primary 10683 Primary 10685 Primary 10687 
+Primary 10689 Primary 10691 Primary 10693 Primary 10695 Primary 10697 Primary 10699 
+Primary 10701 Primary 10703 Primary 10705 Primary 10707 Primary 10709 Primary 10711 
+Primary 10713 Primary 10715 Primary 10717 Primary 10719 Primary 10721 Primary 10723 
+Primary 10725 Primary 10727 Primary 10729 Primary 10731 Primary 10733 Primary 10735 
+Primary 10737 Primary 10739 Primary 10741 Primary 10743 Sign False 
+
+
+SpecialCategory 13941 "J bisher gruppiert~Voriges J bisher~Quartal2" Parent 13931 
+Levels 0 Label "2. Q. 2017" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 13943 Primary 13945 Primary 13947 Sign False 
+
+SpecialCategory 13943 "J bisher gruppiert~Voriges J bisher~Quartal2~Monat1" 
+Parent 13941 Levels 0 Label "Apr./2017" Inclusion Generate Lastuse 20180820 
+Rollup True TimeAggregate None Primary 10749 Primary 10751 Primary 10753 
+Primary 10755 Primary 10757 Primary 10759 Primary 10761 Primary 10763 Primary 10765 
+Primary 10767 Primary 10769 Primary 10771 Primary 10773 Primary 10775 Primary 10777 
+Primary 10779 Primary 10781 Primary 10783 Primary 10785 Primary 10787 Primary 10789 
+Primary 10791 Primary 10793 Primary 10795 Primary 10797 Primary 10799 Primary 10801 
+Primary 10803 Primary 10805 Primary 10807 Sign False 
+
+SpecialCategory 13945 "J bisher gruppiert~Voriges J bisher~Quartal2~Monat2" 
+Parent 13941 Levels 0 Label "Mai/2017" Inclusion Generate Lastuse 20180820 
+Rollup True TimeAggregate None Primary 10811 Primary 10813 Primary 10815 
+Primary 10817 Primary 10819 Primary 10821 Primary 10823 Primary 10825 Primary 10827 
+Primary 10829 Primary 10831 Primary 10833 Primary 10835 Primary 10837 Primary 10839 
+Primary 10841 Primary 10843 Primary 10845 Primary 10847 Primary 10849 Primary 10851 
+Primary 10853 Primary 10855 Primary 10857 Primary 10859 Primary 10861 Primary 10863 
+Primary 10865 Primary 10867 Primary 10869 Primary 10871 Sign False 
+
+SpecialCategory 13947 "J bisher gruppiert~Voriges J bisher~Quartal2~Monat3" 
+Parent 13941 Levels 0 Label "Juni/2017" Inclusion Generate Lastuse 20180820 
+Rollup True TimeAggregate None Primary 10875 Primary 10877 Primary 10879 
+Primary 10881 Primary 10883 Primary 10885 Primary 10887 Primary 10889 Primary 10891 
+Primary 10893 Primary 10895 Primary 10897 Primary 10899 Primary 10901 Primary 10903 
+Primary 10905 Primary 10907 Primary 10909 Primary 10911 Primary 10913 Primary 10915 
+Primary 10917 Primary 10919 Primary 10921 Primary 10923 Primary 10925 Primary 10927 
+Primary 10929 Primary 10931 Primary 10933 Sign False 
+
+
+SpecialCategory 13949 "J bisher gruppiert~Voriges J bisher~Quartal3" Parent 13931 
+Levels 0 Label "3. Q. 2017" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 13951 Sign False 
+SpecialCategory 13951 "J bisher gruppiert~Voriges J bisher~Quartal3~Monat1" 
+Parent 13949 Levels 0 Label "Juli/2017" Inclusion Generate Lastuse 20180820 
+Rollup True TimeAggregate None Primary 10939 Primary 10941 Primary 10943 
+Primary 10945 Primary 10947 Primary 10949 Primary 10951 Primary 10953 Primary 10955 
+Sign False 
+
+
+
+SpecialCategory 13905 "J bisher gruppiert~J bisher" Parent 1519 Levels 0 
+Label "J bisher" Lastuse 20180820 Rollup False TimeAggregate ToDate RunningPeriods 0 
+ToDateLevel "Jahr" TargetOffset 0 TargetLevel "Tag" ContextOffset 0 DateDrill 1469 
+Primary 13907 Primary 13919 Primary 13927 Sign False 
+SpecialCategory 13907 "J bisher gruppiert~J bisher~Quartal1" Parent 13905 
+Levels 0 Label "1. Q. 2018" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 13911 Primary 13915 Primary 13917 Sign False 
+
+SpecialCategory 13911 "J bisher gruppiert~J bisher~Quartal1~Monat1" Parent 13907 
+Levels 0 Label "Jan./2018" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 11359 Primary 11361 Primary 11363 Primary 11365 
+Primary 11367 Primary 11369 Primary 11371 Primary 11373 Primary 11375 Primary 11377 
+Primary 11379 Primary 11381 Primary 11383 Primary 11385 Primary 11387 Primary 11389 
+Primary 11391 Primary 11393 Primary 11395 Primary 11397 Primary 11399 Primary 11401 
+Primary 11403 Primary 11405 Primary 11407 Primary 11409 Primary 11411 Primary 11413 
+Primary 11415 Primary 11417 Primary 11419 Sign False 
+
+SpecialCategory 13915 "J bisher gruppiert~J bisher~Quartal1~Monat2" Parent 13907 
+Levels 0 Label "Feb./2018" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 11423 Primary 11425 Primary 11427 Primary 11429 
+Primary 11431 Primary 11433 Primary 11435 Primary 11437 Primary 11439 Primary 11441 
+Primary 11443 Primary 11445 Primary 11447 Primary 11449 Primary 11451 Primary 11453 
+Primary 11455 Primary 11457 Primary 11459 Primary 11461 Primary 11463 Primary 11465 
+Primary 11467 Primary 11469 Primary 11471 Primary 11473 Primary 11475 Primary 11477 
+Sign False 
+
+SpecialCategory 13917 "J bisher gruppiert~J bisher~Quartal1~Monat3" Parent 13907 
+Levels 0 Label "März/2018" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 11481 Primary 11483 Primary 11485 Primary 11487 
+Primary 11489 Primary 11491 Primary 11493 Primary 11495 Primary 11497 Primary 11499 
+Primary 11501 Primary 11503 Primary 11505 Primary 11507 Primary 11509 Primary 11511 
+Primary 11513 Primary 11515 Primary 11517 Primary 11519 Primary 11521 Primary 11523 
+Primary 11525 Primary 11527 Primary 11529 Primary 11531 Primary 11533 Primary 11535 
+Primary 11537 Primary 11539 Primary 11541 Sign False 
+
+
+SpecialCategory 13919 "J bisher gruppiert~J bisher~Quartal2" Parent 13905 
+Levels 0 Label "2. Q. 2018" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 13921 Primary 13923 Primary 13925 Sign False 
+
+SpecialCategory 13921 "J bisher gruppiert~J bisher~Quartal2~Monat1" Parent 13919 
+Levels 0 Label "Apr./2018" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 11547 Primary 11549 Primary 11551 Primary 11553 
+Primary 11555 Primary 11557 Primary 11559 Primary 11561 Primary 11563 Primary 11565 
+Primary 11567 Primary 11569 Primary 11571 Primary 11573 Primary 11575 Primary 11577 
+Primary 11579 Primary 11581 Primary 11583 Primary 11585 Primary 11587 Primary 11589 
+Primary 11591 Primary 11593 Primary 11595 Primary 11597 Primary 11599 Primary 11601 
+Primary 11603 Primary 11605 Sign False 
+
+SpecialCategory 13923 "J bisher gruppiert~J bisher~Quartal2~Monat2" Parent 13919 
+Levels 0 Label "Mai/2018" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 11609 Primary 11611 Primary 11613 Primary 11615 
+Primary 11617 Primary 11619 Primary 11621 Primary 11623 Primary 11625 Primary 11627 
+Primary 11629 Primary 11631 Primary 11633 Primary 11635 Primary 11637 Primary 11639 
+Primary 11641 Primary 11643 Primary 11645 Primary 11647 Primary 11649 Primary 11651 
+Primary 11653 Primary 11655 Primary 11657 Primary 11659 Primary 11661 Primary 11663 
+Primary 11665 Primary 11667 Primary 11669 Sign False 
+
+SpecialCategory 13925 "J bisher gruppiert~J bisher~Quartal2~Monat3" Parent 13919 
+Levels 0 Label "Juni/2018" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 11673 Primary 11675 Primary 11677 Primary 11679 
+Primary 11681 Primary 11683 Primary 11685 Primary 11687 Primary 11689 Primary 11691 
+Primary 11693 Primary 11695 Primary 11697 Primary 11699 Primary 11701 Primary 11703 
+Primary 11705 Primary 11707 Primary 11709 Primary 11711 Primary 11713 Primary 11715 
+Primary 11717 Primary 11719 Primary 11721 Primary 11723 Primary 11725 Primary 11727 
+Primary 11729 Primary 11731 Sign False 
+
+
+SpecialCategory 13927 "J bisher gruppiert~J bisher~Quartal3" Parent 13905 
+Levels 0 Label "3. Q. 2018" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 13929 Sign False 
+SpecialCategory 13929 "J bisher gruppiert~J bisher~Quartal3~Monat1" Parent 13927 
+Levels 0 Label "Juli/2018" Inclusion Generate Lastuse 20180820 Rollup True 
+TimeAggregate None Primary 11737 Primary 11739 Primary 11741 Primary 11743 
+Primary 11745 Primary 11747 Primary 11749 Primary 11751 Primary 11753 Sign False 
+
+
+
+
+SpecialCategory 13953 "J bisher gruppiert~ÄNDERUNG ( ""Voriges J bisher"" , ""J bisher"" )" 
+Parent 1519 Levels 0 Label "J bisher Änderung" Lastuse 20180820 Rollup False 
+TimeAggregate None Calc change ( "J bisher gruppiert~Voriges J bisher@13931" , "J bisher gruppiert~J bisher@13905" )  Sign False 
+
+
+SpecialCategory 13955 "J bisher gruppiert~PROZENTZUWACHS ( ""Voriges J bisher"" , ""J bisher"" )" 
+Parent 1519 Levels 0 Label "J bisher Zuwachs" Lastuse 20180820 Rollup False 
+TimeAggregate None Calc percent-growth ( "J bisher gruppiert~Voriges J bisher@13931" , "J bisher gruppiert~J bisher@13905" )  Format "0%~2" 
+Sign False 
+
+
+SpecialCategory 9157 "103941" Parent 1467 Levels 0 Label "per Vormonat" 
+Lastuse 20180820 Rollup True TimeAggregate ToDate RunningPeriods 0 TargetOffset -1 
+TargetLevel "Monat" ContextOffset 0 DateDrill 1469 TransientLevelList 13961 For 1475 
+13965 For 1481 EndList Primary 13959 Primary 13973 Sign False 
+SpecialCategory 13959 "103941~Jahr1" Parent 9157 Levels 0 Label "2017" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 13963 
+Primary 13967 Primary 13969 Primary 13971 Sign False 
+SpecialCategory 13963 "103941~Jahr1~Quartal1" Parent 13959 Levels 0 Label "1. Q. 2017" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 10559 
+Primary 10623 Primary 10681 Sign False 
+
+SpecialCategory 13967 "103941~Jahr1~Quartal2" Parent 13959 Levels 0 Label "2. Q. 2017" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 10747 
+Primary 10809 Primary 10873 Sign False 
+
+SpecialCategory 13969 "103941~Jahr1~Quartal3" Parent 13959 Levels 0 Label "3. Q. 2017" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 10937 
+Primary 11001 Primary 11065 Sign False 
+
+SpecialCategory 13971 "103941~Jahr1~Quartal4" Parent 13959 Levels 0 Label "4. Q. 2017" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 11129 
+Primary 11193 Primary 11255 Sign False 
+
+
+SpecialCategory 13973 "103941~Jahr2" Parent 9157 Levels 0 Label "2018" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 13975 
+Primary 13977 Sign False 
+SpecialCategory 13975 "103941~Jahr2~Quartal1" Parent 13973 Levels 0 Label "1. Q. 2018" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 11357 
+Primary 11421 Primary 11479 Sign False 
+
+SpecialCategory 13977 "103941~Jahr2~Quartal2" Parent 13973 Levels 0 Label "2. Q. 2018" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 11545 
+Primary 11607 Primary 11671 Sign False 
+
+
+
+SpecialCategory 9159 "113319" Parent 1467 Levels 0 Label "älter 14 Tage" 
+Lastuse 20180820 Rollup True TimeAggregate ToDate RunningPeriods 0 TargetOffset -14 
+TargetLevel "Tag" ContextOffset 0 DateDrill 1469 TransientLevelList 13981 For 1475 
+13985 For 1481 13989 For 1487 EndList Primary 13979 Primary 14019 Sign False 
+
+SpecialCategory 13979 "113319~Jahr1" Parent 9159 Levels 0 Label "2017" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 13983 
+Primary 13995 Primary 14003 Primary 14011 Sign False 
+SpecialCategory 13983 "113319~Jahr1~Quartal1" Parent 13979 Levels 0 Label "1. Q. 2017" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 13987 
+Primary 13991 Primary 13993 Sign False 
+SpecialCategory 13987 "113319~Jahr1~Quartal1~Monat1" Parent 13983 Levels 0 
+Label "Jan./2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10561 Primary 10563 Primary 10565 Primary 10567 Primary 10569 Primary 10571 
+Primary 10573 Primary 10575 Primary 10577 Primary 10579 Primary 10581 Primary 10583 
+Primary 10585 Primary 10587 Primary 10589 Primary 10591 Primary 10593 Primary 10595 
+Primary 10597 Primary 10599 Primary 10601 Primary 10603 Primary 10605 Primary 10607 
+Primary 10609 Primary 10611 Primary 10613 Primary 10615 Primary 10617 Primary 10619 
+Primary 10621 Sign False 
+
+SpecialCategory 13991 "113319~Jahr1~Quartal1~Monat2" Parent 13983 Levels 0 
+Label "Feb./2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10625 Primary 10627 Primary 10629 Primary 10631 Primary 10633 Primary 10635 
+Primary 10637 Primary 10639 Primary 10641 Primary 10643 Primary 10645 Primary 10647 
+Primary 10649 Primary 10651 Primary 10653 Primary 10655 Primary 10657 Primary 10659 
+Primary 10661 Primary 10663 Primary 10665 Primary 10667 Primary 10669 Primary 10671 
+Primary 10673 Primary 10675 Primary 10677 Primary 10679 Sign False 
+
+SpecialCategory 13993 "113319~Jahr1~Quartal1~Monat3" Parent 13983 Levels 0 
+Label "März/2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10683 Primary 10685 Primary 10687 Primary 10689 Primary 10691 Primary 10693 
+Primary 10695 Primary 10697 Primary 10699 Primary 10701 Primary 10703 Primary 10705 
+Primary 10707 Primary 10709 Primary 10711 Primary 10713 Primary 10715 Primary 10717 
+Primary 10719 Primary 10721 Primary 10723 Primary 10725 Primary 10727 Primary 10729 
+Primary 10731 Primary 10733 Primary 10735 Primary 10737 Primary 10739 Primary 10741 
+Primary 10743 Sign False 
+
+
+SpecialCategory 13995 "113319~Jahr1~Quartal2" Parent 13979 Levels 0 Label "2. Q. 2017" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 13997 
+Primary 13999 Primary 14001 Sign False 
+SpecialCategory 13997 "113319~Jahr1~Quartal2~Monat1" Parent 13995 Levels 0 
+Label "Apr./2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10749 Primary 10751 Primary 10753 Primary 10755 Primary 10757 Primary 10759 
+Primary 10761 Primary 10763 Primary 10765 Primary 10767 Primary 10769 Primary 10771 
+Primary 10773 Primary 10775 Primary 10777 Primary 10779 Primary 10781 Primary 10783 
+Primary 10785 Primary 10787 Primary 10789 Primary 10791 Primary 10793 Primary 10795 
+Primary 10797 Primary 10799 Primary 10801 Primary 10803 Primary 10805 Primary 10807 
+Sign False 
+
+SpecialCategory 13999 "113319~Jahr1~Quartal2~Monat2" Parent 13995 Levels 0 
+Label "Mai/2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10811 Primary 10813 Primary 10815 Primary 10817 Primary 10819 Primary 10821 
+Primary 10823 Primary 10825 Primary 10827 Primary 10829 Primary 10831 Primary 10833 
+Primary 10835 Primary 10837 Primary 10839 Primary 10841 Primary 10843 Primary 10845 
+Primary 10847 Primary 10849 Primary 10851 Primary 10853 Primary 10855 Primary 10857 
+Primary 10859 Primary 10861 Primary 10863 Primary 10865 Primary 10867 Primary 10869 
+Primary 10871 Sign False 
+
+SpecialCategory 14001 "113319~Jahr1~Quartal2~Monat3" Parent 13995 Levels 0 
+Label "Juni/2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10875 Primary 10877 Primary 10879 Primary 10881 Primary 10883 Primary 10885 
+Primary 10887 Primary 10889 Primary 10891 Primary 10893 Primary 10895 Primary 10897 
+Primary 10899 Primary 10901 Primary 10903 Primary 10905 Primary 10907 Primary 10909 
+Primary 10911 Primary 10913 Primary 10915 Primary 10917 Primary 10919 Primary 10921 
+Primary 10923 Primary 10925 Primary 10927 Primary 10929 Primary 10931 Primary 10933 
+Sign False 
+
+
+SpecialCategory 14003 "113319~Jahr1~Quartal3" Parent 13979 Levels 0 Label "3. Q. 2017" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 14005 
+Primary 14007 Primary 14009 Sign False 
+SpecialCategory 14005 "113319~Jahr1~Quartal3~Monat1" Parent 14003 Levels 0 
+Label "Juli/2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 10939 Primary 10941 Primary 10943 Primary 10945 Primary 10947 Primary 10949 
+Primary 10951 Primary 10953 Primary 10955 Primary 10957 Primary 10959 Primary 10961 
+Primary 10963 Primary 10965 Primary 10967 Primary 10969 Primary 10971 Primary 10973 
+Primary 10975 Primary 10977 Primary 10979 Primary 10981 Primary 10983 Primary 10985 
+Primary 10987 Primary 10989 Primary 10991 Primary 10993 Primary 10995 Primary 10997 
+Primary 10999 Sign False 
+
+SpecialCategory 14007 "113319~Jahr1~Quartal3~Monat2" Parent 14003 Levels 0 
+Label "Aug./2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11003 Primary 11005 Primary 11007 Primary 11009 Primary 11011 Primary 11013 
+Primary 11015 Primary 11017 Primary 11019 Primary 11021 Primary 11023 Primary 11025 
+Primary 11027 Primary 11029 Primary 11031 Primary 11033 Primary 11035 Primary 11037 
+Primary 11039 Primary 11041 Primary 11043 Primary 11045 Primary 11047 Primary 11049 
+Primary 11051 Primary 11053 Primary 11055 Primary 11057 Primary 11059 Primary 11061 
+Primary 11063 Sign False 
+
+SpecialCategory 14009 "113319~Jahr1~Quartal3~Monat3" Parent 14003 Levels 0 
+Label "Sept./2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11067 Primary 11069 Primary 11071 Primary 11073 Primary 11075 Primary 11077 
+Primary 11079 Primary 11081 Primary 11083 Primary 11085 Primary 11087 Primary 11089 
+Primary 11091 Primary 11093 Primary 11095 Primary 11097 Primary 11099 Primary 11101 
+Primary 11103 Primary 11105 Primary 11107 Primary 11109 Primary 11111 Primary 11113 
+Primary 11115 Primary 11117 Primary 11119 Primary 11121 Primary 11123 Primary 11125 
+Sign False 
+
+
+SpecialCategory 14011 "113319~Jahr1~Quartal4" Parent 13979 Levels 0 Label "4. Q. 2017" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 14013 
+Primary 14015 Primary 14017 Sign False 
+SpecialCategory 14013 "113319~Jahr1~Quartal4~Monat1" Parent 14011 Levels 0 
+Label "Okt./2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11131 Primary 11133 Primary 11135 Primary 11137 Primary 11139 Primary 11141 
+Primary 11143 Primary 11145 Primary 11147 Primary 11149 Primary 11151 Primary 11153 
+Primary 11155 Primary 11157 Primary 11159 Primary 11161 Primary 11163 Primary 11165 
+Primary 11167 Primary 11169 Primary 11171 Primary 11173 Primary 11175 Primary 11177 
+Primary 11179 Primary 11181 Primary 11183 Primary 11185 Primary 11187 Primary 11189 
+Primary 11191 Sign False 
+
+SpecialCategory 14015 "113319~Jahr1~Quartal4~Monat2" Parent 14011 Levels 0 
+Label "Nov./2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11195 Primary 11197 Primary 11199 Primary 11201 Primary 11203 Primary 11205 
+Primary 11207 Primary 11209 Primary 11211 Primary 11213 Primary 11215 Primary 11217 
+Primary 11219 Primary 11221 Primary 11223 Primary 11225 Primary 11227 Primary 11229 
+Primary 11231 Primary 11233 Primary 11235 Primary 11237 Primary 11239 Primary 11241 
+Primary 11243 Primary 11245 Primary 11247 Primary 11249 Primary 11251 Primary 11253 
+Sign False 
+
+SpecialCategory 14017 "113319~Jahr1~Quartal4~Monat3" Parent 14011 Levels 0 
+Label "Dez./2017" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11257 Primary 11259 Primary 11261 Primary 11263 Primary 11265 Primary 11267 
+Primary 11269 Primary 11271 Primary 11273 Primary 11275 Primary 11277 Primary 11279 
+Primary 11281 Primary 11283 Primary 11285 Primary 11287 Primary 11289 Primary 11291 
+Primary 11293 Primary 11295 Primary 11297 Primary 11299 Primary 11301 Primary 11303 
+Primary 11305 Primary 11307 Primary 11309 Primary 11311 Primary 11313 Primary 11315 
+Primary 11317 Sign False 
+
+
+
+SpecialCategory 14019 "113319~Jahr2" Parent 9159 Levels 0 Label "2018" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 14021 
+Primary 14029 Sign False 
+SpecialCategory 14021 "113319~Jahr2~Quartal1" Parent 14019 Levels 0 Label "1. Q. 2018" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 14023 
+Primary 14025 Primary 14027 Sign False 
+SpecialCategory 14023 "113319~Jahr2~Quartal1~Monat1" Parent 14021 Levels 0 
+Label "Jan./2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11359 Primary 11361 Primary 11363 Primary 11365 Primary 11367 Primary 11369 
+Primary 11371 Primary 11373 Primary 11375 Primary 11377 Primary 11379 Primary 11381 
+Primary 11383 Primary 11385 Primary 11387 Primary 11389 Primary 11391 Primary 11393 
+Primary 11395 Primary 11397 Primary 11399 Primary 11401 Primary 11403 Primary 11405 
+Primary 11407 Primary 11409 Primary 11411 Primary 11413 Primary 11415 Primary 11417 
+Primary 11419 Sign False 
+
+SpecialCategory 14025 "113319~Jahr2~Quartal1~Monat2" Parent 14021 Levels 0 
+Label "Feb./2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11423 Primary 11425 Primary 11427 Primary 11429 Primary 11431 Primary 11433 
+Primary 11435 Primary 11437 Primary 11439 Primary 11441 Primary 11443 Primary 11445 
+Primary 11447 Primary 11449 Primary 11451 Primary 11453 Primary 11455 Primary 11457 
+Primary 11459 Primary 11461 Primary 11463 Primary 11465 Primary 11467 Primary 11469 
+Primary 11471 Primary 11473 Primary 11475 Primary 11477 Sign False 
+
+SpecialCategory 14027 "113319~Jahr2~Quartal1~Monat3" Parent 14021 Levels 0 
+Label "März/2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11481 Primary 11483 Primary 11485 Primary 11487 Primary 11489 Primary 11491 
+Primary 11493 Primary 11495 Primary 11497 Primary 11499 Primary 11501 Primary 11503 
+Primary 11505 Primary 11507 Primary 11509 Primary 11511 Primary 11513 Primary 11515 
+Primary 11517 Primary 11519 Primary 11521 Primary 11523 Primary 11525 Primary 11527 
+Primary 11529 Primary 11531 Primary 11533 Primary 11535 Primary 11537 Primary 11539 
+Primary 11541 Sign False 
+
+
+SpecialCategory 14029 "113319~Jahr2~Quartal2" Parent 14019 Levels 0 Label "2. Q. 2018" 
+Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None Primary 14031 
+Primary 14033 Primary 14035 Sign False 
+SpecialCategory 14031 "113319~Jahr2~Quartal2~Monat1" Parent 14029 Levels 0 
+Label "Apr./2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11547 Primary 11549 Primary 11551 Primary 11553 Primary 11555 Primary 11557 
+Primary 11559 Primary 11561 Primary 11563 Primary 11565 Primary 11567 Primary 11569 
+Primary 11571 Primary 11573 Primary 11575 Primary 11577 Primary 11579 Primary 11581 
+Primary 11583 Primary 11585 Primary 11587 Primary 11589 Primary 11591 Primary 11593 
+Primary 11595 Primary 11597 Primary 11599 Primary 11601 Primary 11603 Primary 11605 
+Sign False 
+
+SpecialCategory 14033 "113319~Jahr2~Quartal2~Monat2" Parent 14029 Levels 0 
+Label "Mai/2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11609 Primary 11611 Primary 11613 Primary 11615 Primary 11617 Primary 11619 
+Primary 11621 Primary 11623 Primary 11625 Primary 11627 Primary 11629 Primary 11631 
+Primary 11633 Primary 11635 Primary 11637 Primary 11639 Primary 11641 Primary 11643 
+Primary 11645 Primary 11647 Primary 11649 Primary 11651 Primary 11653 Primary 11655 
+Primary 11657 Primary 11659 Primary 11661 Primary 11663 Primary 11665 Primary 11667 
+Primary 11669 Sign False 
+
+SpecialCategory 14035 "113319~Jahr2~Quartal2~Monat3" Parent 14029 Levels 0 
+Label "Juni/2018" Inclusion Generate Lastuse 20180820 Rollup True TimeAggregate None 
+Primary 11673 Primary 11675 Primary 11677 Primary 11679 Primary 11681 Primary 11683 
+Primary 11685 Primary 11687 Primary 11689 Primary 11691 Primary 11693 Primary 11695 
+Primary 11697 Primary 11699 Primary 11701 Primary 11703 Primary 11705 Primary 11707 
+Primary 11709 Primary 11711 Primary 11713 Primary 11715 Primary 11717 Primary 11719 
+Primary 11721 Sign False 
+
+
+
+
+MapDrills 
+MapDrill 1469 
+
+ViewName 1471 "Alle Kategorien" Type All ViewCustomView 0 
+ViewName 1473 "Dimension auslassen" Type Omit ViewCustomView 0 
+Dimension 1521 "AH-Gruppe" DimType Regular NewCatsLock False ExcludeAutoPartitioning False 
+DimDefaultCategory 0 
+
+Categories 
+Root 1523 "Hauptbetrieb" Inclusion Generate Lastuse 20180820 Filtered False 
+Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False 
+Blanks False 
+Drill 1525 "Nach Hauptbetrieb" Inclusion Suppress Filtered False Suppressed True 
+PrimaryDrill True HideValue False 
+Levels 1531 "Hauptbetrieb" Blanks "( Leerstelle )" DateFunction None Generate None 
+RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False 
+Timerank 0 UniqueCategories False UniqueMove False Associations 1533 "Hauptbetrieb_ID" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Hauptbetrieb_ID" 
+
+Associations 15065 "Hauptbetrieb_Name" AssociationType Type_Query AssociationRole Role_Label 
+AssociationReferenced "Hauptbetrieb_Name" 
+Associations 15069 "Hauptbetrieb_ID" AssociationContext 1525 AssociationType Type_Query 
+AssociationRole Role_OrderBy AssociationReferenced "Hauptbetrieb_ID" SortOrder Text 
+SortAs Ascending 
+
+
+Levels 1535 "Standort" Blanks "( Leerstelle )" DateFunction None Generate None 
+RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False 
+Timerank 0 UniqueCategories False UniqueMove False Associations 1537 "Standort_ID" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Standort_ID" 
+
+Associations 15067 "Standort_Name" AssociationType Type_Query AssociationRole Role_Label 
+AssociationReferenced "Standort_Name" 
+Associations 15071 "Standort_ID" AssociationContext 1525 AssociationType Type_Query 
+AssociationRole Role_OrderBy AssociationReferenced "Standort_ID" SortOrder Text 
+SortAs Ascending 
+
+
+Levels 1539 "Serviceberater" Blanks "( Leerstelle )" DateFunction None 
+Generate None RefreshLabel False RefreshDescription False RefreshShortName False 
+NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 1541 
+"Serviceberater" AssociationType Type_Query AssociationRole Role_Source 
+AssociationReferenced "Serviceberater" 
+
+
+Levels 1547 "Order Number" Blanks "( Leerstelle )" DateFunction None Generate None 
+RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False 
+Timerank 0 UniqueCategories False UniqueMove False Associations 1549 "Order Number" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Order Number" 
+
+Associations 10329 "Tage offen" AssociationContext 1525 AssociationType Type_Query 
+AssociationRole Role_OrderBy AssociationReferenced "Tage offen" SortOrder Int16 
+SortAs Descending 
+
+
+
+MapDrills 
+MapDrill 1525 
+
+ViewName 1527 "Alle Kategorien" Type All ViewCustomView 0 
+ViewName 1529 "Dimension auslassen" Type Omit ViewCustomView 0 
+Dimension 1551 "Fabrikat" DimType Regular NewCatsLock False ExcludeAutoPartitioning False 
+DimDefaultCategory 0 
+
+Categories 
+Root 1553 "Fabrikat" Inclusion Generate Lastuse 20180820 Filtered False 
+Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False 
+Blanks False 
+Drill 1555 "Nach Fabrikat" Inclusion Suppress Filtered False Suppressed True 
+PrimaryDrill True HideValue False 
+Levels 1561 "Fabrikat" Blanks "( Leerstelle )" DateFunction None Generate None 
+RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False 
+Timerank 0 UniqueCategories False UniqueMove False Associations 1563 "Fabrikat" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Fabrikat" 
+
+
+
+Levels 1565 "Model" Blanks "( Leerstelle )" DateFunction None Generate None 
+RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False 
+Timerank 0 UniqueCategories False UniqueMove False Associations 1567 "Model" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Model" 
+
+
+
+Levels 1569 "Fahrzeug" Blanks "( Leerstelle )" DateFunction None Generate None 
+RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False 
+Timerank 0 UniqueCategories False UniqueMove False Associations 1571 "Fahrzeug" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Fahrzeug" 
+
+
+
+Category 15729 "Ford" Parent 1555 Levels 1561 Lastuse 20200615 SourceValue "Ford" 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 15731 "KIA" Parent 1555 Levels 1561 Lastuse 20200615 SourceValue "KIA" 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 15733 "Mitsubishi" Parent 1555 Levels 1561 Lastuse 20200615 SourceValue "Mitsubishi" 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+MapDrills 
+MapDrill 1555 
+
+ViewName 1557 "Alle Kategorien" Type All ViewCustomView 0 
+ViewName 1559 "Dimension auslassen" Type Omit ViewCustomView 0 
+Dimension 1575 "Kostenstelle" DimType Regular NewCatsLock False ExcludeAutoPartitioning False 
+DimDefaultCategory 0 
+
+Categories 
+Root 1577 "Kostenstelle" Inclusion Generate Lastuse 20180820 Filtered False 
+Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False 
+Blanks False 
+Drill 1579 "Nach Kostenstelle" Inclusion Suppress Filtered False Suppressed True 
+PrimaryDrill True HideValue False 
+Levels 1585 "Kostenstelle" Blanks "( Leerstelle )" DateFunction None Generate None 
+RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False 
+Timerank 0 UniqueCategories False UniqueMove False Associations 1587 "Kostenstelle" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Kostenstelle" 
+
+
+
+Category 2491 "3" Parent 1579 Levels 1585 Label "3 - Mechanik" Lastuse 20200615 
+SourceValue "3" Filtered False Suppressed False Sign False HideValue False 
+IsKeyOrphanage False IsTruncated False Blanks False 
+
+Category 2579 "6" Parent 1579 Levels 1585 Label "6 - Teile" Inclusion Generate 
+Lastuse 20200615 SourceValue "6" Filtered False Suppressed False Sign False 
+HideValue False IsKeyOrphanage False IsTruncated False Blanks False 
+
+
+MapDrills 
+MapDrill 1579 
+
+ViewName 1581 "Alle Kategorien" Type All ViewCustomView 0 
+ViewName 1583 "Dimension auslassen" Type Omit ViewCustomView 0 
+Dimension 1591 "Marke" DimType Regular NewCatsLock False ExcludeAutoPartitioning False 
+DimDefaultCategory 0 
+
+Categories 
+Root 1593 "Marke" Inclusion Generate Lastuse 20180820 Filtered False Suppressed False 
+Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False 
+
+Drill 1595 "Nach Marke" Inclusion Suppress Filtered False Suppressed True 
+PrimaryDrill True HideValue False 
+Levels 1601 "Marke" Blanks "( Leerstelle )" DateFunction None Generate None 
+RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False 
+Timerank 0 UniqueCategories False UniqueMove False Associations 1603 "Fabrikat" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Fabrikat" 
+
+
+
+Category 15735 "Ford" Parent 1595 Levels 1601 Lastuse 20200615 SourceValue "Ford" 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 15737 "KIA" Parent 1595 Levels 1601 Lastuse 20200615 SourceValue "KIA" 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+Category 15739 "Mitsubishi" Parent 1595 Levels 1601 Lastuse 20200615 SourceValue "Mitsubishi" 
+Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False 
+IsTruncated False Blanks False 
+
+
+MapDrills 
+MapDrill 1595 
+
+ViewName 1597 "Alle Kategorien" Type All ViewCustomView 0 
+ViewName 1599 "Dimension auslassen" Type Omit ViewCustomView 0 
+Dimension 1651 "Kunde" DimType Regular NewCatsLock False ExcludeAutoPartitioning False 
+DimDefaultCategory 0 
+
+Categories 
+Root 1653 "Kunde" Inclusion Generate Lastuse 20180820 Filtered False Suppressed False 
+Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False 
+
+Drill 1655 "Nach Kunde" Inclusion Suppress Filtered False Suppressed True 
+PrimaryDrill True HideValue False 
+Levels 1661 "Kunde" Blanks "( Leerstelle )" DateFunction None Generate None 
+RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False 
+Timerank 0 UniqueCategories False UniqueMove False Associations 1663 "Kunde" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Kunde" 
+
+
+
+
+MapDrills 
+MapDrill 1655 
+
+ViewName 1657 "Alle Kategorien" Type All ViewCustomView 0 
+ViewName 1659 "Dimension auslassen" Type Omit ViewCustomView 0 
+Dimension 1665 "Auftrag Detail" DimType Regular NewCatsLock False ExcludeAutoPartitioning False 
+DimDefaultCategory 0 
+
+Categories 
+Root 1667 "verk. AW" Inclusion Generate Lastuse 20180820 Filtered False 
+Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False 
+Blanks False 
+Drill 1669 "Nach verk. AW" Inclusion Suppress Filtered False Suppressed True 
+PrimaryDrill True HideValue False 
+Levels 10233 "Serviceberater" Blanks "( Leerstelle )" DateFunction None 
+Generate None RefreshLabel False RefreshDescription False RefreshShortName False 
+NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 10235 
+"Serviceberater" AssociationType Type_Query AssociationRole Role_Source 
+AssociationReferenced "Serviceberater" 
+
+
+Levels 10227 "Order Number" Blanks "( Leerstelle )" DateFunction None Generate None 
+RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False 
+Timerank 0 UniqueCategories False UniqueMove False Associations 10229 "Order Number" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Order Number" 
+
+Associations 10231 "Tage offen" AssociationContext 1669 AssociationType Type_Query 
+AssociationRole Role_OrderBy AssociationReferenced "Tage offen" SortOrder Int16 
+SortAs Descending 
+
+
+
+MapDrills 
+MapDrill 1669 
+
+ViewName 1671 "Alle Kategorien" Type All ViewCustomView 0 
+ViewName 1673 "Dimension auslassen" Type Omit ViewCustomView 0 
+Dimension 1693 "Serviceberater" DimType Regular NewCatsLock False ExcludeAutoPartitioning False 
+DimDefaultCategory 0 
+
+Categories 
+Root 1695 "Serviceberater" Inclusion Generate Lastuse 20180820 Filtered False 
+Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False 
+Blanks False 
+Drill 1697 "Nach Serviceberater" Inclusion Suppress Filtered False Suppressed True 
+PrimaryDrill True HideValue False 
+Levels 1703 "Serviceberater" Blanks "( Leerstelle )" DateFunction None 
+Generate None RefreshLabel False RefreshDescription False RefreshShortName False 
+NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 1705 
+"Serviceberater" AssociationType Type_Query AssociationRole Role_Source 
+AssociationReferenced "Serviceberater" 
+
+
+Levels 14777 "Order Number" Blanks "( Leer )" DateFunction None Generate None 
+RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False 
+Timerank 0 UniqueCategories False UniqueMove False Associations 14779 "Order Number" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Order Number" 
+
+Associations 14781 "Tage offen" AssociationContext 1697 AssociationType Type_Query 
+AssociationRole Role_OrderBy AssociationReferenced "Tage offen" SortOrder Int16 
+SortAs Descending 
+
+
+
+MapDrills 
+MapDrill 1697 
+
+ViewName 1699 "Alle Kategorien" Type All ViewCustomView 0 
+ViewName 1701 "Dimension auslassen" Type Omit ViewCustomView 0 
+Dimension 15741 "Auftragsart" DimType Regular NewCatsLock False ExcludeAutoPartitioning False 
+DimDefaultCategory 0 
+
+Categories 
+Root 15743 "Auftragsart" Inclusion Generate Lastuse 20200615 Filtered False 
+Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False 
+Blanks False 
+Drill 15745 "Nach Auftragsart" Inclusion Suppress Filtered False Suppressed True 
+PrimaryDrill True HideValue False 
+Levels 15751 "Auftragsart" Blanks "( Leer )" DateFunction None Generate None 
+RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False 
+Timerank 0 UniqueCategories False UniqueMove False Associations 15753 "Auftragsart" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Auftragsart" 
+
+Associations 15755 "Auftragsart" AssociationContext 15745 AssociationType Type_Query 
+AssociationRole Role_OrderBy AssociationReferenced "Auftragsart" SortOrder Text 
+SortAs Ascending 
+
+
+
+MapDrills 
+MapDrill 15745 
+
+ViewName 15747 "Alle Kategorien" Type All ViewCustomView 0 
+ViewName 15749 "Dimension auslassen" Type Omit ViewCustomView 0 
+Measure 9829 "Tage offen" Missing Zero IgnoreMissingValue False Storage Float64 
+OutPutScale 0 Decimals 5 ReverseSign False IsCurrency False IsFolder False 
+Format "#,##0~0" DrillThrough False EndList Associations 9831 "Tage offen" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Tage offen" 
+
+
+
+Measure 10053 "DG" Missing Zero IgnoreMissingValue False Storage Float64 
+OutPutScale 0 Decimals 8 ReverseSign False IsCurrency False IsFolder False 
+Format "#,##0~0" DrillThrough False EndList Associations 10055 "DG" AssociationType Type_Query 
+AssociationRole Role_Source AssociationReferenced "DG" 
+
+
+Measure 10309 "Lohn" Missing Zero IgnoreMissingValue False Storage Float64 
+OutPutScale 8 Decimals 3 ReverseSign False IsCurrency False IsFolder False 
+Format "#,##0~0" DrillThrough False EndList Associations 10311 "Lohn" AssociationType Type_Query 
+AssociationRole Role_Source AssociationReferenced "Lohn" 
+
+
+Measure 10313 "Teile" Missing Zero IgnoreMissingValue False Storage Float64 
+OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False 
+Format "#,##0~0" DrillThrough False EndList Associations 10315 "Teile" 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Teile" 
+
+
+
+Measure 10317 "Sonst." Missing Zero IgnoreMissingValue False Storage Float64 
+OutPutScale 8 Decimals 3 ReverseSign False IsCurrency False IsFolder False 
+Format "#,##0~0" DrillThrough False EndList Associations 10319 "Sonst." 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Sonst." 
+
+
+
+Measure 15761 "Tage seit letzt. Stemp." IgnoreMissingValue False Storage Float64 
+OutPutScale 0 Decimals 0 ReverseSign False IsCurrency False IsFolder False 
+Format "#,##0~0" DrillThrough False EndList Associations 15763 "Tage seit letzt. Stemp." 
+AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Tage seit letzt. Stemp." 
+
+
+
+
+
+Signon 15673 "GC_CARLO" UserId "gaps" 
+PromptForPassword False EncryptedPW "*1*0154377D72534C4B5F384F556F5B7970286A59373F70255D63D4EDE5BC9A7FD45994" 
+"AC2C0B8CE18548" AutoLogon False SignonType "DataSource" 
+Signon 15917 "Global1" UserId "Global1" 
+PromptForPassword False EncryptedPW "*1*013B396846296D72232C62274C312B48432B464B52705B2147BC0680EA66C628A0FE" 
+"A70FDB4177ACBA" AutoLogon True SignOnNamespace "CognosEx" SignonType "Cognos" 
+
+Signon 15947 "Test" UserId "Global1" 
+FullDb "" PromptForPassword False EncryptedPW "*1*014D364B683C32432B543A6D2E6C475E207A526D2C3B325F74382B1B5F1C5B4C31AB" 
+"678035C7648969" AutoLogon False SignonType "DataSource" 
+Cube 1707 "S_Offene_Auftraege" MdcFile "c:\globalcube\system\audev_carit\cube_out\s_offene_auftraege.mdc" 
+EncryptedPW "" Status OK CubeCreation On Optimize Default ConsolidatedRecords 10000000 
+PartitionSize 500000 PassesNumber 5 Compress False IncrementalUpdate False 
+ServerCube False CubeStamp 1534758561 CubeCycle 8 BlockParentTotals False 
+Caching False UseAlternateFileName False DeployType DeployToAvailableLocationsAutomatic 
+DeployLocations "c:\globalcube\cubes" EndList DeployCleanupEnabled True 
+DeployCleanupNumberOfCubes 2 DrillThrough False EndList DataSourceSignon False 
+PublishEnable True PublishStatus None PublishAllowNullSuppression True 
+PublishAllowMultiEdgeSuppression True PublishAllowAccessToSuppressionOptions True 
+
+DimensionView 1463 "All Categories" DimensionView 1521 "All Categories" 
+DimensionView 1551 "All Categories" DimensionView 1575 "All Categories" 
+DimensionView 1591 "All Categories" DimensionView 1651 "All Categories" 
+DimensionView 1665 "All Categories" DimensionView 1693 "All Categories" 
+DimensionView 15741 "All Categories" 
+MeasureInclude 9829 Yes MeasureInclude 10053 Yes MeasureInclude 10309 Yes 
+MeasureInclude 10313 Yes MeasureInclude 10317 Yes MeasureInclude 15761 
+Yes 
+
+
+AllocationAdd Measure 9829 Type Default 
+AllocationAdd Measure 10053 Type Default 
+AllocationAdd Measure 10309 Type Default 
+AllocationAdd Measure 10313 Type Default 
+AllocationAdd Measure 10317 Type Default 
+AllocationAdd Measure 15761 Type Default 
+