From 2f41b75b7ab632cb1ac6f841dfa28658d60a80d9 Mon Sep 17 00:00:00 2001
From: esikkala <esko.ikkala@aalto.fi>
Date: Fri, 8 May 2020 12:07:06 +0300
Subject: [PATCH] Add new stories and prop type definitions

---
 src/client/components/facet_bar/ChipsArray.js |     4 +
 src/client/components/facet_bar/DateFacet.js  |     5 +
 .../components/facet_bar/DateFacet.stories.js |    57 +
 .../components/facet_bar/FacetHeader.js       |     3 +
 .../components/facet_bar/HierarchicalFacet.js |    55 +-
 .../facet_bar/HierarchicalFacet.stories.js    |    33 +
 .../facet_bar/HierarchicalFacet.testData.js   | 20025 ++++++++++++++++
 src/client/components/facet_bar/RangeFacet.js |     3 +
 src/client/components/main_layout/TextPage.js |     6 +-
 9 files changed, 20178 insertions(+), 13 deletions(-)
 create mode 100644 src/client/components/facet_bar/DateFacet.stories.js
 create mode 100644 src/client/components/facet_bar/HierarchicalFacet.stories.js
 create mode 100644 src/client/components/facet_bar/HierarchicalFacet.testData.js

diff --git a/src/client/components/facet_bar/ChipsArray.js b/src/client/components/facet_bar/ChipsArray.js
index b9d1f600..59f02732 100644
--- a/src/client/components/facet_bar/ChipsArray.js
+++ b/src/client/components/facet_bar/ChipsArray.js
@@ -16,6 +16,10 @@ const styles = theme => ({
   }
 })
 
+/**
+ * A component for displaying the active facet selections an array of Material-UI's Chips.
+ * Redux is used for keeping track of the selections.
+ */
 const ChipsArray = props => {
   const handleDelete = item => () => {
     if (!props.someFacetIsFetching) {
diff --git a/src/client/components/facet_bar/DateFacet.js b/src/client/components/facet_bar/DateFacet.js
index 61bc97eb..270e3a5f 100644
--- a/src/client/components/facet_bar/DateFacet.js
+++ b/src/client/components/facet_bar/DateFacet.js
@@ -16,6 +16,9 @@ const styles = theme => ({
   }
 })
 
+/**
+ * A component for a date facet with pickers using @material-ui/pickers and Moment.js.
+ */
 class DateFacet extends React.Component {
   constructor (props) {
     super(props)
@@ -130,4 +133,6 @@ DateFacet.propTypes = {
   facetUpdateID: PropTypes.number
 }
 
+export const DateFacetComponent = DateFacet
+
 export default withStyles(styles)(DateFacet)
diff --git a/src/client/components/facet_bar/DateFacet.stories.js b/src/client/components/facet_bar/DateFacet.stories.js
new file mode 100644
index 00000000..ed73969b
--- /dev/null
+++ b/src/client/components/facet_bar/DateFacet.stories.js
@@ -0,0 +1,57 @@
+import React from 'react'
+import DateFacet, { DateFacetComponent } from './DateFacet'
+import Center from '../../../../.storybook/Center'
+import PaperContainer from '../../../../.storybook/PaperContainer'
+import { MuiPickersUtilsProvider } from '@material-ui/pickers'
+import moment from 'moment'
+import MomentUtils from '@date-io/moment'
+import 'moment/locale/fi'
+// import 'moment/locale/en'
+
+const facet = {
+  id: 'birthTimespan',
+  // predicate: defined in backend
+  distinctValueCount: 0,
+  values: [],
+  flatValues: [],
+  sortBy: null,
+  sortDirection: null,
+  sortButton: false,
+  spatialFilterButton: false,
+  isFetching: false,
+  searchField: false,
+  containerClass: 'three',
+  filterType: 'dateFilter',
+  min: '1800-01-01',
+  max: '1922-12-31',
+  timespanFilter: null,
+  type: 'date'
+}
+
+export default {
+  component: DateFacetComponent,
+  title: 'Sampo-UI/facet_bar/DateFacet',
+  decorators: [storyFn =>
+    <Center><PaperContainer>{storyFn()}</PaperContainer></Center>
+  ]
+}
+
+export const basic = props => {
+  const facetID = 'productionTimespan'
+  return (
+    <div style={{ width: 400, height: 150 }}>
+      <MuiPickersUtilsProvider libInstance={moment} utils={MomentUtils} locale='fi'>
+        <DateFacet
+          facetID={facetID}
+          facet={facet}
+          facetClass='perspective1'
+          resultClass='perspective1'
+          facetUpdateID={0}
+          fetchFacet={() => null}
+          someFacetIsFetching={false}
+          updateFacetOption={() => null}
+        />
+      </MuiPickersUtilsProvider>
+    </div>
+  )
+}
diff --git a/src/client/components/facet_bar/FacetHeader.js b/src/client/components/facet_bar/FacetHeader.js
index 0722f267..2051eddb 100644
--- a/src/client/components/facet_bar/FacetHeader.js
+++ b/src/client/components/facet_bar/FacetHeader.js
@@ -35,6 +35,9 @@ const styles = theme => ({
   }
 })
 
+/**
+ * A component for rendering a header and optional settings dropdown for a facet component.
+ */
 class FacetHeader extends React.Component {
   state = {
     anchorEl: null
diff --git a/src/client/components/facet_bar/HierarchicalFacet.js b/src/client/components/facet_bar/HierarchicalFacet.js
index d62e10a4..196bfdb4 100644
--- a/src/client/components/facet_bar/HierarchicalFacet.js
+++ b/src/client/components/facet_bar/HierarchicalFacet.js
@@ -52,15 +52,15 @@ const styles = () => ({
   }
 })
 
-/*
-This component is based on the React Sortable Tree example at:
-https://frontend-collective.github.io/react-sortable-tree/storybook/?selectedKind=Basics&selectedStory=Search&full=0&addons=0&stories=1&panelRight=0
-*/
+/**
+ * A component for checkbox facets with or without hierarchy.
+ * Based on https://github.com/frontend-collective/react-sortable-tree
+ */
 class HierarchicalFacet extends Component {
   constructor (props) {
     super(props)
     this.state = {
-      treeData: this.props.facetedSearchMode === 'clientFS'
+      treeData: this.props.facetedSearchMode === 'clientFS' || this.props.facetedSearchMode === 'storybook'
         ? this.props.facet.values : [],
       searchString: '',
       searchFocusIndex: 0,
@@ -348,6 +348,7 @@ class HierarchicalFacet extends Component {
                   onlyExpandSearchedNodes
                   theme={FileExplorerTheme}
                   generateNodeProps={this.generateNodeProps}
+                  isVirtualized={!this.props.facetedSearchMode === 'storybook'} // virtualization does not work in Storybook
                 />
               </div>}
             {facet.filterType === 'spatialFilter' &&
@@ -364,22 +365,56 @@ class HierarchicalFacet extends Component {
 }
 
 HierarchicalFacet.propTypes = {
+  /**
+   * Material-UI styles.
+   */
   classes: PropTypes.object.isRequired,
+  /**
+   * Unique id of the facet.
+   */
   facetID: PropTypes.string.isRequired,
+  /**
+   * An object containing the client-side config and values of the facet.
+   */
   facet: PropTypes.object.isRequired,
+  /**
+   * The class of the facet for server-side configs.
+   */
   facetClass: PropTypes.string,
-  resultClass: PropTypes.string,
-  fetchFacet: PropTypes.func,
+  /**
+   * A facet should be disabled while some other facet is updating.
+   */
   someFacetIsFetching: PropTypes.bool.isRequired,
-  updateFacetOption: PropTypes.func,
-  clientFSUpdateFacet: PropTypes.func,
+  /**
+   * An integer for detecting if some other facet was updated.
+   */
   facetUpdateID: PropTypes.number,
+  /**
+   * Lastly updated facet filter, from the Redux state.
+   */
   updatedFilter: PropTypes.oneOfType([
     PropTypes.object,
     PropTypes.string,
     PropTypes.array]),
   updatedFacet: PropTypes.string,
-  facetedSearchMode: PropTypes.string
+  /**
+   * Faceted search mode. Storybook mode disables virtualization of react-sortable-tree.
+   */
+  facetedSearchMode: PropTypes.oneOf(['serverFS', 'clientFS', 'storybook']),
+  /**
+   * Redux action for fetching the facet values.
+   */
+  fetchFacet: PropTypes.func,
+  /**
+   * Redux action for updating the client-side config of the facet.
+   */
+  updateFacetOption: PropTypes.func,
+  /**
+   * Redux action for updating the facet in clientFS mode.
+   */
+  clientFSUpdateFacet: PropTypes.func
 }
 
+export const HierarchicalFacetComponent = HierarchicalFacet
+
 export default withStyles(styles)(HierarchicalFacet)
diff --git a/src/client/components/facet_bar/HierarchicalFacet.stories.js b/src/client/components/facet_bar/HierarchicalFacet.stories.js
new file mode 100644
index 00000000..a8002378
--- /dev/null
+++ b/src/client/components/facet_bar/HierarchicalFacet.stories.js
@@ -0,0 +1,33 @@
+import React from 'react'
+import HierarchicalFacet, { HierarchicalFacetComponent } from './HierarchicalFacet'
+import Center from '../../../../.storybook/Center'
+import PaperContainer from '../../../../.storybook/PaperContainer'
+import { productionPlace } from './HierarchicalFacet.testData'
+import 'react-sortable-tree/style.css' // This only needs to be imported once in your app
+
+export default {
+  component: HierarchicalFacetComponent,
+  title: 'Sampo-UI/facet_bar/HierarchicalFacet',
+  decorators: [storyFn => <Center><PaperContainer>{storyFn()}</PaperContainer></Center>]
+}
+
+export const basic = props => {
+  const facetID = 'productionPlace'
+  return (
+    <div style={{ width: 400, height: 500, overflow: 'auto' }}>
+      {/* <div style={{ height: 400 }}>
+        <SortableTree
+          treeData={productionPlace.values}
+        />
+      </div> */}
+      <HierarchicalFacet
+        facetID={facetID}
+        facet={productionPlace}
+        facetClass='perspective1'
+        someFacetIsFetching={false}
+        fetchFacet={() => null}
+        facetedSearchMode='storybook'
+      />
+    </div>
+  )
+}
diff --git a/src/client/components/facet_bar/HierarchicalFacet.testData.js b/src/client/components/facet_bar/HierarchicalFacet.testData.js
new file mode 100644
index 00000000..f2e52901
--- /dev/null
+++ b/src/client/components/facet_bar/HierarchicalFacet.testData.js
@@ -0,0 +1,20025 @@
+export const productionPlace = {
+  id: 'productionPlace',
+  // predicate: defined in backend
+  distinctValueCount: 0,
+  flatValues: [],
+  sortBy: 'prefLabel',
+  sortDirection: 'asc',
+  sortButton: false,
+  spatialFilterButton: true,
+  spatialFilterTab: 'production_places',
+  isFetching: false,
+  searchField: true,
+  containerClass: 'ten',
+  filterType: 'uriFilter',
+  uriFilter: null,
+  spatialFilter: null,
+  type: 'hierarchical',
+  priority: 5,
+  values: [
+    {
+      id: 'http://ldf.fi/MISSING_VALUE',
+      prefLabel: 'Unknown',
+      selected: 'false',
+      parent: '0',
+      instanceCount: '136353',
+      totalInstanceCount: 136353
+    },
+    {
+      id: 'http://ldf.fi/mmm/place/tgn_7029392',
+      prefLabel: 'World',
+      selected: 'false',
+      parent: '0',
+      instanceCount: '0',
+      children: [
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_6000008',
+          prefLabel: 'Abbasid Caliphate',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '8',
+          totalInstanceCount: 8
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_7001242',
+          prefLabel: 'Africa',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '13',
+          children: [
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7032930',
+              prefLabel: 'Abyssinia (historical)',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '23',
+              totalInstanceCount: 23
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016752',
+              prefLabel: 'Algeria',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '1',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000598',
+                  prefLabel: 'Alger',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016752',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001314',
+                      prefLabel: 'Algiers',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000598',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000782',
+                  prefLabel: 'Tlemcen',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016752',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 4
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016833',
+              prefLabel: 'Egypt',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '375',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001075',
+                  prefLabel: 'Al Buḩayrah',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1103337',
+                      prefLabel: 'Naţrūn, Wādī an',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001075',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001105',
+                  prefLabel: 'Al Fayyūm',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001197',
+                      prefLabel: 'Al Fayyūm',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001105',
+                      instanceCount: '42',
+                      totalInstanceCount: 42
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_5000721',
+                      prefLabel: 'Baţn Ihrīt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001105',
+                      instanceCount: '11',
+                      totalInstanceCount: 11
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7033043',
+                      prefLabel: 'Gurob',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001105',
+                      instanceCount: '21',
+                      totalInstanceCount: 21
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_5004210',
+                      prefLabel: 'Hawara',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001105',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_6004675',
+                      prefLabel: 'Kawm al Ḩamām',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001105',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7535113',
+                      prefLabel: 'Kawm Awshīm',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001105',
+                      instanceCount: '14',
+                      totalInstanceCount: 14
+                    }
+                  ],
+                  totalInstanceCount: 97
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001079',
+                  prefLabel: 'Al Iskandarīyah',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001188',
+                      prefLabel: 'Alexandria',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001079',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    }
+                  ],
+                  totalInstanceCount: 8
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001088',
+                  prefLabel: 'Al Minyā',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001267',
+                      prefLabel: 'Al Bahnasā',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001088',
+                      instanceCount: '170',
+                      totalInstanceCount: 170
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7033014',
+                      prefLabel: 'Dandarah',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001088',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7534548',
+                      prefLabel: 'Hermopolis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001088',
+                      instanceCount: '14',
+                      totalInstanceCount: 14
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1095584',
+                      prefLabel: 'Maghāghah',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001088',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001278',
+                      prefLabel: 'Sheikh-\'Ibada',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001088',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 188
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7528226',
+                  prefLabel: 'Al UqÅŸur',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017995',
+                      prefLabel: 'Luxor',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7528226',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001113',
+                  prefLabel: 'Ash Sharqīyah',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1095477',
+                      prefLabel: 'Fāqūs',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001113',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7526057',
+                      prefLabel: 'Tanis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001113',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    }
+                  ],
+                  totalInstanceCount: 7
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000122',
+                  prefLabel: 'Aswān',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001112',
+                      prefLabel: 'Aswan',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000122',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7523855',
+                      prefLabel: 'Aswān',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000122',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001449',
+                      prefLabel: 'Idfū',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000122',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    }
+                  ],
+                  totalInstanceCount: 12
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001114',
+                  prefLabel: 'Asyūţ',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001111',
+                      prefLabel: 'Asyūţ',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001114',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001142',
+                  prefLabel: 'Banī Suwayf',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7520221',
+                      prefLabel: 'Al Ḩībah',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001142',
+                      instanceCount: '26',
+                      totalInstanceCount: 26
+                    }
+                  ],
+                  totalInstanceCount: 26
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001091',
+                  prefLabel: 'Cairo',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001215',
+                      prefLabel: 'Cairo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001091',
+                      instanceCount: '40',
+                      totalInstanceCount: 40
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7024441',
+                      prefLabel: 'Old Cairo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001091',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 41
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001083',
+                  prefLabel: 'Giza',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7539982',
+                      prefLabel: 'Memphis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001083',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001269',
+                      prefLabel: 'Ṣaqqâra',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001083',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 6
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001336',
+                  prefLabel: 'Janūb Sīnā\'',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1100137',
+                      prefLabel: 'Monastery of Saint Catherine',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001336',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001247',
+                      prefLabel: 'Mūsá, Jabal',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001336',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    }
+                  ],
+                  totalInstanceCount: 11
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000123',
+                  prefLabel: 'Qinā',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001262',
+                      prefLabel: 'Qifá¹­',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000123',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1095644',
+                      prefLabel: 'QÅ«á¹£',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000123',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001297',
+                      prefLabel: 'Thebes',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000123',
+                      instanceCount: '21',
+                      totalInstanceCount: 21
+                    }
+                  ],
+                  totalInstanceCount: 23
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000124',
+                  prefLabel: 'Sūhāj',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001190',
+                      prefLabel: 'Akhmīm',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000124',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7525427',
+                      prefLabel: 'Dayr al Baḩrī',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000124',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001171',
+                      prefLabel: 'Sūhāj',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000124',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 11
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001437',
+                  prefLabel: 'Upper Egypt',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016833',
+                  instanceCount: '3',
+                  totalInstanceCount: 3
+                }
+              ],
+              totalInstanceCount: 813
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7014986',
+              prefLabel: 'Egypt (ancient)',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '1126',
+              totalInstanceCount: 1126
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7001658',
+              prefLabel: 'Eritrea',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '2',
+              totalInstanceCount: 2
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7000489',
+              prefLabel: 'Ethiopia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '56',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001535',
+                  prefLabel: 'Shewa',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000489',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7594690',
+                  prefLabel: 'Tigray',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000489',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                }
+              ],
+              totalInstanceCount: 60
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000169',
+              prefLabel: 'Kenya',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7032929',
+              prefLabel: 'Maghreb',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '4',
+              totalInstanceCount: 4
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000179',
+              prefLabel: 'Morocco',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '19',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8712362',
+                  prefLabel: 'Fès-Meknès',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000179',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7000448',
+                      prefLabel: 'Fez',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8712362',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1091429',
+                      prefLabel: 'Sefrou',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8712362',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 8
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8712365',
+                  prefLabel: 'Marrakech-Safi',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000179',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7000354',
+                      prefLabel: 'Marakesh',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8712365',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                }
+              ],
+              totalInstanceCount: 29
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016886',
+              prefLabel: 'North Africa',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '140',
+              totalInstanceCount: 140
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000201',
+              prefLabel: 'Sudan',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '2',
+              totalInstanceCount: 2
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000203',
+              prefLabel: 'Tanzania',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1009804',
+                  prefLabel: 'Zanzibar',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000203',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                }
+              ],
+              totalInstanceCount: 2
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000205',
+              prefLabel: 'Tunisia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7001242',
+              instanceCount: '4',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1002088',
+                  prefLabel: 'Kairouan',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000205',
+                  instanceCount: '8',
+                  totalInstanceCount: 8
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1002091',
+                  prefLabel: 'Médenine',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000205',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001079',
+                      prefLabel: 'Jerba, ÃŽle de',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1002091',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001022',
+                  prefLabel: 'Tunis',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000205',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001016',
+                      prefLabel: 'Tunis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001022',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 17
+            }
+          ],
+          totalInstanceCount: 2236
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_8711723',
+          prefLabel: 'Almohad Caliphate',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '4',
+          totalInstanceCount: 4
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_1000004',
+          prefLabel: 'Asia',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '2',
+          children: [
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016612',
+              prefLabel: 'Afghanistan',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '11',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001138',
+                  prefLabel: 'Balkh',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016612',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002245',
+                      prefLabel: 'Balkh',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001138',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001122',
+                  prefLabel: 'Bāmyān',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016612',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1065380',
+                      prefLabel: 'Bamiyan',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001122',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001293',
+                  prefLabel: 'Herāt',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016612',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002243',
+                      prefLabel: 'Herāt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001293',
+                      instanceCount: '97',
+                      totalInstanceCount: 97
+                    }
+                  ],
+                  totalInstanceCount: 97
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001331',
+                  prefLabel: 'Kābul',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016612',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001493',
+                  prefLabel: 'Kandahār',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016612',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002248',
+                      prefLabel: 'Kandahar',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001493',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 114
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1012700',
+              prefLabel: 'Arabian Peninsula',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '23',
+              totalInstanceCount: 23
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006651',
+              prefLabel: 'Armenia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '125',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7017975',
+                  prefLabel: 'Ararat province',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006651',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1052257',
+                      prefLabel: 'Ararat',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7017975',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024035',
+                  prefLabel: 'Geghark\'unik\' province',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006651',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024036',
+                  prefLabel: 'Lorri province',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006651',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7024067',
+                      prefLabel: 'Gugark\'',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024036',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7032343',
+                      prefLabel: 'Monastery of Sanahin',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024036',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 3
+                }
+              ],
+              totalInstanceCount: 131
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016606',
+              prefLabel: 'Assyria',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006646',
+              prefLabel: 'Azerbaijan',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '1',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7594461',
+                  prefLabel: 'AÄŸsu',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006646',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7032949',
+                      prefLabel: 'Åžirvan',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7594461',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7594504',
+                  prefLabel: 'Şamaxı',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006646',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1051610',
+                      prefLabel: 'Şamaxı',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7594504',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 4
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_8697475',
+              prefLabel: 'Central Asia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '12',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8698234',
+                  prefLabel: 'Transoxania',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_8697475',
+                  instanceCount: '3',
+                  totalInstanceCount: 3
+                }
+              ],
+              totalInstanceCount: 15
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_6001250',
+              prefLabel: 'Chagatai Khanate',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '2',
+              totalInstanceCount: 2
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000111',
+              prefLabel: 'China',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '27',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000956',
+                  prefLabel: 'Beijing Shi',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000111',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001758',
+                      prefLabel: 'Beijing',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000956',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001261',
+                  prefLabel: 'Gansu',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000111',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001969',
+                      prefLabel: 'Dunhuang',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001261',
+                      instanceCount: '11',
+                      totalInstanceCount: 11
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7029798',
+                      prefLabel: 'Mogao Caves',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001261',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 12
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002085',
+                  prefLabel: 'Shandong',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000111',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001319',
+                  prefLabel: 'Tibet',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000111',
+                  instanceCount: '18',
+                  totalInstanceCount: 18
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001745',
+                  prefLabel: 'Xinjiang Uygur Zizhiqu',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000111',
+                  instanceCount: '4',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_8625122',
+                      prefLabel: 'Kaxgar',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001745',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 6
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7018118',
+                  prefLabel: 'Yunnan',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000111',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002076',
+                  prefLabel: 'Zhejiang',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000111',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 68
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1006894',
+              prefLabel: 'Cyprus',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '20',
+              totalInstanceCount: 20
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000112',
+              prefLabel: 'Cyprus',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000837',
+                  prefLabel: 'Lárnaka',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000112',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7881026',
+                      prefLabel: 'Lárnaka',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000837',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000839',
+                  prefLabel: 'Lefkosía',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000112',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002345',
+                      prefLabel: 'Nicosia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000839',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 2
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_8711651',
+              prefLabel: 'Dutch East Indies',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_8711755',
+              prefLabel: 'Ghaznavid Empire',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7000198',
+              prefLabel: 'India',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001828',
+                  prefLabel: 'Andhra Pradesh',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000198',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7026086',
+                      prefLabel: 'Golconda',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001828',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001842',
+                  prefLabel: 'Bihār',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000198',
+                  instanceCount: '2',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1140146',
+                      prefLabel: 'Hājīpur',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001842',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000201',
+                  prefLabel: 'Delhi',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000198',
+                  instanceCount: '3',
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7018318',
+                  prefLabel: 'Goa',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000198',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7018161',
+                      prefLabel: 'Goa',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018318',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001869',
+                  prefLabel: 'Gujarāt',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000198',
+                  instanceCount: '8',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001494',
+                      prefLabel: 'Ahmadābād',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001869',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 12
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000799',
+                  prefLabel: 'Jammu and Kashmir',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000198',
+                  instanceCount: '4',
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001882',
+                  prefLabel: 'Karnātaka',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000198',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7551828',
+                      prefLabel: 'Deccan',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001882',
+                      instanceCount: '13',
+                      totalInstanceCount: 13
+                    }
+                  ],
+                  totalInstanceCount: 13
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024418',
+                  prefLabel: 'Mughal Empire',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000198',
+                  instanceCount: '35',
+                  totalInstanceCount: 35
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7016722',
+                  prefLabel: 'Uttar Pradesh',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000198',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001493',
+                      prefLabel: 'Ä€gra',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7016722',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                }
+              ],
+              totalInstanceCount: 74
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7000208',
+              prefLabel: 'India',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '117',
+              totalInstanceCount: 117
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000116',
+              prefLabel: 'Indonesia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '2',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001318',
+                  prefLabel: 'Jakarta',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000116',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 3
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7000231',
+              prefLabel: 'Iran',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '91',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002108',
+                  prefLabel: 'East Azerbaijan',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002137',
+                      prefLabel: 'Jolfā',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002108',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1079191',
+                      prefLabel: 'Marāgheh',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002108',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002156',
+                      prefLabel: 'Tabrīz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002108',
+                      instanceCount: '62',
+                      totalInstanceCount: 62
+                    }
+                  ],
+                  totalInstanceCount: 71
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001228',
+                  prefLabel: 'Eşfahān',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '27',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1079129',
+                      prefLabel: 'Kāshān',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001228',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 30
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001282',
+                  prefLabel: 'Fārs',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '2',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002148',
+                      prefLabel: 'Shīrāz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001282',
+                      instanceCount: '335',
+                      totalInstanceCount: 335
+                    }
+                  ],
+                  totalInstanceCount: 337
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7029810',
+                  prefLabel: 'Golestān',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7016638',
+                      prefLabel: 'Gorgān',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7029810',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    }
+                  ],
+                  totalInstanceCount: 8
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001352',
+                  prefLabel: 'Kermān',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002134',
+                      prefLabel: 'Kermān',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001352',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7594628',
+                  prefLabel: 'Khorāsān-e Jonūbī',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7594631',
+                      prefLabel: 'Khorāsān',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7594628',
+                      instanceCount: '41',
+                      totalInstanceCount: 41
+                    }
+                  ],
+                  totalInstanceCount: 41
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7594629',
+                  prefLabel: 'Khorāsān-e Raẕavī',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002247',
+                      prefLabel: 'Mashhad',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7594629',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    }
+                  ],
+                  totalInstanceCount: 7
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002147',
+                  prefLabel: 'Khūzestān',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017509',
+                      prefLabel: 'Susa',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002147',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001403',
+                  prefLabel: 'Māzandarān',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '1',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1078917',
+                      prefLabel: 'Ä€mol',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001403',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7029812',
+                  prefLabel: 'Qazvīn',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '59',
+                  totalInstanceCount: 59
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_6005089',
+                  prefLabel: 'Safavid Empire',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '87',
+                  totalInstanceCount: 87
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002004',
+                  prefLabel: 'Tehrān',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002157',
+                      prefLabel: 'Tehran',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002004',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001604',
+                  prefLabel: 'Yazd',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000231',
+                  instanceCount: '8',
+                  totalInstanceCount: 8
+                }
+              ],
+              totalInstanceCount: 748
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000118',
+              prefLabel: 'Iraq',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '84',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001120',
+                  prefLabel: 'Bābil',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000118',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002626',
+                      prefLabel: 'Babylon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001120',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7593899',
+                  prefLabel: 'Babylonia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000118',
+                  instanceCount: '3',
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001130',
+                  prefLabel: 'Baghdād',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000118',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002482',
+                      prefLabel: 'Baghdad',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001130',
+                      instanceCount: '42',
+                      totalInstanceCount: 42
+                    }
+                  ],
+                  totalInstanceCount: 42
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001343',
+                  prefLabel: 'Karbalā\'',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000118',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001441',
+                  prefLabel: 'Nīnawá',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000118',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002471',
+                      prefLabel: 'Al-Mawá¹£il',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001441',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001054',
+                  prefLabel: 'Şalāḩ ad Dīn',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000118',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1079416',
+                      prefLabel: 'Balad',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001054',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001596',
+                  prefLabel: 'Wāsiţ',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000118',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 137
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000119',
+              prefLabel: 'Israel',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '3',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000861',
+                  prefLabel: 'HaDarom',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000119',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001376',
+                      prefLabel: 'Ashqelon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000861',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000808',
+                  prefLabel: 'Haifa',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000119',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001363',
+                      prefLabel: 'Qesari, H̲orbat',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000808',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000862',
+                  prefLabel: 'HaMerkaz',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000119',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001365',
+                      prefLabel: 'Lod',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000862',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000953',
+                  prefLabel: 'Jerusalem',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000119',
+                  instanceCount: '25',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001371',
+                      prefLabel: 'Jerusalem',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000953',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 26
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000249',
+                  prefLabel: 'Northern',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000119',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001354',
+                      prefLabel: 'Acre',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000249',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001410',
+                      prefLabel: 'Nazareth',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000249',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7032018',
+                      prefLabel: 'Safad',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000249',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    }
+                  ],
+                  totalInstanceCount: 8
+                }
+              ],
+              totalInstanceCount: 41
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000120',
+              prefLabel: 'Japan',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '8',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000276',
+                  prefLabel: 'Nagasaki',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000120',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004735',
+                      prefLabel: 'Nagasaki',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000276',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001012',
+                  prefLabel: 'Nara',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000120',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                }
+              ],
+              totalInstanceCount: 11
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_8698237',
+              prefLabel: 'Khwārezm',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1003770',
+              prefLabel: 'Kurdistan',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000126',
+              prefLabel: 'Lebanon',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '5',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001148',
+                  prefLabel: 'Beyrouth',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000126',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002857',
+                      prefLabel: 'Beirut',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001148',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002857',
+                      prefLabel: 'Beyrouth',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001148',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001111',
+                  prefLabel: 'Liban-Nord',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000126',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002314',
+                      prefLabel: 'Tripoli',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001111',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001317',
+                  prefLabel: 'Mont-Liban',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000126',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7031840',
+                      prefLabel: 'Antelias',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001317',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 10
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7001519',
+              prefLabel: 'Levant',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '58',
+              totalInstanceCount: 58
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7005019',
+              prefLabel: 'Macau',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '2',
+              totalInstanceCount: 2
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7001554',
+              prefLabel: 'Mesopotamia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '31',
+              totalInstanceCount: 31
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7024419',
+              prefLabel: 'Mongol Empire',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_6002725',
+                  prefLabel: 'Il-Khan Empire',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7024419',
+                  instanceCount: '14',
+                  totalInstanceCount: 14
+                }
+              ],
+              totalInstanceCount: 14
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000108',
+              prefLabel: 'Myanmar',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '3',
+              totalInstanceCount: 3
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000132',
+              prefLabel: 'Nepal',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '13',
+              totalInstanceCount: 13
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000133',
+              prefLabel: 'Pakistan',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '1',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001490',
+                  prefLabel: 'Punjab',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000133',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7978969',
+                      prefLabel: 'Lahore',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001490',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_8002037',
+                      prefLabel: 'Malabar',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001490',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 6
+                }
+              ],
+              totalInstanceCount: 7
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7004540',
+              prefLabel: 'Palestine',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '20',
+              totalInstanceCount: 20
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7024079',
+              prefLabel: 'Persia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '1232',
+              totalInstanceCount: 1232
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000135',
+              prefLabel: 'Philippines',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7668782',
+                  prefLabel: 'Manila',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000135',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7002435',
+              prefLabel: 'Russia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '50',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1003373',
+                  prefLabel: 'Irkutskaya Oblast\'',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7002435',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011560',
+                      prefLabel: 'Irkutsk',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1003373',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7011565',
+                  prefLabel: 'Kaliningradskaya Oblast’',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7002435',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7013050',
+                      prefLabel: 'Kaliningrad',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7011565',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7018215',
+                  prefLabel: 'Moskva',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7002435',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012974',
+                      prefLabel: 'Moscow',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018215',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    }
+                  ],
+                  totalInstanceCount: 6
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_4008031',
+                  prefLabel: 'Novgorodskaya Oblast\'',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7002435',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011581',
+                      prefLabel: 'Velikiy Novgorod',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_4008031',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7011600',
+                  prefLabel: 'Sverdlovskaya Oblast\'',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7002435',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017618',
+                      prefLabel: 'Yekaterinburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7011600',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7011524',
+                  prefLabel: 'Tatarstan',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7002435',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7015156',
+                      prefLabel: 'Kazan\'',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7011524',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 63
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000137',
+              prefLabel: 'Saudi Arabia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '2',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000678',
+                  prefLabel: 'Al Madīnah al Munawwarah',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000137',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7016669',
+                      prefLabel: 'Hejaz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000678',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003869',
+                      prefLabel: 'Medina',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000678',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    }
+                  ],
+                  totalInstanceCount: 8
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000685',
+                  prefLabel: 'Al QaÅŸÄ«m',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000137',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000679',
+                  prefLabel: 'Makkah al Mukarramah',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000137',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003870',
+                      prefLabel: 'Mecca',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000679',
+                      instanceCount: '30',
+                      totalInstanceCount: 30
+                    }
+                  ],
+                  totalInstanceCount: 30
+                }
+              ],
+              totalInstanceCount: 41
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_8711758',
+              prefLabel: 'Seljuq Empire',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '13',
+              totalInstanceCount: 13
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000110',
+              prefLabel: 'Sri Lanka',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '4',
+              totalInstanceCount: 4
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000140',
+              prefLabel: 'Syria',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '164',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1002076',
+                  prefLabel: 'Dimashq',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000140',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002261',
+                      prefLabel: 'Damascus',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1002076',
+                      instanceCount: '39',
+                      totalInstanceCount: 39
+                    }
+                  ],
+                  totalInstanceCount: 39
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1002052',
+                  prefLabel: 'Ḩalab',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000140',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002252',
+                      prefLabel: 'Aleppo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1002052',
+                      instanceCount: '15',
+                      totalInstanceCount: 15
+                    }
+                  ],
+                  totalInstanceCount: 15
+                }
+              ],
+              totalInstanceCount: 218
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_8711845',
+              prefLabel: 'Timurid Empire',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '14',
+              totalInstanceCount: 14
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000144',
+              prefLabel: 'Turkey',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '269',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001101',
+                  prefLabel: 'Ankara',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002294',
+                  prefLabel: 'Asia Minor',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '5',
+                  totalInstanceCount: 5
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001127',
+                  prefLabel: 'Bitlis',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7722795',
+                      prefLabel: 'Hizan',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001127',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001167',
+                  prefLabel: 'Bursa',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '3',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7032024',
+                      prefLabel: 'Ä°znik',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001167',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 7
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001285',
+                  prefLabel: 'Çanakkale',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002520',
+                      prefLabel: 'Gelibolu',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001285',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_6003016',
+                  prefLabel: 'Cappadocia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002470',
+                  prefLabel: 'Cilicia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '12',
+                  totalInstanceCount: 12
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001232',
+                  prefLabel: 'Edirne',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '1',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7707851',
+                      prefLabel: 'Åžabanmera',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001232',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7016655',
+                  prefLabel: 'Erzurum',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001262',
+                  prefLabel: 'Gaziantep',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7593131',
+                      prefLabel: 'Rum Kalesi',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001262',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001287',
+                  prefLabel: 'Hatay',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002354',
+                      prefLabel: 'Antioch',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001287',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001052',
+                  prefLabel: 'Ä°stanbul',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '23',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1007390',
+                      prefLabel: 'Heybeli Ada',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001052',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002473',
+                      prefLabel: 'Istanbul',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001052',
+                      instanceCount: '119',
+                      totalInstanceCount: 119
+                    }
+                  ],
+                  totalInstanceCount: 143
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001053',
+                  prefLabel: 'Ä°zmir',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '3',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7016140',
+                      prefLabel: 'Bergama',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001053',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002499',
+                      prefLabel: 'Ephesus',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001053',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002543',
+                      prefLabel: 'Izmir',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001053',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002557',
+                      prefLabel: 'KemalpaÅŸa',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001053',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 8
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001413',
+                  prefLabel: 'KahramanmaraÅŸ',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7018751',
+                      prefLabel: 'Maras',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001413',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001349',
+                  prefLabel: 'Kayseri',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002465',
+                      prefLabel: 'Kayseri',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001349',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    }
+                  ],
+                  totalInstanceCount: 6
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001363',
+                  prefLabel: 'Konya',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '5',
+                  totalInstanceCount: 5
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1119011',
+                  prefLabel: 'Lake Van',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001408',
+                  prefLabel: 'Malatya',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002592',
+                      prefLabel: 'Malatya',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001408',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001410',
+                  prefLabel: 'Manisa',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002323',
+                      prefLabel: 'AlaÅŸehir',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001410',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001300',
+                  prefLabel: 'Mardin',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7736222',
+                      prefLabel: 'Barıştepe',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001300',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001051',
+                  prefLabel: 'Mersin',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1099803',
+                      prefLabel: 'Korykos',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001051',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001586',
+                  prefLabel: 'Şanlıurfa',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1086032',
+                      prefLabel: 'Birecik',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001586',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1086806',
+                      prefLabel: 'Suruç',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001586',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7018463',
+                  prefLabel: 'Şırnak',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7727919',
+                      prefLabel: 'Cizre',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018463',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001591',
+                  prefLabel: 'Van',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000144',
+                  instanceCount: '3',
+                  totalInstanceCount: 3
+                }
+              ],
+              totalInstanceCount: 487
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016836',
+              prefLabel: 'Turkistan',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '3',
+              totalInstanceCount: 3
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006659',
+              prefLabel: 'Turkmenistan',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006661',
+              prefLabel: 'Uzbekistan',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '2',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7012245',
+                  prefLabel: 'Andijon',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006661',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1052185',
+                      prefLabel: 'Andijon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012245',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7016820',
+                  prefLabel: 'Bukhara',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006661',
+                  instanceCount: '59',
+                  totalInstanceCount: 59
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7012262',
+                  prefLabel: 'Buxoro',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006661',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011675',
+                      prefLabel: 'Bukhara',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012262',
+                      instanceCount: '25',
+                      totalInstanceCount: 25
+                    }
+                  ],
+                  totalInstanceCount: 25
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7011686',
+                  prefLabel: 'Samarqand',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006661',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012290',
+                      prefLabel: 'Samarkand',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7011686',
+                      instanceCount: '36',
+                      totalInstanceCount: 36
+                    }
+                  ],
+                  totalInstanceCount: 36
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7594650',
+                  prefLabel: 'Toshkent',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006661',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010300',
+                      prefLabel: 'Tashkent',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7594650',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7011682',
+                  prefLabel: 'Xorazm',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006661',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7016605',
+                      prefLabel: 'Urgench',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7011682',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 127
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000145',
+              prefLabel: 'Viet Nam',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_6000295',
+                  prefLabel: 'Annam',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000145',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016849',
+              prefLabel: 'West Bank',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001388',
+                  prefLabel: 'Bethlehem',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016849',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1083909',
+                  prefLabel: 'Nablus',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016849',
+                  instanceCount: '10',
+                  totalInstanceCount: 10
+                }
+              ],
+              totalInstanceCount: 11
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7000261',
+              prefLabel: 'Yemen',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000004',
+              instanceCount: '84',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7004351',
+                  prefLabel: 'Ṣanʻā\'',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000261',
+                  instanceCount: '11',
+                  totalInstanceCount: 11
+                }
+              ],
+              totalInstanceCount: 95
+            }
+          ],
+          totalInstanceCount: 3986
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_7024407',
+          prefLabel: 'Byzantine Empire',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '488',
+          children: [
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7002632',
+              prefLabel: 'Trebizond, Empire of',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7024407',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            }
+          ],
+          totalInstanceCount: 489
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_7593196',
+          prefLabel: 'Eastern Mediterranean',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '171',
+          totalInstanceCount: 171
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_1000003',
+          prefLabel: 'Europe',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '17',
+          children: [
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006417',
+              prefLabel: 'Albania',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7006424',
+                  prefLabel: 'Berat',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006417',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7006426',
+                  prefLabel: 'Durrës',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006417',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010750',
+                      prefLabel: 'Durrës',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7006426',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 3
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7024265',
+              prefLabel: 'Alsace',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000062',
+              prefLabel: 'Austria',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '372',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003023',
+                  prefLabel: 'Burgenland',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000062',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1025807',
+                      prefLabel: 'Mönchhof',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003023',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003024',
+                  prefLabel: 'Kärnten',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000062',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003025',
+                  prefLabel: 'Niederösterreich',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000062',
+                  instanceCount: '3',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1025500',
+                      prefLabel: 'Eggenburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003195',
+                      prefLabel: 'Gaming',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7031554',
+                      prefLabel: 'Göttweig, Stift',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1025765',
+                      prefLabel: 'Langenzersdorf',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1127056',
+                      prefLabel: 'Melk',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '13',
+                      totalInstanceCount: 13
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003193',
+                      prefLabel: 'Melk',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1025938',
+                      prefLabel: 'Perchtoldsdorf',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1025970',
+                      prefLabel: 'Purgstall',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003190',
+                      prefLabel: 'Sankt Pölten',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003198',
+                      prefLabel: 'Seitenstetten',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1026123',
+                      prefLabel: 'Stockerau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003174',
+                      prefLabel: 'Waldviertel',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003169',
+                      prefLabel: 'Zwettl',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003025',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 32
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003026',
+                  prefLabel: 'Oberösterreich',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000062',
+                  instanceCount: '2',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003283',
+                      prefLabel: 'Braunau am Inn',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003026',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003274',
+                      prefLabel: 'Gmunden',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003026',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003272',
+                      prefLabel: 'Hallstatt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003026',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003278',
+                      prefLabel: 'Lambach',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003026',
+                      instanceCount: '12',
+                      totalInstanceCount: 12
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003292',
+                      prefLabel: 'Markt Sankt Florian',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003026',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003277',
+                      prefLabel: 'Mondsee',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003026',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1112144',
+                      prefLabel: 'Salzkammergut',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003026',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003292',
+                      prefLabel: 'Sankt Florian',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003026',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003341',
+                      prefLabel: 'Wilhering',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003026',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 25
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003027',
+                  prefLabel: 'Salzburg',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000062',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1025441',
+                      prefLabel: 'Badgastein',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003027',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003256',
+                      prefLabel: 'Salzburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003027',
+                      instanceCount: '54',
+                      totalInstanceCount: 54
+                    }
+                  ],
+                  totalInstanceCount: 55
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003028',
+                  prefLabel: 'Steiermark',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000062',
+                  instanceCount: '2',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003114',
+                      prefLabel: 'Admont',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003028',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003097',
+                      prefLabel: 'Graz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003028',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1025646',
+                      prefLabel: 'Hartberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003028',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 6
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003029',
+                  prefLabel: 'Tyrol',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000062',
+                  instanceCount: '20',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003249',
+                      prefLabel: 'Innsbruck',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003029',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003247',
+                      prefLabel: 'Schwaz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003029',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 24
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003030',
+                  prefLabel: 'Vienna state',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000062',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003321',
+                      prefLabel: 'Vienna',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003030',
+                      instanceCount: '66',
+                      totalInstanceCount: 66
+                    }
+                  ],
+                  totalInstanceCount: 66
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7018001',
+                  prefLabel: 'Vorarlberg',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000062',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1025669',
+                      prefLabel: 'Hohenems',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018001',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 583
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7024266',
+              prefLabel: 'Auvergne',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '14',
+              totalInstanceCount: 14
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7011636',
+              prefLabel: 'Balkan Peninsula',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '6',
+              totalInstanceCount: 6
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006657',
+              prefLabel: 'Belarus',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7012158',
+                  prefLabel: 'Hrodzyenskaya Voblasts\'',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006657',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7031595',
+                      prefLabel: 'Hrodna',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012158',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000063',
+              prefLabel: 'Belgium',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '159',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7018237',
+                  prefLabel: 'Brussels Hoofdstedelijk Gewest',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000063',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007855',
+                      prefLabel: 'Anderlecht',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018237',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1026300',
+                      prefLabel: 'Auderghem',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018237',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007868',
+                      prefLabel: 'Brussels',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018237',
+                      instanceCount: '101',
+                      totalInstanceCount: 101
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007883',
+                      prefLabel: 'Forest',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018237',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 105
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7018236',
+                  prefLabel: 'Flanders',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000063',
+                  instanceCount: '4',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003456',
+                      prefLabel: 'Antwerpen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018236',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007856',
+                          prefLabel: 'Antwerp',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003456',
+                          instanceCount: '83',
+                          totalInstanceCount: 83
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7242728',
+                          prefLabel: 'Korsendonk',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003456',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7016996',
+                          prefLabel: 'Lier',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003456',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008736',
+                          prefLabel: 'Mechelen',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003456',
+                          instanceCount: '18',
+                          totalInstanceCount: 18
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1026654',
+                          prefLabel: 'Oostmalle',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003456',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008016',
+                          prefLabel: 'Tongerlo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003456',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        }
+                      ],
+                      totalInstanceCount: 114
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003457',
+                      prefLabel: 'East Flanders',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018236',
+                      instanceCount: '3',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1026295',
+                          prefLabel: 'Assenede',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003457',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1026388',
+                          prefLabel: 'Deinze',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003457',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007872',
+                          prefLabel: 'Dendermonde',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003457',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1026401',
+                          prefLabel: 'Drongen',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003457',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7240301',
+                          prefLabel: 'Elsegem',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003457',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007888',
+                          prefLabel: 'Geraardsbergen',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003457',
+                          instanceCount: '7',
+                          totalInstanceCount: 7
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007887',
+                          prefLabel: 'Ghent',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003457',
+                          instanceCount: '219',
+                          totalInstanceCount: 219
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7244103',
+                          prefLabel: 'Kallo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003457',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007972',
+                          prefLabel: 'Oudenaarde',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003457',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7253311',
+                          prefLabel: 'Sluis',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003457',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 243
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003461',
+                      prefLabel: 'Limburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018236',
+                      instanceCount: '2',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006947',
+                          prefLabel: 'Hasselt',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003461',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7030435',
+                          prefLabel: 'Herkenrode',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003461',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007951',
+                          prefLabel: 'Maaseik',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003461',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7250731',
+                          prefLabel: 'Munsterbilzen',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003461',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008735',
+                          prefLabel: 'Saint Truiden',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003461',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008735',
+                          prefLabel: 'Sint-Truiden',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003461',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008015',
+                          prefLabel: 'Tongeren',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003461',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7258466',
+                          prefLabel: 'Zepperen',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003461',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 22
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7018239',
+                      prefLabel: 'Vlaams-Brabant',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018236',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007874',
+                          prefLabel: 'Diest',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7018239',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1026456',
+                          prefLabel: 'Grimbergen',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7018239',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7012318',
+                          prefLabel: 'Halle (on Charleroi-Brussels canal)',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7018239',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7238951',
+                          prefLabel: 'Hoeilaart',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7018239',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007949',
+                          prefLabel: 'Louvain',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7018239',
+                          instanceCount: '51',
+                          totalInstanceCount: 51
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007949',
+                          prefLabel: 'Louvain-la-Neuve',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7018239',
+                          instanceCount: '51',
+                          totalInstanceCount: 51
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1026665',
+                          prefLabel: 'Overijse',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7018239',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008014',
+                          prefLabel: 'Tienen',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7018239',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 113
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003458',
+                      prefLabel: 'West Flanders',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7018236',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007867',
+                          prefLabel: 'Bruges',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003458',
+                          instanceCount: '693',
+                          totalInstanceCount: 693
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008852',
+                          prefLabel: 'Furnes',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003458',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1026450',
+                          prefLabel: 'Gistel',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003458',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007889',
+                          prefLabel: 'Groenendaal',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003458',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1026510',
+                          prefLabel: 'Ingelmunster',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003458',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008853',
+                          prefLabel: 'Koksijde',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003458',
+                          instanceCount: '10',
+                          totalInstanceCount: 10
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007947',
+                          prefLabel: 'Lissewege',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003458',
+                          instanceCount: '19',
+                          totalInstanceCount: 19
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7252314',
+                          prefLabel: 'Moerdijk',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003458',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007965',
+                          prefLabel: 'Nieuwpoort',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003458',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007899',
+                          prefLabel: 'Ypres',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003458',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 735
+                    }
+                  ],
+                  totalInstanceCount: 1231
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_4012014',
+                  prefLabel: 'Wallonia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000063',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7018238',
+                      prefLabel: 'Brabant Wallon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_4012014',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1026350',
+                          prefLabel: 'Braine-l\'Alleud',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7018238',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7241769',
+                          prefLabel: 'Limoges',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7018238',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7251212',
+                          prefLabel: 'Opheylissem',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7018238',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008740',
+                          prefLabel: 'Villers-la-Ville',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7018238',
+                          instanceCount: '7',
+                          totalInstanceCount: 7
+                        }
+                      ],
+                      totalInstanceCount: 12
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007877',
+                      prefLabel: 'Hainaut, Province de',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_4012014',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007858',
+                          prefLabel: 'Ath',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7007877',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007863',
+                          prefLabel: 'Binche',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7007877',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7248853',
+                          prefLabel: 'Bois le Duc',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7007877',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4002136',
+                          prefLabel: 'Cambron-Casteau',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7007877',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1026370',
+                          prefLabel: 'Chimay',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7007877',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008834',
+                          prefLabel: 'Enghien',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7007877',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007961',
+                          prefLabel: 'Mons',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7007877',
+                          instanceCount: '27',
+                          totalInstanceCount: 27
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7252830',
+                          prefLabel: 'Saint-Vaast',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7007877',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008002',
+                          prefLabel: 'Tournai',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7007877',
+                          instanceCount: '182',
+                          totalInstanceCount: 182
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7256506',
+                          prefLabel: 'Wiers',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7007877',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7257235',
+                          prefLabel: 'Wisbecq',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7007877',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 230
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003460',
+                      prefLabel: 'Liège',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_4012014',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7239196',
+                          prefLabel: 'Gemmenich',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003460',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007896',
+                          prefLabel: 'Huy',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003460',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007945',
+                          prefLabel: 'Liège',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003460',
+                          instanceCount: '131',
+                          totalInstanceCount: 131
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007946',
+                          prefLabel: 'Limbourg',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003460',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007991',
+                          prefLabel: 'Spa',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003460',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007994',
+                          prefLabel: 'Stavelot',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003460',
+                          instanceCount: '16',
+                          totalInstanceCount: 16
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7253934',
+                          prefLabel: 'Val Saint-Lambert',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003460',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008734',
+                          prefLabel: 'Visé',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003460',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 160
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003466',
+                      prefLabel: 'Namur',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_4012014',
+                      instanceCount: '10',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007854',
+                          prefLabel: 'Andenne',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003466',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007881',
+                          prefLabel: 'Floreffe',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003466',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007885',
+                          prefLabel: 'Gembloux',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003466',
+                          instanceCount: '7',
+                          totalInstanceCount: 7
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7255880',
+                          prefLabel: 'Saint-Martin',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003466',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7252847',
+                          prefLabel: 'Treignes',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003466',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 21
+                    }
+                  ],
+                  totalInstanceCount: 423
+                }
+              ],
+              totalInstanceCount: 1918
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7003463',
+              prefLabel: 'Brabant',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '68',
+              totalInstanceCount: 68
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7003671',
+              prefLabel: 'Brandenburg',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '3',
+              totalInstanceCount: 3
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7024267',
+              prefLabel: 'Bretagne',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '9',
+              totalInstanceCount: 9
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7024267',
+              prefLabel: 'Brittany',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '9',
+              totalInstanceCount: 9
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006413',
+              prefLabel: 'Bulgaria',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '4',
+              totalInstanceCount: 4
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_4003755',
+              prefLabel: 'Central Europe',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '8',
+              totalInstanceCount: 8
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7007542',
+              prefLabel: 'Constance, Lake',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '4',
+              totalInstanceCount: 4
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006663',
+              prefLabel: 'Croatia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '4',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7015451',
+                  prefLabel: 'Dalmatia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006663',
+                  instanceCount: '21',
+                  totalInstanceCount: 21
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7017310',
+                  prefLabel: 'Dubrovačko-Neretvanska Županija',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006663',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7015500',
+                      prefLabel: 'Dubrovnik',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7017310',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7009395',
+                  prefLabel: 'Istra',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006663',
+                  instanceCount: '3',
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7017300',
+                  prefLabel: 'Ličko-Senjska Županija',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006663',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1065167',
+                      prefLabel: 'Pag',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7017300',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7017306',
+                  prefLabel: 'Šibensko-Kninska Županija',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006663',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7015447',
+                      prefLabel: 'Å ibenik',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7017306',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7016818',
+                  prefLabel: 'Slavonia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006663',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7017308',
+                  prefLabel: 'Splitsko-Dalmatinska Županija',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006663',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7015546',
+                      prefLabel: 'Split',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7017308',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7015545',
+                      prefLabel: 'Trogir',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7017308',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 8
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7017304',
+                  prefLabel: 'Zadarska Županija',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006663',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1065150',
+                      prefLabel: 'Novigrad',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7017304',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7015549',
+                      prefLabel: 'Zadar',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7017304',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 5
+                }
+              ],
+              totalInstanceCount: 46
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1001780',
+              prefLabel: 'Czech Republic',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '20',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7006470',
+                  prefLabel: 'Bohemia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1001780',
+                  instanceCount: '98',
+                  totalInstanceCount: 98
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1003523',
+                  prefLabel: 'Jihomoravský Kraj',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1001780',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011840',
+                      prefLabel: 'Brno',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1003523',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7593913',
+                  prefLabel: 'Karlovarský Kraj',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1001780',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010618',
+                      prefLabel: 'Cheb',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7593913',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7006467',
+                  prefLabel: 'Moravia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1001780',
+                  instanceCount: '3',
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7593917',
+                  prefLabel: 'Olomoucký Kraj',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1001780',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011841',
+                      prefLabel: 'Olomouc',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7593917',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7593918',
+                  prefLabel: 'Pardubický Kraj',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1001780',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1027136',
+                      prefLabel: 'Chrudim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7593918',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7593919',
+                  prefLabel: 'Plzeňský Kraj',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1001780',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1027133',
+                      prefLabel: 'Chotěšov',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7593919',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7593923',
+                  prefLabel: 'Praha, Hlavní Město',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1001780',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006464',
+                      prefLabel: 'Prague',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7593923',
+                      instanceCount: '59',
+                      totalInstanceCount: 59
+                    }
+                  ],
+                  totalInstanceCount: 59
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_4010532',
+                  prefLabel: 'Silesia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1001780',
+                  instanceCount: '10',
+                  totalInstanceCount: 10
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1003530',
+                  prefLabel: 'Středočeský',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1001780',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011710',
+                      prefLabel: 'Mladá Boleslav',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1003530',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7593920',
+                  prefLabel: 'Ústecký Kraj',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1001780',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1027132',
+                      prefLabel: 'Chomutov',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7593920',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011712',
+                      prefLabel: 'Most',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7593920',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011749',
+                      prefLabel: 'Roudnice nad Labem',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7593920',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 3
+                }
+              ],
+              totalInstanceCount: 203
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000066',
+              prefLabel: 'Denmark',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '10',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003408',
+                  prefLabel: 'Fyn',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000066',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7594008',
+                  prefLabel: 'Sjælland',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000066',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003573',
+                      prefLabel: 'Maribo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7594008',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 12
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_4003756',
+              prefLabel: 'Eastern Europe',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '10',
+              totalInstanceCount: 10
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7024113',
+              prefLabel: 'Etruria',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '10',
+              totalInstanceCount: 10
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000069',
+              prefLabel: 'Finland',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '2',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7594396',
+                  prefLabel: 'Varsinais-Suomi',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000069',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009962',
+                      prefLabel: 'Turku',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7594396',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 3
+                }
+              ],
+              totalInstanceCount: 5
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7024097',
+              prefLabel: 'Flanders',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '2488',
+              totalInstanceCount: 2488
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000070',
+              prefLabel: 'France',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '11253',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002870',
+                  prefLabel: 'Alsace',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '21',
+                  totalInstanceCount: 21
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002878',
+                  prefLabel: 'Aquitaine',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '4',
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8711848',
+                  prefLabel: 'Auvergne-Rhône-Alpes',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008606',
+                      prefLabel: 'Abondance',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012322',
+                      prefLabel: 'Annecy',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008197',
+                      prefLabel: 'Aurillac',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008201',
+                      prefLabel: 'Brioude',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017159',
+                      prefLabel: 'Bugey',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7657983',
+                      prefLabel: 'Châlons',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7659249',
+                      prefLabel: 'Chambéry',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008766',
+                      prefLabel: 'Chambéry',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008766',
+                      prefLabel: 'Chambéry-le-Vieux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008202',
+                      prefLabel: 'Clermont-Ferrand',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '15',
+                      totalInstanceCount: 15
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7655501',
+                      prefLabel: 'Conflans',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002934',
+                      prefLabel: 'Département de la Drôme',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009141',
+                      prefLabel: 'Die',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1100121',
+                      prefLabel: 'Grande Chartreuse, Couvent de la',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008759',
+                      prefLabel: 'Grenoble',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1100048',
+                      prefLabel: 'Hautecombe, Abbaye de',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1033896',
+                      prefLabel: 'Le Monastier',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1033896',
+                      prefLabel: 'Le Monastier-sur-Gazeille',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034084',
+                      prefLabel: 'Loire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '41',
+                      totalInstanceCount: 41
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008772',
+                      prefLabel: 'Lyon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '140',
+                      totalInstanceCount: 140
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034454',
+                      prefLabel: 'Montbrison',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7623405',
+                      prefLabel: 'Montpensier',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009382',
+                      prefLabel: 'Moûtiers',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7621180',
+                      prefLabel: 'Nonette',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7621415',
+                      prefLabel: 'Orange',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011061',
+                      prefLabel: 'Riom',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009477',
+                      prefLabel: 'Romans-sur-Isère',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008206',
+                      prefLabel: 'Saint-Flour',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1035337',
+                      prefLabel: 'Saint-Geoire-en-Valdaine',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1035342',
+                      prefLabel: 'Saint-Germain-Laval',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7608908',
+                      prefLabel: 'Saint-Martin-de-Tours',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1035595',
+                      prefLabel: 'Salers',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1035708',
+                      prefLabel: 'Serrières',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1035915',
+                      prefLabel: 'Treffort',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008757',
+                      prefLabel: 'Valence',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008589',
+                      prefLabel: 'Vienne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009748',
+                      prefLabel: 'Viviers',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711848',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 248
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7017221',
+                  prefLabel: 'Bourbonnais',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8711849',
+                  prefLabel: 'Bourgogne-Franche-Comté',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008237',
+                      prefLabel: 'Autun',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '19',
+                      totalInstanceCount: 19
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7013341',
+                      prefLabel: 'Auxerre',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '28',
+                      totalInstanceCount: 28
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008221',
+                      prefLabel: 'Beaune',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008356',
+                      prefLabel: 'Besançon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '65',
+                      totalInstanceCount: 65
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008242',
+                      prefLabel: 'Chalon-sur-Saône',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7655743',
+                      prefLabel: 'Choux, Val des',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7656279',
+                      prefLabel: 'Cîteaux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008243',
+                      prefLabel: 'Cluny',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '57',
+                      totalInstanceCount: 57
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008224',
+                      prefLabel: 'Dijon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '33',
+                      totalInstanceCount: 33
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009146',
+                      prefLabel: 'Dole',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009146',
+                      prefLabel: 'Dôle',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7650411',
+                      prefLabel: 'Farges-lès-Chalon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7640719',
+                      prefLabel: 'La Clayette',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1033584',
+                      prefLabel: 'Lézat',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7629036',
+                      prefLabel: 'Ligny-en-Brionnais',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017240',
+                      prefLabel: 'Luxeuil-les-Bains',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008244',
+                      prefLabel: 'Mâcon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008240',
+                      prefLabel: 'Nevers',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7616903',
+                      prefLabel: 'Péronne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7616826',
+                      prefLabel: 'Pérouse',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009435',
+                      prefLabel: 'Poligny',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008254',
+                      prefLabel: 'Pontigny',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '33',
+                      totalInstanceCount: 33
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008255',
+                      prefLabel: 'Sens',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '19',
+                      totalInstanceCount: 19
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008250',
+                      prefLabel: 'Tournus',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7599445',
+                      prefLabel: 'Vauluisant',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711849',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 304
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7008993',
+                  prefLabel: 'Brie',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7012216',
+                  prefLabel: 'Brittany',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '77',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002938',
+                      prefLabel: 'Département du Finistère',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012216',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017026',
+                      prefLabel: 'Dol-de-Bretagne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012216',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7636521',
+                      prefLabel: 'Landévennec',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012216',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7621658',
+                      prefLabel: 'Paimpont',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012216',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008262',
+                      prefLabel: 'Quimper',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012216',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008263',
+                      prefLabel: 'Rennes',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012216',
+                      instanceCount: '22',
+                      totalInstanceCount: 22
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009645',
+                      prefLabel: 'Saint-Malo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012216',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009509',
+                      prefLabel: 'Tréguier',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012216',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009712',
+                      prefLabel: 'Vannes',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012216',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 115
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7029372',
+                  prefLabel: 'Burgundy',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '129',
+                  totalInstanceCount: 129
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002877',
+                  prefLabel: 'Centre-Val de Loire',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008272',
+                      prefLabel: 'Amboise',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7665198',
+                      prefLabel: 'Argy',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017385',
+                      prefLabel: 'Beauce',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017228',
+                      prefLabel: 'Berry',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008320',
+                      prefLabel: 'Blois',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '10',
+                      totalInstanceCount: 10
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017415',
+                      prefLabel: 'Bourges',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '118',
+                      totalInstanceCount: 118
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1032271',
+                      prefLabel: 'Bourgueil',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008267',
+                      prefLabel: 'Chartres',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '24',
+                      totalInstanceCount: 24
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7654878',
+                      prefLabel: 'Chezal-Benoît',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008281',
+                      prefLabel: 'Chinon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008269',
+                      prefLabel: 'Dreux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7649537',
+                      prefLabel: 'Fontainejean',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009308',
+                      prefLabel: 'Lorris',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7626900',
+                      prefLabel: 'Marcilly-sur-Maulne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034311',
+                      prefLabel: 'Massay',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008337',
+                      prefLabel: 'Orléans',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '18',
+                      totalInstanceCount: 18
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034947',
+                      prefLabel: 'Pontlevoy',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008338',
+                      prefLabel: 'Saint-Benoît-sur-Loire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009503',
+                      prefLabel: 'Thiron-Gardais',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7603689',
+                      prefLabel: 'Touraine',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '11',
+                      totalInstanceCount: 11
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008323',
+                      prefLabel: 'Tours',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '278',
+                      totalInstanceCount: 278
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008329',
+                      prefLabel: 'Vendôme',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1036106',
+                      prefLabel: 'Vierzon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1036141',
+                      prefLabel: 'Villefranche',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002877',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 490
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7658604',
+                  prefLabel: 'Champagne',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '34',
+                  totalInstanceCount: 34
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7007764',
+                  prefLabel: 'Dauphiné',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '5',
+                  totalInstanceCount: 5
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_4004039',
+                  prefLabel: 'France, Western',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '63',
+                  totalInstanceCount: 63
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7645440',
+                  prefLabel: 'Franche-Comté',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '8',
+                  totalInstanceCount: 8
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7017241',
+                  prefLabel: 'Gascony',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8711850',
+                  prefLabel: 'Grand Est',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '1',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7024701',
+                      prefLabel: 'Altorf',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7666034',
+                      prefLabel: 'Arcis-le-Ponsart',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7598860',
+                      prefLabel: 'Arrondissement de Verdun',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7667320',
+                      prefLabel: 'Aubepierre-sur-Aube',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1032471',
+                      prefLabel: 'Cernay',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008339',
+                      prefLabel: 'Châlons-en-Champagne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '15',
+                      totalInstanceCount: 15
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008339',
+                      prefLabel: 'Châlons-sur-Champagne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '15',
+                      totalInstanceCount: 15
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1032520',
+                      prefLabel: 'Châtenois',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4002699',
+                      prefLabel: 'Clairvaux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4002699',
+                      prefLabel: 'Clairvaux-sur-Aujon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008119',
+                      prefLabel: 'Colmar',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008340',
+                      prefLabel: 'Corbeil-Essonnes',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002970',
+                      prefLabel: 'Département de la Meuse',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002899',
+                      prefLabel: 'Département des Ardennes',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008416',
+                      prefLabel: 'Épinal',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7018653',
+                      prefLabel: 'Fleury',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7650531',
+                      prefLabel: 'Fleury',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1033281',
+                      prefLabel: 'Givry-en-Argonne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008077',
+                      prefLabel: 'Haguenau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008343',
+                      prefLabel: 'Langres',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '29',
+                      totalInstanceCount: 29
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7627633',
+                      prefLabel: 'Les Noës-près-Troyes',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034070',
+                      prefLabel: 'Liverdun',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7630256',
+                      prefLabel: 'Lorry-Mardigny',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009313',
+                      prefLabel: 'Lunéville',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034307',
+                      prefLabel: 'Marville',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008418',
+                      prefLabel: 'Metz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '96',
+                      totalInstanceCount: 96
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002970',
+                      prefLabel: 'Meuse',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009361',
+                      prefLabel: 'Montiér-en-Der',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008412',
+                      prefLabel: 'Nancy',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '17',
+                      totalInstanceCount: 17
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009438',
+                      prefLabel: 'Pont-à-Mousson',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011060',
+                      prefLabel: 'Reims',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '64',
+                      totalInstanceCount: 64
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009464',
+                      prefLabel: 'Rethel',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011060',
+                      prefLabel: 'Rheims',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '64',
+                      totalInstanceCount: 64
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009618',
+                      prefLabel: 'Saint-Dié',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7607721',
+                      prefLabel: 'Saint-Louis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4009804',
+                      prefLabel: 'Saint-Thierry',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009673',
+                      prefLabel: 'Saverne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7606876',
+                      prefLabel: 'Savoie',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009674',
+                      prefLabel: 'Sedan',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1035697',
+                      prefLabel: 'Senones',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012346',
+                      prefLabel: 'Strasbourg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '61',
+                      totalInstanceCount: 61
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009506',
+                      prefLabel: 'Toul',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '12',
+                      totalInstanceCount: 12
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7604025',
+                      prefLabel: 'Trois-Fontaines',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008350',
+                      prefLabel: 'Troyes',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '107',
+                      totalInstanceCount: 107
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7598786',
+                      prefLabel: 'Verdun',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7013153',
+                      prefLabel: 'Verdun-sur-Garonne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7598786',
+                      prefLabel: 'Verdun-sur-Meuse',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7596719',
+                      prefLabel: 'Ville-sous-la-Ferté',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711850',
+                      instanceCount: '58',
+                      totalInstanceCount: 58
+                    }
+                  ],
+                  totalInstanceCount: 604
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_4004675',
+                  prefLabel: 'Guyenne',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8711851',
+                  prefLabel: 'Hauts-de-France',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '6',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010587',
+                      prefLabel: 'Abbeville',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010588',
+                      prefLabel: 'Amiens',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '97',
+                      totalInstanceCount: 97
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008468',
+                      prefLabel: 'Arras',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '50',
+                      totalInstanceCount: 50
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012194',
+                      prefLabel: 'Artois',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '16',
+                      totalInstanceCount: 16
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7666994',
+                      prefLabel: 'Aymeries',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010570',
+                      prefLabel: 'Beauvais',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '28',
+                      totalInstanceCount: 28
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008986',
+                      prefLabel: 'Béthune',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009002',
+                      prefLabel: 'Calais',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '14',
+                      totalInstanceCount: 14
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008456',
+                      prefLabel: 'Cambrai',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '40',
+                      totalInstanceCount: 40
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010575',
+                      prefLabel: 'Compiègne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1032738',
+                      prefLabel: 'Condé-en-Brie',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010590',
+                      prefLabel: 'Corbie',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '53',
+                      totalInstanceCount: 53
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010211',
+                      prefLabel: 'Coucy-le-Château-Auffrique',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010576',
+                      prefLabel: 'Crépy-en-Valois',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008457',
+                      prefLabel: 'Cysoing',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008458',
+                      prefLabel: 'Douai',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '14',
+                      totalInstanceCount: 14
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4003961',
+                      prefLabel: 'Foigny',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010578',
+                      prefLabel: 'Fontaine-Chaalis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010578',
+                      prefLabel: 'Fontaine-Chaâlis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7647336',
+                      prefLabel: 'Gerberoy',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7647290',
+                      prefLabel: 'Gosnay',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009225',
+                      prefLabel: 'Guise',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1033422',
+                      prefLabel: 'Hautmont',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008475',
+                      prefLabel: 'Hesdin',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7643886',
+                      prefLabel: 'Humières',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7639792',
+                      prefLabel: 'La Bouteille',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010220',
+                      prefLabel: 'Laon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '11',
+                      totalInstanceCount: 11
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009278',
+                      prefLabel: 'Lens',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034042',
+                      prefLabel: 'Liessies',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008461',
+                      prefLabel: 'Lille',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '47',
+                      totalInstanceCount: 47
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_5001489',
+                      prefLabel: 'Marchiennes',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_5001489',
+                      prefLabel: 'Marchiennes-Ville',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034528',
+                      prefLabel: 'Montreuil-sur-Mer',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010580',
+                      prefLabel: 'Noyon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '12',
+                      totalInstanceCount: 12
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008470',
+                      prefLabel: 'Saint-Amand-les-Eaux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '32',
+                      totalInstanceCount: 32
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_5001562',
+                      prefLabel: 'Saint-Bertin',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011062',
+                      prefLabel: 'Saint-Omer',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '23',
+                      totalInstanceCount: 23
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010591',
+                      prefLabel: 'Saint-Riquier',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010586',
+                      prefLabel: 'Senlis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010563',
+                      prefLabel: 'Soissons',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '18',
+                      totalInstanceCount: 18
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008478',
+                      prefLabel: 'Thérouanne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '17',
+                      totalInstanceCount: 17
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7603820',
+                      prefLabel: 'Thuison',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008471',
+                      prefLabel: 'Valenciennes',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '30',
+                      totalInstanceCount: 30
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1036082',
+                      prefLabel: 'Vervins',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711851',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 561
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024269',
+                  prefLabel: 'ÃŽle-de-France',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '18',
+                  totalInstanceCount: 18
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002883',
+                  prefLabel: 'ÃŽle-de-France',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008670',
+                      prefLabel: 'Aubervilliers',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1032683',
+                      prefLabel: 'Clairefontaine',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008005',
+                      prefLabel: 'Fontainebleau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008007',
+                      prefLabel: 'Jouarre',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017039',
+                      prefLabel: 'Lagny',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034251',
+                      prefLabel: 'Marcoussis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008008',
+                      prefLabel: 'Meaux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '12',
+                      totalInstanceCount: 12
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009333',
+                      prefLabel: 'Médan',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034350',
+                      prefLabel: 'Mennecy',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009368',
+                      prefLabel: 'Montmorency',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034615',
+                      prefLabel: 'Nangis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008038',
+                      prefLabel: 'Paris',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '2828',
+                      totalInstanceCount: 2828
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008066',
+                      prefLabel: 'Poissy',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '15',
+                      totalInstanceCount: 15
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4009491',
+                      prefLabel: 'Royaumont',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009706',
+                      prefLabel: 'Saint-Denis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '17',
+                      totalInstanceCount: 17
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7608929',
+                      prefLabel: 'Saint-Martin-des-Champs',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1036200',
+                      prefLabel: 'Villiers-sur-Marne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002883',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 2900
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7658604',
+                  prefLabel: 'La Champagne',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '34',
+                  totalInstanceCount: 34
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002884',
+                  prefLabel: 'Languedoc',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '11',
+                  totalInstanceCount: 11
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001095',
+                  prefLabel: 'Limousin',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_4011586',
+                  prefLabel: 'Loire Valley',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '21',
+                  totalInstanceCount: 21
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8711852',
+                  prefLabel: 'Normandie',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '1',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008621',
+                      prefLabel: 'Alençon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008207',
+                      prefLabel: 'Avranches',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008208',
+                      prefLabel: 'Bayeux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '19',
+                      totalInstanceCount: 19
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1032202',
+                      prefLabel: 'Bolbec',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008209',
+                      prefLabel: 'Caen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '47',
+                      totalInstanceCount: 47
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7657570',
+                      prefLabel: 'Cailly',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009008',
+                      prefLabel: 'Caudebec',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009008',
+                      prefLabel: 'Caudebec-en-Caux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008215',
+                      prefLabel: 'Coutances',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '12',
+                      totalInstanceCount: 12
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002916',
+                      prefLabel: 'Département du Calvados',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008922',
+                      prefLabel: 'Dieppe',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009169',
+                      prefLabel: 'Eu',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008924',
+                      prefLabel: 'Évreux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '11',
+                      totalInstanceCount: 11
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009176',
+                      prefLabel: 'Fécamp',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009208',
+                      prefLabel: 'Gisors',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1033283',
+                      prefLabel: 'Glos-la-Ferrière',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7644621',
+                      prefLabel: 'Hondouville',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7644617',
+                      prefLabel: 'Honguemare-Guenouville',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008926',
+                      prefLabel: 'Jumièges',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7633744',
+                      prefLabel: 'Le Bec-Hellouin',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7631179',
+                      prefLabel: 'Le Mont-Saint-Michel',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008212',
+                      prefLabel: 'Lisieux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '10',
+                      totalInstanceCount: 10
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4006688',
+                      prefLabel: 'Lyre',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008929',
+                      prefLabel: 'Rouen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '508',
+                      totalInstanceCount: 508
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009660',
+                      prefLabel: 'Saint-Wandrille',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009660',
+                      prefLabel: 'Saint-Wandrille-Rançon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009675',
+                      prefLabel: 'Sées',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7603545',
+                      prefLabel: 'Thury-Harcourt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009743',
+                      prefLabel: 'Vire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711852',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 653
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002886',
+                  prefLabel: 'Normandy',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '264',
+                  totalInstanceCount: 264
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7669119',
+                  prefLabel: 'Northeastern France',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '256',
+                  totalInstanceCount: 256
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_4004036',
+                  prefLabel: 'Northern France',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '1075',
+                  totalInstanceCount: 1075
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8711853',
+                  prefLabel: 'Nouvelle-Aquitaine',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008189',
+                      prefLabel: 'Agen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '9',
+                      totalInstanceCount: 9
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008565',
+                      prefLabel: 'Angoulême',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008388',
+                      prefLabel: 'Aubazines',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4000969',
+                      prefLabel: 'Aunis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012195',
+                      prefLabel: 'Béarn',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008161',
+                      prefLabel: 'Bordeaux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '30',
+                      totalInstanceCount: 30
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7659863',
+                      prefLabel: 'Bouillé-Loretz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1032406',
+                      prefLabel: 'Cancon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008568',
+                      prefLabel: 'Cognac',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '146',
+                      totalInstanceCount: 146
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002919',
+                      prefLabel: 'Département de la Charente',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7636364',
+                      prefLabel: 'La Merci-Dieu',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009264',
+                      prefLabel: 'La Rochelle',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4005999',
+                      prefLabel: 'La Sauve',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4005999',
+                      prefLabel: 'La Sauve-Majeure',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008410',
+                      prefLabel: 'Limoges',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '25',
+                      totalInstanceCount: 25
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034809',
+                      prefLabel: 'Parthenay',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008163',
+                      prefLabel: 'Périgueux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7618099',
+                      prefLabel: 'Pionnat',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017418',
+                      prefLabel: 'Poitiers',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '60',
+                      totalInstanceCount: 60
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7611482',
+                      prefLabel: 'Saint-Amant-de-Boixe',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008586',
+                      prefLabel: 'Saintes',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7605387',
+                      prefLabel: 'Sarlat',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1035652',
+                      prefLabel: 'Sauveterre',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008395',
+                      prefLabel: 'Tulle',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711853',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 296
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8711854',
+                  prefLabel: 'Occitanie',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008447',
+                      prefLabel: 'Albi',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008672',
+                      prefLabel: 'Auch',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008370',
+                      prefLabel: 'Beaucaire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017414',
+                      prefLabel: 'Béziers',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7657666',
+                      prefLabel: 'Cahors',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7656744',
+                      prefLabel: 'Campan',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7656820',
+                      prefLabel: 'Cardaillac',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1032743',
+                      prefLabel: 'Condom',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008421',
+                      prefLabel: 'Conques',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003218',
+                      prefLabel: 'Département de Tarn-et-Garonne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008384',
+                      prefLabel: 'Elne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1124510',
+                      prefLabel: 'Hérault',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7637864',
+                      prefLabel: 'Lasserre-de-Prouille',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009266',
+                      prefLabel: 'Laudun',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7633789',
+                      prefLabel: 'Launaguet',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1034081',
+                      prefLabel: 'Lodève',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4006786',
+                      prefLabel: 'Maguelonne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009335',
+                      prefLabel: 'Mende',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7622423',
+                      prefLabel: 'Mirepoix',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017203',
+                      prefLabel: 'Moissac',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008454',
+                      prefLabel: 'Montauban',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009369',
+                      prefLabel: 'Montpellier',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '26',
+                      totalInstanceCount: 26
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008368',
+                      prefLabel: 'Narbonne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '9',
+                      totalInstanceCount: 9
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008383',
+                      prefLabel: 'Perpignan',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009453',
+                      prefLabel: 'Puylaurens',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008423',
+                      prefLabel: 'Rodez',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7606933',
+                      prefLabel: 'Serignan, Bois de',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1130644',
+                      prefLabel: 'Tarn',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008441',
+                      prefLabel: 'Toulouse',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '57',
+                      totalInstanceCount: 57
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008374',
+                      prefLabel: 'Uzès',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7601397',
+                      prefLabel: 'Villefort',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007619',
+                      prefLabel: 'Villeneuve-lès-Avignon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711854',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 147
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002893',
+                  prefLabel: 'Pays de la Loire',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008480',
+                      prefLabel: 'Angers',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002893',
+                      instanceCount: '78',
+                      totalInstanceCount: 78
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017069',
+                      prefLabel: 'Anjou',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002893',
+                      instanceCount: '29',
+                      totalInstanceCount: 29
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008488',
+                      prefLabel: 'Fontevrault-l\'Abbaye',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002893',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1033648',
+                      prefLabel: 'La Flèche',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002893',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008494',
+                      prefLabel: 'Le Mans',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002893',
+                      instanceCount: '25',
+                      totalInstanceCount: 25
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7625335',
+                      prefLabel: 'Maine',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002893',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7624265',
+                      prefLabel: 'Montargis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002893',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008482',
+                      prefLabel: 'Nantes',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002893',
+                      instanceCount: '24',
+                      totalInstanceCount: 24
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017431',
+                      prefLabel: 'Noirmoutier-en-l\'ÃŽle',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002893',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 172
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7616841',
+                  prefLabel: 'Pays de la Loire',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7016945',
+                  prefLabel: 'Périgord',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024273',
+                  prefLabel: 'Picardy',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '51',
+                  totalInstanceCount: 51
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002891',
+                  prefLabel: 'Poitou',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '10',
+                  totalInstanceCount: 10
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_6004769',
+                  prefLabel: 'Ponthieu',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7012209',
+                  prefLabel: 'Provence',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '127',
+                  totalInstanceCount: 127
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002895',
+                  prefLabel: 'Provence-Alpes-Côte d\'Azur',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010786',
+                      prefLabel: 'Aix-en-Provence',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008775',
+                      prefLabel: 'Arles',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008799',
+                      prefLabel: 'Avignon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '91',
+                      totalInstanceCount: 91
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1032203',
+                      prefLabel: 'Bollène',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008801',
+                      prefLabel: 'Carpentras',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008791',
+                      prefLabel: 'Fréjus',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1033486',
+                      prefLabel: 'Isola',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7641181',
+                      prefLabel: 'La Celle',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008781',
+                      prefLabel: 'Marseille',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008781',
+                      prefLabel: 'Marseilles',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008773',
+                      prefLabel: 'Nice',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009664',
+                      prefLabel: 'Salon-de-Provence',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7605126',
+                      prefLabel: 'Sarrians',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7606498',
+                      prefLabel: 'Selonnet',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008795',
+                      prefLabel: 'Tarascon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009717',
+                      prefLabel: 'Vence',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002895',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 140
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_4004037',
+                  prefLabel: 'Southern France',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '360',
+                  totalInstanceCount: 360
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_6006275',
+                  prefLabel: 'Valois',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000070',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                }
+              ],
+              totalInstanceCount: 20387
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7003617',
+              prefLabel: 'Friesland',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '10',
+              totalInstanceCount: 10
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7002787',
+              prefLabel: 'Galicia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7000084',
+              prefLabel: 'Germany',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '4772',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7031909',
+                  prefLabel: 'Baden',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003692',
+                  prefLabel: 'Baden-Württemberg',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '4',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1038316',
+                      prefLabel: 'Bad Buchau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1039568',
+                      prefLabel: 'Bad Herrenalb',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4001323',
+                      prefLabel: 'Bebenhausen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012939',
+                      prefLabel: 'Berau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1038594',
+                      prefLabel: 'Bopfingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7202210',
+                      prefLabel: 'Bronnbach',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012430',
+                      prefLabel: 'Eberbach',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7187694',
+                      prefLabel: 'Engelberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012928',
+                      prefLabel: 'Esslingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004423',
+                      prefLabel: 'Freiburg im Breisgau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '16',
+                      totalInstanceCount: 16
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7184038',
+                      prefLabel: 'Gottersdorf',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012484',
+                      prefLabel: 'Gundelfingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1039493',
+                      prefLabel: 'Hechingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005177',
+                      prefLabel: 'Heidelberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '16',
+                      totalInstanceCount: 16
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012419',
+                      prefLabel: 'Heidenheim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012495',
+                      prefLabel: 'Heilbronn',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005178',
+                      prefLabel: 'Hirsau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7163871',
+                      prefLabel: 'Hürbel',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004424',
+                      prefLabel: 'Karlsruhe',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005174',
+                      prefLabel: 'Konstanz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '39',
+                      totalInstanceCount: 39
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012560',
+                      prefLabel: 'Langenargen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7137890',
+                      prefLabel: 'Langnau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005180',
+                      prefLabel: 'Maulbronn',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012926',
+                      prefLabel: 'Neresheim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7127364',
+                      prefLabel: 'Nimburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005182',
+                      prefLabel: 'Ochsenhausen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7117372',
+                      prefLabel: 'Ödenwald',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012653',
+                      prefLabel: 'Pforzheim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7110071',
+                      prefLabel: 'Ravensburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005185',
+                      prefLabel: 'Reichenau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012674',
+                      prefLabel: 'Reutlingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012944',
+                      prefLabel: 'Rheinau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012684',
+                      prefLabel: 'Rottenburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012685',
+                      prefLabel: 'Rottweil',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012683',
+                      prefLabel: 'Salem',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012706',
+                      prefLabel: 'Schuttern',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012708',
+                      prefLabel: 'Schwäbisch Hall',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7077329',
+                      prefLabel: 'Stadtkreis Ulm',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004425',
+                      prefLabel: 'Stuttgart',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004426',
+                      prefLabel: 'Tübingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012359',
+                      prefLabel: 'Ãœberlingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7077329',
+                      prefLabel: 'Ulm',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7066334',
+                      prefLabel: 'Ulm',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '12',
+                      totalInstanceCount: 12
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1136986',
+                      prefLabel: 'Weingarten',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '9',
+                      totalInstanceCount: 9
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4012115',
+                      prefLabel: 'Weissenau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1041738',
+                      prefLabel: 'Welzheim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012769',
+                      prefLabel: 'Wertheim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7078915',
+                      prefLabel: 'Würm',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003691',
+                      prefLabel: 'Württemberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003692',
+                      instanceCount: '12',
+                      totalInstanceCount: 12
+                    }
+                  ],
+                  totalInstanceCount: 190
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003669',
+                  prefLabel: 'Bavaria',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '120',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7216393',
+                      prefLabel: 'Absdorf',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1038166',
+                      prefLabel: 'Altdorf',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1038185',
+                      prefLabel: 'Altenstadt an der Waldnaab',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012357',
+                      prefLabel: 'Amberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005993',
+                      prefLabel: 'Amorbach',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004459',
+                      prefLabel: 'Ansbach',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005994',
+                      prefLabel: 'Arnstein',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '19',
+                      totalInstanceCount: 19
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004322',
+                      prefLabel: 'Aschaffenburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004324',
+                      prefLabel: 'Augsburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '119',
+                      totalInstanceCount: 119
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012382',
+                      prefLabel: 'Bad Windsheim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004325',
+                      prefLabel: 'Bamberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '44',
+                      totalInstanceCount: 44
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7210294',
+                      prefLabel: 'Banz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7214699',
+                      prefLabel: 'Beuerberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7213595',
+                      prefLabel: 'Biburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4002028',
+                      prefLabel: 'Buxheim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '43',
+                      totalInstanceCount: 43
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1038720',
+                      prefLabel: 'Cham',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004330',
+                      prefLabel: 'Coburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012427',
+                      prefLabel: 'Dillingen an der Donau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '11',
+                      totalInstanceCount: 11
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1038883',
+                      prefLabel: 'Ebern',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004613',
+                      prefLabel: 'Eichstätt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7189548',
+                      prefLabel: 'Einsiedeln',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7187247',
+                      prefLabel: 'Engelthal',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004700',
+                      prefLabel: 'Ettal',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012455',
+                      prefLabel: 'Forchheim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7013338',
+                      prefLabel: 'Freising',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1039508',
+                      prefLabel: 'Heidenheim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7159562',
+                      prefLabel: 'Hollen Berg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7162612',
+                      prefLabel: 'Ingolstadt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '18',
+                      totalInstanceCount: 18
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017035',
+                      prefLabel: 'Ingolstadt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006087',
+                      prefLabel: 'Irsee',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012523',
+                      prefLabel: 'Kaisheim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012526',
+                      prefLabel: 'Kaufbeuren',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012530',
+                      prefLabel: 'Kempten',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012535',
+                      prefLabel: 'Kitzingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012543',
+                      prefLabel: 'Kronach',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7077307',
+                      prefLabel: 'Landkreis Landshut',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004414',
+                      prefLabel: 'Landshut',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7077307',
+                      prefLabel: 'Landshut',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012568',
+                      prefLabel: 'Lauingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1040126',
+                      prefLabel: 'Lindau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7197198',
+                      prefLabel: 'Markt Dießen am Ammersee',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012520',
+                      prefLabel: 'Markt Indersdorf',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7129603',
+                      prefLabel: 'Melkendorf',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012598',
+                      prefLabel: 'Memmingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012302',
+                      prefLabel: 'Miltenberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004333',
+                      prefLabel: 'Munich',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '12',
+                      totalInstanceCount: 12
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012914',
+                      prefLabel: 'Neuburg an der Donau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004566',
+                      prefLabel: 'Neumarkt in der Oberpfalz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1040471',
+                      prefLabel: 'Neunkirchen am Brand',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_5001796',
+                      prefLabel: 'Neustadt am Main',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7125218',
+                      prefLabel: 'Niederalteich',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004334',
+                      prefLabel: 'Nuremberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '221',
+                      totalInstanceCount: 221
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004398',
+                      prefLabel: 'Oberbayern',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7116597',
+                      prefLabel: 'Ottering',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012644',
+                      prefLabel: 'Ottobeuren',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7119558',
+                      prefLabel: 'Pfreimd',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7109867',
+                      prefLabel: 'Rebdorf',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7013496',
+                      prefLabel: 'Regensburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '48',
+                      totalInstanceCount: 48
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7112738',
+                      prefLabel: 'Roggenburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7102211',
+                      prefLabel: 'Rothenberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005188',
+                      prefLabel: 'Rothenburg ober der Tauber',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012662',
+                      prefLabel: 'Röttingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012695',
+                      prefLabel: 'Scheyern',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7106790',
+                      prefLabel: 'Schmerlenbach',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1041144',
+                      prefLabel: 'Schrobenhausen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004409',
+                      prefLabel: 'Sulzbach-Rosenberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004693',
+                      prefLabel: 'Tegernsee',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004676',
+                      prefLabel: 'Traunstein',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7085766',
+                      prefLabel: 'Wasserburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004335',
+                      prefLabel: 'Würzburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003669',
+                      instanceCount: '43',
+                      totalInstanceCount: 43
+                    }
+                  ],
+                  totalInstanceCount: 799
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000096',
+                  prefLabel: 'Brandenburg',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '1',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012803',
+                      prefLabel: 'Cottbus',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000096',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005972',
+                      prefLabel: 'Frankfurt an der Oder',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000096',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7137888',
+                      prefLabel: 'Langnow',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000096',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7143401',
+                      prefLabel: 'Lubochow',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000096',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 8
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003672',
+                  prefLabel: 'Bremen',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005286',
+                      prefLabel: 'Bremen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003672',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    }
+                  ],
+                  totalInstanceCount: 5
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7012456',
+                  prefLabel: 'Franken',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '8',
+                  totalInstanceCount: 8
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003673',
+                  prefLabel: 'Hamburg',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '8',
+                  totalInstanceCount: 8
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003678',
+                  prefLabel: 'Hesse',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7064042',
+                      prefLabel: 'Anspach',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7076068',
+                      prefLabel: 'Beselich',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7204105',
+                      prefLabel: 'Braunau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004428',
+                      prefLabel: 'Darmstadt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005292',
+                      prefLabel: 'Eltville',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005293',
+                      prefLabel: 'Frankfurt am Main',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '18',
+                      totalInstanceCount: 18
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005947',
+                      prefLabel: 'Fritzlar',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005294',
+                      prefLabel: 'Fulda',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1039172',
+                      prefLabel: 'Göttingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005296',
+                      prefLabel: 'Helmarshausen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7154075',
+                      prefLabel: 'Karben',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009091',
+                      prefLabel: 'Limburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012584',
+                      prefLabel: 'Lorsch',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '13',
+                      totalInstanceCount: 13
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012330',
+                      prefLabel: 'Marburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1136960',
+                      prefLabel: 'Ortenberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4010301',
+                      prefLabel: 'Seligenstadt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7077899',
+                      prefLabel: 'Wiesbaden',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7078658',
+                      prefLabel: 'Würzburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003678',
+                      instanceCount: '28',
+                      totalInstanceCount: 28
+                    }
+                  ],
+                  totalInstanceCount: 86
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_6002528',
+                  prefLabel: 'Hesse',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '7',
+                  totalInstanceCount: 7
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7594165',
+                  prefLabel: 'lost & found/Germany',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4004315',
+                      prefLabel: 'Germany, Northern',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7594165',
+                      instanceCount: '60',
+                      totalInstanceCount: 60
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4004316',
+                      prefLabel: 'Germany, Southern',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7594165',
+                      instanceCount: '392',
+                      totalInstanceCount: 392
+                    }
+                  ],
+                  totalInstanceCount: 452
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003676',
+                  prefLabel: 'Lower Saxony',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '9',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7062783',
+                      prefLabel: 'Amelungsborn',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004434',
+                      prefLabel: 'Brunswick',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005317',
+                      prefLabel: 'Celle',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003618',
+                      prefLabel: 'East Friesland',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7013260',
+                      prefLabel: 'Hanover',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005247',
+                      prefLabel: 'Helmstedt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005248',
+                      prefLabel: 'Hildesheim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '28',
+                      totalInstanceCount: 28
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1136927',
+                      prefLabel: 'Horneburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7206391',
+                      prefLabel: 'Kampen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004436',
+                      prefLabel: 'Lüneburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4007065',
+                      prefLabel: 'Medingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005934',
+                      prefLabel: 'Northeim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004439',
+                      prefLabel: 'Oldenburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005252',
+                      prefLabel: 'Osnabrück',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1040922',
+                      prefLabel: 'Rinteln',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005478',
+                      prefLabel: 'Stadthagen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7069151',
+                      prefLabel: 'Stauffenburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003676',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 68
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7000094',
+                  prefLabel: 'Mecklenburg-Vorpommern',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004720',
+                      prefLabel: 'Mecklenburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000094',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004793',
+                      prefLabel: 'New Brandenburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000094',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004717',
+                      prefLabel: 'Rostock',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7000094',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7012605',
+                  prefLabel: 'Middle Rhine',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '14',
+                  totalInstanceCount: 14
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003677',
+                  prefLabel: 'North Rhine-Westphalia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '5',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004799',
+                      prefLabel: 'Aachen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '14',
+                      totalInstanceCount: 14
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7076140',
+                      prefLabel: 'Bernberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7212354',
+                      prefLabel: 'Böddeken',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7203420',
+                      prefLabel: 'Bredelar',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1038288',
+                      prefLabel: 'Büderich',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012313',
+                      prefLabel: 'Cleves',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1038728',
+                      prefLabel: 'Coesfeld',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004446',
+                      prefLabel: 'Cologne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '318',
+                      totalInstanceCount: 318
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1100040',
+                      prefLabel: 'Corvey, Kloster',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1038743',
+                      prefLabel: 'Dülmen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004443',
+                      prefLabel: 'Dusseldorf',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005163',
+                      prefLabel: 'Emmerich',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1039118',
+                      prefLabel: 'Fredeburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1039284',
+                      prefLabel: 'Goch',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7184405',
+                      prefLabel: 'Gravenhorst',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012503',
+                      prefLabel: 'Herford',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005171',
+                      prefLabel: 'Kempen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7077750',
+                      prefLabel: 'Kreis Paderborn',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4005919',
+                      prefLabel: 'Löwen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7131536',
+                      prefLabel: 'Marienmünster',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005099',
+                      prefLabel: 'Minden',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004975',
+                      prefLabel: 'Mönchengladbach',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004445',
+                      prefLabel: 'Münster',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '18',
+                      totalInstanceCount: 18
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004978',
+                      prefLabel: 'Neuss',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1040544',
+                      prefLabel: 'Nottuln',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7077750',
+                      prefLabel: 'Paderborn',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005101',
+                      prefLabel: 'Paderborn',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005104',
+                      prefLabel: 'Siegburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005105',
+                      prefLabel: 'Soest',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012758',
+                      prefLabel: 'Warburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012772',
+                      prefLabel: 'Westphalia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '31',
+                      totalInstanceCount: 31
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004980',
+                      prefLabel: 'Xanten',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003677',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 443
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003683',
+                  prefLabel: 'Rhineland',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '123',
+                  totalInstanceCount: 123
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003682',
+                  prefLabel: 'Rhineland Palatinate',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7212706',
+                      prefLabel: 'Boppard',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012458',
+                      prefLabel: 'Frankenthal',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7170090',
+                      prefLabel: 'Herborn',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7170864',
+                      prefLabel: 'Himmerod',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004448',
+                      prefLabel: 'Koblenz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7139366',
+                      prefLabel: 'Leiningen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004449',
+                      prefLabel: 'Mainz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '57',
+                      totalInstanceCount: 57
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012593',
+                      prefLabel: 'Maria Laach',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7131200',
+                      prefLabel: 'Merzweiler',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012608',
+                      prefLabel: 'Montabaur',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012946',
+                      prefLabel: 'Nassau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7120678',
+                      prefLabel: 'Platten',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7112174',
+                      prefLabel: 'Regierungsbezirk Rheinhessen-Pfalz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7098207',
+                      prefLabel: 'Simmern',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012341',
+                      prefLabel: 'Speyer',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7098115',
+                      prefLabel: 'Sponheim',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004447',
+                      prefLabel: 'Trier',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004451',
+                      prefLabel: 'Trier',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '116',
+                      totalInstanceCount: 116
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005108',
+                      prefLabel: 'Worms',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003682',
+                      instanceCount: '10',
+                      totalInstanceCount: 10
+                    }
+                  ],
+                  totalInstanceCount: 214
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003685',
+                  prefLabel: 'Saxony',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '28',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004455',
+                      prefLabel: 'Dresden',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003685',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012813',
+                      prefLabel: 'Görlitz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003685',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017167',
+                      prefLabel: 'Leipzig',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003685',
+                      instanceCount: '22',
+                      totalInstanceCount: 22
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7139158',
+                      prefLabel: 'Leipzig',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003685',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012329',
+                      prefLabel: 'Leipzig',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003685',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012844',
+                      prefLabel: 'Meissen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003685',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012881',
+                      prefLabel: 'Torgau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003685',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1037947',
+                      prefLabel: 'Weissenberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003685',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017177',
+                      prefLabel: 'Zittau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003685',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012354',
+                      prefLabel: 'Zwickau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003685',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 68
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003687',
+                  prefLabel: 'Saxony-Anhalt',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '1',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005682',
+                      prefLabel: 'Anhalt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012317',
+                      prefLabel: 'Halberstadt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012821',
+                      prefLabel: 'Haldensleben',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1036898',
+                      prefLabel: 'Halle',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012319',
+                      prefLabel: 'Havelberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4005207',
+                      prefLabel: 'Huysburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004456',
+                      prefLabel: 'Magdeburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012845',
+                      prefLabel: 'Merseburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012847',
+                      prefLabel: 'Naumburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012857',
+                      prefLabel: 'Quedlinburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1037635',
+                      prefLabel: 'Salzwedel',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012875',
+                      prefLabel: 'Stendal',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1037787',
+                      prefLabel: 'Stolberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012349',
+                      prefLabel: 'Wittenberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '20',
+                      totalInstanceCount: 20
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012892',
+                      prefLabel: 'Zerbst',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003687',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 55
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003688',
+                  prefLabel: 'Schleswig-Holstein',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '1',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7211973',
+                      prefLabel: 'Bilsen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003688',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7202427',
+                      prefLabel: 'Brux',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003688',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003679',
+                      prefLabel: 'Holstein',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003688',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012327',
+                      prefLabel: 'Lubeck',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003688',
+                      instanceCount: '10',
+                      totalInstanceCount: 10
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7121033',
+                      prefLabel: 'Passau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003688',
+                      instanceCount: '14',
+                      totalInstanceCount: 14
+                    }
+                  ],
+                  totalInstanceCount: 28
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7017048',
+                  prefLabel: 'Swabia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '21',
+                  totalInstanceCount: 21
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003689',
+                  prefLabel: 'Thuringia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7000084',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012792',
+                      prefLabel: 'Arnstadt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003689',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003722',
+                      prefLabel: 'Erfurt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003689',
+                      instanceCount: '106',
+                      totalInstanceCount: 106
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7024031',
+                      prefLabel: 'Erfurt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003689',
+                      instanceCount: '27',
+                      totalInstanceCount: 27
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012815',
+                      prefLabel: 'Gera',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003689',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005938',
+                      prefLabel: 'Gotha',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003689',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012851',
+                      prefLabel: 'Nordhausen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003689',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7116832',
+                      prefLabel: 'Ottenhausen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003689',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7100293',
+                      prefLabel: 'Saalfeld',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003689',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7069470',
+                      prefLabel: 'Thüringen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003689',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1037866',
+                      prefLabel: 'Triptis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003689',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7065708',
+                      prefLabel: 'Udestedt',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003689',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1100368',
+                      prefLabel: 'Wartburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003689',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 153
+                }
+              ],
+              totalInstanceCount: 7528
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000074',
+              prefLabel: 'Greece',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '137',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002674',
+                  prefLabel: 'Aegean Islands',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000074',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011161',
+                      prefLabel: 'Khíos',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002674',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7002670',
+                          prefLabel: 'Chios',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011161',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_1042072',
+                              prefLabel: 'Chios',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7002670',
+                              instanceCount: '4',
+                              totalInstanceCount: 4
+                            }
+                          ],
+                          totalInstanceCount: 4
+                        }
+                      ],
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011330',
+                      prefLabel: 'Sporades (nomos)',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002674',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011266',
+                          prefLabel: 'Rhodes',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011330',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7011265',
+                              prefLabel: 'Rhodes',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7011266',
+                              instanceCount: '5',
+                              totalInstanceCount: 5
+                            }
+                          ],
+                          totalInstanceCount: 5
+                        }
+                      ],
+                      totalInstanceCount: 5
+                    }
+                  ],
+                  totalInstanceCount: 9
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001395',
+                  prefLabel: 'Central Greece and Euboea',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000074',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002683',
+                      prefLabel: 'Boeotia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001395',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7029383',
+                          prefLabel: 'Thebes',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002683',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011171',
+                      prefLabel: 'Évvoia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001395',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7002677',
+                          prefLabel: 'Euboea',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011171',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7012056',
+                  prefLabel: 'Crete',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000074',
+                  instanceCount: '53',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002689',
+                      prefLabel: 'Canea',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012056',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010843',
+                          prefLabel: 'Khaniá',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002689',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002690',
+                      prefLabel: 'Iráklion',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7012056',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010879',
+                          prefLabel: 'Iráklion',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002690',
+                          instanceCount: '7',
+                          totalInstanceCount: 7
+                        }
+                      ],
+                      totalInstanceCount: 7
+                    }
+                  ],
+                  totalInstanceCount: 62
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002705',
+                  prefLabel: 'Epirus',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000074',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002707',
+                      prefLabel: 'Ioánnina',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002705',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011082',
+                          prefLabel: 'Ioánnina',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002707',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001338',
+                  prefLabel: 'Ionian Islands',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000074',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002711',
+                      prefLabel: 'Kérkira',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001338',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010886',
+                          prefLabel: 'Corfu',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002711',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        }
+                      ],
+                      totalInstanceCount: 5
+                    }
+                  ],
+                  totalInstanceCount: 5
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002715',
+                  prefLabel: 'Macedonia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000074',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011170',
+                      prefLabel: 'Kaválla',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002715',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7232740',
+                          prefLabel: 'Kormísta',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011170',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002723',
+                      prefLabel: 'Pangaíon Óros',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002715',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7002722',
+                          prefLabel: 'Mount Athos',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002723',
+                          instanceCount: '30',
+                          totalInstanceCount: 30
+                        }
+                      ],
+                      totalInstanceCount: 30
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002731',
+                      prefLabel: 'Thessaloníki',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002715',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011182',
+                          prefLabel: 'Thessaloníki',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002731',
+                          instanceCount: '10',
+                          totalInstanceCount: 10
+                        }
+                      ],
+                      totalInstanceCount: 10
+                    }
+                  ],
+                  totalInstanceCount: 41
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7017076',
+                  prefLabel: 'Peloponnese',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000074',
+                  instanceCount: '1',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002739',
+                      prefLabel: 'Argolís',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7017076',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011013',
+                          prefLabel: 'Náfplio',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002739',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002745',
+                      prefLabel: 'Laconia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7017076',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010926',
+                          prefLabel: 'Mistrás',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002745',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011058',
+                          prefLabel: 'Sparta',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002745',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001399',
+                  prefLabel: 'Thessaly',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000074',
+                  instanceCount: '2',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002752',
+                      prefLabel: 'Tríkkala',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001399',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010925',
+                          prefLabel: 'Metéora',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002752',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        }
+                      ],
+                      totalInstanceCount: 9
+                    }
+                  ],
+                  totalInstanceCount: 11
+                }
+              ],
+              totalInstanceCount: 274
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_8697461',
+              prefLabel: 'Greece (historical)',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '20',
+              totalInstanceCount: 20
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7005237',
+              prefLabel: 'Guernsey',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1003757',
+              prefLabel: 'Hainaut',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '48',
+              totalInstanceCount: 48
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7001168',
+              prefLabel: 'Holy See',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '5',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1100097',
+                  prefLabel: 'San Pietro in Vaticano',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7001168',
+                  instanceCount: '3',
+                  totalInstanceCount: 3
+                }
+              ],
+              totalInstanceCount: 8
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006278',
+              prefLabel: 'Hungary',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '17',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7017994',
+                  prefLabel: 'Budapest',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006278',
+                  instanceCount: '3',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006280',
+                      prefLabel: 'Budapest',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7017994',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010547',
+                          prefLabel: 'Buda',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7006280',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 5
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000402',
+                  prefLabel: 'Komárom-Esztergom',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006278',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010539',
+                      prefLabel: 'Esztergom',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000402',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 23
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016676',
+              prefLabel: 'Iberian Peninsula',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '8',
+              totalInstanceCount: 8
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000077',
+              prefLabel: 'Iceland',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '11',
+              totalInstanceCount: 11
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000078',
+              prefLabel: 'Ireland',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '133',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003496',
+                  prefLabel: 'Clare',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000078',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003497',
+                  prefLabel: 'Cork',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000078',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007234',
+                      prefLabel: 'Cloyne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003497',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7593747',
+                  prefLabel: 'Dublin',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000078',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001306',
+                      prefLabel: 'Dublin',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7593747',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7593751',
+                  prefLabel: 'Galway',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000078',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001201',
+                  prefLabel: 'Munster',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000078',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7593748',
+                  prefLabel: 'North Tipperary',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000078',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4006576',
+                      prefLabel: 'Lorrha',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7593748',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003492',
+                  prefLabel: 'Offaly',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000078',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1042650',
+                      prefLabel: 'Birr',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003492',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003505',
+                  prefLabel: 'Waterford',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000078',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 143
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000080',
+              prefLabel: 'Italy',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '16182',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7009084',
+                  prefLabel: 'Abruzzi',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '8',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003000',
+                      prefLabel: 'Chieti',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009084',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004161',
+                          prefLabel: 'Lanciano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003000',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1045778',
+                          prefLabel: 'Ortona',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003000',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004154',
+                      prefLabel: 'L\'Aquila',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009084',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004067',
+                          prefLabel: 'L\'Aquila',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7004154',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004202',
+                          prefLabel: 'Sulmona',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7004154',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1112079',
+                      prefLabel: 'Marsica',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009084',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003484',
+                      prefLabel: 'Pescara',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009084',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004068',
+                          prefLabel: 'Pescara',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003484',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003001',
+                      prefLabel: 'Teramo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009084',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7046005',
+                          prefLabel: 'Castagneto',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003001',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 19
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7010380',
+                  prefLabel: 'Apulia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '2',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003248',
+                      prefLabel: 'Bari',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7010380',
+                      instanceCount: '4',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004101',
+                          prefLabel: 'Bari',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003248',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004113',
+                          prefLabel: 'Molfetta',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003248',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7594847',
+                      prefLabel: 'Barletta-Andria-Trani',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7010380',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004108',
+                          prefLabel: 'Trani',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7594847',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003442',
+                      prefLabel: 'Brindisi',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7010380',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003455',
+                      prefLabel: 'Foggia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7010380',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004148',
+                          prefLabel: 'Siponto',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003455',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003468',
+                      prefLabel: 'Lecce',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7010380',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004093',
+                          prefLabel: 'Otranto',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003468',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        }
+                      ],
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003500',
+                      prefLabel: 'Taranto',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7010380',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004100',
+                          prefLabel: 'Taranto',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003500',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        }
+                      ],
+                      totalInstanceCount: 5
+                    }
+                  ],
+                  totalInstanceCount: 22
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7004610',
+                  prefLabel: 'Basilicata',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003489',
+                      prefLabel: 'Potenza',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7004610',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004228',
+                          prefLabel: 'Potenza',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003489',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7007850',
+                  prefLabel: 'Calabria',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '5',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003450',
+                      prefLabel: 'Cosenza',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7007850',
+                      instanceCount: '2',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004302',
+                          prefLabel: 'Rossano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003450',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7024841',
+                      prefLabel: 'Crotone',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7007850',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004291',
+                          prefLabel: 'Crotone',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7024841',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003491',
+                      prefLabel: 'Reggio di Calabria',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7007850',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004320',
+                          prefLabel: 'Gerace',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003491',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7051204',
+                          prefLabel: 'Nardo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003491',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7051204',
+                          prefLabel: 'Nardodipace',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003491',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004296',
+                          prefLabel: 'Reggio Calabria',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003491',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004296',
+                          prefLabel: 'Reggio di Calabria',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003491',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7041110',
+                          prefLabel: 'San Blasio',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003491',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 13
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7024842',
+                      prefLabel: 'Vibo Valentia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7007850',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7024876',
+                          prefLabel: 'Sant\'Onofrio',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7024842',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 23
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003005',
+                  prefLabel: 'Campania',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '5',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003002',
+                      prefLabel: 'Avellino',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003005',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7044880',
+                          prefLabel: 'Candida',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003002',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1045392',
+                          prefLabel: 'Mirabella Eclano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003002',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003011',
+                      prefLabel: 'Caserta',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003005',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004518',
+                          prefLabel: 'Aversa',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003011',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004529',
+                          prefLabel: 'Capua',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003011',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003013',
+                      prefLabel: 'Napoli',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003005',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006855',
+                          prefLabel: 'Capri, Isola di',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003013',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_1043863',
+                              prefLabel: 'Capri',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7006855',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            }
+                          ],
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1100244',
+                          prefLabel: 'Castel dell\'Ovo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003013',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7031897',
+                          prefLabel: 'Herculaneum',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003013',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010392',
+                          prefLabel: 'Ischia, Isola d\'',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003013',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7006851',
+                              prefLabel: 'Ischia',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7010392',
+                              instanceCount: '2',
+                              totalInstanceCount: 2
+                            }
+                          ],
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004474',
+                          prefLabel: 'Naples',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003013',
+                          instanceCount: '401',
+                          totalInstanceCount: 401
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004474',
+                          prefLabel: 'Napoli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003013',
+                          instanceCount: '401',
+                          totalInstanceCount: 401
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004644',
+                          prefLabel: 'Nola',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003013',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 813
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003014',
+                      prefLabel: 'Salerno',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003005',
+                      instanceCount: '3',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7040622',
+                          prefLabel: 'San Severino',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003014',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 827
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_4005361',
+                  prefLabel: 'Central Italy',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '173',
+                  totalInstanceCount: 173
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7008516',
+                  prefLabel: 'Emilia-Romagna',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '13',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003127',
+                      prefLabel: 'Bologna',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7008516',
+                      instanceCount: '420',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004847',
+                          prefLabel: 'Bologna',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003127',
+                          instanceCount: '84',
+                          totalInstanceCount: 84
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004864',
+                          prefLabel: 'Imola',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003127',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7040246',
+                          prefLabel: 'Sarzana',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003127',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 507
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7015397',
+                      prefLabel: 'Emilia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7008516',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003128',
+                      prefLabel: 'Ferrara',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7008516',
+                      instanceCount: '269',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004900',
+                          prefLabel: 'Cento',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003128',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004264',
+                          prefLabel: 'Ferrara',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003128',
+                          instanceCount: '62',
+                          totalInstanceCount: 62
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7046997',
+                          prefLabel: 'Gualdo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003128',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 333
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003129',
+                      prefLabel: 'Forlì-Cesena',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7008516',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004926',
+                          prefLabel: 'Bertinoro',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003129',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004922',
+                          prefLabel: 'Cesena',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003129',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004912',
+                          prefLabel: 'Forlì',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003129',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 9
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7004597',
+                      prefLabel: 'Modena',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7008516',
+                      instanceCount: '20',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004950',
+                          prefLabel: 'Carpi',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7004597',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1111989',
+                          prefLabel: 'Frignano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7004597',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7009565',
+                          prefLabel: 'Modena',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7004597',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004953',
+                          prefLabel: 'Nonántola',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7004597',
+                          instanceCount: '15',
+                          totalInstanceCount: 15
+                        }
+                      ],
+                      totalInstanceCount: 40
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003131',
+                      prefLabel: 'Parma',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7008516',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1128413',
+                          prefLabel: 'Parma',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003131',
+                          instanceCount: '22',
+                          totalInstanceCount: 22
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004942',
+                          prefLabel: 'Parma',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003131',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7042797',
+                          prefLabel: 'Rivalta',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003131',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 27
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003132',
+                      prefLabel: 'Piacenza',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7008516',
+                      instanceCount: '32',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004992',
+                          prefLabel: 'Bobbio',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003132',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4002608',
+                          prefLabel: 'Chiaravalle della Colomba',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003132',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004939',
+                          prefLabel: 'Piacenza',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003132',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 46
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003133',
+                      prefLabel: 'Ravenna',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7008516',
+                      instanceCount: '7',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004995',
+                          prefLabel: 'Faenza',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003133',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004935',
+                          prefLabel: 'Ravenna',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003133',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        }
+                      ],
+                      totalInstanceCount: 16
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003134',
+                      prefLabel: 'Reggio nell\'Emilia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7008516',
+                      instanceCount: '7',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005020',
+                          prefLabel: 'Reggio Emilia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003134',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005020',
+                          prefLabel: 'Reggio nell\'Emilia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003134',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        }
+                      ],
+                      totalInstanceCount: 17
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7024843',
+                      prefLabel: 'Rimini',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7008516',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004929',
+                          prefLabel: 'Rimini',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7024843',
+                          instanceCount: '15',
+                          totalInstanceCount: 15
+                        }
+                      ],
+                      totalInstanceCount: 15
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005001',
+                      prefLabel: 'Romagna',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7008516',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 1034
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002993',
+                  prefLabel: 'Friuli-Venezia Giulia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003459',
+                      prefLabel: 'Gorizia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002993',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005526',
+                          prefLabel: 'Gorizia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003459',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003488',
+                      prefLabel: 'Pordenone',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002993',
+                      instanceCount: '3',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7043615',
+                          prefLabel: 'Carbona',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003488',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1046130',
+                          prefLabel: 'Porcia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003488',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005537',
+                          prefLabel: 'Sacile',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003488',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005532',
+                          prefLabel: 'Spilimbergo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003488',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003505',
+                      prefLabel: 'Trieste',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002993',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003506',
+                      prefLabel: 'Udine',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002993',
+                      instanceCount: '7',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005553',
+                          prefLabel: 'Aquileia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003506',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005552',
+                          prefLabel: 'Cividale del Friuli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003506',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7047901',
+                          prefLabel: 'Fagagna',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003506',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7034969',
+                          prefLabel: 'Friuli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003506',
+                          instanceCount: '13',
+                          totalInstanceCount: 13
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005546',
+                          prefLabel: 'Gemona del Friuli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003506',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7042676',
+                          prefLabel: 'Prato di Resia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003506',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005549',
+                          prefLabel: 'Tolmezzo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003506',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005139',
+                          prefLabel: 'Udine',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003506',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 32
+                    }
+                  ],
+                  totalInstanceCount: 43
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003012',
+                  prefLabel: 'Kingdom of Naples',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003080',
+                  prefLabel: 'Lazio',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '3',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003135',
+                      prefLabel: 'Frosinone',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003080',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006676',
+                          prefLabel: 'Anagni',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003135',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1100039',
+                          prefLabel: 'Casamari, Abbazia di',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003135',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006732',
+                          prefLabel: 'Montecassino, Abbazia di',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003135',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        }
+                      ],
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003136',
+                      prefLabel: 'Latina',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003080',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006713',
+                          prefLabel: 'Gaeta',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003136',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003137',
+                      prefLabel: 'Rieti',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003080',
+                      instanceCount: '3',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006739',
+                          prefLabel: 'Rieti',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003137',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003138',
+                      prefLabel: 'Roma',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003080',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007173',
+                          prefLabel: 'Anguillara Sabazia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003138',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007014',
+                          prefLabel: 'Grottaferrata',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003138',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006764',
+                          prefLabel: 'Palombara Sabina',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003138',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7000874',
+                          prefLabel: 'Rome',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003138',
+                          instanceCount: '646',
+                          totalInstanceCount: 646
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006989',
+                          prefLabel: 'Subiaco',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003138',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006968',
+                          prefLabel: 'Tivoli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003138',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 656
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003139',
+                      prefLabel: 'Viterbo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003080',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    }
+                  ],
+                  totalInstanceCount: 678
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003236',
+                  prefLabel: 'Liguria',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '6',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003142',
+                      prefLabel: 'Genova',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003236',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7057855',
+                          prefLabel: 'Arezzo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003142',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008546',
+                          prefLabel: 'Genoa',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003142',
+                          instanceCount: '127',
+                          totalInstanceCount: 127
+                        }
+                      ],
+                      totalInstanceCount: 128
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003141',
+                      prefLabel: 'Imperia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003236',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7049429',
+                          prefLabel: 'Carpasio',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003141',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005355',
+                          prefLabel: 'Ventimiglia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003141',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003143',
+                      prefLabel: 'La Spezia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003236',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005369',
+                          prefLabel: 'Ameglia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003143',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005362',
+                          prefLabel: 'La Spezia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003143',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003144',
+                      prefLabel: 'Savona',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003236',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 140
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003237',
+                  prefLabel: 'Lombardy',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '170',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005023',
+                      prefLabel: 'Bergamo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003237',
+                      instanceCount: '22',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005811',
+                          prefLabel: 'Albino',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005023',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005025',
+                          prefLabel: 'Bergamo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005023',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005813',
+                          prefLabel: 'Gandino',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005023',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005839',
+                          prefLabel: 'Pontida',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005023',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005795',
+                          prefLabel: 'Sedrina',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005023',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 29
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005765',
+                      prefLabel: 'Brescia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003237',
+                      instanceCount: '41',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005764',
+                          prefLabel: 'Brescia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005765',
+                          instanceCount: '14',
+                          totalInstanceCount: 14
+                        }
+                      ],
+                      totalInstanceCount: 55
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005852',
+                      prefLabel: 'Como',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003237',
+                      instanceCount: '8',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005851',
+                          prefLabel: 'Como',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005852',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 9
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005869',
+                      prefLabel: 'Cremona',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003237',
+                      instanceCount: '25',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005874',
+                          prefLabel: 'Crema',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005869',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005868',
+                          prefLabel: 'Cremona',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005869',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005877',
+                          prefLabel: 'Soncino',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005869',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 39
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7024844',
+                      prefLabel: 'Lodi',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003237',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006011',
+                          prefLabel: 'Lodi',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7024844',
+                          instanceCount: '11',
+                          totalInstanceCount: 11
+                        }
+                      ],
+                      totalInstanceCount: 11
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005880',
+                      prefLabel: 'Mantova',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003237',
+                      instanceCount: '47',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005879',
+                          prefLabel: 'Mantova',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005880',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005879',
+                          prefLabel: 'Mantua',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005880',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005893',
+                          prefLabel: 'Revere',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005880',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1046860',
+                          prefLabel: 'Sermide',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005880',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 67
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003150',
+                      prefLabel: 'Milano',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003237',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005929',
+                          prefLabel: 'Legnano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003150',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005903',
+                          prefLabel: 'Milan',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003150',
+                          instanceCount: '317',
+                          totalInstanceCount: 317
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006006',
+                          prefLabel: 'Monza',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003150',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4007527',
+                          prefLabel: 'Morimondo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003150',
+                          instanceCount: '21',
+                          totalInstanceCount: 21
+                        }
+                      ],
+                      totalInstanceCount: 341
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003151',
+                      prefLabel: 'Pavia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003237',
+                      instanceCount: '28',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006026',
+                          prefLabel: 'Pavia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003151',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7042729',
+                          prefLabel: 'Prado',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003151',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 35
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003508',
+                      prefLabel: 'Varese',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003237',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7056983',
+                          prefLabel: 'Bassano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003508',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 757
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003240',
+                  prefLabel: 'Marches',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '2',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003429',
+                      prefLabel: 'Ancona',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003240',
+                      instanceCount: '14',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003980',
+                          prefLabel: 'Ancona',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003429',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004003',
+                          prefLabel: 'Arcevia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003429',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004004',
+                          prefLabel: 'Fabriano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003429',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010375',
+                          prefLabel: 'Osimo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003429',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 22
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003432',
+                      prefLabel: 'Ascoli Piceno',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003240',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004029',
+                          prefLabel: 'Fermo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003432',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010083',
+                          prefLabel: 'Montegiorgio',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003432',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1045558',
+                          prefLabel: 'Monterubbiano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003432',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008904',
+                          prefLabel: 'Santa Vittoria in Matenano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003432',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003471',
+                      prefLabel: 'Macerata',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003240',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008892',
+                          prefLabel: 'Caldarola',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003471',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004016',
+                          prefLabel: 'Camerino',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003471',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004023',
+                          prefLabel: 'Cingoli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003471',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004019',
+                          prefLabel: 'Recanati',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003471',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004022',
+                          prefLabel: 'Visso',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003471',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003483',
+                      prefLabel: 'Pesaro e Urbino',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003240',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003985',
+                          prefLabel: 'Cagli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003987',
+                          prefLabel: 'Fano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008386',
+                          prefLabel: 'Fonte Avellana, Monastero di',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003988',
+                          prefLabel: 'Fossombrone',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7053221',
+                          prefLabel: 'Montemaggiore al Metauro',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003991',
+                          prefLabel: 'Pesaro',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '17',
+                          totalInstanceCount: 17
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003994',
+                          prefLabel: 'Urbino',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '19',
+                          totalInstanceCount: 19
+                        }
+                      ],
+                      totalInstanceCount: 53
+                    }
+                  ],
+                  totalInstanceCount: 91
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_4005362',
+                  prefLabel: 'Northeastern Italy',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '167',
+                  totalInstanceCount: 167
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_4005363',
+                  prefLabel: 'Northern Italy',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '1004',
+                  totalInstanceCount: 1004
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003120',
+                  prefLabel: 'Piedmont',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '14',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003428',
+                      prefLabel: 'Alessandria',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003120',
+                      instanceCount: '2',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005604',
+                          prefLabel: 'Bosco Marengo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003428',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7058098',
+                          prefLabel: 'Breme',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003428',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003924',
+                          prefLabel: 'Casale Monferrato',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003428',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005611',
+                      prefLabel: 'Asti',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003120',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7024833',
+                      prefLabel: 'Biella',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003120',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005686',
+                          prefLabel: 'Biella',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7024833',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005126',
+                      prefLabel: 'Cuneo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003120',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005649',
+                          prefLabel: 'Alba',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005126',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7044382',
+                          prefLabel: 'Castino',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005126',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005127',
+                          prefLabel: 'Cuneo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005126',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005651',
+                          prefLabel: 'Mondovì',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005126',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005648',
+                          prefLabel: 'Saluzzo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005126',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005646',
+                          prefLabel: 'Savigliano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7005126',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003478',
+                      prefLabel: 'Novara',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003120',
+                      instanceCount: '5',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005652',
+                          prefLabel: 'Novara',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003478',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003154',
+                      prefLabel: 'Torino',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003120',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005698',
+                          prefLabel: 'Chieri',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003154',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005693',
+                          prefLabel: 'Ivrea',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003154',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005723',
+                          prefLabel: 'Novalesa',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003154',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005728',
+                          prefLabel: 'Pinerolo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003154',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005763',
+                          prefLabel: 'Rivoli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003154',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005688',
+                          prefLabel: 'Turin',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003154',
+                          instanceCount: '14',
+                          totalInstanceCount: 14
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7037921',
+                          prefLabel: 'Valperga',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003154',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 22
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7024835',
+                      prefLabel: 'Verbano-Cusio Ossola',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003120',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1047494',
+                          prefLabel: 'Vogogna',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7024835',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003510',
+                      prefLabel: 'Vercelli',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003120',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005677',
+                          prefLabel: 'Trino',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003510',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005662',
+                          prefLabel: 'Vercelli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003510',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        }
+                      ],
+                      totalInstanceCount: 5
+                    }
+                  ],
+                  totalInstanceCount: 69
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003122',
+                  prefLabel: 'Sicily',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '48',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1001651',
+                      prefLabel: 'Catania',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003122',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003157',
+                      prefLabel: 'Messina',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003122',
+                      instanceCount: '13',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003897',
+                          prefLabel: 'Messina',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003157',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 16
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1001732',
+                      prefLabel: 'Palermo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003122',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003843',
+                          prefLabel: 'Giuliana',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1001732',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003928',
+                          prefLabel: 'Palermo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1001732',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        }
+                      ],
+                      totalInstanceCount: 10
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1001737',
+                      prefLabel: 'Ragusa',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003122',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003788',
+                          prefLabel: 'Ragusa',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1001737',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7030363',
+                      prefLabel: 'Sicily',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003122',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1001753',
+                      prefLabel: 'Siracusa',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003122',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003794',
+                          prefLabel: 'Syracuse',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1001753',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        }
+                      ],
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 83
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7030436',
+                  prefLabel: 'South Tyrol',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_4005365',
+                  prefLabel: 'Southern Italy',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '153',
+                  totalInstanceCount: 153
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003240',
+                  prefLabel: 'The Marches',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '2',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003429',
+                      prefLabel: 'Ancona',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003240',
+                      instanceCount: '14',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003980',
+                          prefLabel: 'Ancona',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003429',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004003',
+                          prefLabel: 'Arcevia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003429',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004004',
+                          prefLabel: 'Fabriano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003429',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010375',
+                          prefLabel: 'Osimo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003429',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 22
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003432',
+                      prefLabel: 'Ascoli Piceno',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003240',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004029',
+                          prefLabel: 'Fermo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003432',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010083',
+                          prefLabel: 'Montegiorgio',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003432',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1045558',
+                          prefLabel: 'Monterubbiano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003432',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008904',
+                          prefLabel: 'Santa Vittoria in Matenano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003432',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003471',
+                      prefLabel: 'Macerata',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003240',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008892',
+                          prefLabel: 'Caldarola',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003471',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004016',
+                          prefLabel: 'Camerino',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003471',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004023',
+                          prefLabel: 'Cingoli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003471',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004019',
+                          prefLabel: 'Recanati',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003471',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004022',
+                          prefLabel: 'Visso',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003471',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003483',
+                      prefLabel: 'Pesaro e Urbino',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003240',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003985',
+                          prefLabel: 'Cagli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003987',
+                          prefLabel: 'Fano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008386',
+                          prefLabel: 'Fonte Avellana, Monastero di',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003988',
+                          prefLabel: 'Fossombrone',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7053221',
+                          prefLabel: 'Montemaggiore al Metauro',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003991',
+                          prefLabel: 'Pesaro',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '17',
+                          totalInstanceCount: 17
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003994',
+                          prefLabel: 'Urbino',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003483',
+                          instanceCount: '19',
+                          totalInstanceCount: 19
+                        }
+                      ],
+                      totalInstanceCount: 53
+                    }
+                  ],
+                  totalInstanceCount: 91
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003124',
+                  prefLabel: 'Trentino-Alto Adige',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003440',
+                      prefLabel: 'Bolzano',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003124',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004967',
+                          prefLabel: 'Bolzano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003440',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005433',
+                          prefLabel: 'Bressanone',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003440',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1046439',
+                          prefLabel: 'Salorno',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003440',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 9
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003158',
+                      prefLabel: 'Trento',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003124',
+                      instanceCount: '9',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010395',
+                          prefLabel: 'Borgo Valsugana',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003158',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005128',
+                          prefLabel: 'Trento',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003158',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 12
+                    }
+                  ],
+                  totalInstanceCount: 21
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7009760',
+                  prefLabel: 'Tuscany',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '191',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003162',
+                      prefLabel: 'Arezzo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009760',
+                      instanceCount: '5',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007731',
+                          prefLabel: 'Camaldoli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003162',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007731',
+                          prefLabel: 'Camáldoli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003162',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006120',
+                          prefLabel: 'Cortona',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003162',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4007415',
+                          prefLabel: 'Montedoglio',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003162',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1047093',
+                          prefLabel: 'Terranuova Bracciolini',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003162',
+                          instanceCount: '10',
+                          totalInstanceCount: 10
+                        }
+                      ],
+                      totalInstanceCount: 21
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017853',
+                      prefLabel: 'Chianti',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009760',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003163',
+                      prefLabel: 'Firenze',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009760',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006141',
+                          prefLabel: 'Fiesole',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003163',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006528',
+                          prefLabel: 'Figline Valdarno',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003163',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7000457',
+                          prefLabel: 'Florence',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003163',
+                          instanceCount: '1459',
+                          totalInstanceCount: 1459
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006170',
+                          prefLabel: 'Fucecchio',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003163',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006157',
+                          prefLabel: 'Scarperia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003163',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006581',
+                          prefLabel: 'Vallombrosa',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003163',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 1468
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003165',
+                      prefLabel: 'Lucca',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009760',
+                      instanceCount: '27',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006242',
+                          prefLabel: 'Barga',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003165',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006076',
+                          prefLabel: 'Lucca',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003165',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 30
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003473',
+                      prefLabel: 'Massa-Carrara',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009760',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1044626',
+                          prefLabel: 'Fivizzano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003473',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7004249',
+                          prefLabel: 'Massa',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003473',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003166',
+                      prefLabel: 'Pisa',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009760',
+                      instanceCount: '52',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006303',
+                          prefLabel: 'Peccioli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003166',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006082',
+                          prefLabel: 'Pisa',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003166',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006305',
+                          prefLabel: 'Volterra',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003166',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        }
+                      ],
+                      totalInstanceCount: 63
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003167',
+                      prefLabel: 'Pistoia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009760',
+                      instanceCount: '8',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4001976',
+                          prefLabel: 'Buggiano Castello',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003167',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006306',
+                          prefLabel: 'Pescia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003167',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005060',
+                          prefLabel: 'Pistoia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003167',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 12
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7024741',
+                      prefLabel: 'Prato province',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009760',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1047269',
+                          prefLabel: 'Vaiano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7024741',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003168',
+                      prefLabel: 'Siena',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009760',
+                      instanceCount: '116',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006318',
+                          prefLabel: 'Montalcino',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003168',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1100052',
+                          prefLabel: 'Monte Oliveto Maggiore, Abbazia di',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003168',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006345',
+                          prefLabel: 'Montepulciano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003168',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006330',
+                          prefLabel: 'Poggibonsi',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003168',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006335',
+                          prefLabel: 'Sarteano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003168',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011179',
+                          prefLabel: 'Siena',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003168',
+                          instanceCount: '11',
+                          totalInstanceCount: 11
+                        }
+                      ],
+                      totalInstanceCount: 137
+                    }
+                  ],
+                  totalInstanceCount: 1926
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003125',
+                  prefLabel: 'Umbria',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '24',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003170',
+                      prefLabel: 'Perugia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003125',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005119',
+                          prefLabel: 'Assisi',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003170',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4002300',
+                          prefLabel: 'Cascia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003170',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005039',
+                          prefLabel: 'Città di Castello',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003170',
+                          instanceCount: '10',
+                          totalInstanceCount: 10
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005040',
+                          prefLabel: 'Foligno',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003170',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005048',
+                          prefLabel: 'Gubbio',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003170',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005057',
+                          prefLabel: 'Norcia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003170',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7000526',
+                          prefLabel: 'Perugia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003170',
+                          instanceCount: '62',
+                          totalInstanceCount: 62
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005050',
+                          prefLabel: 'Spello',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003170',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005042',
+                          prefLabel: 'Spoleto',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003170',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005062',
+                          prefLabel: 'Todi',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003170',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005051',
+                          prefLabel: 'Trevi',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003170',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 94
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003171',
+                      prefLabel: 'Terni',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003125',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7046401',
+                          prefLabel: 'Collescipoli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003171',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005121',
+                          prefLabel: 'Narni',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003171',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005124',
+                          prefLabel: 'Orvieto',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003171',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 6
+                    }
+                  ],
+                  totalInstanceCount: 124
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003126',
+                  prefLabel: 'Valle d\'Aosta',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '1',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003430',
+                      prefLabel: 'Aosta',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003126',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7005726',
+                          prefLabel: 'Aosta',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003430',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_6006299',
+                  prefLabel: 'Venetian Republic',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002997',
+                  prefLabel: 'Veneto',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000080',
+                  instanceCount: '77',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002991',
+                      prefLabel: 'Belluno',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002997',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003325',
+                          prefLabel: 'Belluno',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002991',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003331',
+                          prefLabel: 'Feltre',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002991',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003332',
+                          prefLabel: 'Pieve di Cadore',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002991',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1046323',
+                          prefLabel: 'Rocca Pietore',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002991',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 15
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002994',
+                      prefLabel: 'Padova',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002997',
+                      instanceCount: '5',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003072',
+                          prefLabel: 'Monsélice',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002994',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003085',
+                          prefLabel: 'Padua',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002994',
+                          instanceCount: '375',
+                          totalInstanceCount: 375
+                        }
+                      ],
+                      totalInstanceCount: 381
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002995',
+                      prefLabel: 'Rovigo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002997',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008301',
+                          prefLabel: 'Adria',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002995',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1045059',
+                          prefLabel: 'Lendinara',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002995',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003271',
+                          prefLabel: 'Rovigo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002995',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002996',
+                      prefLabel: 'Treviso',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002997',
+                      instanceCount: '18',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003304',
+                          prefLabel: 'Asolo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002996',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003299',
+                          prefLabel: 'Conegliano',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002996',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003297',
+                          prefLabel: 'Treviso',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002996',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        }
+                      ],
+                      totalInstanceCount: 27
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003006',
+                      prefLabel: 'Venezia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002997',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7051607',
+                          prefLabel: 'Murano, Isola di',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003006',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7018159',
+                          prefLabel: 'Venezia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003006',
+                          instanceCount: '1328',
+                          totalInstanceCount: 1328
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7018159',
+                          prefLabel: 'Venice',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003006',
+                          instanceCount: '1328',
+                          totalInstanceCount: 1328
+                        }
+                      ],
+                      totalInstanceCount: 2657
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003007',
+                      prefLabel: 'Verona',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002997',
+                      instanceCount: '77',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003264',
+                          prefLabel: 'Cologna Veneta',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003007',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003262',
+                          prefLabel: 'Verona',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003007',
+                          instanceCount: '27',
+                          totalInstanceCount: 27
+                        }
+                      ],
+                      totalInstanceCount: 105
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003008',
+                      prefLabel: 'Vicenza',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002997',
+                      instanceCount: '22',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7003204',
+                          prefLabel: 'Vicenza',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7003008',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        }
+                      ],
+                      totalInstanceCount: 27
+                    }
+                  ],
+                  totalInstanceCount: 3294
+                }
+              ],
+              totalInstanceCount: 26929
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1109172',
+              prefLabel: 'Jura',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '4',
+              totalInstanceCount: 4
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006541',
+              prefLabel: 'Latvia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7003515',
+              prefLabel: 'Liechtenstein',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006542',
+              prefLabel: 'Lithuania',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7006618',
+                  prefLabel: 'Vilnius',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006542',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006521',
+                      prefLabel: 'Vilnius',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7006618',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 3
+                }
+              ],
+              totalInstanceCount: 4
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7024272',
+              prefLabel: 'Lorraine',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '39',
+              totalInstanceCount: 39
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7029439',
+              prefLabel: 'Low Countries',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '154',
+              totalInstanceCount: 154
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7013246',
+              prefLabel: 'Lower Rhine',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '10',
+              totalInstanceCount: 10
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7003514',
+              prefLabel: 'Luxembourg',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8711799',
+                  prefLabel: 'Echternach',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7003514',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012312',
+                      prefLabel: 'Echternach',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_8711799',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    }
+                  ],
+                  totalInstanceCount: 6
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003534',
+                  prefLabel: 'Luxembourg',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7003514',
+                  instanceCount: '8',
+                  totalInstanceCount: 8
+                }
+              ],
+              totalInstanceCount: 15
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7001349',
+              prefLabel: 'Macedonia (ancient)',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '3',
+              totalInstanceCount: 3
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7005729',
+              prefLabel: 'Malta',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '3',
+              totalInstanceCount: 3
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7009155',
+              prefLabel: 'Moldavia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '2',
+              totalInstanceCount: 2
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7015657',
+              prefLabel: 'Montenegro',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7593972',
+                  prefLabel: 'Kotor',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7015657',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7015404',
+                      prefLabel: 'Kotor',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7593972',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                }
+              ],
+              totalInstanceCount: 2
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7002791',
+              prefLabel: 'Navarre',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '3',
+              totalInstanceCount: 3
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016845',
+              prefLabel: 'Netherlands',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1914',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003616',
+                  prefLabel: 'Friesland',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016845',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007016',
+                      prefLabel: 'Franeker',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003616',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007006',
+                      prefLabel: 'Leeuwarden',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003616',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1047943',
+                      prefLabel: 'Menaldum',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003616',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003619',
+                  prefLabel: 'Gelderland',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016845',
+                  instanceCount: '11',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006876',
+                      prefLabel: 'Arnhem',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003619',
+                      instanceCount: '13',
+                      totalInstanceCount: 13
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006890',
+                      prefLabel: 'Doetinchem',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003619',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006903',
+                      prefLabel: 'Hattem',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003619',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7031832',
+                      prefLabel: 'Nijmegen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003619',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7273357',
+                      prefLabel: 'Wezel',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003619',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006897',
+                      prefLabel: 'Zutphen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003619',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 32
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003613',
+                  prefLabel: 'Groningen',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016845',
+                  instanceCount: '5',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7262379',
+                      prefLabel: 'Hardenberg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003613',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7270637',
+                      prefLabel: 'Selwerd',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003613',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 7
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1003759',
+                  prefLabel: 'Holland',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016845',
+                  instanceCount: '49',
+                  totalInstanceCount: 49
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003622',
+                  prefLabel: 'Limburg',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016845',
+                  instanceCount: '8',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006862',
+                      prefLabel: 'Maastricht',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003622',
+                      instanceCount: '15',
+                      totalInstanceCount: 15
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006856',
+                      prefLabel: 'Roermond',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003622',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006853',
+                      prefLabel: 'Venlo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003622',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 29
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003624',
+                  prefLabel: 'North Brabant',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016845',
+                  instanceCount: '2',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006847',
+                      prefLabel: 'Cuyk',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003624',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006837',
+                      prefLabel: 's Hertogenbosch',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003624',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    }
+                  ],
+                  totalInstanceCount: 11
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7006951',
+                  prefLabel: 'North Holland',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016845',
+                  instanceCount: '14',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007057',
+                      prefLabel: 'Alkmaar',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7006951',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006952',
+                      prefLabel: 'Amsterdam',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7006951',
+                      instanceCount: '23',
+                      totalInstanceCount: 23
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007050',
+                      prefLabel: 'Beverwijk',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7006951',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7261111',
+                      prefLabel: 'Den Hoorn',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7006951',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4003541',
+                      prefLabel: 'Egmond aan den Hoef',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7006951',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007064',
+                      prefLabel: 'Enkhuizen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7006951',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007048',
+                      prefLabel: 'Haarlem',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7006951',
+                      instanceCount: '55',
+                      totalInstanceCount: 55
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1047838',
+                      prefLabel: 'Heiloo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7006951',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7266479',
+                      prefLabel: 'Hensbroek',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7006951',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1048226',
+                      prefLabel: 'Weesp',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7006951',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 116
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003626',
+                  prefLabel: 'Overijssel',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016845',
+                  instanceCount: '4',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7258539',
+                      prefLabel: 'Albergen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003626',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006940',
+                      prefLabel: 'Deventer',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003626',
+                      instanceCount: '13',
+                      totalInstanceCount: 13
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006941',
+                      prefLabel: 'Diepenveen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003626',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7260319',
+                      prefLabel: 'Grafhorst',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003626',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006948',
+                      prefLabel: 'Kampen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003626',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007077',
+                      prefLabel: 'Zwolle',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003626',
+                      instanceCount: '30',
+                      totalInstanceCount: 30
+                    }
+                  ],
+                  totalInstanceCount: 55
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003632',
+                  prefLabel: 'South Holland',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016845',
+                  instanceCount: '13',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006804',
+                      prefLabel: 'Delft',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003632',
+                      instanceCount: '64',
+                      totalInstanceCount: 64
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1006976',
+                      prefLabel: 'Dordrecht, Gemeente',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003632',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7006798',
+                          prefLabel: 'Dordrecht',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1006976',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        }
+                      ],
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1047795',
+                      prefLabel: 'Gorinchem',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003632',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006805',
+                      prefLabel: 'Gouda',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003632',
+                      instanceCount: '9',
+                      totalInstanceCount: 9
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006810',
+                      prefLabel: 'Hague, The',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003632',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006809',
+                      prefLabel: 'Leyden',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003632',
+                      instanceCount: '32',
+                      totalInstanceCount: 32
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7265790',
+                      prefLabel: 'Maasland',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003632',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1047992',
+                      prefLabel: 'Noordwijk-Binnen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003632',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1048066',
+                      prefLabel: 'Rijswijk',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003632',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1047589',
+                      prefLabel: 's Gravenzande',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003632',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7272098',
+                      prefLabel: 'Stein, Polder',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003632',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006810',
+                      prefLabel: 'The Hague',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003632',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    }
+                  ],
+                  totalInstanceCount: 140
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003627',
+                  prefLabel: 'Utrecht',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016845',
+                  instanceCount: '3',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006922',
+                      prefLabel: 'Amersfoort',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003627',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1047923',
+                      prefLabel: 'Lopik',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003627',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7267587',
+                      prefLabel: 'Oostbroek',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003627',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006915',
+                      prefLabel: 'Rhenen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003627',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7006926',
+                      prefLabel: 'Utrecht',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003627',
+                      instanceCount: '250',
+                      totalInstanceCount: 250
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7017400',
+                      prefLabel: 'Wijk-bij-Duurstede',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003627',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 266
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003635',
+                  prefLabel: 'Zeeland',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7016845',
+                  instanceCount: '1',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1047691',
+                      prefLabel: 'Cadzand',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003635',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7261770',
+                      prefLabel: 'Haamstede',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003635',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 3
+                }
+              ],
+              totalInstanceCount: 2625
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006667',
+              prefLabel: 'North Macedonia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7015177',
+                  prefLabel: 'Bitola',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006667',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4004955',
+                      prefLabel: 'Heraclea Lynkestis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7015177',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_4003757',
+              prefLabel: 'Northern Europe',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '7',
+              totalInstanceCount: 7
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000088',
+              prefLabel: 'Norway',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '3',
+              totalInstanceCount: 3
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006366',
+              prefLabel: 'Poland',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '80',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024123',
+                  prefLabel: 'Dolnośla̜skie',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006366',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007601',
+                      prefLabel: 'Breslau',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024123',
+                      instanceCount: '11',
+                      totalInstanceCount: 11
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007726',
+                      prefLabel: 'Legnica',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024123',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007601',
+                      prefLabel: 'Wrocław',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024123',
+                      instanceCount: '11',
+                      totalInstanceCount: 11
+                    }
+                  ],
+                  totalInstanceCount: 23
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7006359',
+                  prefLabel: 'Kraków',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006366',
+                  instanceCount: '19',
+                  totalInstanceCount: 19
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024116',
+                  prefLabel: 'Kujawsko-Pomorskie',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006366',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007831',
+                      prefLabel: 'Toruń',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024116',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024127',
+                  prefLabel: 'Małopolskie',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006366',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007652',
+                      prefLabel: 'Cracow',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024127',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007652',
+                      prefLabel: 'Krakow',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024127',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024122',
+                  prefLabel: 'Mazowieckie',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006366',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007754',
+                      prefLabel: 'PÅ‚ock',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024122',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007833',
+                      prefLabel: 'Warsaw',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024122',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007820',
+                      prefLabel: 'We̜grów',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024122',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7007741',
+                  prefLabel: 'Mazowsze',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006366',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024126',
+                  prefLabel: 'Podkarpackie',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006366',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7003385',
+                      prefLabel: 'Przemyśl',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024126',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024115',
+                  prefLabel: 'Pomorskie',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006366',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007660',
+                      prefLabel: 'Gdańsk',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024115',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    }
+                  ],
+                  totalInstanceCount: 7
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024118',
+                  prefLabel: 'Warmińsko-Mazurskie',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006366',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_6001914',
+                      prefLabel: 'Warmia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024118',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7024119',
+                  prefLabel: 'Wielkopolskie',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006366',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007756',
+                      prefLabel: 'Poznań',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7024119',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 4
+                }
+              ],
+              totalInstanceCount: 145
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7013079',
+              prefLabel: 'Pomerania',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000090',
+              prefLabel: 'Portugal',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '99',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003833',
+                  prefLabel: 'Azores',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000090',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1049791',
+                      prefLabel: 'Horta',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003833',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003841',
+                  prefLabel: 'Beira',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000090',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7010776',
+                  prefLabel: 'Braga',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000090',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010775',
+                      prefLabel: 'Braga',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7010776',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003820',
+                  prefLabel: 'Coimbra',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000090',
+                  instanceCount: '3',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7752889',
+                      prefLabel: 'Figueira de Lorvão',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003820',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_5003317',
+                      prefLabel: 'Lorvão',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003820',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 7
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003821',
+                  prefLabel: 'Évora',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000090',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000852',
+                  prefLabel: 'Faro',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000090',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7010862',
+                  prefLabel: 'Leiria',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000090',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010802',
+                      prefLabel: 'Caldas da Rainha',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7010862',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000882',
+                  prefLabel: 'Lisboa',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000090',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010978',
+                      prefLabel: 'Lisbon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000882',
+                      instanceCount: '21',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010773',
+                          prefLabel: 'Belém',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7010978',
+                          instanceCount: '8',
+                          totalInstanceCount: 8
+                        }
+                      ],
+                      totalInstanceCount: 29
+                    }
+                  ],
+                  totalInstanceCount: 29
+                }
+              ],
+              totalInstanceCount: 142
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016786',
+              prefLabel: 'Prussia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '2',
+              totalInstanceCount: 2
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000091',
+              prefLabel: 'Romania',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '5',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002700',
+                  prefLabel: 'Suceava',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000091',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009125',
+                      prefLabel: 'Suceava',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002700',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002702',
+                  prefLabel: 'Transylvania',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000091',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 7
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7024413',
+              prefLabel: 'Savoy',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '27',
+              totalInstanceCount: 27
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016881',
+              prefLabel: 'Scandinavia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006669',
+              prefLabel: 'Serbia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '11',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7668725',
+                  prefLabel: 'lost & found/Serbia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006669',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7015443',
+                      prefLabel: 'Smederevo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7668725',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 12
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7007552',
+              prefLabel: 'Silesia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_5000092',
+                  prefLabel: 'Upper Silesia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7007552',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7011765',
+              prefLabel: 'Slovakia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '5',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7027126',
+                  prefLabel: 'Bratislavský',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011765',
+                  instanceCount: '3',
+                  totalInstanceCount: 3
+                }
+              ],
+              totalInstanceCount: 8
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006670',
+              prefLabel: 'Slovenia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '2',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7012988',
+                  prefLabel: 'Carniola',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006670',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7015099',
+                  prefLabel: 'Izola',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006670',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1065029',
+                      prefLabel: 'Izola',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7015099',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7015103',
+                  prefLabel: 'Koper',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006670',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012983',
+                      prefLabel: 'Koper',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7015103',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7015117',
+                  prefLabel: 'Maribor',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006670',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7015125',
+                  prefLabel: 'Piran',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006670',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                }
+              ],
+              totalInstanceCount: 9
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_4003760',
+              prefLabel: 'Southern Europe',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '5',
+              totalInstanceCount: 5
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_8711669',
+              prefLabel: 'Southern Netherlands',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '327',
+              totalInstanceCount: 327
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000095',
+              prefLabel: 'Spain',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1701',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002758',
+                  prefLabel: 'Andalusia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '37',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002805',
+                      prefLabel: 'Almería',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002758',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007262',
+                          prefLabel: 'Almería',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002805',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002813',
+                      prefLabel: 'Cádiz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002758',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007901',
+                          prefLabel: 'Jerez de la Frontera',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002813',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002817',
+                      prefLabel: 'Córdoba',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002758',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007513',
+                          prefLabel: 'Cordova',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002817',
+                          instanceCount: '14',
+                          totalInstanceCount: 14
+                        }
+                      ],
+                      totalInstanceCount: 14
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002821',
+                      prefLabel: 'Granada',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002758',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007703',
+                          prefLabel: 'Granada',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002821',
+                          instanceCount: '125',
+                          totalInstanceCount: 125
+                        }
+                      ],
+                      totalInstanceCount: 125
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1001316',
+                      prefLabel: 'Jaén',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002758',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007824',
+                          prefLabel: 'Jaén',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1001316',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008755',
+                          prefLabel: 'Úbeda',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1001316',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002830',
+                      prefLabel: 'Málaga',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002758',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7347084',
+                          prefLabel: 'Arenas',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002830',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007942',
+                          prefLabel: 'Málaga',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002830',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002841',
+                      prefLabel: 'Seville',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002758',
+                      instanceCount: '29',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7338458',
+                          prefLabel: 'Castilleja del Campo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002841',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007603',
+                          prefLabel: 'Cazalla de la Sierra',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002841',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007091',
+                          prefLabel: 'Écija',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002841',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1062181',
+                          prefLabel: 'Los Palacios y Villafranca',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002841',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008676',
+                          prefLabel: 'Seville',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002841',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 35
+                    }
+                  ],
+                  totalInstanceCount: 220
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002759',
+                  prefLabel: 'Aragon',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '23',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008909',
+                      prefLabel: 'Huesca',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002759',
+                      instanceCount: '2',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7302358',
+                          prefLabel: 'Muro',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008909',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 3
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002843',
+                      prefLabel: 'Teruel',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002759',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008717',
+                          prefLabel: 'Teruel',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002843',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002845',
+                      prefLabel: 'Zaragoza',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002759',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4009501',
+                          prefLabel: 'Rueda de Jalón',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002845',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008813',
+                          prefLabel: 'Zaragoza',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002845',
+                          instanceCount: '15',
+                          totalInstanceCount: 15
+                        }
+                      ],
+                      totalInstanceCount: 17
+                    }
+                  ],
+                  totalInstanceCount: 44
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7009604',
+                  prefLabel: 'Basque Provinces',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007088',
+                      prefLabel: 'Álava',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7009604',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002784',
+                  prefLabel: 'Castile',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '34',
+                  totalInstanceCount: 34
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7001158',
+                  prefLabel: 'Castilla y León',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002806',
+                      prefLabel: 'Ávila',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001158',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007090',
+                          prefLabel: 'Ávila',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002806',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7302838',
+                          prefLabel: 'Pajares de Adaja',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002806',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002810',
+                      prefLabel: 'Burgos',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001158',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007510',
+                          prefLabel: 'Burgos',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002810',
+                          instanceCount: '29',
+                          totalInstanceCount: 29
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7328295',
+                          prefLabel: 'Quintanavides',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002810',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7299846',
+                          prefLabel: 'Valdenoceda',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002810',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 33
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002826',
+                      prefLabel: 'León',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001158',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7009120',
+                          prefLabel: 'León',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002826',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008560',
+                          prefLabel: 'Sahagún',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002826',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1062593',
+                          prefLabel: 'Valderas',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002826',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002832',
+                      prefLabel: 'Palencia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001158',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002835',
+                      prefLabel: 'Salamanca',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001158',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1061798',
+                          prefLabel: 'Béjar',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002835',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008561',
+                          prefLabel: 'Salamanca',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002835',
+                          instanceCount: '15',
+                          totalInstanceCount: 15
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7300506',
+                          prefLabel: 'Tejares',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002835',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 19
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002839',
+                      prefLabel: 'Segovia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001158',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008661',
+                          prefLabel: 'Segovia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002839',
+                          instanceCount: '8',
+                          totalInstanceCount: 8
+                        }
+                      ],
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002842',
+                      prefLabel: 'Soria',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001158',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1062226',
+                          prefLabel: 'Medinaceli',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002842',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002848',
+                      prefLabel: 'Valladolid',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001158',
+                      instanceCount: '127',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008033',
+                          prefLabel: 'Medina del Campo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002848',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1062306',
+                          prefLabel: 'Olmedo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002848',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008743',
+                          prefLabel: 'Tordesillas',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002848',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008797',
+                          prefLabel: 'Villalón de Campos',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002848',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 132
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002850',
+                      prefLabel: 'Zamora',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7001158',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007456',
+                          prefLabel: 'Benavente',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002850',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008705',
+                          prefLabel: 'Tábara',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002850',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 4
+                    }
+                  ],
+                  totalInstanceCount: 214
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001647',
+                  prefLabel: 'Castilla-La Mancha',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002816',
+                      prefLabel: 'Ciudad Real',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001647',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1061958',
+                          prefLabel: 'Ciudad Real',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002816',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002818',
+                      prefLabel: 'Cuenca',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001647',
+                      instanceCount: '3',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7299700',
+                          prefLabel: 'Uclés',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002818',
+                          instanceCount: '7',
+                          totalInstanceCount: 7
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7293372',
+                          prefLabel: 'Villar del Águila',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002818',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 11
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002822',
+                      prefLabel: 'Guadalajara',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001647',
+                      instanceCount: '4',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7330353',
+                          prefLabel: 'Hita',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002822',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7298950',
+                          prefLabel: 'Valhermoso',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002822',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002847',
+                      prefLabel: 'Toledo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001647',
+                      instanceCount: '46',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007979',
+                          prefLabel: 'Maqueda',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002847',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008187',
+                          prefLabel: 'Ocaña',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002847',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008719',
+                          prefLabel: 'Toledo',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002847',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 50
+                    }
+                  ],
+                  totalInstanceCount: 69
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7030216',
+                  prefLabel: 'Catalonia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '100',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002808',
+                      prefLabel: 'Barcelona',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7030216',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007426',
+                          prefLabel: 'Barcelona',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002808',
+                          instanceCount: '43',
+                          totalInstanceCount: 43
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008786',
+                          prefLabel: 'Vic',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002808',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008786',
+                          prefLabel: 'Vich',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002808',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 45
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002820',
+                      prefLabel: 'Girona',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7030216',
+                      instanceCount: '2',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008484',
+                          prefLabel: 'Ripoll',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002820',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008912',
+                      prefLabel: 'Lleida',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7030216',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7345130',
+                          prefLabel: 'Alguaire',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008912',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1061943',
+                          prefLabel: 'Cervera',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008912',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007789',
+                          prefLabel: 'Lérida',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008912',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007789',
+                          prefLabel: 'Lleida',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008912',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002844',
+                      prefLabel: 'Tarragona',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7030216',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008715',
+                          prefLabel: 'Tarragona',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002844',
+                          instanceCount: '12',
+                          totalInstanceCount: 12
+                        }
+                      ],
+                      totalInstanceCount: 12
+                    }
+                  ],
+                  totalInstanceCount: 166
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002795',
+                  prefLabel: 'Comunidad de Madrid',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7010420',
+                      prefLabel: 'Madrid',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002795',
+                      instanceCount: '48',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007139',
+                          prefLabel: 'Alcalá de Henares',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7010420',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007284',
+                          prefLabel: 'Aranjuez',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7010420',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010413',
+                          prefLabel: 'Madrid',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7010420',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 52
+                    }
+                  ],
+                  totalInstanceCount: 52
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002793',
+                  prefLabel: 'Comunidad Valenciana',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002815',
+                      prefLabel: 'Castellón',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002793',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1062503',
+                          prefLabel: 'Segorbe',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002815',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001165',
+                      prefLabel: 'Valencia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002793',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007823',
+                          prefLabel: 'Játiva',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7001165',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008769',
+                          prefLabel: 'Valencia',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7001165',
+                          instanceCount: '46',
+                          totalInstanceCount: 46
+                        }
+                      ],
+                      totalInstanceCount: 47
+                    }
+                  ],
+                  totalInstanceCount: 48
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003837',
+                  prefLabel: 'Extremadura',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002807',
+                      prefLabel: 'Badajoz',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003837',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7336589',
+                          prefLabel: 'Extremadura',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002807',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1062028',
+                          prefLabel: 'Fregenal de la Sierra',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002807',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002811',
+                      prefLabel: 'Cáceres',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003837',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007511',
+                          prefLabel: 'Cáceres',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002811',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002786',
+                  prefLabel: 'Galicia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '2',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002824',
+                      prefLabel: 'Coruña, A',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002786',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008643',
+                          prefLabel: 'Santiago de Compostela',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002824',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002765',
+                  prefLabel: 'Islas Baleares, Comunidad Autónoma de las',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001122',
+                      prefLabel: 'Illes Balears',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002765',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007959',
+                          prefLabel: 'Majorca',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7001122',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007959',
+                          prefLabel: 'Mallorca',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7001122',
+                          instanceCount: '6',
+                          totalInstanceCount: 6
+                        }
+                      ],
+                      totalInstanceCount: 12
+                    }
+                  ],
+                  totalInstanceCount: 12
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002789',
+                  prefLabel: 'La Rioja',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '3',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7002827',
+                      prefLabel: 'Rioja, La',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002789',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7007928',
+                          prefLabel: 'Logroño',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002827',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7299836',
+                          prefLabel: 'Valdeosera',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7002827',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 5
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002790',
+                  prefLabel: 'Navarre',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7001155',
+                      prefLabel: 'Navarra',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002790',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008233',
+                          prefLabel: 'Pamplona',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7001155',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008754',
+                          prefLabel: 'Tudela',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7001155',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 5
+                    }
+                  ],
+                  totalInstanceCount: 5
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002797',
+                  prefLabel: 'Región de Murcia',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000095',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 2578
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_8711667',
+              prefLabel: 'Spanish Netherlands',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000097',
+              prefLabel: 'Sweden',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '18',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003775',
+                  prefLabel: 'Östergötland',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000097',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009951',
+                      prefLabel: 'Linköping',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003775',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009868',
+                      prefLabel: 'Vadstena',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003775',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003777',
+                  prefLabel: 'Stockholm',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000097',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009861',
+                      prefLabel: 'Stockholm',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003777',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000462',
+                  prefLabel: 'Uppsala',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000097',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7009867',
+                      prefLabel: 'Uppsala',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000462',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 24
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7011731',
+              prefLabel: 'Switzerland',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '132',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003740',
+                  prefLabel: 'Basel-Landschaft',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_8702156',
+                      prefLabel: 'Pfeffingen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003740',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7007667',
+                  prefLabel: 'Basel-Stadt',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007269',
+                      prefLabel: 'Basel',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7007667',
+                      instanceCount: '100',
+                      totalInstanceCount: 100
+                    }
+                  ],
+                  totalInstanceCount: 100
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003742',
+                  prefLabel: 'Bern',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '7',
+                  totalInstanceCount: 7
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003748',
+                  prefLabel: 'Canton Grisons',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007346',
+                      prefLabel: 'Disentis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003748',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003746',
+                  prefLabel: 'Genève',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007279',
+                      prefLabel: 'Geneva',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003746',
+                      instanceCount: '34',
+                      totalInstanceCount: 34
+                    }
+                  ],
+                  totalInstanceCount: 34
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003748',
+                  prefLabel: 'Graubünden',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007346',
+                      prefLabel: 'Disentis',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003748',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003749',
+                  prefLabel: 'Jura',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007445',
+                      prefLabel: 'Porrentruy',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003749',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8703822',
+                  prefLabel: 'Klosters',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003750',
+                  prefLabel: 'Luzern',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '4',
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_8705153',
+                  prefLabel: 'Müstair, Val',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003751',
+                  prefLabel: 'Neuchâtel',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007292',
+                      prefLabel: 'Neuchatel',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003751',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003755',
+                  prefLabel: 'Sankt Gallen',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '2',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1064197',
+                      prefLabel: 'Lichtensteig',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003755',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007460',
+                      prefLabel: 'Sankt Gallen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003755',
+                      instanceCount: '33',
+                      totalInstanceCount: 33
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007460',
+                      prefLabel: 'St. Gallen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003755',
+                      instanceCount: '33',
+                      totalInstanceCount: 33
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1111796',
+                      prefLabel: 'Toggenburg',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003755',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 70
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003757',
+                  prefLabel: 'Schwyz',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007350',
+                      prefLabel: 'Einsiedeln',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003757',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007388',
+                      prefLabel: 'Lachen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003757',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 3
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003759',
+                  prefLabel: 'Thurgau',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007344',
+                      prefLabel: 'Diessenhofen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003759',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7004723',
+                  prefLabel: 'Ticino',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '1',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007289',
+                      prefLabel: 'Lugano',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7004723',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003762',
+                  prefLabel: 'Valais',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007470',
+                      prefLabel: 'Sion',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003762',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003763',
+                  prefLabel: 'Vaud',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_8706425',
+                      prefLabel: 'Lausanne',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7003763',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7003765',
+                  prefLabel: 'Zürich',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7011731',
+                  instanceCount: '14',
+                  totalInstanceCount: 14
+                }
+              ],
+              totalInstanceCount: 378
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7006660',
+              prefLabel: 'Ukraine',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1003381',
+                  prefLabel: 'Krym, Avtonomna Respublika',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7006660',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7016693',
+                      prefLabel: 'Feodosiya',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1003381',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7008591',
+              prefLabel: 'United Kingdom',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7008696',
+                  prefLabel: 'Armagh',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7008591',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7005236',
+                  prefLabel: 'Channel Islands',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7008591',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002445',
+                  prefLabel: 'England',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7008591',
+                  instanceCount: '14593',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008103',
+                      prefLabel: 'Bedfordshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008101',
+                      prefLabel: 'Berkshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '8',
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7019018',
+                      prefLabel: 'Bristol',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '6',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011198',
+                          prefLabel: 'Bristol',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019018',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 8
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008104',
+                      prefLabel: 'Buckinghamshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '6',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7025039',
+                          prefLabel: 'Ellesborough',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008104',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011980',
+                      prefLabel: 'Cambridgeshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '4',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010874',
+                          prefLabel: 'Cambridge',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011980',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7012190',
+                          prefLabel: 'Ely',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011980',
+                          instanceCount: '19',
+                          totalInstanceCount: 19
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1136698',
+                          prefLabel: 'Eye',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011980',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010823',
+                          prefLabel: 'Ramsey',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011980',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010876',
+                          prefLabel: 'Saint Neots',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011980',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010831',
+                          prefLabel: 'Wisbech',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011980',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 39
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008114',
+                      prefLabel: 'Cheshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '6',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7454723',
+                          prefLabel: 'Bunbury',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008114',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7012045',
+                          prefLabel: 'Chester',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008114',
+                          instanceCount: '11',
+                          totalInstanceCount: 11
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1030526',
+                          prefLabel: 'Sandbach',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008114',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 19
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008116',
+                      prefLabel: 'Cornwall',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '3',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1028737',
+                          prefLabel: 'Calstock',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008116',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7012011',
+                          prefLabel: 'Saint Germans',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008116',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008117',
+                      prefLabel: 'Cumbria',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010281',
+                          prefLabel: 'Carlisle',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008117',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7455464',
+                          prefLabel: 'Cumberland',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008117',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7459427',
+                          prefLabel: 'Orton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008117',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7442135',
+                          prefLabel: 'Warwick',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008117',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7444129',
+                          prefLabel: 'Westmorland',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008117',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 10
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008118',
+                      prefLabel: 'Derbyshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '7',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1028765',
+                          prefLabel: 'Castleton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008118',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1028819',
+                          prefLabel: 'Chesterfield',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008118',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7025173',
+                          prefLabel: 'Crich',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008118',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7454570',
+                          prefLabel: 'Darley Dale',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008118',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010684',
+                          prefLabel: 'Derby',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008118',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7457487',
+                          prefLabel: 'Mapleton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008118',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 14
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012077',
+                      prefLabel: 'Devon',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '14',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011953',
+                          prefLabel: 'Exeter',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012077',
+                          instanceCount: '28',
+                          totalInstanceCount: 28
+                        }
+                      ],
+                      totalInstanceCount: 42
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011961',
+                      prefLabel: 'Dorset',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '8',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011287',
+                          prefLabel: 'Cerne Abbas',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011961',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1028940',
+                          prefLabel: 'Corfe Castle',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011961',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011277',
+                          prefLabel: 'Sherborne',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011961',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 11
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008127',
+                      prefLabel: 'Durham',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010027',
+                          prefLabel: 'Durham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008127',
+                          instanceCount: '48',
+                          totalInstanceCount: 48
+                        }
+                      ],
+                      totalInstanceCount: 48
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012973',
+                      prefLabel: 'East Anglia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '67',
+                      totalInstanceCount: 67
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7019057',
+                      prefLabel: 'East Riding of Yorkshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010350',
+                          prefLabel: 'Beverley',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019057',
+                          instanceCount: '10',
+                          totalInstanceCount: 10
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7028813',
+                          prefLabel: 'Brantingham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019057',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010351',
+                          prefLabel: 'Bridlington',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019057',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7029500',
+                          prefLabel: 'Meaux',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019057',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7029496',
+                          prefLabel: 'Swine',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019057',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 16
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008129',
+                      prefLabel: 'East Sussex',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011440',
+                          prefLabel: 'Battle',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008129',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1030445',
+                          prefLabel: 'Robertsbridge',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008129',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008131',
+                      prefLabel: 'Essex',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '24',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7464871',
+                          prefLabel: 'Boxted',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008131',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011848',
+                          prefLabel: 'Chelmsford',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008131',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011866',
+                          prefLabel: 'Colchester',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008131',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7026354',
+                          prefLabel: 'Great Tey',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008131',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011850',
+                          prefLabel: 'Maldon',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008131',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011869',
+                          prefLabel: 'Saffron Walden',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008131',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7026325',
+                          prefLabel: 'South Weald',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008131',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011844',
+                          prefLabel: 'Waltham Abbey',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008131',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1031236',
+                          prefLabel: 'Writtle',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008131',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 36
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008132',
+                      prefLabel: 'Gloucestershire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '9',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7453113',
+                          prefLabel: 'Cambridge',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008132',
+                          instanceCount: '25',
+                          totalInstanceCount: 25
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011192',
+                          prefLabel: 'Cheltenham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008132',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011127',
+                          prefLabel: 'Cirencester',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008132',
+                          instanceCount: '10',
+                          totalInstanceCount: 10
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011128',
+                          prefLabel: 'Gloucester',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008132',
+                          instanceCount: '17',
+                          totalInstanceCount: 17
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011131',
+                          prefLabel: 'Tewkesbury',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008132',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7442775',
+                          prefLabel: 'Tintern Abbey',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008132',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011144',
+                          prefLabel: 'Winchcombe',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008132',
+                          instanceCount: '5',
+                          totalInstanceCount: 5
+                        }
+                      ],
+                      totalInstanceCount: 73
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008136',
+                      prefLabel: 'Greater London',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7018917',
+                          prefLabel: 'Haringey',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008136',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_1005755',
+                              prefLabel: 'Tottenham',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7018917',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            }
+                          ],
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011781',
+                          prefLabel: 'London',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008136',
+                          instanceCount: '430',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7011798',
+                              prefLabel: 'City of London',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7011781',
+                              instanceCount: '0',
+                              children: [
+                                {
+                                  id: 'http://ldf.fi/mmm/place/tgn_1100093',
+                                  prefLabel: 'Saint Paul\'s Cathedral',
+                                  selected: 'false',
+                                  parent: 'http://ldf.fi/mmm/place/tgn_7011798',
+                                  instanceCount: '1',
+                                  totalInstanceCount: 1
+                                }
+                              ],
+                              totalInstanceCount: 1
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7018934',
+                              prefLabel: 'City of Westminster',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7011781',
+                              instanceCount: '45',
+                              children: [
+                                {
+                                  id: 'http://ldf.fi/mmm/place/tgn_7018905',
+                                  prefLabel: 'Westminster',
+                                  selected: 'false',
+                                  parent: 'http://ldf.fi/mmm/place/tgn_7018934',
+                                  instanceCount: '6',
+                                  totalInstanceCount: 6
+                                },
+                                {
+                                  id: 'http://ldf.fi/mmm/place/tgn_1100068',
+                                  prefLabel: 'Westminster Abbey',
+                                  selected: 'false',
+                                  parent: 'http://ldf.fi/mmm/place/tgn_7018934',
+                                  instanceCount: '1',
+                                  totalInstanceCount: 1
+                                }
+                              ],
+                              totalInstanceCount: 52
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7018915',
+                              prefLabel: 'Greenwich',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7011781',
+                              instanceCount: '3',
+                              children: [
+                                {
+                                  id: 'http://ldf.fi/mmm/place/tgn_7011789',
+                                  prefLabel: 'Greenwich',
+                                  selected: 'false',
+                                  parent: 'http://ldf.fi/mmm/place/tgn_7018915',
+                                  instanceCount: '4',
+                                  totalInstanceCount: 4
+                                }
+                              ],
+                              totalInstanceCount: 7
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7018916',
+                              prefLabel: 'Hackney',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7011781',
+                              instanceCount: '0',
+                              children: [
+                                {
+                                  id: 'http://ldf.fi/mmm/place/tgn_1005614',
+                                  prefLabel: 'Shoreditch',
+                                  selected: 'false',
+                                  parent: 'http://ldf.fi/mmm/place/tgn_7018916',
+                                  instanceCount: '1',
+                                  totalInstanceCount: 1
+                                }
+                              ],
+                              totalInstanceCount: 1
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7018923',
+                              prefLabel: 'Lambeth',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7011781',
+                              instanceCount: '1',
+                              children: [
+                                {
+                                  id: 'http://ldf.fi/mmm/place/tgn_7011842',
+                                  prefLabel: 'Lambeth',
+                                  selected: 'false',
+                                  parent: 'http://ldf.fi/mmm/place/tgn_7018923',
+                                  instanceCount: '1',
+                                  totalInstanceCount: 1
+                                }
+                              ],
+                              totalInstanceCount: 2
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7018929',
+                              prefLabel: 'Southwark',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7011781',
+                              instanceCount: '1',
+                              children: [
+                                {
+                                  id: 'http://ldf.fi/mmm/place/tgn_1004092',
+                                  prefLabel: 'Bermondsey',
+                                  selected: 'false',
+                                  parent: 'http://ldf.fi/mmm/place/tgn_7018929',
+                                  instanceCount: '1',
+                                  totalInstanceCount: 1
+                                }
+                              ],
+                              totalInstanceCount: 2
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7018931',
+                              prefLabel: 'Tower Hamlets',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7011781',
+                              instanceCount: '0',
+                              children: [
+                                {
+                                  id: 'http://ldf.fi/mmm/place/tgn_7447479',
+                                  prefLabel: 'Stepney',
+                                  selected: 'false',
+                                  parent: 'http://ldf.fi/mmm/place/tgn_7018931',
+                                  instanceCount: '1',
+                                  totalInstanceCount: 1
+                                },
+                                {
+                                  id: 'http://ldf.fi/mmm/place/tgn_1100671',
+                                  prefLabel: 'Tower of London',
+                                  selected: 'false',
+                                  parent: 'http://ldf.fi/mmm/place/tgn_7018931',
+                                  instanceCount: '2',
+                                  totalInstanceCount: 2
+                                }
+                              ],
+                              totalInstanceCount: 3
+                            }
+                          ],
+                          totalInstanceCount: 498
+                        }
+                      ],
+                      totalInstanceCount: 499
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7026570',
+                      prefLabel: 'Greater Manchester',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7027477',
+                          prefLabel: 'Manchester',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7026570',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7010477',
+                              prefLabel: 'Manchester',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7027477',
+                              instanceCount: '2',
+                              totalInstanceCount: 2
+                            }
+                          ],
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008139',
+                      prefLabel: 'Hampshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '5',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011394',
+                          prefLabel: 'Romsey',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008139',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7443397',
+                          prefLabel: 'Wherwell',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008139',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011375',
+                          prefLabel: 'Winchester',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008139',
+                          instanceCount: '67',
+                          totalInstanceCount: 67
+                        }
+                      ],
+                      totalInstanceCount: 74
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008143',
+                      prefLabel: 'Herefordshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '6',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7449317',
+                          prefLabel: 'Harewood',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008143',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011091',
+                          prefLabel: 'Hereford',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008143',
+                          instanceCount: '18',
+                          totalInstanceCount: 18
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011111',
+                          prefLabel: 'Ledbury',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008143',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1029819',
+                          prefLabel: 'Leominster',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008143',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7027087',
+                          prefLabel: 'Lyonshall',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008143',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011115',
+                          prefLabel: 'Wigmore',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008143',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7027179',
+                          prefLabel: 'Yarpole',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008143',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 31
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008145',
+                      prefLabel: 'Hertfordshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '6',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011878',
+                          prefLabel: 'Aldenham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008145',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011876',
+                          prefLabel: 'Hertford',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008145',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1003638',
+                          prefLabel: 'Saint Albans',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008145',
+                          instanceCount: '52',
+                          totalInstanceCount: 52
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011871',
+                          prefLabel: 'Saint Albans',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008145',
+                          instanceCount: '18',
+                          totalInstanceCount: 18
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011871',
+                          prefLabel: 'St Albans',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008145',
+                          instanceCount: '18',
+                          totalInstanceCount: 18
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7027258',
+                          prefLabel: 'Wakeley',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008145',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 97
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7027266',
+                      prefLabel: 'Huntingdonshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7011430',
+                      prefLabel: 'Isle of Wight',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1028754',
+                          prefLabel: 'Carisbrooke',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7011430',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008153',
+                      prefLabel: 'Kent',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '20',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1028335',
+                          prefLabel: 'Ashford',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008153',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7012044',
+                          prefLabel: 'Canterbury',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008153',
+                          instanceCount: '210',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_1100072',
+                              prefLabel: 'Canterbury Cathedral',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7012044',
+                              instanceCount: '13',
+                              totalInstanceCount: 13
+                            }
+                          ],
+                          totalInstanceCount: 223
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011554',
+                          prefLabel: 'Dover',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008153',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011516',
+                          prefLabel: 'Faversham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008153',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011614',
+                          prefLabel: 'Gravesend',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008153',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7462054',
+                          prefLabel: 'Herne',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008153',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7032136',
+                          prefLabel: 'Leeds',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008153',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7027400',
+                          prefLabel: 'Pluckley',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008153',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1030790',
+                          prefLabel: 'Sturry',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008153',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1009430',
+                          prefLabel: 'Thanet, Isle of',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008153',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1030889',
+                          prefLabel: 'Thurnham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008153',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 263
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008154',
+                      prefLabel: 'Lancashire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '6',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010393',
+                          prefLabel: 'Lancaster',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008154',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010402',
+                          prefLabel: 'Whalley',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008154',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 9
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7026515',
+                      prefLabel: 'Leicester',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010948',
+                          prefLabel: 'Leicester',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7026515',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        }
+                      ],
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008155',
+                      prefLabel: 'Leicestershire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '12',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7027513',
+                          prefLabel: 'Appleby Magna',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008155',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 13
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008157',
+                      prefLabel: 'Lincolnshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '20',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7464102',
+                          prefLabel: 'Algarkirk',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008157',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010739',
+                          prefLabel: 'Crowland',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008157',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7027872',
+                          prefLabel: 'Frieston',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008157',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1029759',
+                          prefLabel: 'Kirton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008157',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010723',
+                          prefLabel: 'Lincoln',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008157',
+                          instanceCount: '26',
+                          totalInstanceCount: 26
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010743',
+                          prefLabel: 'Stamford',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008157',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 51
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7026518',
+                      prefLabel: 'Medway',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011707',
+                          prefLabel: 'Rochester',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7026518',
+                          instanceCount: '54',
+                          totalInstanceCount: 54
+                        }
+                      ],
+                      totalInstanceCount: 54
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7016740',
+                      prefLabel: 'Mercia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '4',
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012288',
+                      prefLabel: 'Middlesex',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '7',
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4007188',
+                      prefLabel: 'Midlands',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '5',
+                      totalInstanceCount: 5
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008160',
+                      prefLabel: 'Norfolk',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '46',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4001533',
+                          prefLabel: 'Binham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008160',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010790',
+                          prefLabel: 'Castle Acre',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008160',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7028370',
+                          prefLabel: 'East Tuddenham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008160',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010782',
+                          prefLabel: 'Great Yarmouth',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008160',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7028115',
+                          prefLabel: 'Holme next the Sea',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008160',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4005284',
+                          prefLabel: 'Ingham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008160',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010791',
+                          prefLabel: 'King\'s Lynn',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008160',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1030048',
+                          prefLabel: 'Middleton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008160',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7028531',
+                          prefLabel: 'Mulbarton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008160',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7012005',
+                          prefLabel: 'Norwich',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008160',
+                          instanceCount: '62',
+                          totalInstanceCount: 62
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7028587',
+                          prefLabel: 'Salle',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008160',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7012015',
+                          prefLabel: 'Thetford',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008160',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 123
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008166',
+                      prefLabel: 'North Yorkshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7456434',
+                          prefLabel: 'Cleveland',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008166',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1100045',
+                          prefLabel: 'Fountains Abbey',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008166',
+                          instanceCount: '12',
+                          totalInstanceCount: 12
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1100050',
+                          prefLabel: 'Jervaulx Abbey',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008166',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1029763',
+                          prefLabel: 'Knaresborough',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008166',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7460091',
+                          prefLabel: 'Old Byland',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008166',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7012405',
+                          prefLabel: 'Richmond',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008166',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4009271',
+                          prefLabel: 'Rievaulx',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008166',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010063',
+                          prefLabel: 'Scarborough',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008166',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7030663',
+                          prefLabel: 'Whixley',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008166',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 24
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012031',
+                      prefLabel: 'Northamptonshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '16',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7030792',
+                          prefLabel: 'Chacombe',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012031',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1029023',
+                          prefLabel: 'Daventry',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012031',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4004017',
+                          prefLabel: 'Fotheringhay',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012031',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010911',
+                          prefLabel: 'Northampton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012031',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7030916',
+                          prefLabel: 'Pipewell',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012031',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 23
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7457633',
+                      prefLabel: 'Northern England',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '62',
+                      totalInstanceCount: 62
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008165',
+                      prefLabel: 'Northumberland',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '6',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1030729',
+                          prefLabel: 'Stannington',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008165',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012294',
+                      prefLabel: 'Northumbria',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '6',
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008167',
+                      prefLabel: 'Nottinghamshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '4',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7031039',
+                          prefLabel: 'East Drayton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008167',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7026193',
+                          prefLabel: 'Newstead',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008167',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010709',
+                          prefLabel: 'Worksop',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008167',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008168',
+                      prefLabel: 'Oxfordshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '8',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011944',
+                          prefLabel: 'Abingdon',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008168',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011927',
+                          prefLabel: 'Banbury',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008168',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7454270',
+                          prefLabel: 'Buckland',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008168',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7031279',
+                          prefLabel: 'Ewelme',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008168',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011947',
+                          prefLabel: 'Eynsham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008168',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011931',
+                          prefLabel: 'Oxford',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008168',
+                          instanceCount: '232',
+                          totalInstanceCount: 232
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7026463',
+                          prefLabel: 'South Moreton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008168',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 256
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7026520',
+                      prefLabel: 'Peterborough',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '18',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010809',
+                          prefLabel: 'Peterborough',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7026520',
+                          instanceCount: '8',
+                          totalInstanceCount: 8
+                        }
+                      ],
+                      totalInstanceCount: 26
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7025691',
+                      prefLabel: 'Plymouth, City of',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7026526',
+                      prefLabel: 'Portsmouth',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011393',
+                          prefLabel: 'Portsmouth',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7026526',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7026489',
+                      prefLabel: 'Reading',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011918',
+                          prefLabel: 'Reading',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7026489',
+                          instanceCount: '48',
+                          totalInstanceCount: 48
+                        }
+                      ],
+                      totalInstanceCount: 48
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7019065',
+                      prefLabel: 'Redcar and Cleveland',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010050',
+                          prefLabel: 'Guisborough',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019065',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_5000748',
+                      prefLabel: 'Rutland',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012034',
+                      prefLabel: 'Shropshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '34',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7454752',
+                          prefLabel: 'Buildwas',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012034',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7012100',
+                          prefLabel: 'Ludlow',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012034',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7014597',
+                          prefLabel: 'Shrewsbury',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012034',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7447921',
+                          prefLabel: 'Stanton Lacy',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012034',
+                          instanceCount: '15',
+                          totalInstanceCount: 15
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7447019',
+                          prefLabel: 'Stokesay',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012034',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 56
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012032',
+                      prefLabel: 'Somerset',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '14',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011239',
+                          prefLabel: 'Glastonbury',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012032',
+                          instanceCount: '12',
+                          totalInstanceCount: 12
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011241',
+                          prefLabel: 'Wells',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012032',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 27
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7019020',
+                      prefLabel: 'South Gloucestershire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7030110',
+                          prefLabel: 'Oldland',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019020',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7029505',
+                      prefLabel: 'South Yorkshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7019048',
+                          prefLabel: 'Barnsley',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7029505',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7029895',
+                              prefLabel: 'Brierley',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019048',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7030119',
+                              prefLabel: 'Monk Bretton',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019048',
+                              instanceCount: '2',
+                              totalInstanceCount: 2
+                            }
+                          ],
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7019053',
+                          prefLabel: 'Doncaster',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7029505',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_5000913',
+                              prefLabel: 'Campsall',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019053',
+                              instanceCount: '2',
+                              totalInstanceCount: 2
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_4004786',
+                              prefLabel: 'Hampole',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019053',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            }
+                          ],
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7019049',
+                          prefLabel: 'Rotherham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7029505',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7010698',
+                              prefLabel: 'Rotherham',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019049',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            }
+                          ],
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7019047',
+                          prefLabel: 'Sheffield',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7029505',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7464654',
+                              prefLabel: 'Bradfield',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019047',
+                              instanceCount: '24',
+                              totalInstanceCount: 24
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7029962',
+                              prefLabel: 'Ecclesfield',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019047',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7030149',
+                              prefLabel: 'Onesacre',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019047',
+                              instanceCount: '4',
+                              totalInstanceCount: 4
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7010692',
+                              prefLabel: 'Sheffield',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019047',
+                              instanceCount: '7',
+                              totalInstanceCount: 7
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7030621',
+                              prefLabel: 'Ughill',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019047',
+                              instanceCount: '5',
+                              totalInstanceCount: 5
+                            }
+                          ],
+                          totalInstanceCount: 41
+                        }
+                      ],
+                      totalInstanceCount: 48
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7026528',
+                      prefLabel: 'Southampton',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008174',
+                      prefLabel: 'Staffordshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '38',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011041',
+                          prefLabel: 'Burton on Trent',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008174',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011041',
+                          prefLabel: 'Burton-on-Trent',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008174',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1028747',
+                          prefLabel: 'Cannock',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008174',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4002654',
+                          prefLabel: 'Church Eaton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008174',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011037',
+                          prefLabel: 'Lichfield',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008174',
+                          instanceCount: '8',
+                          totalInstanceCount: 8
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1030300',
+                          prefLabel: 'Penkridge',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008174',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7448941',
+                          prefLabel: 'Seisdon',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008174',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7447928',
+                          prefLabel: 'Stanton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008174',
+                          instanceCount: '8',
+                          totalInstanceCount: 8
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_5000950',
+                          prefLabel: 'Stourton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008174',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7444917',
+                          prefLabel: 'Trysull',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008174',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1030934',
+                          prefLabel: 'Tutbury',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008174',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 66
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008185',
+                      prefLabel: 'Suffolk',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '74',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7466115',
+                          prefLabel: 'Barnham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010942',
+                          prefLabel: 'Bramford',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1028689',
+                          prefLabel: 'Bungay',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010914',
+                          prefLabel: 'Bury Saint Edmunds',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '74',
+                          totalInstanceCount: 74
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7452974',
+                          prefLabel: 'Cretingham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7455940',
+                          prefLabel: 'Crowfield',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7454075',
+                          prefLabel: 'Dennington',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7029248',
+                          prefLabel: 'East Bergholt',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7449451',
+                          prefLabel: 'Flixton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7010931',
+                          prefLabel: 'Framlingham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1136703',
+                          prefLabel: 'Hadleigh',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4004933',
+                          prefLabel: 'Helmingham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7012004',
+                          prefLabel: 'Ipswich',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '33',
+                          totalInstanceCount: 33
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7463262',
+                          prefLabel: 'Levington',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7459535',
+                          prefLabel: 'Mettingham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7459397',
+                          prefLabel: 'Otley',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7446493',
+                          prefLabel: 'Rendlesham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7448688',
+                          prefLabel: 'Shadingfield',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7447983',
+                          prefLabel: 'Shimpling',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7447567',
+                          prefLabel: 'Shotley',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7447222',
+                          prefLabel: 'Stoke by Clare',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7447221',
+                          prefLabel: 'Stoke by Nayland',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7030101',
+                          prefLabel: 'Tattingstone',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7445156',
+                          prefLabel: 'Trimley Heath',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7445133',
+                          prefLabel: 'Troston',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7444211',
+                          prefLabel: 'Ufford',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '4',
+                          totalInstanceCount: 4
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7443637',
+                          prefLabel: 'Weybread',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7442677',
+                          prefLabel: 'Whitton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008185',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 221
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008175',
+                      prefLabel: 'Surrey',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '4',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011730',
+                          prefLabel: 'Chertsey',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008175',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1028893',
+                          prefLabel: 'Cobham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008175',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 7
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008133',
+                      prefLabel: 'Sussex',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '13',
+                      totalInstanceCount: 13
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7026533',
+                      prefLabel: 'Telford and Wrekin',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7445239',
+                          prefLabel: 'Wombridge',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7026533',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1003654',
+                      prefLabel: 'Thurrock',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1030897',
+                          prefLabel: 'Tilbury',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1003654',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7012033',
+                      prefLabel: 'Tyne and Wear',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7019073',
+                          prefLabel: 'Newcastle upon Tyne',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012033',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7019072',
+                          prefLabel: 'North Tyneside',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7012033',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7010024',
+                              prefLabel: 'Tynemouth',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019072',
+                              instanceCount: '2',
+                              totalInstanceCount: 2
+                            }
+                          ],
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008178',
+                      prefLabel: 'Warwickshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '11',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1030220',
+                          prefLabel: 'Nuneaton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008178',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7445590',
+                          prefLabel: 'Sutton under Brailes',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008178',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        }
+                      ],
+                      totalInstanceCount: 14
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7029506',
+                      prefLabel: 'West Midlands',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '4',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7019028',
+                          prefLabel: 'Birmingham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7029506',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7010955',
+                              prefLabel: 'Birmingham',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019028',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            }
+                          ],
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7019026',
+                          prefLabel: 'Coventry',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7029506',
+                          instanceCount: '3',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7011012',
+                              prefLabel: 'Coventry',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019026',
+                              instanceCount: '4',
+                              totalInstanceCount: 4
+                            }
+                          ],
+                          totalInstanceCount: 7
+                        }
+                      ],
+                      totalInstanceCount: 12
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7029507',
+                      prefLabel: 'West Yorkshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1003567',
+                          prefLabel: 'Bradford',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7029507',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1003611',
+                          prefLabel: 'Kirklees',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7029507',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7466976',
+                              prefLabel: 'Birstall',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_1003611',
+                              instanceCount: '6',
+                              totalInstanceCount: 6
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_1028875',
+                              prefLabel: 'Cleckheaton',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_1003611',
+                              instanceCount: '6',
+                              totalInstanceCount: 6
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7451814',
+                              prefLabel: 'Heckmondwike',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_1003611',
+                              instanceCount: '5',
+                              totalInstanceCount: 5
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7030085',
+                              prefLabel: 'Liversedge',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_1003611',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            }
+                          ],
+                          totalInstanceCount: 18
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7019038',
+                          prefLabel: 'Leeds',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7029507',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_4004816',
+                              prefLabel: 'Harewood',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019038',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_4005744',
+                              prefLabel: 'Kirkstall',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019038',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_7030652',
+                              prefLabel: 'Weardley',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019038',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            }
+                          ],
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7019040',
+                          prefLabel: 'Wakefield',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7029507',
+                          instanceCount: '0',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_1029520',
+                              prefLabel: 'Hemsworth',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019040',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_1030343',
+                              prefLabel: 'Pontefract',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019040',
+                              instanceCount: '2',
+                              totalInstanceCount: 2
+                            },
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_4012152',
+                              prefLabel: 'West Bretton',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7019040',
+                              instanceCount: '1',
+                              totalInstanceCount: 1
+                            }
+                          ],
+                          totalInstanceCount: 4
+                        }
+                      ],
+                      totalInstanceCount: 26
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008180',
+                      prefLabel: 'Wiltshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '17',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7464440',
+                          prefLabel: 'Berwick Saint John',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008180',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011220',
+                          prefLabel: 'Chippenham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008180',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7449510',
+                          prefLabel: 'Edington',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008180',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4006027',
+                          prefLabel: 'Lacock',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008180',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011217',
+                          prefLabel: 'Malmesbury',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008180',
+                          instanceCount: '13',
+                          totalInstanceCount: 13
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1029982',
+                          prefLabel: 'Marlborough',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008180',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7459880',
+                          prefLabel: 'Old Sarum',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008180',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011210',
+                          prefLabel: 'Salisbury',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008180',
+                          instanceCount: '47',
+                          totalInstanceCount: 47
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011225',
+                          prefLabel: 'Wilton',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008180',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 85
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7026243',
+                      prefLabel: 'Windsor and Maidenhead',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011919',
+                          prefLabel: 'Windsor',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7026243',
+                          instanceCount: '1',
+                          children: [
+                            {
+                              id: 'http://ldf.fi/mmm/place/tgn_1100372',
+                              prefLabel: 'Windsor Castle',
+                              selected: 'false',
+                              parent: 'http://ldf.fi/mmm/place/tgn_7011919',
+                              instanceCount: '3',
+                              totalInstanceCount: 3
+                            }
+                          ],
+                          totalInstanceCount: 4
+                        }
+                      ],
+                      totalInstanceCount: 4
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_5000227',
+                      prefLabel: 'Worcestershire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '2',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011112',
+                          prefLabel: 'Evesham',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_5000227',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011122',
+                          prefLabel: 'Kidderminster',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_5000227',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011092',
+                          prefLabel: 'Pershore',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_5000227',
+                          instanceCount: '2',
+                          totalInstanceCount: 2
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7015155',
+                          prefLabel: 'Worcester',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_5000227',
+                          instanceCount: '62',
+                          totalInstanceCount: 62
+                        }
+                      ],
+                      totalInstanceCount: 70
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7019064',
+                      prefLabel: 'York',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '49',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7011995',
+                          prefLabel: 'York',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019064',
+                          instanceCount: '9',
+                          totalInstanceCount: 9
+                        }
+                      ],
+                      totalInstanceCount: 58
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008171',
+                      prefLabel: 'Yorkshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002445',
+                      instanceCount: '229',
+                      totalInstanceCount: 229
+                    }
+                  ],
+                  totalInstanceCount: 17654
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7008653',
+                  prefLabel: 'Great Britain',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7008591',
+                  instanceCount: '37',
+                  totalInstanceCount: 37
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002448',
+                  prefLabel: 'Northern Ireland',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7008591',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002444',
+                  prefLabel: 'Scotland',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7008591',
+                  instanceCount: '104',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7019141',
+                      prefLabel: 'Aberdeen',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002444',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7009782',
+                          prefLabel: 'Aberdeen',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019141',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7019140',
+                      prefLabel: 'Angus',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002444',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7009739',
+                          prefLabel: 'Arbroath',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019140',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7450276',
+                          prefLabel: 'Guthrie',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019140',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7019133',
+                      prefLabel: 'Dundee',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002444',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7019109',
+                      prefLabel: 'Edinburgh',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002444',
+                      instanceCount: '14',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7009546',
+                          prefLabel: 'Edinburgh',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019109',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7009547',
+                          prefLabel: 'Leith',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019109',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 16
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008076',
+                      prefLabel: 'Fife',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002444',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7009554',
+                          prefLabel: 'Dunfermline',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008076',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7462684',
+                          prefLabel: 'Inchcolm',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008076',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_4006414',
+                          prefLabel: 'Lindores',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008076',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7009562',
+                          prefLabel: 'Saint Andrews',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008076',
+                          instanceCount: '3',
+                          totalInstanceCount: 3
+                        }
+                      ],
+                      totalInstanceCount: 6
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7019097',
+                      prefLabel: 'Glasgow',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002444',
+                      instanceCount: '1',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7009107',
+                          prefLabel: 'Paisley',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019097',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7019152',
+                      prefLabel: 'Perth and Kinross',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002444',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7009702',
+                          prefLabel: 'Perth',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019152',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_5000457',
+                      prefLabel: 'Ross and Cromarty',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002444',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008072',
+                      prefLabel: 'Scottish Borders',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002444',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7009492',
+                          prefLabel: 'Jedburgh',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008072',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7009494',
+                          prefLabel: 'Melrose',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008072',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7019090',
+                      prefLabel: 'South Lanarkshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002444',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_1051081',
+                          prefLabel: 'Stonehouse',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7019090',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 137
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7002443',
+                  prefLabel: 'Wales',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7008591',
+                  instanceCount: '61',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_5000552',
+                      prefLabel: 'Carmarthenshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002443',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008838',
+                          prefLabel: 'Carmarthen',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_5000552',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7029493',
+                      prefLabel: 'Gwynedd',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002443',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7459747',
+                          prefLabel: 'Merionethshire',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7029493',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_5000560',
+                      prefLabel: 'Monmouthshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002443',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008508',
+                          prefLabel: 'Abergavenny',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_5000560',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7018993',
+                      prefLabel: 'Pembrokeshire',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002443',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7008050',
+                      prefLabel: 'Powys',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7002443',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008517',
+                          prefLabel: 'Brecon',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008050',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        },
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7008523',
+                          prefLabel: 'Montgomery',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7008050',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 68
+                }
+              ],
+              totalInstanceCount: 17900
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7013245',
+              prefLabel: 'Upper Rhine',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '12',
+              totalInstanceCount: 12
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7001168',
+              prefLabel: 'Vatican City',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '5',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1100097',
+                  prefLabel: 'San Pietro in Vaticano',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7001168',
+                  instanceCount: '3',
+                  totalInstanceCount: 3
+                }
+              ],
+              totalInstanceCount: 8
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_4003761',
+              prefLabel: 'Western Europe',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '4',
+              totalInstanceCount: 4
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_8060287',
+              prefLabel: 'Westhoek',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000003',
+              instanceCount: '20',
+              totalInstanceCount: 20
+            }
+          ],
+          totalInstanceCount: 85303
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_7024415',
+          prefLabel: 'Holy Roman Empire',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '4',
+          totalInstanceCount: 4
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_6003667',
+          prefLabel: 'Mamluk Sultanate',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '187',
+          totalInstanceCount: 187
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_7001526',
+          prefLabel: 'Middle East',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '25',
+          totalInstanceCount: 25
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_1000001',
+          prefLabel: 'North and Central America',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '0',
+          children: [
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016739',
+              prefLabel: 'Central America',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000001',
+              instanceCount: '2',
+              totalInstanceCount: 2
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7005364',
+              prefLabel: 'Costa Rica',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000001',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7005388',
+              prefLabel: 'Dominican Republic',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000001',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7005423',
+                  prefLabel: 'Distrito Nacional',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005388',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1016499',
+                      prefLabel: 'Santo Domingo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005423',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                }
+              ],
+              totalInstanceCount: 2
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7005493',
+              prefLabel: 'Guatemala',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000001',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000495',
+                  prefLabel: 'Alta Verapaz',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005493',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1016644',
+                      prefLabel: 'Cobán',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000495',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000621',
+                  prefLabel: 'Guatemala',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005493',
+                  instanceCount: '5',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005498',
+                      prefLabel: 'Guatemala',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000621',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 6
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000765',
+                  prefLabel: 'Sololá',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005493',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1016724',
+                      prefLabel: 'Sololá',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000765',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 9
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7005554',
+              prefLabel: 'Honduras',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000001',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7005560',
+              prefLabel: 'Mexico',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000001',
+              instanceCount: '109',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7005575',
+                  prefLabel: 'Distrito Federal',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005560',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007227',
+                      prefLabel: 'Mexico City',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005575',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_7668941',
+                          prefLabel: 'Tenochtitlan',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_7007227',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7005585',
+                  prefLabel: 'Guerrero',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005560',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1017591',
+                      prefLabel: 'Iguala',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005585',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7005587',
+                  prefLabel: 'Hidalgo',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005560',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1016932',
+                      prefLabel: 'Acatlán',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005587',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7007113',
+                      prefLabel: 'Metztitlán',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005587',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7005586',
+                  prefLabel: 'Jalisco',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005560',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1016990',
+                      prefLabel: 'Ameca',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005586',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7352643',
+                      prefLabel: 'Atengo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005586',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1018677',
+                      prefLabel: 'Zapotitlán de Vadillo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005586',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 4
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001893',
+                  prefLabel: 'México',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005560',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7352713',
+                      prefLabel: 'Atlatlahuaca',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001893',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7005590',
+                  prefLabel: 'Michoacán de Ocampo',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005560',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1017886',
+                      prefLabel: 'Morelia',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005590',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7005591',
+                  prefLabel: 'Oaxaca',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005560',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7419093',
+                      prefLabel: 'San Miguel Huautla',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005591',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7415093',
+                      prefLabel: 'Santiago Tilantongo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005591',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7005592',
+                  prefLabel: 'Puebla',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005560',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_4005179',
+                      prefLabel: 'Huejotzingo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005592',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    },
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7370581',
+                      prefLabel: 'Hueytlalpan',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7005592',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7005598',
+                  prefLabel: 'Tlaxcala',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7005560',
+                  instanceCount: '2',
+                  totalInstanceCount: 2
+                }
+              ],
+              totalInstanceCount: 125
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7005562',
+              prefLabel: 'Nicaragua',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000001',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7029440',
+              prefLabel: 'North America',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000001',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7012149',
+              prefLabel: 'United States',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000001',
+              instanceCount: '1',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7007240',
+                  prefLabel: 'Florida',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_7012149',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1002870',
+                      prefLabel: 'Sarasota',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_7007240',
+                      instanceCount: '0',
+                      children: [
+                        {
+                          id: 'http://ldf.fi/mmm/place/tgn_2021639',
+                          prefLabel: 'Venice',
+                          selected: 'false',
+                          parent: 'http://ldf.fi/mmm/place/tgn_1002870',
+                          instanceCount: '1',
+                          totalInstanceCount: 1
+                        }
+                      ],
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 2
+            }
+          ],
+          totalInstanceCount: 144
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_7594545',
+          prefLabel: 'Oceans',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '0',
+          children: [
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7014206',
+              prefLabel: 'Atlantic Ocean',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7594545',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7016735',
+              prefLabel: 'Mediterranean Sea',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7594545',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            }
+          ],
+          totalInstanceCount: 2
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_7024412',
+          prefLabel: 'Ottoman Empire',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '184',
+          totalInstanceCount: 184
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_7030347',
+          prefLabel: 'Roman Empire',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '0',
+          children: [
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7030330',
+              prefLabel: 'Epirus (ancient)',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7030347',
+              instanceCount: '3',
+              totalInstanceCount: 3
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_7013254',
+              prefLabel: 'Raetia',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_7030347',
+              instanceCount: '2',
+              totalInstanceCount: 2
+            }
+          ],
+          totalInstanceCount: 5
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_1000002',
+          prefLabel: 'South America',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '5',
+          children: [
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000051',
+              prefLabel: 'Ecuador',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000002',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_8711657',
+              prefLabel: 'Granada, New Kingdom of',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000002',
+              instanceCount: '1',
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000055',
+              prefLabel: 'Paraguay',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000002',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_7005736',
+                  prefLabel: 'Asunción',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000055',
+                  instanceCount: '1',
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 1
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000056',
+              prefLabel: 'Peru',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000002',
+              instanceCount: '9',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000584',
+                  prefLabel: 'Cuzco',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000056',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005819',
+                      prefLabel: 'Cuzco',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000584',
+                      instanceCount: '2',
+                      totalInstanceCount: 2
+                    }
+                  ],
+                  totalInstanceCount: 2
+                },
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1000670',
+                  prefLabel: 'Lima',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000056',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_7005821',
+                      prefLabel: 'Lima',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1000670',
+                      instanceCount: '3',
+                      totalInstanceCount: 3
+                    }
+                  ],
+                  totalInstanceCount: 3
+                }
+              ],
+              totalInstanceCount: 14
+            },
+            {
+              id: 'http://ldf.fi/mmm/place/tgn_1000059',
+              prefLabel: 'Venezuela',
+              selected: 'false',
+              parent: 'http://ldf.fi/mmm/place/tgn_1000002',
+              instanceCount: '0',
+              children: [
+                {
+                  id: 'http://ldf.fi/mmm/place/tgn_1001972',
+                  prefLabel: 'Trujillo',
+                  selected: 'false',
+                  parent: 'http://ldf.fi/mmm/place/tgn_1000059',
+                  instanceCount: '0',
+                  children: [
+                    {
+                      id: 'http://ldf.fi/mmm/place/tgn_1025311',
+                      prefLabel: 'Trujillo',
+                      selected: 'false',
+                      parent: 'http://ldf.fi/mmm/place/tgn_1001972',
+                      instanceCount: '1',
+                      totalInstanceCount: 1
+                    }
+                  ],
+                  totalInstanceCount: 1
+                }
+              ],
+              totalInstanceCount: 1
+            }
+          ],
+          totalInstanceCount: 23
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_8711885',
+          prefLabel: 'Umayyad Caliphate',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '1',
+          totalInstanceCount: 1
+        },
+        {
+          id: 'http://ldf.fi/mmm/place/tgn_7004550',
+          prefLabel: 'West Indies',
+          selected: 'false',
+          parent: 'http://ldf.fi/mmm/place/tgn_7029392',
+          instanceCount: '1',
+          totalInstanceCount: 1
+        }
+      ],
+      totalInstanceCount: 92773
+    }
+  ]
+}
diff --git a/src/client/components/facet_bar/RangeFacet.js b/src/client/components/facet_bar/RangeFacet.js
index 7a2f1938..56eae1ba 100644
--- a/src/client/components/facet_bar/RangeFacet.js
+++ b/src/client/components/facet_bar/RangeFacet.js
@@ -34,6 +34,9 @@ const styles = theme => ({
   }
 })
 
+/**
+ * A component for a integer range facet.
+ */
 class RangeFacet extends Component {
   constructor (props) {
     super(props)
diff --git a/src/client/components/main_layout/TextPage.js b/src/client/components/main_layout/TextPage.js
index 6f192bb4..a2fc0661 100644
--- a/src/client/components/main_layout/TextPage.js
+++ b/src/client/components/main_layout/TextPage.js
@@ -30,7 +30,7 @@ const useStyles = makeStyles(theme => ({
 }))
 
 /**
-  A component for creating a responsive page with static content.
+ * A component for creating a responsive page with static content.
  */
 const TextPage = props => {
   const classes = useStyles()
@@ -45,8 +45,8 @@ const TextPage = props => {
 
 TextPage.propTypes = {
   /**
-   The content of the page.
-  */
+   * The content of the page.
+   */
   children: PropTypes.node
 }
 
-- 
GitLab