Skip to content
Snippets Groups Projects
HierarchicalFacet.testData.js 1.26 MiB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
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',